On Tue, Sep 01, 2009 at 09:05:53AM +0530, Selvaratnam Uthaiyashankar wrote:
: You have to create an axutil_property_t* and set the server cert
: there. The following snippet is wrong:
: 
: <snip>
: axis2_options_set_property(options, env, AXIS2_SSL_SERVER_CERT,
: server_cert_path)
: </snip>
: 
: It should be
: <snip>
: axutil_property_t* property =axutil_property_create_with_args(env, 0,
: 0, 0, server_cert_path);
: axis2_options_set_property(options, env, AXIS2_SSL_SERVER_CERT,property );
: </snip>

thank you, that was the issue.

I was confused because axis2_options_set_property() arg 4 is void*.

Reply via email to