Skip to content

Commit

Permalink
Move test port away from 8080
Browse files Browse the repository at this point in the history
  • Loading branch information
tgk committed Oct 31, 2011
1 parent d165bb0 commit 5085679
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Expand Up @@ -35,7 +35,7 @@ public class TestServer
{
private Server server;
private String contextPath = "/";
private int port = 8080;
private int port = 8972;
private String warPath = "src/main/webapp/";


Expand Down
Expand Up @@ -176,7 +176,7 @@ public void sendRequest(int securityLevel) throws Exception

final QName SERVICE_QNAME = new QName("http://trifork.com/-/stamdata/3.0", "AuthorizationService");

URL wsdlLocation = new URL("http://localhost:8080/service/AuthorizationService?wsdl");
URL wsdlLocation = new URL("http://localhost:8972/service/AuthorizationService?wsdl");
AuthorizationService serviceCatalog = new AuthorizationService(wsdlLocation, SERVICE_QNAME);

// SEAL enforces that the XML prefixes are exactly
Expand Down
Expand Up @@ -179,7 +179,7 @@ public void sendRequest() throws Exception

final QName SERVICE_QNAME = new QName("http://trifork.com/-/stamdata/3.0", "AuthorizationService");

URL wsdlLocation = new URL("http://localhost:8080/service/AuthorizationService?wsdl");
URL wsdlLocation = new URL("http://localhost:8972/service/AuthorizationService?wsdl");
AuthorizationService serviceCatalog = new AuthorizationService(wsdlLocation, SERVICE_QNAME);

// SEAL enforces that the XML prefixes are exactly
Expand Down

0 comments on commit 5085679

Please sign in to comment.