XDR to XSD Schema Conversion

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

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

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.

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>