RE: How to develop a HTTPs-based webservice client

2007-09-24 Thread Murali Konnipati
Hi Pallewela,

   I am referring to "OperationClient" & "ServiceClient"(methods) for 
webservice invocation.

   I am sending the SOAP message that i have to send it to our .Net based 
webservice. Please check below, and let me know whether i can use the 
"ServiceClient" to access the webservice. 

   http://schemas.xmlsoap.org/soap/envelope";
  xmlns:wsa="http://www.w3.org/2005/08/addressing";
  xmlns:bes-factory="http://schemas.ggf.org/bes/2006/08/bes-factory";
  
xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd";
  
xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd";
 >
  

  http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd";
 >
Bert
http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText";>Ernie
  


   http://schemas.ggf.org/bes/2006/08/bes-factory/CreateActivity


http://www.bes.org/BESFactory

  
  



{Any valid JSDL document}



  
 



Thanks & Regards,

Murali Krishna K
 

-Original Message-
From: Dumindu Pallewela
To: Apache AXIS C User List
Sent: 9/24/07 5:13 PM
Subject: Re: How to develop a HTTPs-based webservice client

Murali Konnipati wrote:
> Hi Pallewela,
> 
>Thank you very much for the reply.
>I have a small doubt, I need to modify the SOAP envelope and
send
> some custom messages in the SOAP request. For this, i am planning to
use
> the OperationClient.

This should not be a problem for the HTTPS transport. As Dinesh
pointed out earlier, transport is independent from the client api.

> my  webservice. Please check the same and let me know, which method is
> suitable for the webservice invocation.

What are these *methods* that you are referring to?

BTW, you can try it out and see... it's merely a minor change that
you have to do to your client ;)

Regards,
-Dumindu.

 <> 


Re: How to develop a HTTPs-based webservice client

2007-09-24 Thread Dumindu Pallewela
Murali Konnipati wrote:
> Hi Pallewela,
> 
>Thank you very much for the reply.
>I have a small doubt, I need to modify the SOAP envelope and send
> some custom messages in the SOAP request. For this, i am planning to use
> the OperationClient.

This should not be a problem for the HTTPS transport. As Dinesh
pointed out earlier, transport is independent from the client api.

> my  webservice. Please check the same and let me know, which method is
> suitable for the webservice invocation.

What are these *methods* that you are referring to?

BTW, you can try it out and see... it's merely a minor change that
you have to do to your client ;)

Regards,
-Dumindu.



signature.asc
Description: OpenPGP digital signature


RE: How to develop a HTTPs-based webservice client

2007-09-24 Thread Murali Konnipati
Hi Pallewela,

   Thank you very much for the reply.
   I have a small doubt, I need to modify the SOAP envelope and send some 
custom messages in the SOAP request. For this, i am planning to use the 
OperationClient.

  I am sending the sample SOAP request message, i need to send it to my  
webservice. Please check the same and let me know, which method is suitable for 
the webservice invocation.

==
 SOAP Request message
==

http://schemas.xmlsoap.org/soap/envelope";
  xmlns:wsa="http://www.w3.org/2005/08/addressing";
  xmlns:bes-factory="http://schemas.ggf.org/bes/2006/08/bes-factory";
  
xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd";
  
xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd";
 >
  

  http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd";
 >
Bert
http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText";>Ernie
  


   http://schemas.ggf.org/bes/2006/08/bes-factory/CreateActivity


http://www.bes.org/BESFactory

  
  



{Any valid JSDL document}



  



Thanks & Regards,

Murali Krishna K

 

  

-Original Message-
From: Dumindu Pallewela
To: Apache AXIS C User List
Sent: 9/24/07 2:42 PM
Subject: Re: How to develop a HTTPs-based webservice client

Hi Murali,

If you want to set the properties required for HTTPS transport, in
your client code, please do the following:

axutil_property_t *prop_sc = axutil_property_create(env);
axutil_property_set_value(prop_sc, env, axutil_strdup(env,
"/path/to/server/cert"));
axis2_options_set_property(options, env, "SERVER_CERT", prop_sc);

where *options* is the *axis2_options_t* structure that you set to
the service client using *axis2_svc_client_set_options* function, or
to the operation client using *axis2_op_client_set_options*
function. Refer to the echo sample client's http authentication
section for a sample on similar code fragment [echo.c lines 115-125].

Note that it does not depend on whether the service client or
operation client is used to send the request.

Other properties, if necessary, can be set in an identical manner.
Property names are KEY_FILE and SSL_PASSPHRASE as described in
axis2c manual [1].

HTH,
-Dumindu.

[1] http://ws.apache.org/axis2/c/docs/axis2c_manual.html#ssl_client

Murali Konnipati wrote:
> Thank you Dinesh.
> 
> I will try to submit a small job and let you know, if i face any
issues.
> 
> 
> Thanks & Regards,
> 
> Murali Krishna K
> 
> -Original Message-
> From: Dinesh Premalal
> To: axis-c-user@ws.apache.org
> Cc: Dinesh Premalal ; Dinesh Premalal
> Sent: 9/23/07 1:32 AM
> Subject: Re: How to develop a HTTPs-based webservice client
> 
> Murali,
> "Murali Konnipati" <[EMAIL PROTECTED]> writes:
>>   As i have to modify the SOAP envelope, i am planning to use the
> Operation
>> Client instead of Service Client. Can you please send me any document
> with some
>> examples on https web service client, which can provide some useful
>> information.
> It doesn't matter whether you use svc_client or op_client to send your
> request. HTTPS handled by Axis2/C transport layer which is independent
> from the client api that you use. I'm afraid that I don't have any
> examples in my hand. I think axis2c manual's description is
> descriptive enough.
> 
> thanks,
> Dinesh
> 
> --
> Dinesh Premalal
> http://xydinesh.wordpress.com/
> GPG ID : A255955C
> GPG Key Finger Print : C481 E5D4 C27E DC34 9257  0229 4F44 266E A255
> 955C
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 


 <> 


Re: How to develop a HTTPs-based webservice client

2007-09-24 Thread Dumindu Pallewela
Hi Murali,

If you want to set the properties required for HTTPS transport, in
your client code, please do the following:

axutil_property_t *prop_sc = axutil_property_create(env);
axutil_property_set_value(prop_sc, env, axutil_strdup(env,
"/path/to/server/cert"));
axis2_options_set_property(options, env, "SERVER_CERT", prop_sc);

where *options* is the *axis2_options_t* structure that you set to
the service client using *axis2_svc_client_set_options* function, or
to the operation client using *axis2_op_client_set_options*
function. Refer to the echo sample client's http authentication
section for a sample on similar code fragment [echo.c lines 115-125].

Note that it does not depend on whether the service client or
operation client is used to send the request.

Other properties, if necessary, can be set in an identical manner.
Property names are KEY_FILE and SSL_PASSPHRASE as described in
axis2c manual [1].

HTH,
-Dumindu.

[1] http://ws.apache.org/axis2/c/docs/axis2c_manual.html#ssl_client

Murali Konnipati wrote:
> Thank you Dinesh.
> 
> I will try to submit a small job and let you know, if i face any issues.
> 
> 
> Thanks & Regards,
> 
> Murali Krishna K
> 
> -Original Message-
> From: Dinesh Premalal
> To: axis-c-user@ws.apache.org
> Cc: Dinesh Premalal ; Dinesh Premalal
> Sent: 9/23/07 1:32 AM
> Subject: Re: How to develop a HTTPs-based webservice client
> 
> Murali,
> "Murali Konnipati" <[EMAIL PROTECTED]> writes:
>>   As i have to modify the SOAP envelope, i am planning to use the
> Operation
>> Client instead of Service Client. Can you please send me any document
> with some
>> examples on https web service client, which can provide some useful
>> information.
> It doesn't matter whether you use svc_client or op_client to send your
> request. HTTPS handled by Axis2/C transport layer which is independent
> from the client api that you use. I'm afraid that I don't have any
> examples in my hand. I think axis2c manual's description is
> descriptive enough.
> 
> thanks,
> Dinesh
> 
> --
> Dinesh Premalal
> http://xydinesh.wordpress.com/
> GPG ID : A255955C
> GPG Key Finger Print : C481 E5D4 C27E DC34 9257  0229 4F44 266E A255
> 955C
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 




signature.asc
Description: OpenPGP digital signature


RE: How to develop a HTTPs-based webservice client

2007-09-24 Thread Murali Konnipati
Thank you Dinesh.

I will try to submit a small job and let you know, if i face any issues.


Thanks & Regards,

Murali Krishna K 

-Original Message-
From: Dinesh Premalal
To: axis-c-user@ws.apache.org
Cc: Dinesh Premalal ; Dinesh Premalal 
Sent: 9/23/07 1:32 AM
Subject: Re: How to develop a HTTPs-based webservice client

Murali,
"Murali Konnipati" <[EMAIL PROTECTED]> writes:
>   As i have to modify the SOAP envelope, i am planning to use the
Operation
> Client instead of Service Client. Can you please send me any document
with some
> examples on https web service client, which can provide some useful
> information.
It doesn't matter whether you use svc_client or op_client to send your
request. HTTPS handled by Axis2/C transport layer which is independent
from the client api that you use. I'm afraid that I don't have any
examples in my hand. I think axis2c manual's description is
descriptive enough.

thanks,
Dinesh

-- 
Dinesh Premalal
http://xydinesh.wordpress.com/
GPG ID : A255955C
GPG Key Finger Print : C481 E5D4 C27E DC34 9257  0229 4F44 266E A255
955C

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


Re: How to develop a HTTPs-based webservice client

2007-09-22 Thread Dinesh Premalal
Murali,
"Murali Konnipati" <[EMAIL PROTECTED]> writes:
>   As i have to modify the SOAP envelope, i am planning to use the 
> Operation
> Client instead of Service Client. Can you please send me any document with 
> some
> examples on https web service client, which can provide some useful
> information.
It doesn't matter whether you use svc_client or op_client to send your
request. HTTPS handled by Axis2/C transport layer which is independent
from the client api that you use. I'm afraid that I don't have any
examples in my hand. I think axis2c manual's description is
descriptive enough.

thanks,
Dinesh

-- 
Dinesh Premalal
http://xydinesh.wordpress.com/
GPG ID : A255955C
GPG Key Finger Print : C481 E5D4 C27E DC34 9257  0229 4F44 266E A255 955C

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



RE: How to develop a HTTPs-based webservice client

2007-09-22 Thread Murali Konnipati
Hi Dinesh,

  Thank you very much for your reply.
  As i have to modify the SOAP envelope, i am planning to use the Operation 
Client instead of Service Client. Can you please send me any document with some 
examples on https web service client, which can provide some useful information.


Thanks & REgards,

Murali K
 


-Original Message-
From: Dinesh Premalal
To: axis-c-user@ws.apache.org
Sent: 9/22/07 9:16 PM
Subject: Re: How to develop a HTTPs-based webservice client

Murali,
  Please refer this link
  http://ws.apache.org/axis2/c/docs/axis2c_manual.html#ssl_client 

thanks,
Dinesh
"Murali Konnipati" <[EMAIL PROTECTED]> writes:

> Hi All,
>
> I am newbie to axisc world. I have a webservice which is
deployed in an
> HTTPS server with server certificate. I have to develop a webservice
client,
> which will use the Server certificate(Server doesn't require client
> certificate) for authorization.
>
>  Can anybody please provide me some guide or document, which
will
> explain me  on how to write HTTPS based webservice client(in the code)
and do
> the needful favor.
>
> Thanks & Regards,
>
> Murali Krishna K
>

-- 
Dinesh Premalal
http://xydinesh.wordpress.com/
GPG ID : A255955C
GPG Key Finger Print : C481 E5D4 C27E DC34 9257  0229 4F44 266E A255
955C

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


Re: How to develop a HTTPs-based webservice client

2007-09-22 Thread Dinesh Premalal
Murali,
  Please refer this link
  http://ws.apache.org/axis2/c/docs/axis2c_manual.html#ssl_client 

thanks,
Dinesh
"Murali Konnipati" <[EMAIL PROTECTED]> writes:

> Hi All,
>
> I am newbie to axisc world. I have a webservice which is deployed in 
> an
> HTTPS server with server certificate. I have to develop a webservice client,
> which will use the Server certificate(Server doesn't require client
> certificate) for authorization.
>
>  Can anybody please provide me some guide or document, which will
> explain me  on how to write HTTPS based webservice client(in the code) and do
> the needful favor.
>
> Thanks & Regards,
>
> Murali Krishna K
>

-- 
Dinesh Premalal
http://xydinesh.wordpress.com/
GPG ID : A255955C
GPG Key Finger Print : C481 E5D4 C27E DC34 9257  0229 4F44 266E A255 955C

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