You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by bu...@apache.org on 2002/09/18 14:29:51 UTC

DO NOT REPLY [Bug 12769] New: - JWS deployment with packages broken

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=12769>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=12769

JWS deployment with packages broken

           Summary: JWS deployment with packages broken
           Product: Axis
           Version: current (nightly)
          Platform: All
        OS/Version: Other
            Status: NEW
          Severity: Normal
          Priority: Other
         Component: Deployment / Registries
        AssignedTo: axis-dev@xml.apache.org
        ReportedBy: volkmann2@charter.net


Here's an example of the problem. Suppose I have the following class 
Simple.java.
 
package com.company.topic;
 
public class Simple {
    public String getGreeting() { return "Hello"; }
}
 
To deploy this using JWS I must
1) copy Simple.java to the Axis web app., renaming it to Simple.jws
    If Tomcat is my server, I'd copy it to 
tomcat/webapps/axis/com/company/topic/Simple.jws.
2) remove the package statement from the .jws file
 
Step 2 shouldn't be required!