views:

38

answers:

1

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

+1  A: 

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.

James Anderson