我已经尝试过Axis 2.它在尝试从Seibel解析我的WSDL时死了。我不需要任何需要容器(Metro)的东西。我想要做的就是解析并形成SOAP消息。我不希望他们代表我发送消息。我已经在使用HttpClient了,我很满意。
答案 0 :(得分:3)
推荐使用StAX(Streaming API for XML)
参考:http://www.vogella.de/articles/JavaXML/article.html 示例XML
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<SOAP-ENV:Body>
<ns:PicklistWS_GetPicklistValues_Output xmlns:ns="urn:crmondemand/ws/picklist/">
<ListOfParentPicklistValue xmlns="urn:/crmondemand/xml/picklist">
<ParentPicklistValue>
<Language>ENU</Language>
<ParentFieldName/>
<ParentDisplayValue/>
<ParentCode/>
<Disabled/>
<ListOfPicklistValue>
<PicklistValue>
<Code>F</Code>
<DisplayValue>F</DisplayValue>
<Disabled>N</Disabled>
</PicklistValue>
<PicklistValue>
<Code>M</Code>
<DisplayValue>M</DisplayValue>
<Disabled>N</Disabled>
</PicklistValue>
</ListOfPicklistValue>
</ParentPicklistValue>
</ListOfParentPicklistValue>
</ns:PicklistWS_GetPicklistValues_Output>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
解析代码:
static Map<String, String> getPicklistFromSoapResponse(String soapResponse) throws ServiceException {
Map<String, String> values = new LinkedHashMap<String, String>();
XMLInputFactory inputFactory = XMLInputFactory.newInstance();
String code = null;
String display = null;
String disabled = null;
try {
InputStream in = new ByteArrayInputStream(soapResponse.getBytes("UTF-8"));
XMLEventReader eventReader = inputFactory.createXMLEventReader(in);
while (eventReader.hasNext()) {
XMLEvent event = eventReader.nextEvent();
if (event.isStartElement()) {
if (event.asStartElement().getName().getLocalPart().equals("Code")) {
event = eventReader.nextEvent();
code = event.asCharacters().getData();
continue;
}
if (event.asStartElement().getName().getLocalPart().equals("DisplayValue")) {
event = eventReader.nextEvent();
display = event.asCharacters().getData();
continue;
}
if (event.asStartElement().getName().getLocalPart().equals("Disabled")) {
event = eventReader.nextEvent();
disabled = event.asCharacters().getData();
if ( "Y".equals(disabled)) values.put(code, display);
continue;
}
}
}
} catch (UnsupportedEncodingException e) {
throw new ServiceException(e);
} catch (XMLStreamException e) {
throw new ServiceException(e);
}
return values;
}
该行:
InputStream in = new ByteArrayInputStream(soapResponse.getBytes("UTF-8"));
可以使用以下命令切换文件作为xml的源:
InputStream in = new FileInputStream("myFile.xml");
在循环事件时,我们需要做的第一件事是使用eventReader.nextEvent()
获取XMLEvent。通常我们只关心作为起始元素的事件,这些事件是使用以下行检索的:
event.isStartElement()
这会检查我们正在查看的内容是否为开头标记。例如:<name>Fenton</name>
只有<name>
部分是start元素。所以拿这个xml片段,调用以下
event.asStartElement().getName().getLocalPart()
结果是字符串:name。要获得字符串Fenton,我们称之为:event.asCharacters().getData()
现在有时元素会有如下属性:<name type="User">Fenton</name>
。在这种情况下,部分type="User"
是一个属性,可以通过以下方式提取:
StartElement startElement = event.asStartElement();
Iterator<Attribute> attributes = startElement.getAttributes();
while (attributes.hasNext()) {
Attribute attribute = attributes.next();
if (attribute.getName().toString().equals("type"));
String typeIsUser = attribute.getValue();
}
答案 1 :(得分:1)
SAAJ(SOAP with Attachments API for Java)就是这样做的。
但您应该考虑使用Web服务堆栈而不是手动处理SOAP消息。