RE: How to Set Submission Addressing?

2008-10-22 Thread David Taylor (Lowell)
Thanks you very much for the quick response.  I'll try that out.
-David



-Original Message-
From: Manjula Peiris [mailto:[EMAIL PROTECTED]
Sent: Tue 10/21/2008 9:58 PM
To: Apache AXIS C User List
Subject: Re: How to Set Submission Addressing?
 

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]



winmail.dat-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

RE: How to Set Submission Addressing?

2008-10-22 Thread David Taylor (Lowell)
That worked great!
Thanks again,
-David


-Original Message-
From: David Taylor (Lowell) [mailto:[EMAIL PROTECTED]
Sent: Wed 10/22/2008 7:27 AM
To: Apache AXIS C User List
Subject: RE: How to Set Submission Addressing?
 
Thanks you very much for the quick response.  I'll try that out.
-David



-Original Message-
From: Manjula Peiris [mailto:[EMAIL PROTECTED]
Sent: Tue 10/21/2008 9:58 PM
To: Apache AXIS C User List
Subject: Re: How to Set Submission Addressing?
 

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]





winmail.dat-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

How to Set Submission Addressing?

2008-10-21 Thread David Taylor (Lowell)
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.

Thanks,

-David K. Taylor

 



Re: How to Set Submission Addressing?

2008-10-21 Thread Manjula Peiris

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]