Import XSD in WSDL
-
Hi All, Can anyone tell me if I can import two XSD's at the same time in my WSDL's section? if yes, how do i do it? Thanks
-
Hi All, Can anyone tell me if I can import two XSD's at the same time in my WSDL's section? if yes, how do i do it? Thanks
Inside the types section define a schema that imports the two schemas.
wsdl:types
xsd:schema
<xsd:import namespace="..." schemaLocation="..." />
<xsd:import namespace="..." schemaLocation="..." />
...
</xsd:schema>
</wsdl:types>
"Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning." - Rick Cook
-
Inside the types section define a schema that imports the two schemas.
wsdl:types
xsd:schema
<xsd:import namespace="..." schemaLocation="..." />
<xsd:import namespace="..." schemaLocation="..." />
...
</xsd:schema>
</wsdl:types>
"Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning." - Rick Cook
Thanks for the information provided. We have already tried the above mentioned suggestion. It doesnt work for us. It says the below error. Port 'PreBpelService83Port' can not be imported. PortType 'PreBpelService83' can not be imported. The http://schemas.xmlsoap.org/wsdl/:operation 'process' was ignored Any help on this is appreciated. Thanks
-
Thanks for the information provided. We have already tried the above mentioned suggestion. It doesnt work for us. It says the below error. Port 'PreBpelService83Port' can not be imported. PortType 'PreBpelService83' can not be imported. The http://schemas.xmlsoap.org/wsdl/:operation 'process' was ignored Any help on this is appreciated. Thanks
Subramaniam s.V. wrote:
It says the below error.
Who is it?
Subramaniam s.V. wrote:
Port 'PreBpelService83Port' can not be imported. PortType 'PreBpelService83' can not be imported. The http://schemas.xmlsoap.org/wsdl/:operation 'process' was ignored
Are you sure you're trying to import XML Schema documents? The error complains about not being able to import WSDL elements.
"Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning." - Rick Cook