balaji palamadai
balaji palamadai

Reputation: 629

Web Service Request issue in C#.net WSDL

We are creating a web service request for IBM Maximo web services in C#.net , the issue is apart from for few web service requests we get succesful response for all other web services, but for some requests there is no response at all, but when we give request for the same using the SOAP UI, we get response.

Where would the problem be ? Any ideas?.

Many thanks , byfour

Upvotes: 0

Views: 523

Answers (1)

CodeCaster
CodeCaster

Reputation: 151710

Any ideas?

Start debugging. First of all, of course your application contains logging, so you can see whether any exceptions occur while sending the message.

If no exceptions occor on your end, you can configure tracing to log all actions the WCF plumbing is executing, so you can see whether that part goes well. If it does, you can start debugging the network. If you see your message going over the wire, it's time to pick up the phone and call the other party and ask if they see anything happening after they receive your messages.

Upvotes: 1

Related Questions