Jaxb xsd:any problem

I am not sure how to set the namespace (please see schema snippet below). Do I do this with setAny(java.lang.Object)? What kind of object do I pass to setAny() because it is trying to class cast it to JAXBObject. How do I create an instance of JAXBObject?
I have in my xsd:
<xsd:element name="order">
          <xsd:complexType>
               <xsd:sequence>
                    <xsd:any namespace="urn:abc.com" minOccurs="0" maxOccurs="1"/>
                    <xsd:element ref="a"/>
                    <xsd:element ref="b"/>
               </xsd:sequence>
               <xsd:attribute name="locale" type="xsd:string" use="optional"/>
               <xsd:attribute name="sourceid" type="xsd:string" use="optional"/>
          </xsd:complexType>
     </xsd:element>

Refer to section
E.2 Not Required XML Schema
concepts
"A JAXB implementation is not required to support the following XML Schema
concepts for this version of the specification. A JAXB implementation may
choose to support these features in an implementation dependent manner."
E.2.2 Not supported while manipulating the XML
content
Schema component: wildcard
(any)
how can i know if an xml element with xsi:nil="true" (unmarshal)
and set xsi:nil="true" for an element (marshal) ?
According to the JAXB 1.0 specification:
If {nillable} is "true", the methods setNil() and isNil() are
generated.

Similar Messages

  • Jaxb xs:any problem

    I have the following xsd.
    <xs:element name="test" type="test"/>
    <xs:complexType name="test">
    <xs:all>
    <xs:element name="Error" type="xo_000EMError"/>
    </xs:all>
    </xs:complexType>
    <xs:complexType name="xo_000EMError">
    <xs:all>
    <xs:element name="Descriptions" type="xo_000EMErrorDescriptions" minOccurs="0"/>
    </xs:all>
    </xs:complexType>
    <xs:complexType name="xo_000EMErrorDescriptions">
    <xs:sequence>
         <xs:element name="Reason" maxOccurs="unbounded">
    <xs:complexType>
    <xs:complexContent>
    <xs:extension base="xo_000EMAny">
    <xs:attribute name="LNG" type="languageCode" use="required"/>
    </xs:extension>
    </xs:complexContent>
    </xs:complexType>
    </xs:element>
    </xs:sequence>
    </xs:complexType>
    <xs:complexType name="xo_000EMAny" mixed="true">
    <xs:complexContent mixed="true">
    <xs:restriction base="xs:anyType">
    <xs:sequence>
    <xs:any processContents="skip" minOccurs="0" maxOccurs="unbounded"/>
    </xs:sequence>
    </xs:restriction>
    </xs:complexContent>
    </xs:complexType>
    I use JAXB 1.0.6 (no choice on the version) to generate my sources. I tried the following with extension=false and extension=true to avoid the "skip"-warnings.
    No matter which extension-parameter is used, when I read a valid xml-document I see that everything that is placed in the any block
    <Reason LNG="3"><test>a test</test></Reason>
    is replaced with an empty string.
    Is there a possibility to obtain the content of the reason-tag? Do I have to generate it differently? Do I have to use binding?
    Any help is welcome, thank you

    Here is a schema fragment:
                                  <xsd:element name="AK-Unemployment" type="xsd:anyType" minOccurs="0">
                                       <xsd:annotation>
                                            <xsd:documentation>The presence of this element indicates that Alaska Unemployment tax should be calculated</xsd:documentation>
                                       </xsd:annotation>
                                  </xsd:element>
    Then in your code you could do something like this (Note I am using the final release of JAXB):
              AnyType anyType = objFactory.createAnyType();
    localTypes.setAKUnemployment(anyType);
    This will result in an empty element:
    <AKUnemployment></AKUnemployment>

  • JAXB,xsd,xml problems

    Hello all!
    I am using JAXB to create xsd files and xml(by marshalling) from my Java beans.
    My problems is a bit complicated to explain so I'll do my best.
    My beans look like this:
    @XmlRootElement(name = "MerchantDetailsRequest")
    @XmlType(name = "MerchantDetailsRequest")
    public class MerchantDetailsRequest {
        private String merchantName;
        private Long merchantNumber;
        private Long merchantIdentifier;
        private Long status;
        private Long citySymbol;
        @XmlElement(required = false)
        public String getMerchantName() {
            return merchantName;
    // More getters and setters, equals & hashcode
    }The xsd schema I create looks like this:
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <xs:schema version="1.0" xmlns:xs="http://www.w3.org/2001/XMLSchema">
      <xs:element name="MerchantDetailsRequest" type="MerchantDetailsRequest"/>
      <xs:element name="MerchantDetailsResponse" type="MerchantDetailsResponse"/>
      <xs:complexType name="MerchantDetailsRequest">
        <xs:sequence>
          <xs:element name="citySymbol" type="xs:long" minOccurs="0"/>
          <xs:element name="merchantIdentifier" type="xs:long" minOccurs="0"/>
          <xs:element name="merchantName" type="xs:string" minOccurs="0"/>
          <xs:element name="merchantNumber" type="xs:long" minOccurs="0"/>
        </xs:sequence>
      </xs:complexType>
      <xs:complexType name="MerchantDetailsResponse">
        <xs:sequence>
          <xs:element name="address" type="xs:string"/>
          <xs:element name="openDate" type="xs:dateTime"/>
        </xs:sequence>
      </xs:complexType>
    </xs:schema>Pay attention to the:
    <xs:element name="MerchantDetailsResponse" type="MerchantDetailsResponse"/>appearing twice(once for each element), these are required by our 3rd party(some other guys).
    The xml that is created by marshalling looks like this:
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <MerchantDetailsRequest>
        <citySymbol>4</citySymbol>
        <merchantIdentifier>9090</merchantIdentifier>
        <merchantName>Marco Van Basten</merchantName>
        <merchantNumber>9</merchantNumber>
    </MerchantDetailsRequest>
    Now, here comes the problem:
    I got a request (from the 3rd party guys) to add a namespace to the XML file.
    So I found out, that if I add the 'namespace="<some namespace>" ' attribute to my XmlRootElement annotation (e.g- @XmlRootElement(name = "MerchantDetailsRequest",namespace = "http://www.myaddress.com/myPath/merchant-details")
    ), then I get the wanted xml:
    <ns2:MerchantDetailsRequest xmlns:ns2="http://www.isracard.co.il/cheques/merchant-details">
        <citySymbol>4</citySymbol>
        <merchantIdentifier>9090</merchantIdentifier>
        <merchantName>Marco Van Basten</merchantName>
        <merchantNumber>9</merchantNumber>
    </ns2:MerchantDetailsRequest>
    BUT, my xsd is now missing the 'element' required fields I discussed earlier. (instead they appear in another xsd file, only the element def)
    SO, I read somewhere, that if I create a package-info.java file, with the annotations:
    @XmlSchema(namespace="http://www.mySite.com/myPath/MerchantDetailsRequest",elementFormDefault= XmlNsForm.UNQUALIFIED)
    that it will take care of this. but instead, when compiling, I get noxsd file at all!!!
    I need a simple solution to a simple problem... adding a namespace to my outgoing xml files without changing the sxd's.
    If ayone can help, it will be much appreciated!!
    Thanks,
    Dave
    Message was edited by:
    Just_Dave

    I'm sorry!! but after talking with the 3rd party guys, I understood, that everythingis ok!
    What I asked here is not a problem at all.
    I have another problem(simple this time...) but it will get a thread of it's oun.

  • JAXB compiler problem in handling xsd:any and nillble = "true"

    Dear all,
    i am using jdeveloper 10.1.3.1 production release version.
    i am designing a xml schema that contain element of attribute nillable="true", for extensible, contain tag <xsd:any>.
    but i encounter 2 problem:
    1. for xml schema element with attribute nillable="true", no corresponding isNil(), setNil
    method is generated (refer to jaxb 1.0 spec. 5.7.1)
    2. cannot handle tag <xs:any> that generate incorrect java source code (cannot compile) [refer to jaxb 1.0 spec 5.9.5)
    *** i have add jaxb customization tag inside the <xs:any> tag
    ***   <xs:annotation><xs:appinfo>
    ***               <jaxb:property name="Extension"/>
    ***</xs:appinfo></xs:annotation>
    Does oracle's JAXB implementation conform to the JAXB 1.0 spec?
    Is it a known bug?
    Could anybody help me?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Refer to section
    E.2 Not Required XML Schema
    concepts
    "A JAXB implementation is not required to support the following XML Schema
    concepts for this version of the specification. A JAXB implementation may
    choose to support these features in an implementation dependent manner."
    E.2.2 Not supported while manipulating the XML
    content
    Schema component: wildcard
    (any)
    how can i know if an xml element with xsi:nil="true" (unmarshal)
    and set xsi:nil="true" for an element (marshal) ?
    According to the JAXB 1.0 specification:
    If {nillable} is "true", the methods setNil() and isNil() are
    generated.

  • XSD Syndication Problem..

    Hi All,
    I want to transfer data from mdm through syndicator.
    I created the follwing xsd file in xi.(message mapping)
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http:
    mycompany.com\mdm" targetNamespace="http:
    mycompany.com\mdm">
                <xsd:element name="MT_Customer" type="DT_Customer" />
                <xsd:complexType name="DT_Customer">
                            <xsd:annotation>
                                        <xsd:appinfo source="http://sap.com/xi/TextID">
                                        495dde70551e11db9e560011433286d8
                                        </xsd:appinfo>
                            </xsd:annotation>
                            <xsd:sequence>
                                        <xsd:element name="Customer_Data">
                                                    <xsd:annotation>
                                                                <xsd:appinfo source="http://sap.com/xi/TextID">
                                                                13886a30550b11dbcb99cf9a0abc902e
                                                                </xsd:appinfo>
                                                    </xsd:annotation>
                                                    <xsd:complexType>
                                                                <xsd:sequence>
                                                                            <xsd:element name="Customer" type="xsd:string">
                                                                                    <xsd:annotation>
                                                                                    <xsd:appinfo source="http://sap.com/xi/TextID">
                                                                                    13886a31550b11dba3f2cf9a0abc902e
                                                                                    </xsd:appinfo>
                                                                                    </xsd:annotation>
                                                                            </xsd:element>
                                                                            <xsd:element name="Title" type="xsd:string">
                                                                                    <xsd:annotation>
                                                                                    <xsd:appinfo source="http://sap.com/xi/TextID">
                                                                                    13886a32550b11dbcc76cf9a0abc902e
                                                                                    </xsd:appinfo>
                                                                                    </xsd:annotation>
                                                                            </xsd:element>
                                                                            <xsd:element name="Name1" type="xsd:string">
                                                                                    <xsd:annotation>
                                                                                    <xsd:appinfo source="http://sap.com/xi/TextID">
                                                                                    13886a33550b11db9c96cf9a0abc902e
                                                                                    </xsd:appinfo>
                                                                                    </xsd:annotation>
                                                                            </xsd:element>
                                                                            <xsd:element name="Name2" type="xsd:string">
                                                                                    <xsd:annotation>
                                                                                    <xsd:appinfo source="http://sap.com/xi/TextID">
                                                                                    13886a34550b11dbbbc7cf9a0abc902e
                                                                                    </xsd:appinfo>
                                                                                    </xsd:annotation>
                                                                            </xsd:element>
                                                                            <xsd:element name="Name3" type="xsd:string">
                                                                                    <xsd:annotation>
                                                                                    <xsd:appinfo source="http://sap.com/xi/TextID">
                                                                                    13886a35550b11db8470cf9a0abc902e
                                                                                    </xsd:appinfo>
                                                                                    </xsd:annotation>
                                                                            </xsd:element>
                                                                            <xsd:element name="Name4" type="xsd:string">
                                                                                    <xsd:annotation>
                                                                                    <xsd:appinfo source="http://sap.com/xi/TextID">
                                                                                    13886a36550b11dbb3bfcf9a0abc902e
                                                                                    </xsd:appinfo>
                                                                                    </xsd:annotation>
                                                                            </xsd:element>
                                                                            <xsd:element name="Searchterm1" type="xsd:string">
                                                                                    <xsd:annotation>
                                                                                    <xsd:appinfo source="http://sap.com/xi/TextID">
                                                                                    13886a37550b11dbae35cf9a0abc902e
                                                                                    </xsd:appinfo>
                                                                                    </xsd:annotation>
                                                                            </xsd:element>
                                                                            <xsd:element name="Searchterm2" type="xsd:string">
                                                                                    <xsd:annotation>
                                                                                    <xsd:appinfo source="http://sap.com/xi/TextID">
                                                                                    13886a38550b11dbb7c9cf9a0abc902e
                                                                                    </xsd:appinfo>
                                                                                    </xsd:annotation>
                                                                            </xsd:element>
                                                                            <xsd:element name="City_Post_Code" type="xsd:string">
                                                                                    <xsd:annotation>
                                                                                    <xsd:appinfo source="http://sap.com/xi/TextID">
                                                                                    13886a39550b11dba621cf9a0abc902e
                                                                                    </xsd:appinfo>
                                                                                    </xsd:annotation>
                                                                            </xsd:element>
                                                                            <xsd:element name="City" type="xsd:string">
                                                                                    <xsd:annotation>
                                                                                    <xsd:appinfo source="http://sap.com/xi/TextID">
                                                                                    13886a3a550b11db9287cf9a0abc902e
                                                                                    </xsd:appinfo>
                                                                                    </xsd:annotation>
                                                                            </xsd:element>
                                                                            <xsd:element name="Country" type="xsd:string">
                                                                                    <xsd:annotation>
                                                                                    <xsd:appinfo source="http://sap.com/xi/TextID">
                                                                                    13886a3b550b11dbb137cf9a0abc902e
                                                                                    </xsd:appinfo>
                                                                                    </xsd:annotation>
                                                                            </xsd:element>
                                                                            <xsd:element name="Region" type="xsd:string">
                                                                                    <xsd:annotation>
                                                                                    <xsd:appinfo source="http://sap.com/xi/TextID">
                                                                                    13886a3c550b11dbcc68cf9a0abc902e
                                                                                    </xsd:appinfo>
                                                                                    </xsd:annotation>
                                                                            </xsd:element>
                                                                            <xsd:element name="Noof_Employees" type="xsd:string">
                                                                                    <xsd:annotation>
                                                                                    <xsd:appinfo source="http://sap.com/xi/TextID">
                                                                                    13886a3d550b11db8a29cf9a0abc902e
                                                                                    </xsd:appinfo>
                                                                                    </xsd:annotation>
                                                                            </xsd:element>
                                                                            <xsd:element name="Annual_Sales" type="xsd:string">
                                                                                    <xsd:annotation>
                                                                                    <xsd:appinfo source="http://sap.com/xi/TextID">
                                                                                    13886a3e550b11dbbe2bcf9a0abc902e
                                                                                    </xsd:appinfo>
                                                                                    </xsd:annotation>
                                                                            </xsd:element>
                                                                            <xsd:element name="Currency_Of_Sales" type="xsd:string">
                                                                                    <xsd:annotation>
                                                                                    <xsd:appinfo source="http://sap.com/xi/TextID">
                                                                                    13886a3f550b11dbb901cf9a0abc902e
                                                                                    </xsd:appinfo>
                                                                                    </xsd:annotation>
                                                                            </xsd:element>
                                                                            <xsd:element name="Pobox" type="xsd:string">
                                                                                    <xsd:annotation>
                                                                                    <xsd:appinfo source="http://sap.com/xi/TextID">
                                                                                    13886a40550b11db97aecf9a0abc902e
                                                                                    </xsd:appinfo>
                                                                                    </xsd:annotation>
                                                                            </xsd:element>
                                                                            <xsd:element name="Language" type="xsd:string">
                                                                                    <xsd:annotation>
                                                                                    <xsd:appinfo source="http://sap.com/xi/TextID">
                                                                                    13886a41550b11dba4becf9a0abc902e
                                                                                    </xsd:appinfo>
                                                                                    </xsd:annotation>
                                                                            </xsd:element>
                                                                            <xsd:element name="Salesdata" type="xsd:string">
                                                                                    <xsd:annotation>
                                                                                    <xsd:appinfo source="http://sap.com/xi/TextID">
                                                                                    13886a42550b11dbae61cf9a0abc902e
                                                                                    </xsd:appinfo>
                                                                                    </xsd:annotation>
                                                                            </xsd:element>
                                                                            <xsd:element name="Bank_Details" type="xsd:string">
                                                                                    <xsd:annotation>
                                                                                    <xsd:appinfo source="http://sap.com/xi/TextID">
                                                                                    1f101890551e11dbc760cf9a0abc902e
                                                                                    </xsd:appinfo>
                                                                                    </xsd:annotation>
                                                                            </xsd:element>
                                                                </xsd:sequence>
                                                    </xsd:complexType>
                                        </xsd:element>
                            </xsd:sequence>
                </xsd:complexType>
    </xsd:schema>
    And add xml shema entry in mdm console for the above schema.
    When I try to set destination properties in syndicator...
    I selected XMLSchema as type,client system,schema name. but,I am not able to select any <b>root</b> for it and I am not able to go proceed in syndication.
    Is there any problem in the above xsd file ?
    Please help me.

    Hello Rama:
    It happends because on your XSD you didn't define a data root tag:
    <b><xsd:element name="dataroot">
    </b>
    I here paste an example of this. Please note how Office Access wrapped it all on the dataroot tag:
    <?xml version="1.0" encoding="UTF-8"?>
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:od="urn:schemas-microsoft-com:officedata">
    <xsd:element name="dataroot">
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element ref="SP1PERS" minOccurs="0" maxOccurs="unbounded"/>
    </xsd:sequence>
    <xsd:attribute name="generated" type="xsd:dateTime"/>
    </xsd:complexType>
    </xsd:element>
    <xsd:element name="SP1PERS">
    <xsd:annotation>
    <xsd:appinfo>
    <od:index index-name="PrimaryKey" index-key="SPBPERS_PIDM " primary="yes" unique="yes" clustered="no"/>
    <od:index index-name="STVNATN_CODE" index-key="STVNATN_CODE " primary="no" unique="no" clustered="no"/>
    </xsd:appinfo>
    </xsd:annotation>
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element name="SPBPERS_PIDM" minOccurs="0" od:jetType="text" od:sqlSType="nvarchar">
    <xsd:simpleType>
    <xsd:restriction base="xsd:string">
    <xsd:maxLength value="255"/>
    </xsd:restriction>
    </xsd:simpleType>
    </xsd:element>
    <xsd:element name="SP1PERS_HEIGHT_x0020_" minOccurs="0" od:jetType="text" od:sqlSType="nvarchar">
    <xsd:simpleType>
    <xsd:restriction base="xsd:string">
    <xsd:maxLength value="255"/>
    </xsd:restriction>
    </xsd:simpleType>
    </xsd:element>
    <xsd:element name="SP1PERS_FECHA_MATRIMONIO" minOccurs="0" od:jetType="text" od:sqlSType="nvarchar">
    <xsd:simpleType>
    <xsd:restriction base="xsd:string">
    <xsd:maxLength value="255"/>
    </xsd:restriction>
    </xsd:simpleType>
    </xsd:element>
    <xsd:element name="ST4TTRA_TITULO_TRATO" minOccurs="0" od:jetType="text" od:sqlSType="nvarchar">
    <xsd:simpleType>
    <xsd:restriction base="xsd:string">
    <xsd:maxLength value="255"/>
    </xsd:restriction>
    </xsd:simpleType>
    </xsd:element>
    <xsd:element name="STVNATN_CODE" minOccurs="0" od:jetType="text" od:sqlSType="nvarchar">
    <xsd:simpleType>
    <xsd:restriction base="xsd:string">
    <xsd:maxLength value="255"/>
    </xsd:restriction>
    </xsd:simpleType>
    </xsd:element>
    <xsd:element name="GTVZIPC_CODE_LUGAR_NACIMIENTO" minOccurs="0" od:jetType="text" od:sqlSType="nvarchar">
    <xsd:simpleType>
    <xsd:restriction base="xsd:string">
    <xsd:maxLength value="255"/>
    </xsd:restriction>
    </xsd:simpleType>
    </xsd:element>
    <xsd:element name="GTVZIPC_CODE_LUGAR_PROCEDENCIA" minOccurs="0" od:jetType="text" od:sqlSType="nvarchar">
    <xsd:simpleType>
    <xsd:restriction base="xsd:string">
    <xsd:maxLength value="255"/>
    </xsd:restriction>
    </xsd:simpleType>
    </xsd:element>
    <xsd:element name="SP1PERS_CURP" minOccurs="0" od:jetType="text" od:sqlSType="nvarchar">
    <xsd:simpleType>
    <xsd:restriction base="xsd:string">
    <xsd:maxLength value="255"/>
    </xsd:restriction>
    </xsd:simpleType>
    </xsd:element>
    <xsd:element name="SP1PERS_ACTIVITY_DATE" minOccurs="0" od:jetType="text" od:sqlSType="nvarchar">
    <xsd:simpleType>
    <xsd:restriction base="xsd:string">
    <xsd:maxLength value="255"/>
    </xsd:restriction>
    </xsd:simpleType>
    </xsd:element>
    <xsd:element name="SP1PERS_USER_x0020_" minOccurs="0" od:jetType="text" od:sqlSType="nvarchar">
    <xsd:simpleType>
    <xsd:restriction base="xsd:string">
    <xsd:maxLength value="255"/>
    </xsd:restriction>
    </xsd:simpleType>
    </xsd:element>
    <xsd:element name="Field11" minOccurs="0" od:jetType="text" od:sqlSType="nvarchar">
    <xsd:simpleType>
    <xsd:restriction base="xsd:string">
    <xsd:maxLength value="255"/>
    </xsd:restriction>
    </xsd:simpleType>
    </xsd:element>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    </xsd:schema>
    I hope that helps
    Regards
    Alejandro

  • XSD Location Problem.

    Hi Gurus,
    After starting the node in a cluster environemnt, often receiving "Unable to load Translation schemas from for http://xmlns.oracle.com/BRM/schemas/BusinessOpcodes due to: XSD Location problem.
    XSD Loading problem."
    This is mainly observed in BRM schemas, has anyone exprienced this? what shall be the workaround/solution other than restarting the container/application?
    We are using SOA 10.1.3.4 MLR 8 and Oracle AIA 2.4.
    Please help.

    The BRM schemas are present in the AIA Components which will be referred by the load balancer url in a clustered environment. However, if in any of the nodes, the url for AIA Components has the local node url instead of load balancer url, this issue occurs.
    Identify the node which is giving the issue (shutting down one node at a time and retrying the operation which gives the error). In the node which has the issue, try doing a search on AIA components to find out if there is any reference using local node url instead of load balancer.
    If you find any, replace with the load balancer url. I had faced a similar issue and I was able to resolve it as I have mentioned above.
    Cheers,
    - AR

  • XSD Loading problem

    I got this error from bpel console .. Can any one please update on this.. Why this this error should occur?.
    <messages><input><InvokePlanningOrderRoadshowProducerInputVariable><part name="PlanningOrderRequest" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><PlanningOrderRequest xmlns:ns0="http://xmlns.hdnl.com/EnterpriseObject/Core/PlanningOrder" xmlns="http://xmlns.hdnl.com/EnterpriseObject/Core/PlanningOrder">
    <ns0:PlanningOrderHeader>
    <ns0:OrderId>10215568</ns0:OrderId>
    <ns0:BookingId/>
    <ns0:OrderType>Standard</ns0:OrderType>
    <ns0:CustomerName>MRS JUNE OCKWELL</ns0:CustomerName>
    <ns0:ClientAccountId>EMP</ns0:ClientAccountId>
    <ns0:ClientPreAdviceNumber/>
    <ns0:Title/>
    <ns0:ClientOrderNumber>W3221000-36</ns0:ClientOrderNumber>
    <ns0:Latitude>53.526969</ns0:Latitude>
    <ns0:Longitude>-2.657221</ns0:Longitude>
    <ns0:Street/>
    <ns0:HouseNumber>8 Bentinck Street</ns0:HouseNumber>
    <ns0:Postcode>WN3 6RB</ns0:Postcode>
    <ns0:Town>WIGAN</ns0:Town>
    <ns0:Status/>
    <ns0:PhoneCallRequired>Y</ns0:PhoneCallRequired>
    <ns0:Phone1>01942202596</ns0:Phone1>
    <ns0:Phone2>07584651731</ns0:Phone2>
    <ns0:SlotPeriodStart/>
    <ns0:SlotPeriodEnd/>
    <ns0:SlotLength/>
    <ns0:StopDuration/>
    <ns0:PlanningOrderLines>
    <ns0:PlanningOrderLine>
    <ns0:OrderLineId>443405</ns0:OrderLineId>
    <ns0:OrderId>10215568</ns0:OrderId>
    <ns0:ItemNumber>EMP-TC750</ns0:ItemNumber>
    <ns0:ItemDescription>RICHMOND KING BED</ns0:ItemDescription>
    <ns0:NoOfPieces>03</ns0:NoOfPieces>
    <ns0:ServiceString>01000</ns0:ServiceString>
    <ns0:ShipsetId>01</ns0:ShipsetId>
    <ns0:ClientUPI>009707300553D094</ns0:ClientUPI>
    <ns0:OrderLineType>Delivery</ns0:OrderLineType>
    <ns0:OrderLineNumber>01</ns0:OrderLineNumber>
    <ns0:SpecialInstruction>IF NOT IN GO TO NUMBER 6 FOR KEY</ns0:SpecialInstruction>
    <ns0:DeliveryVolume/>
    <ns0:DeliveryWeight/>
    <ns0:CollectionWeight/>
    <ns0:CollectionVolume/>
    <ns0:Status>LOADED</ns0:Status>
    </ns0:PlanningOrderLine>
    </ns0:PlanningOrderLines>
    </ns0:PlanningOrderHeader>
    </PlanningOrderRequest>
    </part></InvokePlanningOrderRoadshowProducerInputVariable></input><fault><bindingFault xmlns="http://schemas.oracle.com/bpel/extension"><part name="summary"><summary>file:/SOA2M01/app/oracle/product/10.1.3/bpel/domains/operations/tmp/.bpel_PlanningOrder_1.0_06bcbd311b9a0d44d808edcbcee42770.tmp/PlanningOrderRoadShowProducer.wsdl [ Produce_Message_ptt::Produce_Message(PlanningOrderRequest) ] - WSIF JCA Execute of operation 'Produce_Message' failed due to: Could not instantiate InteractionSpec oracle.tip.adapter.jms.outbound.JmsProduceInteractionSpec due to: XSD Loading problem.
    Unable to load Translation schemas from for http://xmlns.hdnl.com/EnterpriseObject/Core/PlanningOrder due to: XSD Location problem.
    No XSD (XML Schema) found for target namespace http://xmlns.hdnl.com/EnterpriseObject/Core/PlanningOrder and input element PlanningOrderRequest
    Please make sure the WSDL message points to a valid type.
    Please make sure all used XML schemas are imported/included correctly.
    ; nested exception is:
    ORABPEL-12537
    XSD Loading problem.
    Unable to load Translation schemas from for http://xmlns.hdnl.com/EnterpriseObject/Core/PlanningOrder due to: XSD Location problem.
    No XSD (XML Schema) found for target namespace http://xmlns.hdnl.com/EnterpriseObject/Core/PlanningOrder and input element PlanningOrderRequest
    Please make sure the WSDL message points to a valid type.
    Please make sure all used XML schemas are imported/included correctly.
    ; nested exception is:
    org.collaxa.thirdparty.apache.wsif.WSIFException: Could not instantiate InteractionSpec oracle.tip.adapter.jms.outbound.JmsProduceInteractionSpec due to: XSD Loading problem.
    Unable to load Translation schemas from for http://xmlns.hdnl.com/EnterpriseObject/Core/PlanningOrder due to: XSD Location problem.
    No XSD (XML Schema) found for target namespace http://xmlns.hdnl.com/EnterpriseObject/Core/PlanningOrder and input element PlanningOrderRequest
    Please make sure the WSDL message points to a valid type.
    Please make sure all used XML schemas are imported/included correctly.
    ; nested exception is:
    ORABPEL-12537
    XSD Loading problem.
    Unable to load Translation schemas from for http://xmlns.hdnl.com/EnterpriseObject/Core/PlanningOrder due to: XSD Location problem.
    No XSD (XML Schema) found for target namespace http://xmlns.hdnl.com/EnterpriseObject/Core/PlanningOrder and input element PlanningOrderRequest
    Please make sure the WSDL message points to a valid type.
    Please make sure all used XML schemas are imported/included correctly.
    </summary>
    </part><part name="detail"><detail>org.collaxa.thirdparty.apache.wsif.WSIFException: Could not instantiate InteractionSpec oracle.tip.adapter.jms.outbound.JmsProduceInteractionSpec due to: XSD Loading problem.
    Unable to load Translation schemas from for http://xmlns.hdnl.com/EnterpriseObject/Core/PlanningOrder due to: XSD Location problem.
    No XSD (XML Schema) found for target namespace http://xmlns.hdnl.com/EnterpriseObject/Core/PlanningOrder and input element PlanningOrderRequest
    Please make sure the WSDL message points to a valid type.
    Please make sure all used XML schemas are imported/included correctly.
    ; nested exception is:
    ORABPEL-12537
    XSD Loading problem.
    Unable to load Translation schemas from for http://xmlns.hdnl.com/EnterpriseObject/Core/PlanningOrder due to: XSD Location problem.
    No XSD (XML Schema) found for target namespace http://xmlns.hdnl.com/EnterpriseObject/Core/PlanningOrder and input element PlanningOrderRequest
    Please make sure the WSDL message points to a valid type.
    Please make sure all used XML schemas are imported/included correctly.
    </detail>
    </part></bindingFault></fault></messages>

    You remove xmlns:ns0 attribute from PlanningOrderRequest and the prefix ns0: from xsd tags. When you declare xmlns:ns0 means it is looking for that ns0 namespace in the project directory or oracle server global directory.

  • Attemp to build loosely coupled WS using xsd:any & xsd:anyType?

    Dear All,
    i want to write a loosely coupled web service that allow
    the server to evolve independently to the client. (main
    purpose is to extend the service by adding more properties
    in the request / response message)
    i want to achieve the loosely coupled goal by adding
    xsd:any or xsd:anyType to the request / response messages
    (i.e. wsdl ComplexType). (just follow the normal XML
    guideline).
    i have try to write simple program with xsd:any (which
    mapped to SOAPElement in JAX-RPC). And the result seems
    good and can achieve my goal. ( i can consume the service
    in java and .net without problem).
    but later, i read some article, in the web, (like this: http://www.ibm.com/developerworks/xml/library/ws-tip-xsdcaution.html)
    that clams it is better to use xsd:anyType instead of
    xsd:any (as anyType is mapped to SOAPElement or java
    object if server/client can deserialize it).
    as far as i know, the support of xsd:anyType is not standardized / madatory.
    could anyone tell me your comment about using xsd:anyType or xsd:any?
    how about the support of xsd:anyType across different platform / tools?
    xsd:anyAttribute seems not supported by jax-rpc, could you please comment on using this element in the wsdl? good or bad?
    oracle will map this element to an oracle proprietary java object.
    am i choosing the right way to achieve loosely-coupled WS? any other way?
    some article claims to send request as xml doc. but it
    seems that is not very convenient to server and client as
    both sides need to write code for serialization /
    deserialization.
    why not use the existing automatic XML <--> java object provided by the jax-rpc standard?
    Thank you very much
    Message was edited by:
    lsp

    Hello,
    Is your question related to very specific element of your message or for the complete message.
    Using any/anyType even if powerful could be sometimes complex for Web Service Client developer to handle since the Java object (SOAPElement or Object) is not typed so doing late binding of schema force people to do the mapping themself any.
    So before choosing this in a wide scope on your project think also to its impact for end user/developers, and I think you are on the good path, as you said anyType will recognize the object.
    I am inviting you to also look at the Oracle Web Services Interoperability documentation.
    and this article from SUN: Interoperability With Patterns and Strategies for Document-Based Web Services
    Regards
    Tugdual Grall

  • MacBook Pro does not boot when 'cold', Windows 7 on the other hand boots without any problem

    Hey everyone,
    I have a strange problem with my MacBook Pro mid 2009 13" running OSX Mavericks. For more than a year I have trouble booting my laptop. A 'cold' start (a fresh boot) usually ends with the prohibition sign on a grey back ground (starting in verbose mode results in the error message that the main drive could not be found). So far so strange.
    I have Windnows 7 installed as a bootcamp partition. If I start the laptop with Windows booting is no problem and Windows runs smoothly (what a terrible world we live in). If I let the laptop run for let say 10 minutes and restart the laptop Mac OS starts without any problems. (It doesn't work if I immediately restart after windows booted; also reinstalling Mac OS as a clean install from an external medium did not change the problem; disk utility always finds something to repair but neither discpermission repair nor disk repair got rid of the problem).
    As an additional comment a WD 500GB Scorbio Blue replaced the original hard drive about a years ago. I had no problems with the hard drive initally and I can't really believe that there is a problem with the hardware, I mean, why does Windows start and Mac OS doesn't?
    Thanks for your time and help!
    Marco

    This isn't a direct answer to your issue but have you considered installing Wine so you can run the occasional windows app directly in OSX? It's a much more elegant solution IMHO. This avoids restarting all the time with Bootcamp and avoids crashing all the time (and the security risks) with Windows running.

  • Hi. I am just about to move from the UK to Kuwait. Will I have any problems using my iPhone 4 and able to join a local carrier using this device please?

    Hi. I am just about to move from the UK to Kuwait. Will I have any problems using my iPhone 4 and able to join a local carrier using this device please?

    If your phone is locked to a particular carrier, you must contact them to request they unlock it. Once they've taken care of that and you've followed the instructions to complete the unlock process, you will be able to use the phone elsewhere.
    ~Lyssa

  • I have owned my MacBook Pro for several months.  Initially, I did not have any problems.  Now I have a problem with Yahoo Mail.  I can open my account, but when I try to get at my mail, 2 out of 3 times I get the spinning ball that never stops.  Now what?

    I have owned my MacBook Pro for several months without having any problems with it. Recently I am having trouble with my Yahoo Mail.  I can open it fine, but 2 out of 3 times when I try to actually open a message, the spinning ball comes on the screen and does not stop. Sometimes, I can log out or force quit and come back in to my account and use it.  Other times, I run into the same problem.  Any suggestions?

    Killerfinch wrote:
    My new yahoo account nestles comfortably in iCloud on the mine iPad.
    No, your Yahoo account is not in iCloud (which only handles iCloud mail), it is in Yahoo, and the Yahoo mail account is on your iPad.
    But the MacBook Pro will have none of it! I write this question now as I fear that I will be totally demented very soon and unable to formulate my thoughts clearly!
    Get the correct settings for your account from Yahoo and set it up manually.
    By the way, I also find the "password" issue problematical. It seems Apple want my Apple password rather than my eMail password. All very confusing.
    That would depend on what you are trying to do.

  • I have bought a Season pass for The Big Bang Theory. I have downloaded alle recent Epiodes without any Problems. But now... i can't download the latest Version for free. Itunes doesn't recognize my Season pass and let's me buy it again. Whats going?

    I have bought a Season pass for The Big Bang Theory. I have downloaded alle recent Epiodes without any Problems. But now... i can't download the latest Version for free. Itunes doesn't recognize my Season pass and let's me buy it again. Whats going? Do I miss something?
    Best regards,
    Michele

    Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • I am trying to connect to my friend's wifi, i have a very strong signal indicated on my ipad, but cannot connect to the internet.  Yesterday i connected without any problem, can anybody tell me why i cannot connect today?

    i am trying to connect to my friend's wifi, i have a very strong signal indicated on my ipad, but cannot connect to the internet.  Yesterday i connected without any problem, can anybody tell me why i cannot connect today?

    Some things to try first:
    1. Turn Off your iPad. Then turn Off (disconnect power cord for 30 seconds or longer) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    2. Go to Settings>Wi-Fi and turn Off. Then while at Settings>Wi-Fi, turn back On and chose a Network.
    3. Change the channel on your wireless router (Auto or Channel 6 is best). Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    4. Go into your router security settings and change from WEP to WPA with AES.
    5.  Renew IP Address: (especially if you are droping internet connection)
        •    Launch Settings app
        •    Tap on Wi-Fi
        •    Tap on the blue arrow of the Wi-Fi network that you connect to from the list
        •    In the window that opens, tap on the Renew Lease button
    6. Potential Quick Fixes When Your iPad Won’t Connect to Your Wifi Network
    http://ipadinsight.com/ipad-tips-tricks/potential-quick-fixes-when-your-ipad-won t-connect-to-your-wifi-network/
    ~~~~~~~~~~~~~~~~~~~~~~~~~
    iOS 6 Wifi Problems/Fixes
    Wi-Fi Fix for iOS 6
    https://discussions.apple.com/thread/4823738?tstart=240
    How To: Workaround iPad Wi-Fi Issues
    http://www.theipadfan.com/workaround-ipad-wifi-issues/
    Another Fix For iOS 6 WiFi Problems
    http://tabletcrunch.com/2012/10/27/fix-ios-6-wifi-problems-ssid/
    Wifi Doesn't Connect After Waking From Sleep - Sometimes increasing screen brightness prevents the failure to reconnect after waking from sleep. According to Apple, “If brightness is at lowest level, increase it by moving the slider to the right and set auto brightness to off.”
    Fix For iOS 6 WiFi Problems?
    http://tabletcrunch.com/2012/09/27/fix-ios-6-wifi-problems/
    Did iOS 6 Screw Your Wi-Fi? Here’s How to Fix It
    http://gizmodo.com/5944761/does-ios-6-have-a-wi+fi-bug
    How To Fix Wi-Fi Connectivity Issue After Upgrading To iOS 6
    http://www.iphonehacks.com/2012/09/fix-wi-fi-connectivity-issue-after-upgrading- to-ios-6.html
    iOS 6 iPad 3 wi-fi "connection fix" for netgear router
    http://www.youtube.com/watch?v=XsWS4ha-dn0
    Apple's iOS 6 Wi-Fi problems
    http://www.zdnet.com/apples-ios-6-wi-fi-problems-linger-on-7000004799/
    ~~~~~~~~~~~~~~~~~~~~~~~
    How to Boost Your Wi-Fi Signal
    http://ipad.about.com/od/iPad_Troubleshooting/a/How-To-Boost-Your-Wi-Fi-Signal.h tm
    Troubleshooting a Weak Wi-Fi Signal
    http://ipad.about.com/od/iPad_Troubleshooting/a/Troubleshooting-A-Weak-Wi-Fi-Sig nal.htm
    How to Fix a Poor Wi-Fi Signal on Your iPad
    http://ipad.about.com/od/iPad_Troubleshooting/a/How-To-Fix-A-Poor-Wi-Fi-Signal-O n-Your-iPad.htm
    iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    WiFi Connecting/Troubleshooting http://www.apple.com/support/ipad/wifi/
    How to Fix: My iPad Won't Connect to WiFi
    http://ipad.about.com/od/iPad_Troubleshooting/ss/How-To-Fix-My-Ipad-Wont-Connect -To-Wi-Fi.htm
    iOS: Connecting to the Internet http://support.apple.com/kb/HT1695
    iOS: Recommended settings for Wi-Fi routers and access points  http://support.apple.com/kb/HT4199
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Connect iPad to Wi-Fi (with troubleshooting info)
    http://thehowto.wikidot.com/wifi-connect-ipad
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxE
    Fix Slow WiFi Issue https://discussions.apple.com/thread/2398063?start=60&tstart=0
    How To Fix iPhone, iPad, iPod Touch Wi-Fi Connectivity Issue http://tinyurl.com/7nvxbmz
    Unable to Connect After iOS Update - saw this solution on another post.
    https://discussions.apple.com/thread/4010130
    Note - When troubleshooting wifi connection problems, don't hold your iPad by hand. There have been a few reports that holding the iPad by hand, seems to attenuate the wifi signal.
    Wi-Fi or Bluetooth settings grayed out or dim
    http://support.apple.com/kb/TS1559
    ~~~~~~~~~~~~~~~
    If any of the above solutions work, please post back what solved your problem. It will help others with the same problem.
     Cheers, Tom

  • Hello everyone: I am going to buy a new ipad in Australia and after that I am going back to China. I am just wondering if I can use it in China without any problem? Do I have to unlock or something like that?

    Hello everyone: I am going to buy a new ipad in Australia and after that I am going back to China. I am just wondering if I can use it in China without any problem? Do I have to unlock or something like that?

    The iPad is not locked. Read the specifications.
    http://www.apple.com/ipad/specs/

  • I am going to buy unlocked iphone 5.. i will be going to india nxt months and will stay there for a while... so my question is will i get warrenty in india.. and will there be any problem with using indian sims..?? thnx for the help..

    i am going to buy unlocked iphone 5.. i will be going to india nxt months and will stay there for a while... so my question is will i get warrenty in india.. and will there be any problem with using indian sims..?? thnx for the help..

    The warranty for the iPhone is not and has never been International.
    Warranty and support are ONLY valid in the country of origin.  The only exception is the EU where the entire EU is treated as one country.
    If the device will be used in India, buy it in India.
    An unlocked iPhone will work on any supported GSM carrier world wide.  The LTE portion of a US purchased, unlocked iPhone is unlikely to work outside North America as it does not support the appropriate bands used in other countries.

Maybe you are looking for