All these talk abt Web Services had made me eager to create one on my own.
I have created a web service on my own local host and all works fine...
But I have problems deploying it to a remote web (virtual) server as it presents the error = cannot create type"WebService1.Sevice1"
My question is, I have heard it is easy to deploy and stuff like that... BUT do I need to install the compiled object onto the remote server eg....regsvr32 some.dll OR can i just copy the asmx file onto the web server and let the JIT compiler take care of the rest ?
Can anyone please help ? Any help is appreciated !
William T
Software Architect / Chief Software Developer
Softwaremaker.Net Pte Ltd
http://www.Softwaremaker.net
*** Things are always the darkest before they go pitch black ***
Your remote server must have .NetFramework and Frontpage Extension installed.
To copy the web service to the server, create a virtual directory on it and copy all the ".asmx" files and the "bin" directory to the virtual directory.
You can then access the web service through the .asmx files.
Did you configure your virtual directory as an application?
To check, open the IIS Manager. Open up the properties for the Virtual Directory. Under the Directory tab, if there is a Create button, then you haven't configure it as an application.
I tried the service on my deployment server and everything works fine. There is not Visual Studio .NET development tools on the server, just IIS, FrontPage Extension and .NET Framework.
Anyway, there must be something wrong with your remote server as it does not display the application name correctly.