Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I m consuming java based web service with c#.net app.

I m sending soap message in xml format.

But Im receving this error message:

ns1:Client.NoSOAPAction no SOAPAction header

share|improve this question
2  
It kind of sounds like you're building the request manually. Since it's a SOAP service, you should be able to generate a proxy either in VS (add service reference) or with wsdl.exe. That proxy should generate the correct request xml and headers, including SOAPAction. If you're doing this and it's still not working, as James Anderson said, you might want to check the WSDL being returned by the java service. – James Manning Jun 3 '10 at 13:29

1 Answer

up vote 1 down vote accepted

You need to look at the WSDL for your service.

The SOAPAction is effectivly the URL you are sending the soap envelope to, so whatever software you are using should set this up in the http headers.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.