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: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] 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)); > } > } >