When I deploy my EJB Web service in a WAR file the context of the Service changes.
i.e.
--http://localhost:8080/ServiceName/EJBName?wsdl
Now, it has the web application context->
--http://localhost:8080/WebAppName/ServiceName?wsdl
Why did this change and how do I control the URL of the Web service I'm using Glassfish3/Java6 and this is what my EJB looks like->
@Stateless @WebService(endpointInterface = "com.foo.bar.Sei", serviceName = "ServiceName") public class EJBName implements My {}