我正在尝试解析xml文件,但它会不断进入异常状态。我已经在这里找到了一些解决方案,因为许多人和我几乎有同样的问题,但这是徒劳的。请求和响应似乎是正确的,我检查了我的xml,我无法找到任何错误。
这是我的Java代码:
public static void main(String args[])
{
SOAPConnectionFactory soapConnectionFactory = SOAPConnectionFactory.newInstance();
SOAPConnection soapConnection = soapConnectionFactory.createConnection();
// Send SOAP Message to SOAP Server
String url = "https://sync-test.severa.com/webservice/S3/API.svc";
SOAPMessage soapResponse = soapConnection.call(createSOAPRequest(), url);
XMLTransform(soapResponse.toString());
}
private static SOAPMessage createSOAPRequest()
{
MessageFactory messageFactory = MessageFactory.newInstance();
SOAPMessage soapMessage = messageFactory.createMessage();
SOAPPart soapPart = soapMessage.getSOAPPart();
String serverURI = "http://soap.severa.com/";
// SOAP Envelope
SOAPEnvelope envelope = soapPart.getEnvelope();
//SOAP Header content
SOAPFactory soapFactory = SOAPFactory.newInstance();
SOAPHeader header = soapMessage.getSOAPHeader();
Name headerName = soapFactory.createName("WebServicePassword", "ns1", serverURI);
SOAPHeaderElement headerElement = header.addHeaderElement(headerName);
headerElement.addTextNode("uheyhd80984023984209380");
// SOAP Body
SOAPBody soapBody = envelope.getBody();
//Create GetAllInvoiceStatuses
Name name = envelope.createName("GetAllInvoiceStatuses", "ns1", serverURI);
SOAPElement child = soapBody.addBodyElement(name);
child.addNamespaceDeclaration("ns1", serverURI);
MimeHeaders headers = soapMessage.getMimeHeaders();
headers.addHeader("SOAPAction", "http://soap.severa.com/IInvoiceStatus/GetAllInvoiceStatuses");
}
private static void XMLTransform (String xml) {
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
DocumentBuilder builder = factory.newDocumentBuilder();
InputSource is = new InputSource(new StringReader(xml.toString()));
Document document = builder.parse(is); // here is the exception!!
}
以下是我从服务器获取的xml响应:
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body>
<GetAllInvoiceStatusesResponse xmlns="http://soap.severa.com/">
<GetAllInvoiceStatusesResult
xmlns:a="http://schemas.datacontract.org/2004/07/Severa.Entities.API"
xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<a:InvoiceStatus>
<a:Description i:nil="true"/>
<a:HasInvoiceNumber>false</a:HasInvoiceNumber>
<a:IsActive>true</a:IsActive>
<a:IsDefault>true</a:IsDefault>
<a:IsPaid>false</a:IsPaid>
<a:IsReadOnly>false</a:IsReadOnly>
<a:IsSent>false</a:IsSent>
<a:IsWaitingPayment>false</a:IsWaitingPayment>
<a:Name>Utkast</a:Name>
<a:SortOrder>1</a:SortOrder>
</a:InvoiceStatus>
<a:InvoiceStatus>
<a:Description i:nil="true"/>
<a:HasInvoiceNumber>true</a:HasInvoiceNumber>
<a:IsActive>true</a:IsActive>
<a:IsDefault>false</a:IsDefault>
<a:IsPaid>false</a:IsPaid>
<a:IsReadOnly>true</a:IsReadOnly>
<a:IsSent>true</a:IsSent>
<a:IsWaitingPayment>true</a:IsWaitingPayment>
<a:Name>Skickad</a:Name>
<a:SortOrder>2</a:SortOrder>
</a:InvoiceStatus>
<a:InvoiceStatus>
<a:Description i:nil="true"/>
<a:HasInvoiceNumber>true</a:HasInvoiceNumber>
<a:IsActive>true</a:IsActive>
<a:IsDefault>false</a:IsDefault>
<a:IsPaid>true</a:IsPaid>
<a:IsReadOnly>true</a:IsReadOnly>
<a:IsSent>true</a:IsSent>
<a:IsWaitingPayment>false</a:IsWaitingPayment>
<a:Name>Betalad</a:Name><a:SortOrder>3</a:SortOrder>
</a:InvoiceStatus>
</GetAllInvoiceStatusesResult>
</GetAllInvoiceStatusesResponse>
</s:Body>
答案 0 :(得分:0)
看起来XML标签未正确关闭,即<s:envelope>
答案 1 :(得分:0)
SOAPMessage.toString()返回对象ID,如“SOAPMessage @ 123456”。
您想使用SOAPMessage.writeTo(OutputStream)。 或者更好的是,直接转换SOAPMessage,因为它的SOAPParts已经实现了org.w3c.dom。