Click here to Skip to main content
15,887,338 members
Please Sign up or sign in to vote.
5.00/5 (2 votes)
Hi all,
I have just finished a web Service(.SCV) with 5 methods and it's running with out any problem by using WCFTestClient. I successfully invoked all methods with the right expected result.

In order to insure of performance and stability of all methods, i'd like to make some stress and load test by using the Microsoft Web Performance and load testing with visual studio 2013 (Ultimate edition). looking on the web the step to follow i found to this tuto

By submitting Xml Request of my first simple GetData() Method

which look like :
HTML
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
  <s:Body>
    <GetData xmlns="MyWebService" />
  </s:Body>
</s:Envelope>  

According to this other Msdn tuto (but for .asmx Web Service not for .SCV) i supposed to get an xml response as a result.
Unfortunately have no any XML response or still not understand how to get the result of this method. maybe I missed some setting or parameters. Some help or some link will be nice.
Thank you
Posted
Updated 11-Nov-14 23:51pm
v2
Comments
Kornfeld Eliyahu Peter 12-Nov-14 5:53am    
Are you getting any(!) response from the service?

1 solution

Do you have serialize attribute in the Data contracts. If so your response will be serialized and send as XML.

Regards,
Maheswaran.S
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900