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.
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.