Xml name space issue

Hi,
My xsd starts like this
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
And my expected output is
<Rootelement xmlns:xsi="http://www.w3.org/2001/XMLSchema" xsi:noNamespaceSchemaLocation="myxsd_v1.0.xsd">
but currently my output is
<Rootelement>
How to acheive my required output. I tried using xml anonymiser bean with accept namespaces as http://www.w3.org/2001/XMLSchema ''
and anonymiser quote as '
Anonymiser bean is above callsapadapter
But still the output is not differing . how to get my expetecd output??

Hi,
For the target structure, try to use the External Definition.
or
In the Message type , please remove the namespace.....
Hope this will solve your isssue...
Regards,
Jude.

Similar Messages

  • Xml name space for generated types

    By default the autotype or the servicegen ant task seem to be creating a namespace
    from the java package name (like java:com.ventaso.external.common) for xml mapping
    of user defined java classes. Is there a way to change this to name space I want
    ? Specifying the targetnamespace doesn't seem to help.
    Thanks,
    Siva

    The targetNamespace is for webservice and not for the user defined classes.
    Sorry for the confusion
    Ajay
    "Ajay" <[email protected]> wrote in message
    news:[email protected]..
    There is a targetNamespace attribute in the autotyp ant task. But there
    was a bug in 8.1. Contact the support for a patch.
    The following mail explains that
    This looks like a bug. There is an undocument, not officially
    supported workaround: add the following java doc
    to yours source code -
    * @wlws:webservice targetNamespace="http://foo.bar"
    public class MyService {
    Details here:
    http://www.manojc.com/tutorial/sample3/source2wsdd.html
    Regards,
    -manoj
    http://manojc.com
    "Mark Fine" <[email protected]> wrote in message
    news:[email protected]..
    The attribute targetNamespace (of the autotype task) doesn't seem to putany
    information into the types file and later my deployment descriptor (viathe
    source2wsdd task) contains an invalid targetNamespace attribute with a
    http://tempuri.org:
    eg.
    <web-services>
    <web-service name="IndexService"
    targetNamespace="http://tempuri.org/"
    uri="/IndexWebService">
    I don't think this causes any problems but there should be a way tospecify
    the namespace.
    Has anyone else seen this is WLS8.1?
    "Siva" <[email protected]> wrote in message
    news:[email protected]..
    By default the autotype or the servicegen ant task seem to be creating anamespace
    from the java package name (like java:com.ventaso.external.common) for
    xml
    mapping
    of user defined java classes. Is there a way to change this to name
    space
    I want
    ? Specifying the targetnamespace doesn't seem to help.
    Thanks,
    Siva

  • Java mapping - XML name space

    Hi experts,
    I doing a java mapping to meet my requirement. I use the following code to produce the target XML
    String transactionId = ........................................
                  DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
                DocumentBuilder builder = factory.newDocumentBuilder();                              
    //               Create the output DOM
                Document docOut = builder.newDocument();
                Element dashboardInputTypeNode = docOut.createElement("dashboardInputType");
                docOut.appendChild(dashboardInputTypeNode);
               Element transactionIdNode = docOut.createElement(transactionId);
                dashboardInputTypeNode.appendChild(transactionIdNode); 
                Text transactionIdText = docOut.createTextNode("transactionId");
                transactionIdNode.appendChild(transactionIdText);
               // transform the new xml to the output stream
                TransformerFactory tf = TransformerFactory.newInstance();
                Transformer transform = tf.newTransformer();
                transform.transform(new DOMSource(docOut), new StreamResult(out));
    This code produces me the following XML
      <?xml version="1.0" encoding="UTF-8" ?>
      <dashboardInputType>
          <transactionId>transactionId</transactionId>
      </dashboardInputType>
    But, I need the XML to be produced with the following namespace
      <?xml version="1.0" encoding="UTF-8" ?>
      <ns1:dashboardInputType xmlns:ns1="http://www.watercorporation.com.au/dashboard">
          <ns1:transactionId>transactionId</ns1:transactionId>
      </ns1:dashboardInputType>
    what changes do I need to make in my code to get tge desired output?
    Reward points for the right answer or doco.
    Thanx heaps....
    Sabbir

    try this .
    docOut.setAttributeNS("http://www.w3.org/2000/xmlns/","xmlns:ns1","http://www.watercorporation.com.au/dashboard"");

  • Consume WSDL in ABAP proxy : Issue with name space

    Hi,
    I was trying to consume a WSDL in ABAP and I have created ABAP proxy using wizard in SE80 and also did the LPCONFIG.
    While calling the proxy methods it is throughing the "authrization failed" error because of the following issue.I have successfully executed same WSDL from some third party tools with out error.only difference I have observed in SOAP request is, Third party tools passing all name spaces at envelope level but in ABAP proxy it is not passing all name spaces at envelope level.
    1. SOAP genarated from WSDL in  third party tool.
    <<b>soap:Envelope</b> xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:tns="<b>http://schemas.xxxxx.com</b> ">
      <soap:Body>
        <tns:<b>GetKMContent</b>>
          <tns:request>
            <tns:clientID>1</tns:clientID>
            <tns:employeeID>307478</tns:employeeID>   
            <tns:languageCountryCode>en-US</tns:languageCountryCode>
            <tns:wscVariables>
              <tns:empcountry>US</tns:empcountry>         
            </tns:wscVariables>
          </tns:request>
        </tns:GetKMContent>
      </soap:Body>
    </soap:Envelope>
    SOAP genarated from WSDL in  ABAP proxy.
    <<b>soap-env:Envelope</b> xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/">
    <soap-env:Header>
    <n0:Trace xmlns:n0="http://www.sap.com/webas/630/soap/features/runtime/tracing/">
    <TraceLevel xmlns="http://www.sap.com/webas/630/soap/features/runtime/tracing/">Full</TraceLevel>
    </n0:Trace></soap-env:Header>
    <soap-env:Body>
        <nr1:<b>GetKMContent</b> xmlns:nr1="<b>http://schemas.xxxxx.com</b> ">
             <nr1:request>
               <nr1:clientID>1</nr1:clientID>
               <nr1:employeeID>307478</nr1:employeeID>
               <nr1:languageCountryCode>en-US</nr1:languageCountryCode>
               <nr1:wscVariables>
               <nr1:empcountry>US</nr1:empcountry>
               </nr1:wscVariables>
            </nr1:request>
         </nr1:GetKMContent>
      </soap-env:Body>
    </soap-env:Envelope>
    I was trying to use the SOAP genarated in ABAP proxy in thrid party tool and end up with same "authrization failed " error. If I move the name space  <b>nr1</b> from <<u>nr1:GetKMContent xmlns:nr1="http://schemas.xxxxx.com "></u>  <b>GetKMContent</b> node to <b>soap-env:Envelope</b> <soap-env:Envelope xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:nr1="http://schemas.xxxxx.com "> then it is working fine.
    Question :Is there any way in ABAP proxy to pass name space at soap-env:Envelope level or is there any way to change the SOAP request once it is genarated from ABAP Proxy?. Is there any API to change SOAP information?
    Thanks,

    Hi Kavitha,
    I am also facing the same issue.
    Could you please share the solution if you have solved this.
    Thanks,
    Arun

  • Hide name space of generated xml from xml bean

    Hi,
    how can i hide the namespace of the generated xml from xml bean, cause im having problems with jaxb parses.

    The targetNamespace is for webservice and not for the user defined classes.
    Sorry for the confusion
    Ajay
    "Ajay" <[email protected]> wrote in message
    news:[email protected]..
    There is a targetNamespace attribute in the autotyp ant task. But there
    was a bug in 8.1. Contact the support for a patch.
    The following mail explains that
    This looks like a bug. There is an undocument, not officially
    supported workaround: add the following java doc
    to yours source code -
    * @wlws:webservice targetNamespace="http://foo.bar"
    public class MyService {
    Details here:
    http://www.manojc.com/tutorial/sample3/source2wsdd.html
    Regards,
    -manoj
    http://manojc.com
    "Mark Fine" <[email protected]> wrote in message
    news:[email protected]..
    The attribute targetNamespace (of the autotype task) doesn't seem to putany
    information into the types file and later my deployment descriptor (viathe
    source2wsdd task) contains an invalid targetNamespace attribute with a
    http://tempuri.org:
    eg.
    <web-services>
    <web-service name="IndexService"
    targetNamespace="http://tempuri.org/"
    uri="/IndexWebService">
    I don't think this causes any problems but there should be a way tospecify
    the namespace.
    Has anyone else seen this is WLS8.1?
    "Siva" <[email protected]> wrote in message
    news:[email protected]..
    By default the autotype or the servicegen ant task seem to be creating anamespace
    from the java package name (like java:com.ventaso.external.common) for
    xml
    mapping
    of user defined java classes. Is there a way to change this to name
    space
    I want
    ? Specifying the targetnamespace doesn't seem to help.
    Thanks,
    Siva

  • Accssing xml tags with name space

    <XML>
    <A> Text line 1 </A>
    <A> Text line 2 </A>
    <A> Text line 2 </A>
    </XML>
    I need to know how to Create and access the tag values using name space. could you send me the code please ?
    Thanks

    Hi:
    If you want to use namespace in XML file. You have to define a DTD file or Schema file. Those file you created to validate the XML file. So you can also define a namespace in DTD and Schema or not.
    When you define a namespace in DTD or Schema, you can use a prefix in front of tag name.

  • Example of storing a prefix name space xml file in XML DB ?

    I have lots of XML file pass to me with prefix name space all over the file. Is there any example of how to stored and retrieved this type of XML file to XML DB?
    Example of the XML file:
    <?xml version="1.0" encoding="UTF-8"?>
    <ddms:Resource xmlns:ddms="http://metadata.dod.mil/mdr/ns/DDMS/1.3/" xmlns:ICISM="http://metadata.dod.mil/mdr/ns/DDMS/1.3"
         xmlns:gml="http://metadata.dod.mil/mdr/ns/DDMS/1.3" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://metadata.dod.mil/mdr/ns/DDMS/1.3/ ../DDMS-v1_3_1033.xsd">
    <ddms:identifier ddms:qualifier="http://metadata.dod.mil/mdr/ns/MDR/0.1/MDR.owl#URI"
              ddms:value="http://www.whitehouse.gov/news/releases/2005/06/20050621.html"/>
    </ddms:Resource>

    Hi
    What is the error you get if you try to load the file ?
    May be you have to change the schema location of the xsd to an absolute path in your exable it is relative
    xsi:schemaLocation="http://metadata.dod.mil/mdr/ns/DDMS/1.3/ ../DDMS-v1_3_1033.xsd"
    regards Patrick

  • Not able to see the name space in Message Interface

    I Have cXML.xsd,  I make a external  definition  for this.
    I am creating a message interface for this,  When I create message interface and referre to  exsternal definition, it  does not show the name space, Please let me know how to  do this.
    in xsd,  in schema tag , I have alredy specify attribute  targetNamespace="MyNameSpace"
    help...
    Ram Singhal

    Hi Udo,
    I did the same thing..
    Have  a  look ..
    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" targetNamespace="urn:abc.xi:xyz:test">
         <xs:import namespace="http://www.w3.org/XML/1998/namespace"/>
    Where  Namespace  "urn:abc.xi:xyz:test"  is defined in  XI , underwhich I am importing External definition
    Thanks
    Ram

  • Emails being blocked for name space mining

    Hello All
    Once of our clients email domain is blocked by Microsoft because it detected a name space mining attack coming from the public IP assigned to the client.
    We have already reported this to MS support but without any luck. All they sent are a generic script based answer asking us to rectify the issue from our end but based on the information I have I’m not sure if we can get this rectified on our end.
    Basically all this started when the client sent a mass email. They have been sending this mass email for the last 2-3 years but one this instance emails to several Hotmail users were not getting delivered and following is the start of the email delivery
    process.
    2014-01-29T22:44:08.843Z,Windows SBS Internet Send Client server,08D0D8C0D237FAC7,2,192.168.0.5:27944,65.54.188.94:25,<,"220 BAY0-MC2-F42.Bay0.hotmail.com Sending unsolicited commercial or bulk e-mail to Microsoft's computer network is prohibited.
    Other restrictions are found at http://privacy.microsoft.com/en-us/anti-spam.mspx. Wed, 29 Jan 2014 14:44:43 -0800 ",
    2014-01-29T22:44:08.843Z,Windows SBS Internet Send Client server,08D0D8C0D237FAC7,3,192.168.0.5:27944,65.54.188.94:25,>,EHLO client server.com,
    2014-01-29T22:44:08.937Z,Windows SBS Internet Send Client server,08D0D8C0D237FAC7,4,192.168.0.5:27944,65.54.188.94:25,<,250-BAY0-MC2-F42.Bay0.hotmail.com (3.19.0.77) Hello [Client IP],
    2014-01-29T22:44:08.937Z,Windows SBS Internet Send Client server,08D0D8C0D237FAC7,5,192.168.0.5:27944,65.54.188.94:25,<,250-SIZE 36909875,
    2014-01-29T22:44:08.937Z,Windows SBS Internet Send Client server,08D0D8C0D237FAC7,6,192.168.0.5:27944,65.54.188.94:25,<,250-PIPELINING,
    2014-01-29T22:44:08.937Z,Windows SBS Internet Send Client server,08D0D8C0D237FAC7,7,192.168.0.5:27944,65.54.188.94:25,<,250-8bitmime,
    2014-01-29T22:44:08.937Z,Windows SBS Internet Send Client server,08D0D8C0D237FAC7,8,192.168.0.5:27944,65.54.188.94:25,<,250-BINARYMIME,
    2014-01-29T22:44:08.937Z,Windows SBS Internet Send Client server,08D0D8C0D237FAC7,9,192.168.0.5:27944,65.54.188.94:25,<,250-CHUNKING,
    2014-01-29T22:44:08.937Z,Windows SBS Internet Send Client server,08D0D8C0D237FAC7,10,192.168.0.5:27944,65.54.188.94:25,<,250-AUTH LOGIN,
    2014-01-29T22:44:08.937Z,Windows SBS Internet Send Client server,08D0D8C0D237FAC7,11,192.168.0.5:27944,65.54.188.94:25,<,250-AUTH=LOGIN,
    2014-01-29T22:44:08.937Z,Windows SBS Internet Send Client server,08D0D8C0D237FAC7,12,192.168.0.5:27944,65.54.188.94:25,<,250 OK,
    2014-01-29T22:44:08.937Z,Windows SBS Internet Send Client server,08D0D8C0D237FAC7,13,192.168.0.5:27944,65.54.188.94:25,*,18243,sending message
    2014-01-29T22:44:08.937Z,Windows SBS Internet Send Client server,08D0D8C0D237FAC7,14,192.168.0.5:27944,65.54.188.94:25,>,MAIL FROM:<[email protected]> SIZE=534310,
    2014-01-29T22:44:08.937Z,Windows SBS Internet Send Client server,08D0D8C0D237FAC7,15,192.168.0.5:27944,65.54.188.94:25,>,RCPT TO:<[email protected]>,
    2014-01-29T22:44:08.937Z,Windows SBS Internet Send Client server,08D0D8C0D237FAC7,16,192.168.0.5:27944,65.54.188.94:25,>,RCPT TO:<[email protected]>,
    2014-01-29T22:44:08.937Z,Windows SBS Internet Send Client server,08D0D8C0D237FAC7,17,192.168.0.5:27944,65.54.188.94:25,>,RCPT TO:<[email protected]>,
    2014-01-29T22:44:08.937Z,Windows SBS Internet Send Client server,08D0D8C0D237FAC7,18,192.168.0.5:27944,65.54.188.94:25,>,RCPT TO:<[email protected]>,
    2014-01-29T22:44:08.937Z,Windows SBS Internet Send Client server,08D0D8C0D237FAC7,19,192.168.0.5:27944,65.54.188.94:25,>,RCPT TO:<[email protected]>,
    2014-01-29T22:44:08.937Z,Windows SBS Internet Send Client server,08D0D8C0D237FAC7,20,192.168.0.5:27944,65.54.188.94:25,>,RCPT TO:<[email protected]>,
    2014-01-29T22:44:08.937Z,Windows SBS Internet Send Client server,08D0D8C0D237FAC7,21,192.168.0.5:27944,65.54.188.94:25,>,RCPT TO:<[email protected]>,
    2014-01-29T22:44:08.937Z,Windows SBS Internet Send Client server,08D0D8C0D237FAC7,22,192.168.0.5:27944,65.54.188.94:25,>,RCPT TO:<[email protected]>,
    2014-01-29T22:44:08.937Z,Windows SBS Internet Send Client server,08D0D8C0D237FAC7,23,192.168.0.5:27944,65.54.188.94:25,>,RCPT TO:<[email protected]>,
    2014-01-29T22:44:08.937Z,Windows SBS Internet Send Client server,08D0D8C0D237FAC7,24,192.168.0.5:27944,65.54.188.94:25,>,RCPT TO:<[email protected]>,
    2014-01-29T22:44:08.937Z,Windows SBS Internet Send Client server,08D0D8C0D237FAC7,25,192.168.0.5:27944,65.54.188.94:25,>,RCPT TO:<[email protected]>,
    2014-01-29T22:44:08.937Z,Windows SBS Internet Send Client server,08D0D8C0D237FAC7,26,192.168.0.5:27944,65.54.188.94:25,>,RCPT TO:<[email protected]>,
    2014-01-29T22:44:08.937Z,Windows SBS Internet Send Client server,08D0D8C0D237FAC7,27,192.168.0.5:27944,65.54.188.94:25,>,RCPT TO:<[email protected]>,
    2014-01-29T22:44:08.937Z,Windows SBS Internet Send Client server,08D0D8C0D237FAC7,28,192.168.0.5:27944,65.54.188.94:25,>,RCPT TO:<[email protected]>,
    2014-01-29T22:44:08.937Z,Windows SBS Internet Send Client server,08D0D8C0D237FAC7,29,192.168.0.5:27944,65.54.188.94:25,>,RCPT TO:<[email protected]>,
    2014-01-29T22:44:09.030Z,Windows SBS Internet Send Client server,08D0D8C0D237FAC7,30,192.168.0.5:27944,65.54.188.94:25,<,250 [email protected] OK,
    2014-01-29T22:44:09.311Z,Windows SBS Internet Send Client server,08D0D8C0D237FAC7,31,192.168.0.5:27944,65.54.188.94:25,<,250 [email protected] ,
    2014-01-29T22:44:09.311Z,Windows SBS Internet Send Client server,08D0D8C0D237FAC7,32,192.168.0.5:27944,65.54.188.94:25,<,250 [email protected] ,
    2014-01-29T22:44:09.311Z,Windows SBS Internet Send Client server,08D0D8C0D237FAC7,33,192.168.0.5:27944,65.54.188.94:25,<,250 [email protected] ,
    2014-01-29T22:44:09.311Z,Windows SBS Internet Send Client server,08D0D8C0D237FAC7,34,192.168.0.5:27944,65.54.188.94:25,<,250 [email protected] ,
    2014-01-29T22:44:09.311Z,Windows SBS Internet Send Client server,08D0D8C0D237FAC7,35,192.168.0.5:27944,65.54.188.94:25,<,250 [email protected] ,
    2014-01-29T22:44:09.311Z,Windows SBS Internet Send Client server,08D0D8C0D237FAC7,36,192.168.0.5:27944,65.54.188.94:25,<,250 [email protected] ,
    2014-01-29T22:44:09.311Z,Windows SBS Internet Send Client server,08D0D8C0D237FAC7,37,192.168.0.5:27944,65.54.188.94:25,<,250 [email protected] ,
    2014-01-29T22:44:09.311Z,Windows SBS Internet Send Client server,08D0D8C0D237FAC7,38,192.168.0.5:27944,65.54.188.94:25,<,250 [email protected] ,
    2014-01-29T22:44:09.311Z,Windows SBS Internet Send Client server,08D0D8C0D237FAC7,39,192.168.0.5:27944,65.54.188.94:25,<,250 [email protected] ,
    2014-01-29T22:44:09.311Z,Windows SBS Internet Send Client server,08D0D8C0D237FAC7,40,192.168.0.5:27944,65.54.188.94:25,<,250 [email protected] ,
    2014-01-29T22:44:09.311Z,Windows SBS Internet Send Client server,08D0D8C0D237FAC7,41,192.168.0.5:27944,65.54.188.94:25,<,250 [email protected] ,
    2014-01-29T22:44:09.311Z,Windows SBS Internet Send Client server,08D0D8C0D237FAC7,42,192.168.0.5:27944,65.54.188.94:25,<,250 [email protected] ,
    2014-01-29T22:44:09.311Z,Windows SBS Internet Send Client server,08D0D8C0D237FAC7,43,192.168.0.5:27944,65.54.188.94:25,<,250 [email protected] ,
    2014-01-29T22:44:09.311Z,Windows SBS Internet Send Client server,08D0D8C0D237FAC7,44,192.168.0.5:27944,65.54.188.94:25,<,250 [email protected] ,
    2014-01-29T22:44:09.311Z,Windows SBS Internet Send Client server,08D0D8C0D237FAC7,45,192.168.0.5:27944,65.54.188.94:25,<,250 [email protected] ,
    2014-01-29T22:44:09.311Z,Windows SBS Internet Send Client server,08D0D8C0D237FAC7,46,192.168.0.5:27944,65.54.188.94:25,>,BDAT 512633 LAST,
    After the last of the line then the client exchange server has tried every 2 minutes for the next 2 days and eventually failed because MS blocked the IP addresses.
    Microsoft is not providing us any information and asking us to repeatedly to resolve the issue at our end but I don’t know why the exchange server never managed to deliver the email messages because all those Hotmail email addresses are legitimate and live
    email addresses.
    What does BDAT * LAST means? This is the last SMTP command sent/received before client s exchange server started a new communication attempt.
    What are the changes that we can do to the client server in order to avoid similar issues in the future?
    Thanks
    Dhanushka

    Hi,
    I am afraid you still need to contact MS support to fix this issue.
    Thanks,
    Simon Wu
    TechNet Community Support

  • Adding a LOV MAP in a Page resulting page (invalid name space error) error

    Hi,
    I am trying to add a new LOV to a region in one of the oracle product self service pages.
    I am getting the LOV region displayed, but the moment I add lov mappings I am gettting the invalid name space error.
    Your help on this is highly appreciated. For your reference I am attaching the error below.
    ElementData.java:103) at oracle.adf.mds.internal.Cache.cacheElement(Cache.java:645) at oracle.adf.mds.internal.BaseCache.create(BaseCache.java:157) at oracle.adf.mds.internal.parse.ElementParser.startElement(ElementParser.java:222) at oracle.cabo.share.xml.TreeBuilder$Handler.startElement(Unknown Source) at oracle.cabo.share.xml.ParserAdapter.startElement(Unknown Source) at oracle.xml.parser.v2.XMLContentHandler.startElement(XMLContentHandler.java:167) at oracle.xml.parser.v2.NonValidatingParser.parseElement(NonValidatingParser.java:1182) at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:301) at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:268) at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:149) at oracle.cabo.share.xml.ParserAdapter.parse(Unknown Source) at oracle.cabo.share.xml.TreeBuilder.parse(Unknown Source) at oracle.cabo.share.xml.TreeBuilder.parse(Unknown Source) at oracle.adf.mds.internal.parse.ParserUtils.createNode(ParserUtils.java:283) at oracle.adf.mds.internal.parse.ParserUtils.createNode(ParserUtils.java:115) at oracle.adf.mds.adapters.DBAdapter.getElementData(DBAdapter.java:324) at oracle.adf.mds.internal.MetadataManagerBase.findElement(MetadataManagerBase.java:1237) at oracle.adf.mds.MElement.findElement(MElement.java:97) at oracle.apps.fnd.framework.webui.JRAD2AKMapper.getRootMElement(JRAD2AKMapper.java:493) at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.getWebBeanTypeDataFromJRAD(OAWebBeanFactoryImpl.java:3783) at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.getRootApplicationModuleClass(OAWebBeanFactoryImpl.java:3460) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:988) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:497) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:418) at oa_html._OA._jspService(_OA.java:88) at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119) at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417) at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267) at oracle.jsp.JspServlet.internalService(JspServlet.java:186) at oracle.jsp.JspServlet.service(JspServlet.java:156) at javax.servlet.http.HttpServlet.service(HttpServlet.java:588) at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456) at org.apache.jserv.JServConnection.run(JServConnection.java:294) at java.lang.Thread.run(Thread.java:534) oracle.adf.mds.exception.MDSRuntimeException: Invalid namespace: The namespace "null" has not been registered with the MetadataManager at oracle.adf.mds.internal.MetadataManagerBase.getElementDef(MetadataManagerBase.java:330) at oracle.adf.mds.internal.ElementData.(ElementData.java:103) at oracle.adf.mds.internal.Cache.cacheElement(Cache.java:645) at oracle.adf.mds.internal.BaseCache.create(BaseCache.java:157) at oracle.adf.mds.internal.parse.ElementParser.startElement(ElementParser.java:222) at oracle.cabo.share.xml.TreeBuilder$Handler.startElement(Unknown Source) at oracle.cabo.share.xml.ParserAdapter.startElement(Unknown Source) at oracle.xml.parser.v2.XMLContentHandler.startElement(XMLContentHandler.java:167) at oracle.xml.parser.v2.NonValidatingParser.parseElement(NonValidatingParser.java:1182) at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:301) at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:268) at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:149) at oracle.cabo.share.xml.ParserAdapter.parse(Unknown Source) at oracle.cabo.share.xml.TreeBuilder.parse(Unknown Source) at oracle.cabo.share.xml.TreeBuilder.parse(Unknown Source) at oracle.adf.mds.internal.parse.ParserUtils.createNode(ParserUtils.java:283) at oracle.adf.mds.internal.parse.ParserUtils.createNode(ParserUtils.java:115) at oracle.adf.mds.adapters.DBAdapter.getElementData(DBAdapter.java:324) at oracle.adf.mds.internal.MetadataManagerBase.findElement(MetadataManagerBase.java:1237) at oracle.adf.mds.MElement.findElement(MElement.java:97) at oracle.apps.fnd.framework.webui.JRAD2AKMapper.getRootMElement(JRAD2AKMapper.java:493) at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.getWebBeanTypeDataFromJRAD(OAWebBeanFactoryImpl.java:3783) at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.getRootApplicationModuleClass(OAWebBeanFactoryImpl.java:3460) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:988) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:497) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:418) at oa_html._OA._jspService(_OA.java:88) at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119) at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417) at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267) at oracle.jsp.JspServlet.internalService(JspServlet.java:186) at oracle.jsp.JspServlet.service(JspServlet.java:156) at javax.servlet.http.HttpServlet.service(HttpServlet.java:588) at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456) at org.apache.jserv.JServConnection.run(JServConnection.java:294) at java.lang.Thread.run(Thread.java:534) ">
    oracle.apps.fnd.framework.OAException: No data found for region (/oracle/apps/gl/controls/webui/ControlAssociationsPG).
         at oracle.apps.fnd.framework.webui.JRAD2AKMapper.getRootMElement(JRAD2AKMapper.java:527)
         at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.getWebBeanTypeDataFromJRAD(OAWebBeanFactoryImpl.java:3783)
         at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.getRootApplicationModuleClass(OAWebBeanFactoryImpl.java:3460)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:988)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:497)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:418)
         at _oa__html._OA._jspService(_OA.java:88)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
         at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
         at oracle.jsp.JspServlet.service(JspServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
         at org.apache.jserv.JServConnection.run(JServConnection.java:294)
         at java.lang.Thread.run(Thread.java:534)
    ## Detail 0 ##
    oracle.adf.mds.exception.MDSRuntimeException: Invalid namespace: The namespace "null" has not been registered with the MetadataManager
         at oracle.adf.mds.internal.MetadataManagerBase.getElementDef(MetadataManagerBase.java:330)
         at oracle.adf.mds.internal.ElementData.<init>(ElementData.java:103)
         at oracle.adf.mds.internal.Cache.cacheElement(Cache.java:645)
         at oracle.adf.mds.internal.BaseCache.create(BaseCache.java:157)
         at oracle.adf.mds.internal.parse.ElementParser.startElement(ElementParser.java:222)
         at oracle.cabo.share.xml.TreeBuilder$Handler.startElement(Unknown Source)
         at oracle.cabo.share.xml.ParserAdapter.startElement(Unknown Source)
         at oracle.xml.parser.v2.XMLContentHandler.startElement(XMLContentHandler.java:167)
         at oracle.xml.parser.v2.NonValidatingParser.parseElement(NonValidatingParser.java:1182)
         at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:301)
         at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:268)
         at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:149)
         at oracle.cabo.share.xml.ParserAdapter.parse(Unknown Source)
         at oracle.cabo.share.xml.TreeBuilder.parse(Unknown Source)
         at oracle.cabo.share.xml.TreeBuilder.parse(Unknown Source)
         at oracle.adf.mds.internal.parse.ParserUtils.createNode(ParserUtils.java:283)
         at oracle.adf.mds.internal.parse.ParserUtils.createNode(ParserUtils.java:115)
         at oracle.adf.mds.adapters.DBAdapter.getElementData(DBAdapter.java:324)
         at oracle.adf.mds.internal.MetadataManagerBase.findElement(MetadataManagerBase.java:1237)
         at oracle.adf.mds.MElement.findElement(MElement.java:97)
         at oracle.apps.fnd.framework.webui.JRAD2AKMapper.getRootMElement(JRAD2AKMapper.java:493)
         at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.getWebBeanTypeDataFromJRAD(OAWebBeanFactoryImpl.java:3783)
         at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.getRootApplicationModuleClass(OAWebBeanFactoryImpl.java:3460)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:988)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:497)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:418)
         at _oa__html._OA._jspService(_OA.java:88)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
         at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
         at oracle.jsp.JspServlet.service(JspServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
         at org.apache.jserv.JServConnection.run(JServConnection.java:294)
         at java.lang.Thread.run(Thread.java:534)
    oracle.adf.mds.exception.MDSRuntimeException: Invalid namespace: The namespace "null" has not been registered with the MetadataManager
         at oracle.adf.mds.internal.MetadataManagerBase.getElementDef(MetadataManagerBase.java:330)
         at oracle.adf.mds.internal.ElementData.<init>(ElementData.java:103)
         at oracle.adf.mds.internal.Cache.cacheElement(Cache.java:645)
         at oracle.adf.mds.internal.BaseCache.create(BaseCache.java:157)
         at oracle.adf.mds.internal.parse.ElementParser.startElement(ElementParser.java:222)
         at oracle.cabo.share.xml.TreeBuilder$Handler.startElement(Unknown Source)
         at oracle.cabo.share.xml.ParserAdapter.startElement(Unknown Source)
         at oracle.xml.parser.v2.XMLContentHandler.startElement(XMLContentHandler.java:167)
         at oracle.xml.parser.v2.NonValidatingParser.parseElement(NonValidatingParser.java:1182)
         at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:301)
         at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:268)
         at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:149)
         at oracle.cabo.share.xml.ParserAdapter.parse(Unknown Source)
         at oracle.cabo.share.xml.TreeBuilder.parse(Unknown Source)
         at oracle.cabo.share.xml.TreeBuilder.parse(Unknown Source)
         at oracle.adf.mds.internal.parse.ParserUtils.createNode(ParserUtils.java:283)
         at oracle.adf.mds.internal.parse.ParserUtils.createNode(ParserUtils.java:115)
         at oracle.adf.mds.adapters.DBAdapter.getElementData(DBAdapter.java:324)
         at oracle.adf.mds.internal.MetadataManagerBase.findElement(MetadataManagerBase.java:1237)
         at oracle.adf.mds.MElement.findElement(MElement.java:97)
         at oracle.apps.fnd.framework.webui.JRAD2AKMapper.getRootMElement(JRAD2AKMapper.java:493)
         at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.getWebBeanTypeDataFromJRAD(OAWebBeanFactoryImpl.java:3783)
         at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.getRootApplicationModuleClass(OAWebBeanFactoryImpl.java:3460)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:988)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:497)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:418)
         at _oa__html._OA._jspService(_OA.java:88)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
         at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
         at oracle.jsp.JspServlet.service(JspServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
         at org.apache.jserv.JServConnection.run(JServConnection.java:294)
         at java.lang.Thread.run(Thread.java:534)

    Which version are you using? I believe that adding regions started from CU2. Confirm this.
    Did you set the profle FND:OA Enable Defaults? This may not be the cause for your error but I got some LOV map errors because of this. There is a thread in the forum on this.
    Ensure that your path and spelling are correct. The error shows ...CostPG. Should it be ...RN perhaps? LOV Regions are usually called RN.
    If all else fails open a tar.

  • BPEL FTP Adapter name space

    Hi Friends,
    I have a bpel process which sends xml data over ftp. The name space in FTPed data looks as below:
    "<?xml version = "1.0" encoding = "UTF-8" ?>
    _+<Metadata xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://aiv-external.s3.org.com/UnboxMetadata.xsd" xmlns:tns="http://www.org.com/UnboxMetadata/v1" xmlns="http://www.org.com/UnboxMetadata/v1">+_
    <tns:Movie><tns:PartnerName>ABC</tns:PartnerName><tns:UniqueID>1263456</tns:UniqueID>
    </tns:Movie>"
    However receive of ftpied data expect following (Please note change in sehmalocation:
    " <?xml version = "1.0" encoding = "UTF-8" ?>
    _+<Metadata xsi:schemaLocation="http://www.amazon.com/UnboxMetadata/v1 http://aiv-external.s3.amazonaws.com/UnboxMetadata.xsd"+_
    _+xmlns="http://www.amazon.com/UnboxMetadata/v1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">+_
    <Movie><PartnerName>ABC</PartnerName><UniqueID>1263456</UniqueID>
    </Movie>"
    Is i t possible to control/change schema location and get file in expected form?
    Thanks,
    Sachin.
    Edited by: user10051771 on May 1, 2013 2:31 PM

    Thanks Everybody for the prompt response .
    1) What error does one get when trying to connect to FTP Sever which only support active mode
    No Error , but no file transfer happens. SR and Bug Request for the same is already in place .
    QUESTION
    ========
    Does BPEL FTP Adapter supports active ftp mode (instead of passive).
    ANSWER
    ======
    No, FTP Adapter only supports passive mode. For that purpose there is an Enhancement Request
    already, the Bug 6866124 - NEED SUPPORT FOR PASSIVE FTP ADAPTER AND CUSTOM FTP
    COMMANDS :
    1. The FTP Server needs to be active for the Adapter to work. So, both FTP Server and the FTP adapter must be active for it to work.
    Also you only support PASSIVE mode in our FTP JCA adapter. ACTIVE mode is currently
    considered bad practice and a security vulnerability.
    But, we would require both ACTIVE and PASSIVE modes.
    2. Custom commands are not supported. But, we need the samples for custom FTP Commands and support for it.
    for example: quote site fixrecfm 90...

  • MaxDB UpdAllStats - missing optimizer statistics for one name space

    Hi experts,
    every weekend the job UpdAllStats runs in the SAP systems hosted by us (weekdays just PrepUpdStats+UpdStats). Now we're facing the issue that in one system there are no optimizier statistics for all tables in one special name space - let's call it /XYZ/TABLE1 etc.
    We randomly checked tables in that name space via DB20/DB50 and no optimizer statistics could be found. So we randomly checked other tables like MARA, VBAK etc. - all optimizer statistics up to date for those tables.
    We even started the statistics refresh via DB20 manually for one of the tables - still no optimizer statistics appearing for this table.
    I mean it's an update over all optimizer statistics - I rechecked note 927882 - FAQ: SAP MaxDB UPDATE STATISTICS and some others but couldn't find any reason for these tables being exluded. Especially I don't understand why the manual statistics refresh wouldn't work...
    Does anybody have an idea why this could happen?
    Thanks for your ideas in advance!
    Regards
    Marie

    Hi again,
    well it seems to be more of a visualisation problem I guess.
    We figured out that in MaxDB Database Studio you can see the optimizier statistics but not in the SAP system itself.
    We'll keep you up to date.
    Best
    Marie
    Edit: it was really just a visualisation problem... DB Studio rhows the right values

  • Root.sh diskgroup already mounted in another lock name space

    I have successfully installed oracle grid infrastructure 11.2.0.3 and have created an oracle database on an asm instance on top of it.
    I installed the database as a RAC database on a single node db-test-mi-1, postponing the addition of a second node at a later time.
    Now I have a second node db-test-mi-2, that I need to add to to the database.
    I have successfully performed
    cluvfy stage -pre nodeadd -n db-test-mi-2 -verbose
    without any errors.
    When I try to extend grid infrastructure to the new node, with
    ./addNode.sh "CLUSTER_NEW_NODES={db-test-mi-2}" "CLUSTER_NEW_VIRTUAL_HOSTNAMES={db-test-mi-2-vip}"
    it works fine, but the script /oracle/app/11.2.0/grid/root.sh, from the grid home of the second node, generates an error
    ORA-15032: not all alterations performed
    ORA-15017: diskgroup "DATADG" cannot be mounted
    ORA-15003: diskgroup "DATADG" already mounted in another lock name space
    This is because of course the ASM instance on the first node is locking the disk group.
    How can I extend ASM to the second node??
    Any hel greatly appreciated

    Hi,
    Please refer
    Troubleshooting 11.2 Grid Infrastructure root.sh Issues (Doc ID 1053970.1)
    Thanks,
    Rajasekhar

  • Name space problem in a WSDL

    hello
    I have an RFC 2 WS sync message. in the reply, I seem to have a problem with my name space in the WSDL that I recieve. (I see 2 arrays with the same name in the response). I tryed to change the WSDL so it will be with one name space only but with out success. when I try to test the xml in the MM I I see it red in the tree.
    I attached the wsdl and the xml response that I recieve. (there are 2 processBPRArr array in the reponse with the same name space even though it seems that I have in the WSDL different name spaces).
    help will be appreciated.
    my WSDL:
    <?xml version="1.0" encoding="UTF-8"?>
    <wsdl:definitions xmlns:apachesoap="http://xml.apache.org/xml-soap" xmlns:impl="http://CRMWorkQueue.ws.migdal.co.il" xmlns:intf="http://CRMWorkQueue.ws.migdal.co.il" xmlns:tns1="http://CRMWorkQueue.ws.migdal.co.il" xmlns:tns2="http://CRMWorkQueue.ws.migdal.co.il" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="http://CRMWorkQueue.ws.migdal.co.il">
         <wsdl:types>
              <schema elementFormDefault="qualified" targetNamespace="http://CRMWorkQueue.ws.migdal.co.il" xmlns="http://www.w3.org/2001/XMLSchema">
                   <import namespace="http://beans.hafaka.scheme.migdal"/>
                   <import namespace="http://out.beans.hafaka.scheme.migdal"/>
                   <element name="getWorkQueue">
                        <complexType>
                             <sequence>
                                  <element name="in0" type="tns1:CRMWorkQueue"/>
                             </sequence>
                        </complexType>
                   </element>
                   <complexType name="ArrayOf_tns1_PaymentDetails">
                        <sequence>
                             <element maxOccurs="unbounded" minOccurs="0" name="item" type="tns1:PaymentDetails"/>
                        </sequence>
                   </complexType>
                   <complexType name="ArrayOf_tns1_DOColl">
                        <sequence>
                             <element maxOccurs="unbounded" minOccurs="0" name="item" type="tns1:DOColl"/>
                        </sequence>
                   </complexType>
                   <complexType name="ArrayOf_tns1_PSColl">
                        <sequence>
                             <element maxOccurs="unbounded" minOccurs="0" name="item" type="tns1:PSColl"/>
                        </sequence>
                   </complexType>
                   <complexType name="ArrayOf_tns1_DGColl">
                        <sequence>
                             <element maxOccurs="unbounded" minOccurs="0" name="item" type="tns1:DGColl"/>
                        </sequence>
                   </complexType>
                   <complexType name="ArrayOf_tns1_AttachedFile">
                        <sequence>
                             <element maxOccurs="unbounded" minOccurs="0" name="item" type="tns1:AttachedFile"/>
                        </sequence>
                   </complexType>
                   <complexType name="ArrayOf_tns1_Party">
                        <sequence>
                             <element maxOccurs="unbounded" minOccurs="0" name="item" type="tns1:Party"/>
                        </sequence>
                   </complexType>
                   <complexType name="ArrayOf_tns1_FundRequest">
                        <sequence>
                             <element maxOccurs="unbounded" minOccurs="0" name="item" type="tns1:FundRequest"/>
                        </sequence>
                   </complexType>
                   <complexType name="ArrayOf_tns1_Relation">
                        <sequence>
                             <element maxOccurs="unbounded" minOccurs="0" name="item" type="tns1:Relation"/>
                        </sequence>
                   </complexType>
                   <complexType name="ArrayOf_tns1_OptionalBenefit">
                        <sequence>
                             <element maxOccurs="unbounded" minOccurs="0" name="item" type="tns1:OptionalBenefit"/>
                        </sequence>
                   </complexType>
                   <complexType name="ArrayOf_tns1_LifeParticipant">
                        <sequence>
                             <element maxOccurs="unbounded" minOccurs="0" name="item" type="tns1:LifeParticipant"/>
                        </sequence>
                   </complexType>
                   <complexType name="ArrayOf_tns1_Coverage">
                        <sequence>
                             <element maxOccurs="unbounded" minOccurs="0" name="item" type="tns1:Coverage"/>
                        </sequence>
                   </complexType>
                   <complexType name="ArrayOf_tns1_Policy">
                        <sequence>
                             <element maxOccurs="unbounded" minOccurs="0" name="item" type="tns1:Policy"/>
                        </sequence>
                   </complexType>
                   <element name="getWorkQueueResponse">
                        <complexType>
                             <sequence>
                                  <element name="getWorkQueueReturn" type="tns2:CRMWorkQueueNotify"/>
                             </sequence>
                        </complexType>
                   </element>
                   <complexType name="ArrayOf_tns2_PathNoteInfo">
                        <sequence>
                             <element maxOccurs="unbounded" minOccurs="0" name="item" type="tns2:PathNoteInfo"/>
                        </sequence>
                   </complexType>
                   <complexType name="ArrayOf_tns2_ChangeEssence">
                        <sequence>
                             <element maxOccurs="unbounded" minOccurs="0" name="item" type="tns2:ChangeEssence"/>
                        </sequence>
                   </complexType>
                   <complexType name="ArrayOf_xsd_string">
                        <sequence>
                             <element maxOccurs="unbounded" minOccurs="0" name="item" type="xsd:string"/>
                        </sequence>
                   </complexType>
                   <complexType name="ArrayOf_tns2_HistoryState">
                        <sequence>
                             <element maxOccurs="unbounded" minOccurs="0" name="item" type="tns2:HistoryState"/>
                        </sequence>
                   </complexType>
                   <complexType name="ArrayOf_tns2_WorkQueue2000">
                        <sequence>
                             <element maxOccurs="unbounded" minOccurs="0" name="item" type="tns2:WorkQueue2000"/>
                        </sequence>
                   </complexType>
                   <complexType name="ArrayOf_tns2_ReceivedDocument">
                        <sequence>
                             <element maxOccurs="unbounded" minOccurs="0" name="item" type="tns2:ReceivedDocument"/>
                        </sequence>
                   </complexType>
                   <complexType name="ArrayOf_tns2_ExpectedDocument">
                        <sequence>
                             <element maxOccurs="unbounded" minOccurs="0" name="item" type="tns2:ExpectedDocument"/>
                        </sequence>
                   </complexType>
                   <complexType name="ArrayOf_tns2_NoteInfo">
                        <sequence>
                             <element maxOccurs="unbounded" minOccurs="0" name="item" type="tns2:NoteInfo"/>
                        </sequence>
                   </complexType>
                   <complexType name="ArrayOf_tns2_ProcessBPR">
                        <sequence>
                             <element maxOccurs="unbounded" minOccurs="0" name="item" type="tns2:ProcessBPR"/>
                        </sequence>
                   </complexType>
                   <complexType name="ArrayOf_tns2_Restriction">
                        <sequence>
                             <element maxOccurs="unbounded" minOccurs="0" name="item" type="tns2:Restriction"/>
                        </sequence>
                   </complexType>
                   <complexType name="ArrayOf_tns2_Addition">
                        <sequence>
                             <element maxOccurs="unbounded" minOccurs="0" name="item" type="tns2:Addition"/>
                        </sequence>
                   </complexType>
                   <complexType name="ArrayOf_tns2_Taarif">
                        <sequence>
                             <element maxOccurs="unbounded" minOccurs="0" name="item" type="tns2:Taarif"/>
                        </sequence>
                   </complexType>
                   <complexType name="ArrayOf_tns2_ProductOffer">
                        <sequence>
                             <element maxOccurs="unbounded" minOccurs="0" name="item" type="tns2:ProductOffer"/>
                        </sequence>
                   </complexType>
                   <complexType name="ArrayOf_tns2_Agreement">
                        <sequence>
                             <element maxOccurs="unbounded" minOccurs="0" name="item" type="tns2:Agreement"/>
                        </sequence>
                   </complexType>
                   <complexType name="ArrayOf_tns2_FundDetails">
                        <sequence>
                             <element maxOccurs="unbounded" minOccurs="0" name="item" type="tns2:FundDetails"/>
                        </sequence>
                   </complexType>
                   <complexType name="ArrayOf_tns2_Funds">
                        <sequence>
                             <element maxOccurs="unbounded" minOccurs="0" name="item" type="tns2:Funds"/>
                        </sequence>
                   </complexType>
                   <complexType name="UserPswd">
                        <sequence>
                             <element name="pswd" minOccurs="0" nillable="true" type="xsd:string"/>
                             <element name="cryptPswd" minOccurs="0" nillable="true" type="xsd:string"/>
                             <element name="cryptType" minOccurs="0" nillable="true" type="xsd:string"/>
                        </sequence>
                   </complexType>
                   <complexType name="UserAuthRequest">
                        <sequence>
                             <element name="userLoginName" minOccurs="0" nillable="true" type="xsd:string"/>
                             <element name="userPswd" nillable="true" minOccurs="0" type="tns1:UserPswd"/>
                        </sequence>
                   </complexType>
                   <complexType name="AgreementRequest">
                        <sequence>
                             <element name="organizationKey" minOccurs="0" nillable="true" type="xsd:string"/>
                             <element name="all" minOccurs="0" type="xsd:int"/>
                             <element name="carrierPartyId" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="agreementID" minOccurs="0" type="xsd:int"/>
                        </sequence>
                   </complexType>
                   <complexType name="Organization">
                        <sequence>
                             <element name="directDeliveryByPost" minOccurs="0" type="xsd:int"/>
                             <element name="natureCategory" minOccurs="0" type="xsd:int"/>
                             <element name="policyHolderNumber" minOccurs="0" type="xsd:int"/>
                             <element name="govtID" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="commissionPayeeType" minOccurs="0" type="xsd:int"/>
                             <element name="salesManagerNum" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="organizationKey" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="residenceCounty" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="allowAppPaymentDetermining" minOccurs="0" type="xsd:int"/>
                             <element name="contactPersonName" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="orgCode" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="abbrName" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="carrierPartyId" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="orgForm" minOccurs="0" type="xsd:int"/>
                             <element name="publicCompanyIndicator" minOccurs="0" type="xsd:int"/>
                             <element name="addressCountry" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="commissionPayeeID" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="estabDate" nillable="true" minOccurs="0" type="xsd:dateTime"/>
                             <element name="signedAgreementInd" minOccurs="0" type="xsd:int"/>
                             <element name="percentForSalesManager" minOccurs="0" type="xsd:double"/>
                             <element name="fullName" nillable="true" minOccurs="0" type="xsd:string"/>
                        </sequence>
                   </complexType>
                   <complexType name="Fax">
                        <sequence>
                             <element name="areaCode" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="dialNumber" nillable="true" minOccurs="0" type="xsd:string"/>
                        </sequence>
                   </complexType>
                   <complexType name="PaymentDetails">
                        <sequence>
                             <element name="creditConfirmationID" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="cardOwnerID" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="creditCardType" minOccurs="0" type="xsd:int"/>
                             <element name="bankBranchName" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="accountNumber" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="paymentMethod" minOccurs="0" type="xsd:int"/>
                             <element name="creditCardExpDate" nillable="true" minOccurs="0" type="xsd:dateTime"/>
                             <element name="acctHolderName" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="bankName" nillable="true" minOccurs="0" type="xsd:string"/>
                        </sequence>
                   </complexType>
                   <complexType name="Person">
                        <sequence>
                             <element name="fatherName" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="firstName" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="primaryProfession" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="secondaryEmailAddress" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="primaryEmailAddress" minOccurs="0" nillable="true" type="xsd:string"/>
                             <element name="personKey" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="passportCountry" minOccurs="0" type="xsd:int"/>
                             <element name="birthDate" nillable="true" minOccurs="0" type="xsd:dateTime"/>
                             <element name="secondaryProfessionCode" minOccurs="0" type="xsd:int"/>
                             <element name="cellularNumber" minOccurs="0" type="xsd:int"/>
                             <element name="confirmationDate" nillable="true" minOccurs="0" type="xsd:dateTime"/>
                             <element name="englishFirstName" minOccurs="0" nillable="true" type="xsd:string"/>
                             <element name="gender" minOccurs="0" type="xsd:int"/>
                             <element name="occupationCode" minOccurs="0" type="xsd:int"/>
                             <element name="lastName" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="sendMailInd" minOccurs="0" type="xsd:int"/>
                             <element name="proofOfAgeInd" minOccurs="0" type="xsd:int"/>
                             <element name="carrierPartyId" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="selfEmployedDeclaration" minOccurs="0" type="xsd:int"/>
                             <element name="marStat" minOccurs="0" type="xsd:int"/>
                             <element name="smokerStat" minOccurs="0" type="xsd:int"/>
                             <element name="primaryProfessionCode" minOccurs="0" type="xsd:int"/>
                             <element name="issueDate" nillable="true" minOccurs="0" type="xsd:dateTime"/>
                             <element name="secondaryProfession" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="englishLastName" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="occupation" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="cellularAreaCode" minOccurs="0" type="xsd:int"/>
                             <element name="declarationDate" nillable="true" minOccurs="0" type="xsd:dateTime"/>
                        </sequence>
                   </complexType>
                   <complexType name="LS">
                        <sequence>
                             <element name="drugs_ls" minOccurs="0" type="xsd:int"/>
                        </sequence>
                   </complexType>
                   <complexType name="DC">
                        <sequence>
                             <element name="name_dc" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="street_dc" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="first_name_dc" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="town_dc" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="id_no_dc" nillable="true" minOccurs="0" type="xsd:string"/>
                        </sequence>
                   </complexType>
                   <complexType name="GH">
                        <sequence>
                             <element name="drinking_x_gh" minOccurs="0" type="xsd:int"/>
                             <element name="drinking_from_year_gh" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="gen_questions19_gh" minOccurs="0" type="xsd:int"/>
                             <element name="ever_smoked_gh" minOccurs="0" type="xsd:int"/>
                             <element name="gen_questions20_gh" minOccurs="0" type="xsd:int"/>
                             <element name="number_cigarettes_then_gh" minOccurs="0" type="xsd:int"/>
                             <element name="height_gh" minOccurs="0" type="xsd:int"/>
                             <element name="gen_questions2_gh" minOccurs="0" type="xsd:int"/>
                             <element name="family_disorders_x_gh" minOccurs="0" type="xsd:int"/>
                             <element name="gen_questions12_gh" minOccurs="0" type="xsd:int"/>
                             <element name="gen_questions7_gh" minOccurs="0" type="xsd:int"/>
                             <element name="number_cigarettes_now_gh" minOccurs="0" type="xsd:int"/>
                             <element name="gen_questions17_gh" minOccurs="0" type="xsd:int"/>
                             <element name="ever_drunk_gh" minOccurs="0" type="xsd:int"/>
                             <element name="gen_questions23_gh" minOccurs="0" type="xsd:int"/>
                             <element name="gen_questions5_gh" minOccurs="0" type="xsd:int"/>
                             <element name="gen_questions10_gh" minOccurs="0" type="xsd:int"/>
                             <element name="gen_questions15_gh" minOccurs="0" type="xsd:int"/>
                             <element name="smoking_started_year_gh" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="smoking_x_gh" minOccurs="0" type="xsd:int"/>
                             <element name="smoking_stopped_year_gh" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="gen_questions21_gh" minOccurs="0" type="xsd:int"/>
                             <element name="weight_gh" minOccurs="0" type="xsd:int"/>
                             <element name="gen_questions3_gh" minOccurs="0" type="xsd:int"/>
                             <element name="heathy_able_to_work_gh" minOccurs="0" type="xsd:int"/>
                             <element name="gen_questions13_gh" minOccurs="0" type="xsd:int"/>
                             <element name="gen_questions8_gh" minOccurs="0" type="xsd:int"/>
                             <element name="gen_questions18_gh" minOccurs="0" type="xsd:int"/>
                             <element name="gen_questions1_gh" minOccurs="0" type="xsd:int"/>
                             <element name="gen_questions24_gh" minOccurs="0" type="xsd:int"/>
                             <element name="gen_questions6_gh" minOccurs="0" type="xsd:int"/>
                             <element name="gen_questions11_gh" minOccurs="0" type="xsd:int"/>
                             <element name="gen_questions16_gh" minOccurs="0" type="xsd:int"/>
                             <element name="drinking_until_year_gh" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="gen_questions22_gh" minOccurs="0" type="xsd:int"/>
                             <element name="gen_questions4_gh" minOccurs="0" type="xsd:int"/>
                             <element name="hiv_infection_gh" minOccurs="0" type="xsd:int"/>
                             <element name="gen_questions9_gh" minOccurs="0" type="xsd:int"/>
                             <element name="gen_questions14_gh" minOccurs="0" type="xsd:int"/>
                        </sequence>
                   </complexType>
                   <complexType name="PM">
                        <sequence>
                             <element name="pursuit_x_pm" minOccurs="0" type="xsd:int"/>
                             <element name="occupation_hazards_x_pm" minOccurs="0" type="xsd:int"/>
                             <element name="substandard_pm" minOccurs="0" type="xsd:int"/>
                        </sequence>
                   </complexType>
                   <complexType name="DOColl">
                        <sequence>
                             <element name="treatment_year_do" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="start_month_do" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="has_fully_recovered_do" minOccurs="0" type="xsd:int"/>
                             <element name="hospital_admission_do" minOccurs="0" type="xsd:int"/>
                             <element name="end_year_do" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="several_times_do" minOccurs="0" type="xsd:int"/>
                             <element name="type_of_treatment_do" minOccurs="0" type="xsd:int"/>
                             <element name="disorder_name_do" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="consequences_do" minOccurs="0" type="xsd:int"/>
                             <element name="start_year_do" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="treatment_month_do" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="right_left_do" minOccurs="0" type="xsd:int"/>
                             <element name="code_do" minOccurs="0" type="xsd:int"/>
                             <element name="end_month_do" nillable="true" minOccurs="0" type="xsd:string"/>
                        </sequence>
                   </complexType>
                   <complexType name="PSColl">
                        <sequence>
                             <element name="pursuit_name_ps" minOccurs="0" nillable="true" type="xsd:string"/>
                             <element name="code_ps" minOccurs="0" type="xsd:int"/>
                        </sequence>
                   </complexType>
                   <complexType name="DGColl">
                        <sequence>
                             <element name="drug_name_dg" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="code_dg" minOccurs="0" type="xsd:int"/>
                             <element name="quantity_dg" minOccurs="0" type="xsd:int"/>
                        </sequence>
                   </complexType>
                   <complexType name="Questionnaire">
                        <sequence>
                             <element name="LS" nillable="true" minOccurs="0" type="tns1:LS"/>
                             <element name="DC" nillable="true" minOccurs="0" type="tns1:DC"/>
                             <element name="GH" nillable="true" minOccurs="0" type="tns1:GH"/>
                             <element name="PM" nillable="true" minOccurs="0" type="tns1:PM"/>
                             <element name="DOCollArr" nillable="true" minOccurs="0" type="impl:ArrayOf_tns1_DOColl"/>
                             <element name="PSCollArr" minOccurs="0" nillable="true" type="impl:ArrayOf_tns1_PSColl"/>
                             <element name="DGCollArr" minOccurs="0" nillable="true" type="impl:ArrayOf_tns1_DGColl"/>
                        </sequence>
                   </complexType>
                   <complexType name="HealthStatement">
                        <sequence>
                             <element name="questionnaireStr" minOccurs="0" nillable="true" type="xsd:string"/>
                             <element name="tkufatBituach" minOccurs="0" type="xsd:int"/>
                             <element name="trdMiluiMevutach" nillable="true" minOccurs="0" type="xsd:dateTime"/>
                             <element name="medicalPcntAddition" minOccurs="0" type="xsd:double"/>
                             <element name="professionalPcntAddition" minOccurs="0" type="xsd:double"/>
                             <element name="questionnaire" nillable="true" minOccurs="0" type="tns1:Questionnaire"/>
                             <element name="maslulChitum" minOccurs="0" type="xsd:int"/>
                        </sequence>
                   </complexType>
                   <complexType name="Phone">
                        <sequence>
                             <element name="areaCode" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="dialNumber" nillable="true" minOccurs="0" type="xsd:string"/>
                        </sequence>
                   </complexType>
                   <complexType name="Address">
                        <sequence>
                             <element name="zip" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="buildNum" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="street" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="buildEnt" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="cityName" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="cityCode" minOccurs="0" type="xsd:int"/>
                             <element name="addressValidInd" minOccurs="0" type="xsd:int"/>
                             <element name="POBox" minOccurs="0" type="xsd:int"/>
                             <element name="buildLet" nillable="true" minOccurs="0" type="xsd:string"/>
                        </sequence>
                   </complexType>
                   <complexType name="AttachedFile">
                        <sequence>
                             <element name="fileType" minOccurs="0" type="xsd:int"/>
                             <element name="originalFileName" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="fileContent" nillable="true" minOccurs="0" type="xsd:base64Binary"/>
                             <element name="fileName" nillable="true" minOccurs="0" type="xsd:string"/>
                        </sequence>
                   </complexType>
                   <complexType name="Party">
                        <sequence>
                             <element name="organization" nillable="true" minOccurs="0" type="tns1:Organization"/>
                             <element name="partyResultCode" minOccurs="0" type="xsd:int"/>
                             <element name="fax" nillable="true" minOccurs="0" type="tns1:Fax"/>
                             <element name="paymentDetailsArr" nillable="true" minOccurs="0" type="impl:ArrayOf_tns1_PaymentDetails"/>
                             <element name="person" nillable="true" minOccurs="0" type="tns1:Person"/>
                             <element name="healthStatement" nillable="true" minOccurs="0" type="tns1:HealthStatement"/>
                             <element name="phone" nillable="true" minOccurs="0" type="tns1:Phone"/>
                             <element name="address" nillable="true" minOccurs="0" type="tns1:Address"/>
                             <element name="attachedFileArr" nillable="true" minOccurs="0" type="impl:ArrayOf_tns1_AttachedFile"/>
                        </sequence>
                   </complexType>
                   <complexType name="Parties">
                        <sequence>
                             <element name="partyArr" nillable="true" minOccurs="0" type="impl:ArrayOf_tns1_Party"/>
                        </sequence>
                   </complexType>
                   <complexType name="FundRequest">
                        <sequence>
                             <element name="indexEndDate" minOccurs="0" nillable="true" type="xsd:dateTime"/>
                             <element name="carrierPartyId" minOccurs="0" nillable="true" type="xsd:string"/>
                             <element name="indexStartDate" minOccurs="0" nillable="true" type="xsd:dateTime"/>
                             <element name="linkingType" type="xsd:int"/>
                        </sequence>
                   </complexType>
                   <complexType name="Relation">
                        <sequence>
                             <element name="relationRoleCode" type="xsd:int"/>
                             <element name="relationOriginatingObjectID" nillable="true" type="xsd:string"/>
                             <element name="relationRelatedObjectID" nillable="true" type="xsd:string"/>
                        </sequence>
                   </complexType>
                   <complexType name="KolRega">
                        <sequence>
                             <element name="providentFundType" type="xsd:int"/>
                             <element name="providentFundNumber" type="xsd:double"/>
                        </sequence>
                   </complexType>
                   <complexType name="BudgetSplit">
                        <sequence>
                             <element name="rule45" type="xsd:double"/>
                             <element name="amount" type="xsd:double"/>
                             <element name="pcntCompensation" type="xsd:double"/>
                             <element name="pensionEmployer" type="xsd:double"/>
                             <element name="rule47" type="xsd:double"/>
                             <element name="pensionEmployee" type="xsd:double"/>
                        </sequence>
                   </complexType>
                   <complexType name="Migdalor">
                        <sequence>
                             <element name="equityCourse" type="xsd:int"/>
                             <element name="lifeEquity" type="xsd:double"/>
                             <element name="compensationInvestmentCourse" type="xsd:int"/>
                             <element name="constStipend" type="xsd:double"/>
                             <element name="reduction" type="xsd:int"/>
                             <element name="manLifeStipend" nillable="true" type="tns1:BudgetSplit"/>
                             <element name="manEquity" nillable="true" type="tns1:BudgetSplit"/>
                             <element name="manConstEquity" nillable="true" type="tns1:BudgetSplit"/>
                             <element name="manStipend" nillable="true" type="tns1:BudgetSplit"/>
                             <element name="lopping" type="xsd:int"/>
                             <element name="constEquity" type="xsd:double"/>
                             <element name="pcntEquity" type="xsd:double"/>
                             <element name="salaryEquity" type="xsd:double"/>
                             <element name="pensionLifeInvestmentCourse" type="xsd:int"/>
                             <element name="lifeInvestmentCourse" type="xsd:int"/>
                             <element name="stipend" type="xsd:double"/>
                             <element name="equity" type="xsd:double"/>
                             <element name="lifeCycleCompensationMigdalorForLife" type="xsd:int"/>
                             <element name="lifeCyclePensionMigdalorForLife" type="xsd:int"/>
                             <element name="lifeCycleCompensationMigdalor" type="xsd:int"/>
                             <element name="pcntExpenseToSaving" type="xsd:double"/>
                             <element name="manLifeEquity" nillable="true" type="tns1:BudgetSplit"/>
                             <element name="paramInsuranceCourse" type="xsd:double"/>
                             <element name="insuranceCourse" type="xsd:int"/>
                             <element name="lifeStipend" type="xsd:double"/>
                             <element name="pensionInvestmentCourse" type="xsd:int"/>
                             <element name="investmentCourse" type="xsd:int"/>
                             <element name="compensationLifeInvestmentCourse" type="xsd:int"/>
                             <element name="manConstStipend" nillable="true" type="tns1:BudgetSplit"/>
                             <element name="lifeCyclePensionMigdalor" type="xsd:int"/>
                        </sequence>
                   </complexType>
                   <complexType name="OptionalBenefit">
                        <sequence>
                             <element name="optionalBenefitID" type="xsd:int"/>
                        </sequence>
                   </complexType>
                   <complexType name="OptionalBenefits">
                        <sequence>
                             <element name="optionalBenefitArr" nillable="true" type="impl:ArrayOf_tns1_OptionalBenefit"/>
                        </sequence>
                   </complexType>
                   <complexType name="Mitria">
                        <sequence>
                             <element name="additionalShalvaAmount" minOccurs="0" type="xsd:double"/>
                             <element name="shalvaAmount" minOccurs="0" type="xsd:double"/>
                             <element name="fundStartDate" minOccurs="0" nillable="true" type="xsd:dateTime"/>
                             <element name="fund" minOccurs="0" type="xsd:int"/>
                             <element name="restPensionAmount" minOccurs="0" type="xsd:double"/>
                             <element name="disabilityPensionAmount" minOccurs="0" type="xsd:double"/>
                             <element name="fundPremium" minOccurs="0" type="xsd:double"/>
                             <element name="salaryEquity" minOccurs="0" type="xsd:double"/>
                             <element name="equityCourse" minOccurs="0" type="xsd:int"/>
                             <element name="pcntEquity" minOccurs="0" type="xsd:double"/>
                        </sequence>
                   </complexType>
                   <complexType name="Product">
                        <sequence>
                             <element name="productCode" minOccurs="0" nillable="true" type="xsd:string"/>
                        </sequence>
                   </complexType>
                   <complexType name="LifeParticipant">
                        <sequence>
                             <element name="commissionPayeeType" minOccurs="0" type="xsd:int"/>
                             <element name="beneficiaryType" minOccurs="0" type="xsd:int"/>
                             <element name="lifeParticipantRoleCode" minOccurs="0" type="xsd:int"/>
                             <element name="lifeParticipantKey" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="lastUpdateDate" nillable="true" minOccurs="0" type="xsd:dateTime"/>
                             <element name="beneficiaryRoleCode" minOccurs="0" type="xsd:int"/>
                             <element name="participationPct" minOccurs="0" type="xsd:double"/>
                             <element name="collectionPct" minOccurs="0" type="xsd:double"/>
                             <element name="deathBenefitAmt" minOccurs="0" type="xsd:double"/>
                             <element name="participantType" minOccurs="0" type="xsd:int"/>
                             <element name="productionPct" minOccurs="0" type="xsd:double"/>
                        </sequence>
                   </complexType>
                   <complexType name="LifeParticipants">
                        <sequence>
                             <element name="lifeParticipantArr" minOccurs="0" nillable="true" type="impl:ArrayOf_tns1_LifeParticipant"/>
                        </sequence>
                   </complexType>
                   <complexType name="Coverage">
                        <sequence>
                             <element name="lifeParticipant" minOccurs="0" nillable="true" type="tns1:LifeParticipant"/>
                             <element name="coverageAction" minOccurs="0" type="xsd:int"/>
                             <element name="riskGroupName" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="coverageName" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="paymentPeriod" minOccurs="0" type="xsd:int"/>
                             <element name="paymentCode" minOccurs="0" type="xsd:double"/>
                             <element name="duration" minOccurs="0" type="xsd:int"/>
                             <element name="msManotCollective" minOccurs="0" type="xsd:double"/>
                             <element name="coverageSignDate" nillable="true" minOccurs="0" type="xsd:dateTime"/>
                             <element name="pcntValue" minOccurs="0" type="xsd:double"/>
                             <element name="policyValue" minOccurs="0" type="xsd:double"/>
                             <element name="release" minOccurs="0" type="xsd:int"/>
                             <element name="numSalaries" minOccurs="0" type="xsd:double"/>
                             <element name="coverageKey" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="mandatoryIndicator" minOccurs="0" type="xsd:int"/>
                             <element name="mix" minOccurs="0" type="xsd:double"/>
                        </sequence>
                   </complexType>
                   <complexType name="Life">
                        <sequence>
                             <element name="coverageArr" minOccurs="0" nillable="true" type="impl:ArrayOf_tns1_Coverage"/>
                        </sequence>
                   </complexType>
                   <complexType name="Pension">
                        <sequence>
                             <element name="transferFromAnotherFund" minOccurs="0" nillable="true" type="xsd:string"/>
                             <element name="mainCover" minOccurs="0" type="xsd:int"/>
                             <element name="riskDeduce" minOccurs="0" type="xsd:int"/>
                             <element name="pcntPension" minOccurs="0" type="xsd:double"/>
                             <element name="finalPaymentAge" minOccurs="0" type="xsd:double"/>
                             <element name="solitudeDeclarDate" nillable="true" minOccurs="0" type="xsd:dateTime"/>
                             <element name="insuranceCourse" minOccurs="0" type="xsd:int"/>
                             <element name="retAge" minOccurs="0" type="xsd:int"/>
                             <element name="orgFund" minOccurs="0" type="xsd:int"/>
                             <element name="pcntDisability" minOccurs="0" type="xsd:double"/>
                             <element name="pcntRest" minOccurs="0" type="xsd:double"/>
                             <element name="solitudeStatus" minOccurs="0" type="xsd:int"/>
                             <element name="qualificationPeriod" minOccurs="0" type="xsd:int"/>
                             <element name="pensionAge" minOccurs="0" type="xsd:int"/>
                        </sequence>
                   </complexType>
                   <complexType name="Risk">
                        <sequence>
                             <element name="loanType" minOccurs="0" type="xsd:int"/>
                             <element name="interestCode" minOccurs="0" type="xsd:int"/>
                             <element name="loanNumber" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="premiumCode" minOccurs="0" type="xsd:int"/>
                             <element name="pcntInterest" minOccurs="0" type="xsd:double"/>
                        </sequence>
                   </complexType>
                   <complexType name="Policy">
                        <sequence>
                             <element name="carrierCode" minOccurs="0" nillable="true" type="xsd:string"/>
                             <element name="pcntPensionEmployee" minOccurs="0" type="xsd:double"/>
                             <element name="printPolicyIndicator" minOccurs="0" type="xsd:int"/>
                             <element name="policycarrierPartyID" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="replacingForm" minOccurs="0" type="xsd:int"/>
                             <element name="proposalDate" nillable="true" minOccurs="0" type="xsd:dateTime"/>
                             <element name="linkingMode" minOccurs="0" type="xsd:int"/>
                             <element name="polNumber" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="acctHolderName" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="compensationAgreement" minOccurs="0" type="xsd:int"/>
                             <element name="numSalaries" minOccurs="0" type="xsd:double"/>
                             <element name="riskDeduce" minOccurs="0" type="xsd:int"/>
                             <element name="organizationKey" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="creditCardType" minOccurs="0" type="xsd:int"/>
                             <element name="externalPolNumerator" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="agreementID" minOccurs="0" type="xsd:int"/>
                             <element name="compensationInvestmentAuthority" minOccurs="0" type="xsd:int"/>
                             <element name="kolRega" nillable="true" minOccurs="0" type="tns1:KolRega"/>
                             <element name="contIndicator" minOccurs="0" type="xsd:int"/>
                             <element name="bankBranchName" nillable="true" minOccurs="0" type="xsd:string"/>
                             <element name="creditCardExpDate" nillable="true" minOccurs="0" type="xsd:dateTime"/>
                             <element name="salary" minOccurs="0" type="xsd:double"/>
                             <element name="policyValue" minOccurs="0" type="xsd:double"/>

    any suggestions?
    Thanks
    Kfir

  • Global element declaration/definition of name: Duplicate name spaces

    Hi,
    I have two wsdls provided by a target systems. Both the wsdls are using same name space and few elements descriptions are different.
    Obvisouly i am getting the Global element declaration/definition of name error.
    I have to use the two wsdl with in the same bpel process and invoke them one after the other. My target system is not ready to make changes in thier wsdl to change name space as the product is generating these wsdls for them. All i have to do is in BPEL process only.
    Is there any idea how can we resolve the namespace issue to continue using these wsdl in the same bpel process.
    Only alternative i am seeing is, to have two bpel subprocess for each service and call these bpel processes from my parent bpel process.
    Thanks

    the cause of this error that you have different definition of the same element , so what you need to make sure that the element with the same name have the same definition on those wsdls.

Maybe you are looking for