SlideShare ist ein Scribd-Unternehmen logo
1 von 19
Downloaden Sie, um offline zu lesen
Getting Started with Oracle SoA
BASIC CONCEPT OF ORACLE SOA Lab#2
Description:
BISP is committed to provide BEST learning material to the beginners
and advance learners. In the same series, we have prepared a complete
end-to end Hands-on Beginner’s Guide for Oracle SoA. The document
focuses on basic keywords, terminology and definitions one should know
before starting Oracle SoA. Join our professional training program and
learn from experts.
History:
Version Description Change Author Publish Date
0.1 Initial Draft Shiva Kant Pandey 21th Aug 2012
0.1 Review#1 Amit Sharma 29th
Aug 2012
www.bispsolutions.com www.bisptrainigs.com www.hyperionguru.com
Page 1
Objective : Basic course required for SOA
INTRODUCTION TO XSD (Xml Schema Definition)
• What is XSD ?
• Structure of XSD
• Target namespace Attribute of xsd: schema
• xmlns registration
• xsd element type
• xsd complex type
• Reusing Complex Type objects
XSD :
" The XML Schema Definition (XSD) is a reference library that provides an API for use with
any code that examines, creates or modifies W3C XML Schema (standalone or as part of
other artifacts, such as XForms or WSDL documents).
XSD is a library that provides an API for manipulating the components of an XML Schema
as described by the W3C XML Schema specifications, as well as an API for manipulating
the DOM-accessible representation of XML Schema as a series of XML documents, and for
keeping these representations in agreement as schemas are modified."
To create a New Project on Oracle JDeveloper 11g step wise
procedure is mentioned
below :
[Step 1] : Start your graphical desktop window & it will appear as
shown in figure
www.bispsolutions.com www.bisptrainigs.com www.hyperionguru.com
Page 2
Step2 : Double click on oracle Jdeveloper icon .
Step 3: After double click Select Role window will appear choose
Default Role & it will
enable all technologies .
Click OK button .
Step 4: Now successfully we have entered into Oracle JDeveloper
page .
Click on this new button icon which is shown in left corner of
page & a New Gallery
window will appear on same page.
www.bispsolutions.com www.bisptrainigs.com www.hyperionguru.com
Page 3
Click on :
Current Project Technologies ---> Applications --->SOA Application
---> click OK.
Step 5: Select Application Name & fill on blank . I have taken
SOAApplicaton as
Application Name & click Next Tab.
www.bispsolutions.com www.bisptrainigs.com www.hyperionguru.com
Page 4
Step 6:Now it will prompt for Project Name select project name as
your own choice
ex- Project1.
Select ADF Business Components ---> SOA---> Next .
www.bispsolutions.com www.bisptrainigs.com www.hyperionguru.com
Page 5
Note: There are various Application Development Framework (ADF)
to develop your
application so choose as per need.
Step 7: To configure SOA Setting select Empty Composite ---> click
Finish
so successfully created Project1 as new project .
www.bispsolutions.com www.bisptrainigs.com www.hyperionguru.com
Page 6
==> Inside red box observe SOAApplication as Application Name &
Project1 under Project
is created.
TO CREATE .XSD FILE STEPWISE PROCEDURE IS
MENTIONED BELOW
So far discussion was to create new project now under project1 start
to create new Book type .xsd file :
Step1: Right click on xsd ---> New .
www.bispsolutions.com www.bisptrainigs.com www.hyperionguru.com
Page 7
Step 2: Click All Technologies ---> XML --->XML Schema ---> OK
Note: We are going to create XML schema in .xsd file .
www.bispsolutions.com www.bisptrainigs.com www.hyperionguru.com
Page 8
Step 3: Now Enter details of your new file ex- Book.xsd or Book
Schema.xsd & click OK.
Here point to consider is 1) Target Namespace 2) Prefix
Target Namespace : This is used for unique identification of each
element in XML
by parser.
Prefix: Prefix is shortcut of Namespace . Take bobj as prefix for
BookType xsd file,
here 'b' represent Book type & 'obj' represents Object .
Step 4: On left Pane observe BookSchema.xsd is created under xsd
.
On right side of left pane is a predefined XSD schema.
• 1st circle represents start of schema & 2nd circle end of schema .
In xsd:schema xsd is used here as prefix which is generated by w3
organization & it is
a shortcut of namespace
xmlns:xsd="http://www.w3.org/2001/XMLSchema".
www.bispsolutions.com www.bisptrainigs.com www.hyperionguru.com
Page 9
So in this schema we observe Target namespace now we can see
the structure in which they have taken "exampleElement" as name
of element.
• At the bottom inside green box there are three options
1. Design mode: In design mode we can see what we have
designed .
2. Source mode: In source mode we create schema of xml in
xsd as shown in above figure.
www.bispsolutions.com www.bisptrainigs.com www.hyperionguru.com
Page 10
3. History: We can see the history of schema created.
Step 5: Design Bookschema.xsd structure inside parent schema.
• xmlns:xsd="http//:www.w3.org/2001/XMLSchema" is namespace
which describes the schema of xml by w3 organization & provide
standard prefix xsd to all elements inside schema.
• xmlns:bobj="http//:www.oracle.com/schema/Book" this is
registration of target namespace.
• ListOfBooks is a XSD element & its type is ListOfBookType
• ListOfBookType is a complextype element
• Complextype xsd are those in which one or more than simple
elements are nested.so in this example there are three complex
types .
• So start from first complex type i.e Book Type as shown in figure
with purple box.
• <xsd:sequence> means that all simple elements inside complex
type arranged in a sequence .
www.bispsolutions.com www.bisptrainigs.com www.hyperionguru.com
Page 11
• So this BookType contains name ,author,price inside it with their
types. Type plays important role in xsd it gives meaning to the
element name .
1. name is "xsd: string" type
2. author is "xsd: string" type
3. Price is "xsd:decimal " type
• Similarly Subject Type contains three elements in well defined
sequence
Here we have taken type as "bobj:BookType" because each subject
contains BookType structure[name, author,price] & hence there are
three book inside subjectType . In design mode it looks as shown
below
www.bispsolutions.com www.bisptrainigs.com www.hyperionguru.com
Page 12
• Similarly for ListOfBooktype which contains "Book" as its element
& type of book is
"bobj:SubjectType"
So Book comes under list of books type & subject type under
book
Design mode:
www.bispsolutions.com www.bisptrainigs.com www.hyperionguru.com
Page 13
Finally ListOfBooks element contain ListOfBookType.
Step 6: In this step we notice following points:
1. what is minOccurs , maxoccurs, nillable ?
2. what is annotation ?
So let us see the structure in source mode :
www.bispsolutions.com www.bisptrainigs.com www.hyperionguru.com
Page 14
• minoccurs & maxoccurs
means how many number of times this name element occurs.
1. Example
/>
1<author occurs<1 meaning author will occur once only.
2. Example
/>
means minimum occurrence of Book is one & maximum it can
occur unbounded
i.e infinite times.
www.bispsolutions.com www.bisptrainigs.com www.hyperionguru.com
Page 15
• NILLABLE
These are of two types:
1) TRUE 2) FALSE
nillable="true" means that value of element should be nil.
nillable="false" means that value of element should not be nil i.e
element must have value.
• ANNOTATION
annotation are of two types 1) Documentation 2) appinfo .
As shown below in source mode
www.bispsolutions.com www.bisptrainigs.com www.hyperionguru.com
Page 16
1) Documentation : In computer industry , documentation is the
information provided to
a customer or other user about a product or the process of
preparing it.
2) Appinfo : The appinfo element specifies information to be used by
the application.
the element must go within an annotation element.
Let us see how Design looks :
www.bispsolutions.com www.bisptrainigs.com www.hyperionguru.com
Page 17
It represents minoccurs="1" & max occur="unbounded" .
www.bispsolutions.com www.bisptrainigs.com www.hyperionguru.com
Page 18
www.bispsolutions.com www.bisptrainigs.com www.hyperionguru.com
Page 19

Weitere ähnliche Inhalte

Was ist angesagt? (6)

J query lecture 1
J query lecture 1J query lecture 1
J query lecture 1
 
CSS_tutorial_2
CSS_tutorial_2CSS_tutorial_2
CSS_tutorial_2
 
Javascript inside Browser (DOM)
Javascript inside Browser (DOM)Javascript inside Browser (DOM)
Javascript inside Browser (DOM)
 
Introduction to XML
Introduction to XMLIntroduction to XML
Introduction to XML
 
Java script how to
Java script how toJava script how to
Java script how to
 
XSLT for Web Developers
XSLT for Web DevelopersXSLT for Web Developers
XSLT for Web Developers
 

Andere mochten auch

Hfm task atumation
Hfm task atumationHfm task atumation
Hfm task atumation
Amit Sharma
 
Getting started-with-oracle-so a-i
Getting started-with-oracle-so a-iGetting started-with-oracle-so a-i
Getting started-with-oracle-so a-i
Amit Sharma
 
Force.com migration utility
Force.com migration utilityForce.com migration utility
Force.com migration utility
Amit Sharma
 
Getting started-with-oracle-so a-ii
Getting started-with-oracle-so a-iiGetting started-with-oracle-so a-ii
Getting started-with-oracle-so a-ii
Amit Sharma
 
Obiee installation 31 july
Obiee installation 31 julyObiee installation 31 july
Obiee installation 31 july
Amit Sharma
 
Getting started-with-oracle-so a-iv
Getting started-with-oracle-so a-ivGetting started-with-oracle-so a-iv
Getting started-with-oracle-so a-iv
Amit Sharma
 
Getting started-with-oracle-so a-iv
Getting started-with-oracle-so a-ivGetting started-with-oracle-so a-iv
Getting started-with-oracle-so a-iv
Amit Sharma
 
E mail and-workflow-administation
E mail and-workflow-administationE mail and-workflow-administation
E mail and-workflow-administation
Amit Sharma
 
Oracle dataintegratorcurriculum
Oracle dataintegratorcurriculumOracle dataintegratorcurriculum
Oracle dataintegratorcurriculum
Amit Sharma
 
Getting started-with-qlikview-part-i
Getting started-with-qlikview-part-iGetting started-with-qlikview-part-i
Getting started-with-qlikview-part-i
Amit Sharma
 
Getting started-with-oracle-so a-vii
Getting started-with-oracle-so a-viiGetting started-with-oracle-so a-vii
Getting started-with-oracle-so a-vii
Amit Sharma
 
Getting started-with-oracle-so a-v
Getting started-with-oracle-so a-vGetting started-with-oracle-so a-v
Getting started-with-oracle-so a-v
Amit Sharma
 
User and group security migration
User and group security migrationUser and group security migration
User and group security migration
Amit Sharma
 
Force.com migration utility
Force.com migration utilityForce.com migration utility
Force.com migration utility
Amit Sharma
 
Smart view for-planning-part-ii
Smart view for-planning-part-iiSmart view for-planning-part-ii
Smart view for-planning-part-ii
Amit Sharma
 

Andere mochten auch (20)

Hfm task atumation
Hfm task atumationHfm task atumation
Hfm task atumation
 
Getting started-with-oracle-so a-i
Getting started-with-oracle-so a-iGetting started-with-oracle-so a-i
Getting started-with-oracle-so a-i
 
Force.com migration utility
Force.com migration utilityForce.com migration utility
Force.com migration utility
 
Getting started-with-oracle-so a-ii
Getting started-with-oracle-so a-iiGetting started-with-oracle-so a-ii
Getting started-with-oracle-so a-ii
 
Oracle11g form-course-curriculum
Oracle11g form-course-curriculumOracle11g form-course-curriculum
Oracle11g form-course-curriculum
 
Obiee installation 31 july
Obiee installation 31 julyObiee installation 31 july
Obiee installation 31 july
 
Getting started-with-oracle-so a-iv
Getting started-with-oracle-so a-ivGetting started-with-oracle-so a-iv
Getting started-with-oracle-so a-iv
 
Dot net-course-curriculumn
Dot net-course-curriculumnDot net-course-curriculumn
Dot net-course-curriculumn
 
Adf coursecontent(1)
Adf coursecontent(1)Adf coursecontent(1)
Adf coursecontent(1)
 
Getting started-with-oracle-so a-iv
Getting started-with-oracle-so a-ivGetting started-with-oracle-so a-iv
Getting started-with-oracle-so a-iv
 
E mail and-workflow-administation
E mail and-workflow-administationE mail and-workflow-administation
E mail and-workflow-administation
 
Oracle dataintegratorcurriculum
Oracle dataintegratorcurriculumOracle dataintegratorcurriculum
Oracle dataintegratorcurriculum
 
Getting started-with-qlikview-part-i
Getting started-with-qlikview-part-iGetting started-with-qlikview-part-i
Getting started-with-qlikview-part-i
 
Getting started-with-oracle-so a-vii
Getting started-with-oracle-so a-viiGetting started-with-oracle-so a-vii
Getting started-with-oracle-so a-vii
 
Getting started-with-oracle-so a-v
Getting started-with-oracle-so a-vGetting started-with-oracle-so a-v
Getting started-with-oracle-so a-v
 
User and group security migration
User and group security migrationUser and group security migration
User and group security migration
 
Informatica course curriculum
Informatica course curriculumInformatica course curriculum
Informatica course curriculum
 
Force.com migration utility
Force.com migration utilityForce.com migration utility
Force.com migration utility
 
Smart view for-planning-part-ii
Smart view for-planning-part-iiSmart view for-planning-part-ii
Smart view for-planning-part-ii
 
Build java-ee-applications-with-adf
Build java-ee-applications-with-adfBuild java-ee-applications-with-adf
Build java-ee-applications-with-adf
 

Ähnlich wie Getting started-with-oracle-so a-ii

Getting started-with-oracle-so a-iii
Getting started-with-oracle-so a-iiiGetting started-with-oracle-so a-iii
Getting started-with-oracle-so a-iii
Amit Sharma
 
Getting started-with-oracle-so a-iii
Getting started-with-oracle-so a-iiiGetting started-with-oracle-so a-iii
Getting started-with-oracle-so a-iii
Amit Sharma
 
Getting started-with-oracle-so a-i
Getting started-with-oracle-so a-iGetting started-with-oracle-so a-i
Getting started-with-oracle-so a-i
Amit Sharma
 
Jdom how it works & how it opened the java process
Jdom how it works & how it opened the java processJdom how it works & how it opened the java process
Jdom how it works & how it opened the java process
Hicham QAISSI
 
Winter%200405%20-%20Advanced%20Javascript
Winter%200405%20-%20Advanced%20JavascriptWinter%200405%20-%20Advanced%20Javascript
Winter%200405%20-%20Advanced%20Javascript
tutorialsruby
 
Winter%200405%20-%20Advanced%20Javascript
Winter%200405%20-%20Advanced%20JavascriptWinter%200405%20-%20Advanced%20Javascript
Winter%200405%20-%20Advanced%20Javascript
tutorialsruby
 
Make Mobile Apps Quickly
Make Mobile Apps QuicklyMake Mobile Apps Quickly
Make Mobile Apps Quickly
Gil Irizarry
 

Ähnlich wie Getting started-with-oracle-so a-ii (20)

Getting started-with-oracle-so a-iii
Getting started-with-oracle-so a-iiiGetting started-with-oracle-so a-iii
Getting started-with-oracle-so a-iii
 
Getting started-with-oracle-so a-iii
Getting started-with-oracle-so a-iiiGetting started-with-oracle-so a-iii
Getting started-with-oracle-so a-iii
 
Getting started-with-oracle-so a-i
Getting started-with-oracle-so a-iGetting started-with-oracle-so a-i
Getting started-with-oracle-so a-i
 
Ad507
Ad507Ad507
Ad507
 
Lotusphere 2007 AD507 Leveraging the Power of Object Oriented Programming in ...
Lotusphere 2007 AD507 Leveraging the Power of Object Oriented Programming in ...Lotusphere 2007 AD507 Leveraging the Power of Object Oriented Programming in ...
Lotusphere 2007 AD507 Leveraging the Power of Object Oriented Programming in ...
 
Class 1
Class 1Class 1
Class 1
 
Class 1
Class 1Class 1
Class 1
 
Introduction to jQuery
Introduction to jQueryIntroduction to jQuery
Introduction to jQuery
 
Jdom how it works & how it opened the java process
Jdom how it works & how it opened the java processJdom how it works & how it opened the java process
Jdom how it works & how it opened the java process
 
Basic JavaScript Tutorial
Basic JavaScript TutorialBasic JavaScript Tutorial
Basic JavaScript Tutorial
 
Understanding XML DOM
Understanding XML DOMUnderstanding XML DOM
Understanding XML DOM
 
Getting Started with React, When You’re an Angular Developer
Getting Started with React, When You’re an Angular DeveloperGetting Started with React, When You’re an Angular Developer
Getting Started with React, When You’re an Angular Developer
 
JS basics
JS basicsJS basics
JS basics
 
MongoDB for Coder Training (Coding Serbia 2013)
MongoDB for Coder Training (Coding Serbia 2013)MongoDB for Coder Training (Coding Serbia 2013)
MongoDB for Coder Training (Coding Serbia 2013)
 
Winter%200405%20-%20Advanced%20Javascript
Winter%200405%20-%20Advanced%20JavascriptWinter%200405%20-%20Advanced%20Javascript
Winter%200405%20-%20Advanced%20Javascript
 
Winter%200405%20-%20Advanced%20Javascript
Winter%200405%20-%20Advanced%20JavascriptWinter%200405%20-%20Advanced%20Javascript
Winter%200405%20-%20Advanced%20Javascript
 
Webdev bootcamp
Webdev bootcampWebdev bootcamp
Webdev bootcamp
 
Make Mobile Apps Quickly
Make Mobile Apps QuicklyMake Mobile Apps Quickly
Make Mobile Apps Quickly
 
FGCU Camp Talk
FGCU Camp TalkFGCU Camp Talk
FGCU Camp Talk
 
test
testtest
test
 

Mehr von Amit Sharma

Oracle apex-hands-on-guide lab#1
Oracle apex-hands-on-guide lab#1Oracle apex-hands-on-guide lab#1
Oracle apex-hands-on-guide lab#1
Amit Sharma
 
Oracle apex hands on lab#2
Oracle apex hands on lab#2Oracle apex hands on lab#2
Oracle apex hands on lab#2
Amit Sharma
 
Security and-data-access-document
Security and-data-access-documentSecurity and-data-access-document
Security and-data-access-document
Amit Sharma
 
Sales force managing-data
Sales force managing-dataSales force managing-data
Sales force managing-data
Amit Sharma
 
Salesforce interview-preparation-toolkit-formula-and-validation-rules-in-sale...
Salesforce interview-preparation-toolkit-formula-and-validation-rules-in-sale...Salesforce interview-preparation-toolkit-formula-and-validation-rules-in-sale...
Salesforce interview-preparation-toolkit-formula-and-validation-rules-in-sale...
Amit Sharma
 
Sales force certification-lab-ii
Sales force certification-lab-iiSales force certification-lab-ii
Sales force certification-lab-ii
Amit Sharma
 

Mehr von Amit Sharma (20)

Oracle enteprise pbcs drivers and assumptions
Oracle enteprise pbcs drivers and assumptionsOracle enteprise pbcs drivers and assumptions
Oracle enteprise pbcs drivers and assumptions
 
Oracle EPBCS Driver
Oracle EPBCS Driver Oracle EPBCS Driver
Oracle EPBCS Driver
 
Oracle Sales Quotation Planning
Oracle Sales Quotation PlanningOracle Sales Quotation Planning
Oracle Sales Quotation Planning
 
Oracle strategic workforce planning cloud hcmswp converted
Oracle strategic workforce planning cloud hcmswp convertedOracle strategic workforce planning cloud hcmswp converted
Oracle strategic workforce planning cloud hcmswp converted
 
Basics of fdmee
Basics of fdmeeBasics of fdmee
Basics of fdmee
 
FDMEE script examples
FDMEE script examplesFDMEE script examples
FDMEE script examples
 
Oracle PBCS creating standard application
Oracle PBCS creating  standard applicationOracle PBCS creating  standard application
Oracle PBCS creating standard application
 
Hfm rule custom consolidation
Hfm rule custom consolidationHfm rule custom consolidation
Hfm rule custom consolidation
 
Hfm calculating RoA
Hfm calculating RoAHfm calculating RoA
Hfm calculating RoA
 
Adding metadata using smartview
Adding metadata using smartviewAdding metadata using smartview
Adding metadata using smartview
 
Hyperion planning weekly distribution
Hyperion planning weekly distributionHyperion planning weekly distribution
Hyperion planning weekly distribution
 
Hyperion planning scheduling data import
Hyperion planning scheduling data importHyperion planning scheduling data import
Hyperion planning scheduling data import
 
Hyperion planning new features
Hyperion planning new featuresHyperion planning new features
Hyperion planning new features
 
Microsoft dynamics crm videos
Microsoft dynamics crm videosMicrosoft dynamics crm videos
Microsoft dynamics crm videos
 
Oracle apex-hands-on-guide lab#1
Oracle apex-hands-on-guide lab#1Oracle apex-hands-on-guide lab#1
Oracle apex-hands-on-guide lab#1
 
Oracle apex hands on lab#2
Oracle apex hands on lab#2Oracle apex hands on lab#2
Oracle apex hands on lab#2
 
Security and-data-access-document
Security and-data-access-documentSecurity and-data-access-document
Security and-data-access-document
 
Sales force managing-data
Sales force managing-dataSales force managing-data
Sales force managing-data
 
Salesforce interview-preparation-toolkit-formula-and-validation-rules-in-sale...
Salesforce interview-preparation-toolkit-formula-and-validation-rules-in-sale...Salesforce interview-preparation-toolkit-formula-and-validation-rules-in-sale...
Salesforce interview-preparation-toolkit-formula-and-validation-rules-in-sale...
 
Sales force certification-lab-ii
Sales force certification-lab-iiSales force certification-lab-ii
Sales force certification-lab-ii
 

Kürzlich hochgeladen

EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
Earley Information Science
 

Kürzlich hochgeladen (20)

Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdf
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 

Getting started-with-oracle-so a-ii

  • 1. Getting Started with Oracle SoA BASIC CONCEPT OF ORACLE SOA Lab#2 Description: BISP is committed to provide BEST learning material to the beginners and advance learners. In the same series, we have prepared a complete end-to end Hands-on Beginner’s Guide for Oracle SoA. The document focuses on basic keywords, terminology and definitions one should know before starting Oracle SoA. Join our professional training program and learn from experts. History: Version Description Change Author Publish Date 0.1 Initial Draft Shiva Kant Pandey 21th Aug 2012 0.1 Review#1 Amit Sharma 29th Aug 2012 www.bispsolutions.com www.bisptrainigs.com www.hyperionguru.com Page 1
  • 2. Objective : Basic course required for SOA INTRODUCTION TO XSD (Xml Schema Definition) • What is XSD ? • Structure of XSD • Target namespace Attribute of xsd: schema • xmlns registration • xsd element type • xsd complex type • Reusing Complex Type objects XSD : " The XML Schema Definition (XSD) is a reference library that provides an API for use with any code that examines, creates or modifies W3C XML Schema (standalone or as part of other artifacts, such as XForms or WSDL documents). XSD is a library that provides an API for manipulating the components of an XML Schema as described by the W3C XML Schema specifications, as well as an API for manipulating the DOM-accessible representation of XML Schema as a series of XML documents, and for keeping these representations in agreement as schemas are modified." To create a New Project on Oracle JDeveloper 11g step wise procedure is mentioned below : [Step 1] : Start your graphical desktop window & it will appear as shown in figure www.bispsolutions.com www.bisptrainigs.com www.hyperionguru.com Page 2
  • 3. Step2 : Double click on oracle Jdeveloper icon . Step 3: After double click Select Role window will appear choose Default Role & it will enable all technologies . Click OK button . Step 4: Now successfully we have entered into Oracle JDeveloper page . Click on this new button icon which is shown in left corner of page & a New Gallery window will appear on same page. www.bispsolutions.com www.bisptrainigs.com www.hyperionguru.com Page 3
  • 4. Click on : Current Project Technologies ---> Applications --->SOA Application ---> click OK. Step 5: Select Application Name & fill on blank . I have taken SOAApplicaton as Application Name & click Next Tab. www.bispsolutions.com www.bisptrainigs.com www.hyperionguru.com Page 4
  • 5. Step 6:Now it will prompt for Project Name select project name as your own choice ex- Project1. Select ADF Business Components ---> SOA---> Next . www.bispsolutions.com www.bisptrainigs.com www.hyperionguru.com Page 5
  • 6. Note: There are various Application Development Framework (ADF) to develop your application so choose as per need. Step 7: To configure SOA Setting select Empty Composite ---> click Finish so successfully created Project1 as new project . www.bispsolutions.com www.bisptrainigs.com www.hyperionguru.com Page 6
  • 7. ==> Inside red box observe SOAApplication as Application Name & Project1 under Project is created. TO CREATE .XSD FILE STEPWISE PROCEDURE IS MENTIONED BELOW So far discussion was to create new project now under project1 start to create new Book type .xsd file : Step1: Right click on xsd ---> New . www.bispsolutions.com www.bisptrainigs.com www.hyperionguru.com Page 7
  • 8. Step 2: Click All Technologies ---> XML --->XML Schema ---> OK Note: We are going to create XML schema in .xsd file . www.bispsolutions.com www.bisptrainigs.com www.hyperionguru.com Page 8
  • 9. Step 3: Now Enter details of your new file ex- Book.xsd or Book Schema.xsd & click OK. Here point to consider is 1) Target Namespace 2) Prefix Target Namespace : This is used for unique identification of each element in XML by parser. Prefix: Prefix is shortcut of Namespace . Take bobj as prefix for BookType xsd file, here 'b' represent Book type & 'obj' represents Object . Step 4: On left Pane observe BookSchema.xsd is created under xsd . On right side of left pane is a predefined XSD schema. • 1st circle represents start of schema & 2nd circle end of schema . In xsd:schema xsd is used here as prefix which is generated by w3 organization & it is a shortcut of namespace xmlns:xsd="http://www.w3.org/2001/XMLSchema". www.bispsolutions.com www.bisptrainigs.com www.hyperionguru.com Page 9
  • 10. So in this schema we observe Target namespace now we can see the structure in which they have taken "exampleElement" as name of element. • At the bottom inside green box there are three options 1. Design mode: In design mode we can see what we have designed . 2. Source mode: In source mode we create schema of xml in xsd as shown in above figure. www.bispsolutions.com www.bisptrainigs.com www.hyperionguru.com Page 10
  • 11. 3. History: We can see the history of schema created. Step 5: Design Bookschema.xsd structure inside parent schema. • xmlns:xsd="http//:www.w3.org/2001/XMLSchema" is namespace which describes the schema of xml by w3 organization & provide standard prefix xsd to all elements inside schema. • xmlns:bobj="http//:www.oracle.com/schema/Book" this is registration of target namespace. • ListOfBooks is a XSD element & its type is ListOfBookType • ListOfBookType is a complextype element • Complextype xsd are those in which one or more than simple elements are nested.so in this example there are three complex types . • So start from first complex type i.e Book Type as shown in figure with purple box. • <xsd:sequence> means that all simple elements inside complex type arranged in a sequence . www.bispsolutions.com www.bisptrainigs.com www.hyperionguru.com Page 11
  • 12. • So this BookType contains name ,author,price inside it with their types. Type plays important role in xsd it gives meaning to the element name . 1. name is "xsd: string" type 2. author is "xsd: string" type 3. Price is "xsd:decimal " type • Similarly Subject Type contains three elements in well defined sequence Here we have taken type as "bobj:BookType" because each subject contains BookType structure[name, author,price] & hence there are three book inside subjectType . In design mode it looks as shown below www.bispsolutions.com www.bisptrainigs.com www.hyperionguru.com Page 12
  • 13. • Similarly for ListOfBooktype which contains "Book" as its element & type of book is "bobj:SubjectType" So Book comes under list of books type & subject type under book Design mode: www.bispsolutions.com www.bisptrainigs.com www.hyperionguru.com Page 13
  • 14. Finally ListOfBooks element contain ListOfBookType. Step 6: In this step we notice following points: 1. what is minOccurs , maxoccurs, nillable ? 2. what is annotation ? So let us see the structure in source mode : www.bispsolutions.com www.bisptrainigs.com www.hyperionguru.com Page 14
  • 15. • minoccurs & maxoccurs means how many number of times this name element occurs. 1. Example /> 1<author occurs<1 meaning author will occur once only. 2. Example /> means minimum occurrence of Book is one & maximum it can occur unbounded i.e infinite times. www.bispsolutions.com www.bisptrainigs.com www.hyperionguru.com Page 15
  • 16. • NILLABLE These are of two types: 1) TRUE 2) FALSE nillable="true" means that value of element should be nil. nillable="false" means that value of element should not be nil i.e element must have value. • ANNOTATION annotation are of two types 1) Documentation 2) appinfo . As shown below in source mode www.bispsolutions.com www.bisptrainigs.com www.hyperionguru.com Page 16
  • 17. 1) Documentation : In computer industry , documentation is the information provided to a customer or other user about a product or the process of preparing it. 2) Appinfo : The appinfo element specifies information to be used by the application. the element must go within an annotation element. Let us see how Design looks : www.bispsolutions.com www.bisptrainigs.com www.hyperionguru.com Page 17
  • 18. It represents minoccurs="1" & max occur="unbounded" . www.bispsolutions.com www.bisptrainigs.com www.hyperionguru.com Page 18