You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here is my code: Wsdl wsdl = Wsdl.parse("http://www.webxml.com.cn/WebServices/WeatherWebService.asmx?wsdl"); wsdl.printBindings(); List<SoapOperation> soapOperationList = new ArrayList<SoapOperation>(); List<QName> bindQnames = wsdl.getBindings(); for (QName qName : bindQnames) { SoapBuilder soapBuilder = wsdl.binding().localPart(qName.getLocalPart()).find(); soapOperationList.addAll(soapBuilder.getOperations()); for (SoapOperation oper : soapBuilder.getOperations()) { if ("getSupportDataSet".equals(oper.getOperationName())) { System.out.println(qName.getNamespaceURI() + ":" + qName.getLocalPart()); System.out.println(" " + oper.getOperationName()); System.out.println(" " +soapBuilder.getOperationBuilder(oper).buildOutputMessage(context)); } } }
When I build sample request for operation 'getSupportDataSet',I get a very large XML string(hundreds of lines).
I believe it's the problem of below code in wsdl file,but I don't konw how to solve it.
Here is my code:
Wsdl wsdl = Wsdl.parse("http://www.webxml.com.cn/WebServices/WeatherWebService.asmx?wsdl");
wsdl.printBindings();
List<SoapOperation> soapOperationList = new ArrayList<SoapOperation>();
List<QName> bindQnames = wsdl.getBindings();
for (QName qName : bindQnames) {
SoapBuilder soapBuilder = wsdl.binding().localPart(qName.getLocalPart()).find();
soapOperationList.addAll(soapBuilder.getOperations());
for (SoapOperation oper : soapBuilder.getOperations()) {
if ("getSupportDataSet".equals(oper.getOperationName())) {
System.out.println(qName.getNamespaceURI() + ":" + qName.getLocalPart());
System.out.println(" " + oper.getOperationName());
System.out.println(" " +
soapBuilder.getOperationBuilder(oper).buildOutputMessage(context));
}
}
}
When I build sample request for operation 'getSupportDataSet',I get a very large XML string(hundreds of lines).
I believe it's the problem of below code in wsdl file,but I don't konw how to solve it.
s:element name="getSupportDataSetResponse">
<s:complexType>
<s:sequence>
<s:element minOccurs="0" maxOccurs="1" name="getSupportDataSetResult">
<s:complexType>
<s:sequence>
<s:element ref="s:schema"/>
<s:any/>
</s:sequence>
</s:complexType>
</s:element>
</s:sequence>
</s:complexType>
/s:element>
Is there any suggestion?
The text was updated successfully, but these errors were encountered: