Skip to content

Commit

Permalink
[WFLY-19350] jaxws-ejb Quickstarts should have a root webpage similar…
Browse files Browse the repository at this point in the history
… to helloworld
  • Loading branch information
sudeshnas93 committed May 20, 2024
1 parent cb09dc8 commit 75ec7f3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion jaxws-ejb/README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,7 @@ You should see a message in the server log indicating that the archive deployed
== Access the Application
You can check that the Web Service is running and deployed correctly by accessing the following URL: http://localhost:8080/jaxws-ejb/EJB3Bean?wsdl.
You can check that the Web Service is running and deployed correctly by accessing the following URL: http://localhost:8080/EJB3Bean?wsdl.
This URL will display the deployed WSDL endpoint for the Web Service.
// Server Distribution Testing
Expand Down
2 changes: 1 addition & 1 deletion jaxws-ejb/src/main/webapp/WEB-INF/jboss-web.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@
-->
<!DOCTYPE jboss-web>
<jboss-web>
<context-root>/jaxws-ejb</context-root>
<context-root>/</context-root>
</jboss-web>
2 changes: 1 addition & 1 deletion jaxws-ejb/src/main/webapp/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<body>
<div style="text-align:center">

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

</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public class ClientIT {
/**
* The path of the WSDL endpoint in relation to the deployed web application.
*/
private static final String WSDL_PATH = "/jaxws-ejb/EJB3Bean?wsdl";
private static final String WSDL_PATH = "/EJB3Bean?wsdl";

protected static URL getHTTPEndpoint() {
String host = getServerHost();
Expand Down

0 comments on commit 75ec7f3

Please sign in to comment.