On Tue, 2008-10-21 at 18:03 -0400, David Taylor (Lowell) wrote: > I have read that AXIS2/C supports both version 1.0 and the pre-1.0 > “submission” version of WS-Addressing. However, I can’t find > instructions or an example of how to configure a client to use > submission addressing. I would appreciate any help you can give me.
Add the following code segment to your client code. axutil_property_t *property = NULL; property = axutil_property_create(env); axutil_property_set_scope(property, env, AXIS2_SCOPE_APPLICATION); axutil_property_set_value(property, env, AXIS2_WSA_NAMESPACE_SUBMISSION); axis2_options_set_property(options, env, AXIS2_WSA_VERSION, property); -Manjula > > Thanks, > > -David K. Taylor > > > > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
