Web Service deployment question

G

Guest

Hello

I am preparing to deploy a webservice built in VS .Net. Several SQLDataAdapters (as well as a SQLConnection) were added to the designer and datasets generated for all the adapters
In the Application directory (the directory that holds the asmx file) there are several vb and xsd files defining the datasets
Are these other files necessary to deploy? The reading I have done mentions the asmx file and any assemblies. I know the two files that covers (asmx and the dll in the bin folder), but am not comfortably clear on the dispostion of the dataset related files. Are they considered assemblies (I doubt it)? Are they required to be resident in the application directory with the asmx file as in the development folder? It would be a lot nicer just to have to copy the two files and a folder

mklapp
 
M

[MSFT]

Hello,

To deply a web service project, we are required to consider following files:

*.asmx
*.disco
*.xsd
Golbal.asax
web.config
*.dll in /Bin folder

You also can consider creating a Web Setup project in the same solution to
manage the deploy task.

For information on this issue, you can refer to:

HOW TO: Deploy Applications That Are Built on the .NET Framework
http://support.microsoft.com/default.aspx?scid=KB;EN-US;Q818016

Hope this help,

regards,

Luke
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)
 

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