We have an ear project created with Netbeans 8.1 and the Maven Project wizard. Running WLS 12.1.3. The project contains some EJBs and a jax-ws web service using the standard jax-ws annotations. For some reason, I cannot get the web service to show up after deployment in the admin console as shown below.
However, the web service is deployed, and running properly, but then we cannot admin the deployment config, or monitor, etc. The strange thing is that the corrsponding
servlet does show up on the testing tab. Does anyone know what would cause this?
Asked
Active
Viewed 2,093 times
1

OldProgrammer
- 135
- 9
1 Answers
0
The web service should be running withing a Web Application
. I presume you have packaged the web service within a war
file within the ear
. The web application specification will contain the context root. Depending on your servlet mapping, or more paths within the context root will be handled by your web service.

BillThor
- 27,737
- 3
- 37
- 69
-
Yes, to all the above. – OldProgrammer Apr 15 '16 at 12:30