IBM webMethods Hybrid Integration

IBM webMethods Hybrid Integration

Join this online group to communicate across IBM product users and experts by sharing advice and best practices with peers and staying up to date regarding product enhancements.

 View Only
  • 1.  XDR to XSD Schema Conversion

    Posted Fri December 15, 2006 03:30 PM

    Hi,

    I am trying to create a document type using converted XSD schema. This XSD schema is converted from XDR. But I am unable to create a document type. WM throws the following exceptions.

    Error Message : [ISC.0082.9101] Document Type generation error: 60
    Response : Contact webMethods Technical Services

    1. Which is the best tool to convert XDR to XSD ?. (I have tried with multiple tools, But no luck)
    2. I have tried with difference encoding formats. (ANSI, UTF-8…etc)

    Please let me know your ideas,

    Thanks,
    Gnana Gururaj


    #Flow-and-Java-services
    #webMethods
    #Integration-Server-and-ESB


  • 2.  RE: XDR to XSD Schema Conversion

    Posted Fri December 15, 2006 03:40 PM

    Upon a keyword search (xdr to xsd) in goog gave quite good results.Did you checked it?? Microsoft or Stylus Studio have tools for it wrto W3C guidelines.

    HTH,
    RMG


    #Flow-and-Java-services
    #Integration-Server-and-ESB
    #webMethods


  • 3.  RE: XDR to XSD Schema Conversion

    Posted Fri December 15, 2006 04:20 PM

    Hi RMG,

    I have already tried with Visual Studio 2005, XDR.exe, convert.js, cvtschema.exe and SQLXML- 4.0. They are all converting but wm does not support that converted XSD. Still wm is throwing exception.


    #Flow-and-Java-services
    #Integration-Server-and-ESB
    #webMethods


  • 4.  RE: XDR to XSD Schema Conversion

    Posted Tue December 26, 2006 09:39 PM

    Hi,

    This issue has been resolved. WM does not support the mixed=“true” in complexType with simpleContent. We replaced this value and loaded successfully.

    Old Structure:-
    <xsd:complexType name=“address1” mixed=“true”>
    xsd:annotation
    xsd:documentationAddress 1</xsd:documentation>
    </xsd:annotation>
    xsd:simpleContent
    <xsd:extension base=“xsd:string” />
    </xsd:simpleContent>
    </xsd:complexType>

    New Structure:-
    <xsd:complexType name=“address1” >
    xsd:annotation
    xsd:documentationAddress 1</xsd:documentation>
    </xsd:annotation>
    xsd:simpleContent
    <xsd:extension base=“xsd:string” />
    </xsd:simpleContent>
    </xsd:complexType>


    #Flow-and-Java-services
    #webMethods
    #Integration-Server-and-ESB