Skip to content

Commit 75ec7f3

Browse files
committed
[WFLY-19350] jaxws-ejb Quickstarts should have a root webpage similar to helloworld
1 parent cb09dc8 commit 75ec7f3

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

jaxws-ejb/README.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -504,7 +504,7 @@ You should see a message in the server log indicating that the archive deployed
504504
505505
== Access the Application
506506
507-
You can check that the Web Service is running and deployed correctly by accessing the following URL: http://localhost:8080/jaxws-ejb/EJB3Bean?wsdl.
507+
You can check that the Web Service is running and deployed correctly by accessing the following URL: http://localhost:8080/EJB3Bean?wsdl.
508508
This URL will display the deployed WSDL endpoint for the Web Service.
509509
510510
// Server Distribution Testing

jaxws-ejb/src/main/webapp/WEB-INF/jboss-web.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@
1717
-->
1818
<!DOCTYPE jboss-web>
1919
<jboss-web>
20-
<context-root>/jaxws-ejb</context-root>
20+
<context-root>/</context-root>
2121
</jboss-web>

jaxws-ejb/src/main/webapp/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<body>
2323
<div style="text-align:center">
2424

25-
<h1>Hello There! Welcome to JBoss!</h1>
25+
<h1>Hello There! Welcome to WildFly!</h1>
2626
<h2>The jaxws-ejb application has been deployed and running successfully.</h2>
2727

2828
</div>

jaxws-ejb/src/test/java/org/jboss/quickstarts/wsejb/ClientIT.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public class ClientIT {
3535
/**
3636
* The path of the WSDL endpoint in relation to the deployed web application.
3737
*/
38-
private static final String WSDL_PATH = "/jaxws-ejb/EJB3Bean?wsdl";
38+
private static final String WSDL_PATH = "/EJB3Bean?wsdl";
3939

4040
protected static URL getHTTPEndpoint() {
4141
String host = getServerHost();

0 commit comments

Comments
 (0)