Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Name of web service in VS2005

Status
Not open for further replies.

IlseDC

Programmer
Mar 24, 2003
49
BE
I have some web services.
example: PatientService

In my VS2003 project after adding the web reference I can use the name PatientService.
example: myPatientService = new MyServices.PatientService();

When I try this in VS2005 the name of my service is not PatientService but PatientServiceSoap.
So "soap" is added to the name all my web services.
I have to use the following code:
myPatientService = new MyServices.PatientServiceSoap();

Is this normal? Why?

Thanks.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top