Skip to content
Snippets Groups Projects
Commit 08d08170 authored by Daniel's avatar Daniel
Browse files

WebApp: Modify SOAP URL path

parent 0a7d94de
Branches
No related merge requests found
...@@ -17,7 +17,7 @@ import javax.xml.ws.WebServiceFeature; ...@@ -17,7 +17,7 @@ import javax.xml.ws.WebServiceFeature;
* Generated source version: 2.2 * Generated source version: 2.2
* *
*/ */
@WebServiceClient(name = "OjekOnlineService", targetNamespace = "http://ojekservice.adaapa.com/", wsdlLocation = "localhost:8080/WebService/soap/ojekonline?wsdl") @WebServiceClient(name = "OjekOnlineService", targetNamespace = "http://ojekservice.adaapa.com/", wsdlLocation = "localhost:8080/WebService/ojekonline?wsdl")
public class OjekOnlineService public class OjekOnlineService
extends Service extends Service
{ {
...@@ -30,7 +30,7 @@ public class OjekOnlineService ...@@ -30,7 +30,7 @@ public class OjekOnlineService
URL url = null; URL url = null;
WebServiceException e = null; WebServiceException e = null;
try { try {
url = new URL("http://localhost:8080/WebService/soap/ojekonline?wsdl"); url = new URL("http://localhost:8080/WebService/ojekonline?wsdl");
} catch (MalformedURLException ex) { } catch (MalformedURLException ex) {
e = new WebServiceException(ex); e = new WebServiceException(ex);
} }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment