From f89aef9e4d599ed4bcc0408802604e607a3fafa6 Mon Sep 17 00:00:00 2001 From: daveboivin Date: Tue, 28 Apr 2015 10:05:28 -0500 Subject: [PATCH 1/2] Update README.md Fix typo in "Consume a Web-Serivce in 60 seconds" example. request variable should be of type String instead of Request. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7617d50c..9130a2c3 100644 --- a/README.md +++ b/README.md @@ -112,7 +112,7 @@ Does it need any explanation? Welcome to soap-ws :) SoapOperation operation = builder.operation() .soapAction("http://www.webserviceX.NET/ConversionRate") .find(); - Request request = builder.buildInputMessage(operation) + String request = builder.buildInputMessage(operation) SoapClient client = SoapClient.builder() .endpointUrl("http://www.webservicex.net/CurrencyConvertor.asmx") From cafee1a7ffcd626154ba4d040b03587e89cd3f64 Mon Sep 17 00:00:00 2001 From: daveboivin Date: Tue, 28 Apr 2015 14:12:38 -0500 Subject: [PATCH 2/2] Update README.md Fix typo in "Consume a Web-Serivce in 60 seconds" example. endpointUrl method call should be endpointUri. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9130a2c3..17b44d65 100644 --- a/README.md +++ b/README.md @@ -115,7 +115,7 @@ Does it need any explanation? Welcome to soap-ws :) String request = builder.buildInputMessage(operation) SoapClient client = SoapClient.builder() - .endpointUrl("http://www.webservicex.net/CurrencyConvertor.asmx") + .endpointUri("http://www.webservicex.net/CurrencyConvertor.asmx") .build(); String response = client.post(request); ```