c# - how to check the dynamic behavior of a web service (WCF) from process monitor? -


i need monitor behavior of web service (wcf) has been published on desktop iis6.

it built c# in vs2013 on win7.

i need consume/access service laptop downloading file web service.

 webclient.downloadfile(myuri, myfile); 

this called c# vs 2010.

i have installed fiddler, ms process explorer , cygwin (watch "ps -w") in order monitor has happened when

downloadfile() 

was executed.

but, in process monitors, cannot see dynamic update behavior of desktop service host.

-----update ----

i want monitor process of how host transfer data client, becasue in client (my laptop), downloadfile() cannot download files larger 64kb. found on server side (my desktop), thought set maxrequestlength = 1 in wbe.config, can still download files long smaller 64kb. so, think desktop must have default setting overwrite max file size allowed download.

i have checked setting of timeout, minbytepersec, maxrequestlength, weblimit of iis , web.config on client , server (my desktop). none of them can solve problem.

when copied code , debug in desktop, got error of

 "the remote server returned error: (504) gateway timeout." 

but, when run same program laptop. no these errors.

in fiddler, got

[fiddler] readresponse() failed: server did not return complete response request. server returned 65536 bytes.  


Comments

Popular posts from this blog

PHP DOM loadHTML() method unusual warning -

python - How to create jsonb index using GIN on SQLAlchemy? -

c# - TransactionScope not rolling back although no complete() is called -