diff --git a/hutool-http/src/test/java/cn/hutool/http/webservice/SoapClientTest.java b/hutool-http/src/test/java/cn/hutool/http/webservice/SoapClientTest.java index ffd137bc9..52b46791b 100644 --- a/hutool-http/src/test/java/cn/hutool/http/webservice/SoapClientTest.java +++ b/hutool-http/src/test/java/cn/hutool/http/webservice/SoapClientTest.java @@ -10,7 +10,7 @@ import javax.xml.soap.SOAPMessage; /** * SOAP相关单元测试 - * + * * @author looly * */ @@ -23,19 +23,19 @@ public class SoapClientTest { .setMethod("web:getCountryCityByIp", "http://WebXml.com.cn/") .setCharset(CharsetUtil.CHARSET_GBK) .setParam("theIpAddress", "218.21.240.106"); - + Console.log(client.getMsgStr(true)); - + Console.log(client.send(true)); } - + @Test @Ignore public void requestForMessageTest() throws SOAPException { SoapClient client = SoapClient.create("http://www.webxml.com.cn/WebServices/IpAddressSearchWebService.asmx") .setMethod("web:getCountryCityByIp", "http://WebXml.com.cn/") .setParam("theIpAddress", "218.21.240.106"); - + SOAPMessage message = client.sendForMessage(); Console.log(message.getSOAPBody().getTextContent()); }