mime:multipartRelated not properly serialized? [message #195129] |
Thu, 28 June 2007 00:10 |
Eclipse User |
|
|
|
I'm programmatically generating a WSDL document using the
org.eclipse.wst.wsdl libraries. It's mostly working, except I'm having
trouble writing a mime:multipartRelated element. I set up my
mime:multipartRelated object and fill it with mime:parts containing
mime:contents. But when I serialize the WSDL document to a file, all I get
is an empty mime:multipartRelated element. I've tried to test using the code
in org.eclipse.wst.wsdl.tests.extensions.MIMEExtensionsTest, but that gives
me the same result. Here's the test code that I'm using (pretty much the
same as in MIMEExtensionsTest.java):
MIMEMultipartRelated multipart = MIME_FACTORY.createMIMEMultipartRelated();
bindingOutput.addExtensibilityElement(multipart);
MIMEPart mimePart = MIME_FACTORY.createMIMEPart();
multipart.addMIMEPart(mimePart);
SOAPBody soapBody = SOAP_FACTORY.createSOAPBody();
soapBody.setUse("literal");
mimePart.addExtensibilityElement(soapBody);
mimePart = MIME_FACTORY.createMIMEPart();
multipart.addMIMEPart(mimePart);
MIMEContent mimeContent = MIME_FACTORY.createMIMEContent();
mimeContent.setPart("Temperature");
mimeContent.setType("text/binary");
mimePart.addExtensibilityElement(mimeContent);
Here's the result that I get from the above code.
<wsdl:output>
<mime:multipartRelated/>
</wsdl:output>
My org.eclipse.wst.wsdl plugin is v1.0.102.
Can any one give some insight into this?
Thanks.
Johann
|
|
|
Powered by
FUDForum. Page generated in 0.03259 seconds