Questions tagged [tcptrace-pocketsoap]

PocketSoap's tcpTrace; tcpTrace is often used to debug HTTP services and interactions. Use tcptrace.exe as a tunnel between your client & server. tcpTrace will forward all the traffic from a single TCP port your local machine to a single TCP port on the remote server (and vica versa), dumping the TCP stream contents in the process.

PocketSoap's tcpTrace. tcpTrace is often used to debug HTTP services and interactions. Use tcptrace.exe as a tunnel between your client & server. tcpTrace will forward all the traffic from a single TCP port your local machine to a single TCP port on the remote server (and vica versa), dumping the TCP stream contents in the process.

15 questions
9
votes
6 answers

XML From a Web Service Call

Visual Studio makes calling a web service easy, trying to figure out what is going on under the covers is difficult. How can I see the actual XML generated from my .Net app when making a call to a web service?
TGnat
  • 3,903
  • 8
  • 35
  • 46
4
votes
2 answers

When might Application_EndRequest not be called?

We have an ASMX web service hosted in IIS 6, and are seeing some strange behaviour with one of our WebMethods. After an iisreset, the first call to a particular method fails to return to the client, which times out after 60 seconds. I've introduced…
ngoozeff
  • 4,576
  • 3
  • 28
  • 21
3
votes
1 answer

How can i debug HTTP sessions using Fiddler, just like i did with TcpTrace?

Im trying to stop using TcpTrace and start working with Fiddler. But i just can't setup fiddler to just start listening specified port and redirect all requests to the specified WS with another port. All i want is just redirect and monitor all…
Igor Konoplyanko
  • 9,176
  • 6
  • 57
  • 100
3
votes
3 answers

Tools to Debug WCF service

What are the tools available to debug WCF service?.
sundar
  • 57
  • 1
  • 4
3
votes
1 answer

Need assistance posting data to asp.net mvc application using jquery

I've got an MVC application that accepts eitherJSON or XML objects dpending on the request type. This application is based on this article To call a method on the MVC application that requires a complex object, I use the following Javascript…
markpirvine
  • 1,485
  • 1
  • 23
  • 54
3
votes
1 answer

WCF - Socket connection not closed by using WS-Compression with net.tcp binding

Recently I've been working on a WCF app and needs some functionalities to compress the soap message body, so that the size of response from service should be reduced. After some research, I found an implementation available online from…
tshao
  • 1,127
  • 2
  • 8
  • 23
3
votes
3 answers

Simulating a network down to particular process

I am trying to simulate a scenario where connection to the server of one process is down while the connection to another server is up. Just pulling the network cable won't work in my case since I need another process connection to stay up. Is there…
Gant
  • 29,661
  • 6
  • 46
  • 65
2
votes
2 answers

Double request while making POX REST call using WCF with WebHttpBinding set to Basic Authentication

Having an issue while making POX REST call using WCF with WebHttpBinding set to Basic Authentication (HttpClientCredentialType.Basic) Instead of one call from the client with “Authorization: Basic” specified in HTTP Header, two calls are made. First…
1
vote
3 answers

cross-domain policy file error

I am using WCF service (Not RIA) and silverlight I am getting the following error : An error occurred while trying to make a request to URI 'http://localhost:8732/'. This could be due to attempting to access a service in a cross-domain way…
Pawan
  • 293
  • 1
  • 3
  • 13
1
vote
4 answers

Debugging Web Service with SOAP Packet

I have a web service that I created in C# and a test harness that was provided by my client. Unfortunately my web service doesn't seem to be parsing the objects created by the test harness. I believe the problem lies with serializing the soap…
Kievia
  • 55
  • 2
  • 11
1
vote
4 answers

IIS site always returns 404 to WinMo emulator

I'm running Win7x64 Ultimate with Visual Studio 2008. I have a website built in ASP.NET 3.5 and hosted via IIS on my box. I can run the website perfectly fine and I can hit all of the web services that I have built in the website, using a web…
Derick Bailey
  • 72,004
  • 22
  • 206
  • 219
1
vote
1 answer

Pocketsoap TcpTrace does not show response data

I have a web service with endpoint:
Omer
  • 8,194
  • 13
  • 74
  • 92
1
vote
2 answers

Firefox JQuery JSON Issue

I'm using the following code to request data from an ASP.net MVC application. I'm also using TcpTrace so that I can see the request/response. if (isInteger($('#txtDay').val()) && isInteger($('#txtMonth').val()) && isInteger($('#txtYear').val())) { …
markpirvine
  • 1,485
  • 1
  • 23
  • 54
0
votes
1 answer

SOAP services calls from IIS 5.1 (XP) timing out

We have an ASP.NET web application running in IIS that uses the SoapHttpClientProtocol class to make SOAP calls. In the last few days several XP machines have started to report timeout errors when making SOAP services calls. Stack Trace from a test…
redcalx
  • 8,177
  • 4
  • 56
  • 105
0
votes
1 answer

How Sharepoint enables editing data via Excel?

a Sharepoint Web Query allows saving changed Excel cells back to the server. It's quite simple to come up with a custom JSP(or any other dynamic html producer) page to produce data called in QYI file. My question: is there a way to handle in a JSP…
Java-Excel