Hi,
I am working from home for my client.Actually I have written a
webservice in C#.net which is working fine.I also have a webapplication
which uses this webservice..and the application works fine when
executed.The problem is now I have to send the files to my client..so
that he deploys them in the production server.
Now what are the changes should he or I should make in webservice to
execute the webservice on his machine..he said that no visualstudio is
installed in his system.
plzz help me.
thanks.
Loading
ranjith nPosted May 6, 2008, 11:40 PM
thanks for the reply...is there any need to change the url path in WSDL(replace the localhost with his IP address etc).
Santhosh VeeraramanPosted May 6, 2008, 3:58 AM
1. change the namespace of the web service and make sure it specifies unique namespace (say your client's website name) which is tempuri.org by default.
2. deploying a web service is copying the web service along with all other support files like web.config to the target web server. You can either create a Web Setup Project or use VS.Net Project Copy.
Web setup will create a msi that you can send to your customer.