qberta01
Programmer
- Nov 14, 2005
- 113
Hello,
I am using VS 2003 and have added a web method to an existing web service. I tested it and it works just fine. Now this web service has many many methods used in many places so the original developer created another web service that only calls a handful of the methods that are needed by a certain vendor.
I want to test the actual web service as it is used by the vendor, but when I click on the method I get this:
"Test
The test form is only available for methods with primitive types as parameters.
SOAP 1.1
The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values."
and it shows the XML structure.
My question is how do I get it to allow me to pass in parameters for testing?
I would like to test it as if I were the actual vendor before I send the code out.
The senior developer suggested that I enable HHTPPost in the webconfig file. I added the following:
<webServices>
<protocols>
<add name="HttpGet"/>
<add name="HttpPost"/>
</protocols>
</webServices>
and it didn't work.
Any suggestions would be greatly appreciated.
Thx,
Q.
I am using VS 2003 and have added a web method to an existing web service. I tested it and it works just fine. Now this web service has many many methods used in many places so the original developer created another web service that only calls a handful of the methods that are needed by a certain vendor.
I want to test the actual web service as it is used by the vendor, but when I click on the method I get this:
"Test
The test form is only available for methods with primitive types as parameters.
SOAP 1.1
The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values."
and it shows the XML structure.
My question is how do I get it to allow me to pass in parameters for testing?
I would like to test it as if I were the actual vendor before I send the code out.
The senior developer suggested that I enable HHTPPost in the webconfig file. I added the following:
<webServices>
<protocols>
<add name="HttpGet"/>
<add name="HttpPost"/>
</protocols>
</webServices>
and it didn't work.
Any suggestions would be greatly appreciated.
Thx,
Q.