How do I include XSD definition inside WSDL?

Hello,
I am pasting the WSDL and XSD (They were sent as a seperate files)
The Name space that was mentioned in the WSDL is different from where I am currently developing .
I would like to do the following 3 things
1. Include XSD inside WSDL definition
2. Change the existing Name space to the ones created now.
(the current name space is *http://abcd.com/SPAG*)
3. Is there any other free software that works like XML SPY?
The reference in the WSDL to the XSD is provided at "schema....... "
If I copy the XSD in place of <xsd schema></xsd schema> tabs
its generating me no message present  or null exception
please help ....
The WSDL and XSD are as follows :
*WSDL* :
<?xml version="1.0" encoding="UTF-8"?>
<definitions xmlns="http://schemas.xmlsoap.org/wsdl/"
             xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
             xmlns:xsd="http://www.w3.org/2001/XMLSchema"
             xmlns:n="http://www.abcd.com/application/ws/network"
             xmlns:svc="http://www.abcd.com/application/ws/network/service"
             targetNamespace="http://www.abcd.com/application/ws/network/service">
     <types>
          <xsd:schema>
               <xsd:import namespace="http://www.abcd.com/application/ws/network" schemaLocation="../schema/Network.xsd"/>
          </xsd:schema>
     </types>
     <message name="NetworksRequest">
          <part name="request" element="n:Networks"/>
     </message>
     <portType name="NetworkPortType">
          <operation name="importNetworks">
               <input message="svc:NetworksRequest"/>
          </operation>
          <operation name="deleteNetworks">
               <input message="svc:NetworksRequest"/>
          </operation>
     </portType>
     <binding name="NetworkBinding" type="svc:NetworkPortType">
          <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
          <operation name="importNetworks">
               <soap:operation soapAction="importNetworks"/>
               <input><soap:body use="literal"/></input>
          </operation>
          <operation name="deleteNetworks">
               <soap:operation soapAction="deleteNetworks"/>
               <input><soap:body use="literal"/></input>
          </operation>
     </binding>
     <service name="Network">
          <port name="NetworkPort" binding="svc:NetworkBinding">
               <soap:address location="http://localhost:8080/axis/services/Network"/>
          </port>
     </service>
</definitions>
XSD :
<schema xmlns="http://www.w3.org/2001/XMLSchema"
          xmlns:n="http://www.abcd.com/application/ws/network"
          xmlns:nt="http://www.abcd.com/application/ws/networkType"
        xmlns:att="http://www.abcd.com/application/ws/entityAttribute"
        targetNamespace="http://www.abcd.com/application/ws/network"
        elementFormDefault="qualified">
     <import namespace="http://www.abcd.com/application/ws/entityAttribute" schemaLocation="../schema/EntityAttribute.xsd"/>
     <import namespace="http://www.abcd.com/application/ws/networkType" schemaLocation="../schema/NetworkType.xsd"/>
     <!-- Global Element Declarations -->
     <element name="Networks" type="n:Networks"/>
     <!-- Complex Types -->
     <complexType name="Networks">
          <sequence>
               <element name="Network" type="n:Network" minOccurs="0" maxOccurs="unbounded"/>
          </sequence>
     </complexType>
     <complexType name="Network">
          <sequence>
               <element name="description" type="n:descriptionString" minOccurs="0"/>
               <element name="CustomAttributes" type="n:CustomAttributes" minOccurs="0"/>
          </sequence>
          <attribute name="name" type="n:nameString" use="required"/>
          <attribute name="type" type="nt:nameString" default="General"/>
          <attribute name="indenture" type="int"/>
     </complexType>
     <complexType name="CustomAttributes">
          <sequence>
               <element ref="att:CustomAttribute" minOccurs="0" maxOccurs="8"/>
          </sequence>
     </complexType>
     <!-- Simple Types -->
     <simpleType name="descriptionString">
          <restriction base="string">
               <maxLength value="64"/>
          </restriction>
     </simpleType>
     <simpleType name="nameString">
          <restriction base="string">
               <maxLength value="64"/>
          </restriction>
     </simpleType>                      
</schema>
1. Please guide me how do I include XSD in the above structure
2. do I need to change NS in all the places in the above structure in order to change the existing name space to the current one?
3. Is there a free software that works like XML Spy in looking at webservice definitions?
Regards,
Nikhil
All useful replies will be rewarded ****

Hi Nikhil,
first include the following code into u r XSD.
<?xml version="1.0" encoding="UTF-8" ?>
- <xsd:schema targetNamespace="http://abcd.com/SAPAG" xmlns="http://abcd.com/SAPAG" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
please follow the below steps.
- <complexType name="Networks">
make it as <XSD:complexType name="Networks">
-<element name="Networks">
make it as  <XSD:element name="Networks">
and similarly -<sequence>
in any XSD the following tag will be there
i.e -<xsd:annotation>
but it's not mandotory...with out that aslo we can import it as data type.
if possible, please check with alredy exiting xsd definations.
regards
mahesh.

Similar Messages

  • How can I include a parsys inside a javascript function.

    I am using radio button provided by CQ5.4.
    I am writing a javascript function which checks whether a radio button is being clicked or not..
    If the radio button is being clicked an alert window is opening ..this means that function is being called when radio button is being clicked.
    but when I try to include parsys instead of alert window, when the radio button is being clicked..the parsys is not appearing..
    Can u please help me that how should i write the "<cq:include>" for parsys inside the javascript function so that it starts appearing on click of the radio button.
    THANKS
    ASHWANI

    Ashwani,
    I would recommend detecting the WCMMode and always showing the parsys if the page is displaying in edit or design mode:
    http://dev.day.com/docs/en/cq/current/javadoc/com/day/cq/wcm/api/WCMMode.html
    Unless there is a really good reason to hide the section from authors, it's generally confusing to authors to hide a section.  Additionally, hiding a parsys in JavaScript can cause strange artifacts as the drag and drop section of the parsys won't be hidden with the content of the parsys.
    -Dan

  • Include python script inside an app

    Hi all, I'm writing an applescript app which should use a python script.
    how can I include the script inside the apple and have it called by the applescript?
    Thank you!

    Now, is there a way to let the user choose both the output file directory and the output file name (out.iso)?
    To get the filename, add this after the code to select the directory:
    <pre style="
    font-family: Monaco, 'Courier New', Courier, monospace;
    font-size: 10px;
    font-weight: normal;
    margin: 0px;
    padding: 5px;
    border: 1px solid #000000;
    width: 720px;
    color: #000000;
    background-color: #E6E6EE;
    overflow: auto;">
    set outPutName to text returned of (display dialog "Now, please enter a filename:" default answer "out" with title "Enter Filename") & ".iso"</pre>
    But you need to remove "quoted form of the" from dirOutput.
    Also, "set dirOutput to POSIX path of the dirOut" is not needed.
    so, this should work:
    <pre style="
    font-family: Monaco, 'Courier New', Courier, monospace;
    font-size: 10px;
    font-weight: normal;
    margin: 0px;
    padding: 5px;
    border: 1px solid #000000;
    width: 720px;
    color: #000000;
    background-color: #E6E6EE;
    overflow: auto;">
    set dirOut to (POSIX path of (choose folder with prompt "Scegli la posizione in cui salvare il file convertito"))
    set outPutName to text returned of (display dialog "Now, please enter a filename:" default answer "out" with title "Enter Filename") & ".iso"
    if outPutName is ".iso" then set outPutName to "out.iso" -- simple error check for blank name
    if outPutName contains "/" then set outPutName to "out.iso" -- simple error check for bad charater in name
    set fullPathOut to quoted form of (dirOut & outPutName)
    </pre>
    Tony

  • Hello ! How to embed or include a .pdf inside a keynote presentation?

    Hello Everyone !,
    My favorite effects on Keynote 09 do not export correctly in ppt because many effects are not supported by ppt.
    So, my questions are :
    1/I want to embbed a pdf inside a keynote presentaion. It seems it does not work,
    and if I transform my keynote presentaion into a movie (.mov), how could I include a manual click on the embeeded pdf.?
    2/ Although the resolution of my document letters in keynote presentaion look excellent, when converted into .mov, colors/definition becomes quite ugly. Hoe to solve this problem?
    Thanks a million guys for any tips and tricks !!

    The way I do it is:
    Open the PDF in Preview. Click, "File > Save As..." and choose "PNG" as the format. Use the PNG image instead of .PDF for increased versatility.
    Have a look at my tutorials on YouTube, I think anyone who works with the iWork package would benefit from them. Click here to have a look...
    http://www.youtube.com/watch?v=JB--gdIUszk
    I hope this helps...
    Pete

  • When we use XML,XSD,WSDL files to create SOA webservices in jdeveloper ,what will happen means internally,how will useful xml ,xsd,wsdl for composite ?

    When we use XML,XSD,WSDL files to create SOA webservices in jdeveloper ,what will happen means internally,how will useful xml ,xsd,wsdl for composite ?
    How xml will send message to XSD then how wsdl interaction then to composite ?

    XSD (XML Schema Definition), is an abstract representation of a XML characteristics.
    The WSDL (Web Services Description Language), describes the functionality offered by your web service.
    You can say what operations your services offers, and describe the messages used for this operations in your XSD.

  • How can i include Services and Bindung in a generated WSDL file?

    Hi,
    i what to use a generated wsdl file from an erp system, to build a web service client with WSDL2Java (org.apache.axis.wsdl.WSDL2Java).
    I noticed, that services an bindings are missing, also a policy is included.
    How can i include services and bindings in the wsdl and exclude the policy?
    Thanks!

    well, I assume you have SOAMANAGER.
    choose your service & "Apply Selection" (very useless button btw)
    select a binding in the dropdown box or create on if you do not have one yet
    Click button "Show WSDL options" (actually they do not really look like buttons in WD; call it yellow blot)
    Some extra config area is thrown onto your screen (without any sense for usability or design); Change the radio button for WSDL format from "WS policy" to "Standard"; make sure the first radio button group is on "True" for monolithic
    Now click the link (why is this a link and no blot?) called "Display selected bindings WSDL URL"
    an extra text field is again thrown onto your screen somwhere between the dropdown and the WSDL option config area containing an URL (get out your glasses if you don't see the sub-10pt-letters)
    hope it helps,
    anton

  • How to import xsd file inside XSD folder in Oracle SOA 11g

    Hi,
    I need to import xsd file inside XSD folder provided by the deafult structure while creating SOA project. When I used to import the web resource it imports it inside public_html folder not inside XSD folder.
    How to do that ?
    Thanks

    Hi,
    Are you using Jdeveloper on a windows machine? If you are then this might be a useful tip.
    Click Tools -> External Tools. It will prompt you to setup common tools. Let it do this. Now when you right click on your project you will get an Explore Directory option. I use this a lot when copying XSD’s between projects.
    Once you have done this you need to click the refresh button in the Application Navigator to ensure the new files appear.
    Robert

  • How to create the XSD(XML Schema Definition) ?

    Dear All,
         How to create an XSD for the following XML defined ?
    <?xml version="1.0" encoding="utf-8"?>
    <formulations name="Formulations">
        <formulation name="Formulation-1" type="formulation">
            <intermediateFormulation name="IntermediateFormulation-1" type="intermediate">
                <grade name="Grade-1" type="grade">
                    <rawMaterial name="Raw Material-1" type="raw" />
                </grade>
            </intermediateFormulation>
            <grade name="Grade-1" type="grade">
                <rawMaterial name="Raw Material-1" type="raw" />
            </grade>
        </formulation>
    </formulations>
    Thank You,
    Supreet R

    Hi Sivaram,
    Unfortunately, the 8.1 IDE did not have special tooling for schema generation.
    You will need to create it by hand or using an external tool
    If you are using an external tool to create the file within the schema project, you might want to disable the schema project auto build, which will be triggered every time a file save takes place
    cheers
    Raj

  • How to use the XSD that is registered in Oracle Service Registry.

    Hi,
    I got a requirement to publish a XSD in Oracle Service Registry and there after use the XSD from Service registry.
    I have done the following.
    --> Published the XSD in Oracle Service Registry.
    But do not know how to access the XSD, that is published in Oracle Service Registry.
    Pls someone throw some light on this.
    Regards
    Jude.

    Hello Shaveta,
    Thanks for the reply.
    I tried to find 'UDDI version 3 format’ tmodel key, but couldn't able to find it. Pls. provide any sample 'UDDI version 3 format’ tmodel key.
    I just tried with the existing tmodel key. Below is the modified WSDL. Here, I have modified schema location with the tmodel key. Pls note me, if I have gone wrong at any place or provide a sample WSDL.
    <?xml version="1.0" encoding="UTF-8"?>
    <definitions name="AccessingRegistryXSD"
    targetNamespace="http://xmlns.oracle.com/AccessingRegistryXSD"
    xmlns="http://schemas.xmlsoap.org/wsdl/"
    xmlns:client="http://xmlns.oracle.com/AccessingRegistryXSD"
    xmlns:plnk="http://schemas.xmlsoap.org/ws/2003/05/partner-link/">
         <types>
              <schema xmlns="http://www.w3.org/2001/XMLSchema">
                   <import namespace="http://xmlns.oracle.com/AccessingRegistryXSD" schemaLocation="uddi:8d6511a0-cd6e-11dc-b81e-0f5150e1b81c" />
              </schema>
         </types>
    In BPEL, when tried to create copy operation for the input variables, it shows an exception "Exception - Bad URL encountered". Understood, gone wrong at some place. pls help.
    Regards
    Jude.

  • How to creste a XSD ?

    Hi Guys,
    I have xml from the 3rd party which comes into xi. I need to generate .xsd's for them and then import that structure through the external definition.
    How to generate a xsd from the given xml ? any help would be appreciated
    Thanks,
    srini

    Hi Micheal,
    I have used this and generated xml schema and copied to notepad and saved as .xsd and when i import into xi as external definition i am getting the following error
    Unable to convert imported document to WSDL
    Reason: Error when parsing the XML document (Fatal Error: com.sap.engine.lib.xml.parser.ParserException: XML Declaration not allowed here.(:main:, row:1, col:8))
    Check the selected category
    The xsd is as follows
      <?xml version="1.0" encoding="UTF-8" ?>
      <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
      <xs:element name="AcctOverride" type="xs:string" />
      <xs:element name="address">
      <xs:complexType mixed="true" />
      </xs:element>
      <xs:element name="Bearer">
      <xs:complexType>
      <xs:sequence>
      <xs:element ref="Owner" />
      <xs:element ref="InterestType" />
      <xs:element ref="OwnISQ" />
      <xs:element ref="BearerPercent" />
      </xs:sequence>
      </xs:complexType>
      </xs:element>
      <xs:element name="BearerGroup">
      <xs:complexType mixed="true" />
      </xs:element>
      <xs:element name="BearerGroupUse">
      <xs:complexType>
      <xs:sequence>
      <xs:element ref="BearerGroup" />
      <xs:element ref="EffectiveFrom" />
      <xs:element ref="EffectiveTo" />
      <xs:element ref="BearerGrpType" />
      <xs:element ref="Bearer" maxOccurs="unbounded" />
      </xs:sequence>
      </xs:complexType>
      </xs:element>
      <xs:element name="BearerGrpType">
      <xs:complexType mixed="true" />
      </xs:element>
      <xs:element name="BearerPercent">
      <xs:complexType mixed="true" />
      </xs:element>
      <xs:element name="biztalk_1">
      <xs:complexType>
      <xs:sequence>
      <xs:element ref="header" />
      <xs:element ref="body" />
      </xs:sequence>
      </xs:complexType>
      </xs:element>
      <xs:element name="body">
      <xs:complexType>
      <xs:sequence>
      <xs:element ref="doc:DOI.CheckIn" />
      </xs:sequence>
      </xs:complexType>
      </xs:element>
      <xs:element name="CarriedBearer" type="xs:string" />
      <xs:element name="Combprdcd">
      <xs:complexType mixed="true" />
      </xs:element>
      <xs:element name="CompanyCode">
      <xs:complexType mixed="true" />
      </xs:element>
      <xs:element name="Country">
      <xs:complexType mixed="true" />
      </xs:element>
      <xs:element name="delivery">
      <xs:complexType>
      <xs:sequence>
      <xs:element ref="message" />
      <xs:element ref="to" />
      <xs:element ref="from" />
      </xs:sequence>
      </xs:complexType>
      </xs:element>
      <xs:element name="DivisionOfInterest">
      <xs:complexType>
      <xs:sequence>
      <xs:element ref="CompanyCode" />
      <xs:element ref="Jointventure" />
      <xs:element ref="VentureDOI" />
      <xs:element ref="DOIName" />
      <xs:element ref="Combprdcd" />
      <xs:element ref="Country" />
      <xs:element ref="Primarygeoloc" />
      <xs:element ref="Secndrygeoloc" />
      <xs:element ref="PermTemp" />
      <xs:element ref="StartDate" />
      <xs:element ref="EndDate" />
      <xs:element ref="GeneratePPA" />
      <xs:element ref="PPNprocdate" />
      <xs:element ref="MktDateOil" />
      <xs:element ref="MktDateGas" />
      <xs:element ref="Ownership" maxOccurs="unbounded" />
      <xs:element ref="BearerGroupUse" />
      </xs:sequence>
      </xs:complexType>
      </xs:element>
      <xs:element name="doc:DOI.CheckIn">
      <xs:complexType>
      <xs:sequence>
      <xs:element ref="DivisionOfInterest" />
      </xs:sequence>
      </xs:complexType>
      </xs:element>
      <xs:element name="DOIName">
      <xs:complexType mixed="true" />
      </xs:element>
      <xs:element name="DualAccounting" type="xs:string" />
      <xs:element name="EffectiveFrom">
      <xs:complexType mixed="true" />
      </xs:element>
      <xs:element name="EffectiveTo">
      <xs:complexType mixed="true" />
      </xs:element>
      <xs:element name="EndDate">
      <xs:complexType mixed="true" />
      </xs:element>
      <xs:element name="EntitlementCD">
      <xs:complexType mixed="true" />
      </xs:element>
      <xs:element name="EntityType">
      <xs:complexType mixed="true" />
      </xs:element>
      <xs:element name="from">
      <xs:complexType>
      <xs:sequence>
      <xs:element ref="address" />
      </xs:sequence>
      </xs:complexType>
      </xs:element>
      <xs:element name="GeneratePPA" type="xs:string" />
      <xs:element name="header">
      <xs:complexType>
      <xs:sequence>
      <xs:element ref="delivery" />
      </xs:sequence>
      </xs:complexType>
      </xs:element>
      <xs:element name="InterestCat">
      <xs:complexType mixed="true" />
      </xs:element>
      <xs:element name="InterestType">
      <xs:complexType mixed="true" />
      </xs:element>
      <xs:element name="JIBOffset" type="xs:string" />
      <xs:element name="JIBOffsetBA" type="xs:string" />
      <xs:element name="Jointventure">
      <xs:complexType mixed="true" />
      </xs:element>
      <xs:element name="LeaseUseFuel">
      <xs:complexType mixed="true" />
      </xs:element>
      <xs:element name="message">
      <xs:complexType>
      <xs:sequence>
      <xs:element ref="messageID" />
      <xs:element ref="sent" />
      <xs:element ref="subject" />
      </xs:sequence>
      </xs:complexType>
      </xs:element>
      <xs:element name="messageID">
      <xs:complexType mixed="true" />
      </xs:element>
      <xs:element name="MktDateGas" type="xs:string" />
      <xs:element name="MktDateOil" type="xs:string" />
      <xs:element name="MMSProceeds" type="xs:string" />
      <xs:element name="MMSReconcile" type="xs:string" />
      <xs:element name="NRI">
      <xs:complexType mixed="true" />
      </xs:element>
      <xs:element name="Owner">
      <xs:complexType mixed="true" />
      </xs:element>
      <xs:element name="Ownership">
      <xs:complexType>
      <xs:sequence>
      <xs:element ref="Owner" />
      <xs:element ref="InterestType" />
      <xs:element ref="OwnISQ" />
      <xs:element ref="EffectiveFrom" />
      <xs:element ref="EffectiveTo" />
      <xs:element ref="JIBOffset" />
      <xs:element ref="NRI" />
      <xs:element ref="SuspenseReason" />
      <xs:element ref="TaxFree" />
      <xs:element ref="BearerGroup" />
      <xs:element ref="PayoutCode" />
      <xs:element ref="PayCode" />
      <xs:element ref="EntitlementCD" />
      <xs:element ref="MMSProceeds" />
      <xs:element ref="DualAccounting" />
      <xs:element ref="EntityType" />
      <xs:element ref="AcctOverride" />
      <xs:element ref="InterestCat" />
      <xs:element ref="CarriedBearer" />
      <xs:element ref="LeaseUseFuel" />
      <xs:element ref="JIBOffsetBA" />
      <xs:element ref="ProdPayOwn" />
      <xs:element ref="MMSReconcile" />
      </xs:sequence>
      </xs:complexType>
      </xs:element>
      <xs:element name="OwnISQ">
      <xs:complexType mixed="true" />
      </xs:element>
      <xs:element name="PayCode">
      <xs:complexType mixed="true" />
      </xs:element>
      <xs:element name="PayoutCode" type="xs:string" />
      <xs:element name="PermTemp">
      <xs:complexType mixed="true" />
      </xs:element>
      <xs:element name="PPNprocdate" type="xs:string" />
      <xs:element name="Primarygeoloc">
      <xs:complexType mixed="true" />
      </xs:element>
      <xs:element name="ProdPayOwn" type="xs:string" />
      <xs:element name="Secndrygeoloc">
      <xs:complexType mixed="true" />
      </xs:element>
      <xs:element name="sent">
      <xs:complexType mixed="true" />
      </xs:element>
      <xs:element name="StartDate">
      <xs:complexType mixed="true" />
      </xs:element>
      <xs:element name="subject">
      <xs:complexType mixed="true" />
      </xs:element>
      <xs:element name="SuspenseReason">
      <xs:complexType mixed="true" />
      </xs:element>
      <xs:element name="TaxFree">
      <xs:complexType mixed="true" />
      </xs:element>
      <xs:element name="to">
      <xs:complexType>
      <xs:sequence>
      <xs:element ref="address" />
      </xs:sequence>
      </xs:complexType>
      </xs:element>
      <xs:element name="VentureDOI">
      <xs:complexType mixed="true" />
      </xs:element>
      </xs:schema>
    any help would be appreciated
    Thanks,
    srini

  • External definition import WSDL complex type problem

    Hi,
    i have created a webservice using apache axis and created an external definition for the service. You can see the respective WSDL recognized by XI below. The service takes an array of adresses. Unfortunately, when I want to define the message mapping, theres only the array but not the address attributes. What would be a proper definition of the service?
    Cheers,
    Heiko
    ===================================================
    1. WSDL from external defintion:
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://localhost:8080/axis/services/AdressService">
         <wsdl:types>
              <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://localhost:8080/axis/services/AdressService" targetNamespace="http://localhost:8080/axis/services/AdressService">
                   <xsd:import namespace="http://schemas.xmlsoap.org/soap/encoding/" />
                   <xsd:complexType xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" name="AddressDto">
                        <xsd:sequence>
                             <xsd:element name="ID" type="xsd:string" nillable="true" />
                             <xsd:element name="name" type="xsd:string" nillable="true" />
                             <xsd:element name="strasse" type="xsd:string" nillable="true" />
                             <xsd:element name="ort" type="xsd:string" nillable="true" />
                        </xsd:sequence>
                   </xsd:complexType>
                   <xsd:complexType xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" name="ArrayOfAddressDto">
                        <xsd:complexContent>
                             <xsd:restriction base="soapenc:Array">
                                  <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="impl:AddressDto[]" />
                             </xsd:restriction>
                        </xsd:complexContent>
                   </xsd:complexType>
              </xsd:schema>
         </wsdl:types>
         <wsdl:message name="writeAddressDataResponse" />
         <wsdl:message name="writeAddressDataRequest">
              <wsdl:part xmlns:generateduniqueprefix3="http://localhost:8080/axis/services/AdressService" name="addresses" type="generateduniqueprefix3:ArrayOfAddressDto" />
         </wsdl:message>
    </wsdl:definitions>
    2. XSD extracted from WSDL:
    <?xml version="1.0" encoding="UTF-8"?>
    <xsd:schema targetNamespace="http://localhost:8080/axis/services/AdressService" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://localhost:8080/axis/services/AdressService">
      <xsd:import namespace="http://schemas.xmlsoap.org/soap/encoding/" />
      <xsd:element name="addresses" type="ArrayOfAddressDto" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" />
      <xsd:complexType name="ArrayOfAddressDto" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">
        <xsd:complexContent>
          <xsd:restriction base="soapenc:Array">
            <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="impl:AddressDto[]" xmlns:xsd="http://www.w3.org/2001/XMLSchema" />
          </xsd:restriction>
        </xsd:complexContent>
      </xsd:complexType>
    </xsd:schema>
    ??? Where are the atributes of the address here ???

    Hi Heiko,
    XI does not support the use of soapenc:array. Please refer to http://www.ws-i.org/Profiles/BasicProfile-1.0-2004-04-16.html#refinement16556272 regarding the use of this construct.
    Greetings Stephan

  • How do I Add Authentication to the WSDL generated?

    Hi Experts,
    I am creating web service in CAF to get All task assigned to a user using BPM API.
    The WSDL generated while testing from wsnavigator is picking up as a guest user even if I am entering the user details in invocation parameters.
    Can some one tell me how do I add authentication to the WSDL I have generated in CAF?
    Thanks in Advance
    Kumar.

    Hi Kumar,
    You Can find the above Section in : Go to http://hostname:port/nwa and open Configuration--->Connectivity --> Single Service Administration and open Service Definitions tab and select the application service for which you want to create the Authentication.
    Cheers
    Piyas

  • Can I include a bean inside a customization project?

    Hi,
    I am customizing out-of-the-box Profile (.jsff) pages. I'll have to create a bean which will get binary data from Oracle. I have a project to customize the Profile pages. Can I include the bean inside the project? Or, should I create a separate project, and have the pages referenced to the bean class. How should I go for that?
    Many Thanks

    Hi,
    For now, you can change any attributes on user's profile page like department and etc. What's about if I want to create a dynamic drop-down department list for a user to pick? The department list will be generated from a database source. In jdeveloper, you can have various roles. I'm switching back and forth between 'default' and 'customization' roles. In the default role, I'm going to create a javabean to create the dynamic department list. In customization role, I customize the 'look and feel' of the profile page. This is kind of pain in the neck. Am I going to a wrong direction? Is there anyway of getting the work done without switching.
    Secondly, on the profile page, I use EL to reference an attribute in a javabean. But, when I load the page, it errors out.
    <Jan 24, 2012 3:16:22 PM EST> <Warning> <oracle.adf.view.rich.component.fragment.UIXRegion> <ADF_FACES-00009> <Error processing viewId: /edit-basic/view1 URI: /oracle/webcenter/peopleconnections/profile/view/jsf/regions/ootbedit/editbasic.jsff actual-URI: /oracle/webcenter/peopleconnections/profile/view/jsf/regions/ootbedit/editbasic.jsff.
    javax.el.PropertyNotFoundException: Target Unreachable, identifier 'PersonBean' resolved to null+
    at com.sun.el.parser.AstValue.getTarget(Unknown Source)
    at com.sun.el.parser.AstValue.isReadOnly(Unknown Source)
    at com.sun.el.ValueExpressionImpl.isReadOnly(Unknown Source)
    at oracle.adfinternal.view.faces.renderkit.rich.EditableValueRenderer._getUncachedReadOnly(EditableValueRenderer.java:486)
    at oracle.adfinternal.view.faces.renderkit.rich.EditableValueRenderer.cacheReadOnly(EditableValueRenderer.java:416)
    Any help would be appreciated. Thanks.
    Edited by: 891549 on Jan 26, 2012 9:45 PM

  • JAXB : Issue with include XSDs

    Hi..
    I fail to generate JAXB Schema Driven Classes when I try to use a XSD which has xsd:include tag inside. Due to this include XSD, I am getting compilation error while I try to generate files using xjc command.
    Hope JAXB will have solution for handling include tags in XSD Schemas.
    Pl provide me the solution.
    Thanks in advance.
    Venkki.

    Thanx for ur quick response.
    Can u pl send me the xjc command to generate JAXB Schema Driven Classes?
    sothat I can verify whether any changes I need to do with that command for including schemas?
    Regards,
    Venkatesan R

  • BAPI or Function Module interface from XSD definition

    Given an XSD file, is there any way to automatically generate a BAPI or Function Module interface from it?
    BR,
    Tony.

    Hi,
    There are two approaches to create interfaces in XI
    - Outside-In - interfaces definitions are stored in XI as e.g. xsd  and PROXY classes/interfaces are generated in business system
    - Inside-Out - interfaces are developed in business system and imported into XI e.g. IDocs, BAPIs, RFMs
    So it is NOT possible to generate BAPI or FM based on XSD definition, but you can generate proxy.
    Regards,
    Jakub

Maybe you are looking for

  • How do I stop iPod 5th gen from syncing Photos, not just music?

    It is so long since I used my old iPod that I've forgotten how to select what I want and don't want to be downloaded. When I synced it, it started downloading over 1000 photos from iPhoto.  All I want to do is add an album I purchased from the iTunes

  • Transactional data upload

    hi this is teja,i have faced below questions. 1.go live date is 01.04.2007,but client was given trail balnce (vendor balance ,customer balances,open items and every thing )that trasanctional data was view in the sap systems from legacy.what are the s

  • Documents sent in ms word format do not open correctly in pages

    Documents sent in word format do not appear as the should when I open them in pages. There are sections overlapping & as such I cannot read them. Any advice appreciated. I don't want to have to buy ms office.

  • Error -2147217887 occurred at DB Tools Open Connec(string).vi

    LabVIEW 7.1 with db connectivity toolkit is returning this error every few days. Error -2147217887 occurred at DB Tools Open Connec(string).vi -> ... Possible Reason(s): API Error: USER LIMIT EXCEEDED. In DB Tools Open Connec(string).vi -> ... I use

  • Improvements for control center

    Please put a switch for the enabling cellular data in the control center. I would use a great deal to try to save the most of the battery on my iPhone. Thanks