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 2004/03/15 22:20:11 UTC

DO NOT REPLY [Bug 27683] New: - Incorrect signature for SOAPService.setServiceDescription()

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

http://issues.apache.org/bugzilla/show_bug.cgi?id=27683

Incorrect signature for SOAPService.setServiceDescription()

           Summary: Incorrect signature for
                    SOAPService.setServiceDescription()
           Product: Axis
           Version: current (nightly)
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: Normal
          Priority: Other
         Component: Basic Architecture
        AssignedTo: axis-dev@ws.apache.org
        ReportedBy: rich.naylor@active-endpoints.com


The method setDerviceDescription() in 
org.apache.axis.handlers.soap.SOAPService only allows the ability to set an 
object of type org.apache.axis.description.JavaServiceDesc. This should really 
allow the caller to pass an object of type 
org.apache.axis.description.ServiceDesc. The instance variable being set is of 
type ServiceDesc. This is preventing me from providing my own service 
description to the SOAPService object in a clean way. Right now my only 
workaround is to extend JavaServiceDesc and take over every method.