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/10/07 23:51:16 UTC

DO NOT REPLY [Bug 13387] New: - Missing service name in userguide/example3/Client.java in AXIS 1.0

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=13387>.
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=13387

Missing service name in userguide/example3/Client.java in AXIS 1.0

           Summary: Missing service name in userguide/example3/Client.java
                    in AXIS 1.0
           Product: Axis
           Version: 1.0-rc2
          Platform: Other
        OS/Version: Other
            Status: NEW
          Severity: Normal
          Priority: Other
         Component: Samples
        AssignedTo: axis-dev@xml.apache.org
        ReportedBy: vishy@borland.com


This bug is against 1.0 but there is bugzilla version yet for 1.0. 

In samples/userguide/example3/Client.java 
 
Change 
 
        call.setOperationName( "serviceMethod" );

To
         call.setOperationName( new QName("MyService", "serviceMethod") );
 
Otherwise the client fails to run.