开发者

How to call a WCF Service methods on a test server (without VS2010) in C#

开发者 https://www.devze.com 2023-01-19 00:29 出处:网络
i created a WCF service that also writes into a log file. i put it On the IIS and run the SVC file to check if it runs ok and it does.

i created a WCF service that also writes into a log file. i put it On the IIS and run the SVC file to check if it runs ok and it does.

how do i simulate its methods? do i create another web site that calls its methods, and use the log file to trace its step开发者_如何学Gos ? can i install WCFTestClient on the test server ?

what is the best way to simulate wcf methods without a VS2010 installed ?

in asmx services you just "browse" the service and input the parameters in the service methods, can i do that in WCF methods ?


You don't need to install WCFTestClient on the server. You could use it from a remote machine to call the service. If your service uses an interoperable binding you could also take a look at SoapUI.

0

精彩评论

暂无评论...
验证码 换一张
取 消