Greetings, I'm struggling with deploying my Web service in Weblogic. The problem is the @WebService annotation attribute wsdlLocation. I'm deploying the application as a .ear file and I was told that I should create a wsdl directory in the META-INF directory and place my WSDL there. When that is done I should set the wdsdlLocation attribute to the name the file, i.e, if my WSDL file is mywebservice.wsdl, the annotations should be like this:
@Webservice(serviceName="...", ..., wsdlLocation="myservice.wsdl") But when I attempt to start the application from the Weblogic console it informs me that the WSDL file is not found and the location it uses is [user_projects]/<domain>/myservice.wsdl. How can I force Weblogic to use the wsdl packaged in the .ear? Thanks in advance, -- Aaron Stromas
