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/09 21:27:01 UTC

DO NOT REPLY [Bug 13468] New: - Call properties not passed to MessageContext

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

Call properties not passed to MessageContext

           Summary: Call properties not passed to MessageContext
           Product: Axis
           Version: future (enh)
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: Enhancement
          Priority: Other
         Component: Basic Architecture
        AssignedTo: axis-dev@xml.apache.org
        ReportedBy: jcarew@kana.com


The comment in org.apache.axis.client.Call for the callProperties member states 
that the properties in the object will be put in MessageContext at invoke 
time.  That function was never implemented.  Here is a "cvs diff" on the source 
as of 10/09/2002 15:25 EST with a possible implementation:

Index: src/org/apache/axis/client/Call.java
===================================================================
RCS file: /home/cvspublic/xml-axis/java/src/org/apache/axis/client/Call.java,v
retrieving revision 1.182
diff -r1.182 Call.java
2027a2028,2038
>         if ( callProperties.size() > 0 )
>         {
>             Iterator pI = callProperties.keySet().iterator();
>             while ( pI.hasNext() )
>             {
>                 String key = (String) pI.next();
>                 if (! msgContext.containsProperty(key))
>                     msgContext.setProperty(key,callProperties.get(key));
>             }
>         }
>