Re: axis2_svc_client_get_options returns a "const" ?

2006-10-05 Thread Samisa Abeysinghe
Ishan De Silva wrote: Samisa Abeysinghe wrote: Ishan De Silva wrote: Hi, The get_option function of the service client returns a const axis2_options_t pointer. The idea is that use would create options and would own options. Hence not need to access options from service client in your client

Re: axis2_svc_client_get_options returns a "const" ?

2006-10-04 Thread Ishan De Silva
Samisa Abeysinghe wrote: Ishan De Silva wrote: Hi, The get_option function of the service client returns a const axis2_options_t pointer. The idea is that use would create options and would own options. Hence not need to access options from service client in your client program. Rather use t

Re: axis2_svc_client_get_options returns a "const" ?

2006-10-04 Thread Samisa Abeysinghe
Ishan De Silva wrote: Hi, The get_option function of the service client returns a const axis2_options_t pointer. The idea is that use would create options and would own options. Hence not need to access options from service client in your client program. Rather use the pointer to options that

axis2_svc_client_get_options returns a "const" ?

2006-10-04 Thread Ishan De Silva
Hi, The get_option function of the service client returns a const axis2_options_t pointer. const axis2_options_t *AXIS2_CALL axis2_svc_client_get_options( const axis2_svc_client_t *svc_client, const axis2_env_t *env); This makes it difficult to use it in the following manner: const axi