Using a webservice in Windows application

R

Raja Yashwanth

Hi all

I need to develope a web service that I should use in a windows based application.

This web service must be a layer that invokes one more webservice.Due to some security constraints I should use the URL path as https://webservice_name....
instead of
http://webservice_name....

this I should implement in which I need to develope( the above mentioned one).Can any one help me in How to reffer the URL as mentioned.

And one more doubt that how can I reffer a webservice in windows based application?(I application developed using VC++.Net).


EggHeadCafe.com - .NET Developer Portal of Choice
http://www.eggheadcafe.com
 
A

Alberto Poblacion

in message
I need to develope a web service that I should use in a windows based
application.

This web service must be a layer that invokes one more webservice.Due to
some security constraints I should use the URL path as
https://webservice_name....
instead of
http://webservice_name....

this I should implement in which I need to develope( the above mentioned
one).Can any one help me in How to reffer the URL as mentioned.

You don't have to do anything special to call a web service via https.
Just write https instead of http in the url in your client code and it
should work, provided that the server is in fact configured for https.
And one more doubt that how can I reffer a webservice in windows based
application?(I application developed using VC++.Net).

In the Project, you select the option to Add a Web Reference, which pops
up a wizard in which you enter the url for the wsdl of your web service.
This works in C#, which is what this forum is about; I imagine that there
should be a similar option in C++.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top