Skip to Main Content

Intelligent Advisor

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Server did not recognize the value of HTTP Header SOAPAction

Ruhul AminNov 22 2016 — edited Nov 22 2016

Hi,

     I have developed a SOAP webservice  and want to connect to opa-hub to pre-seed data in OPA interview.

My web service is working good in browser.

When I tried to create a web service connection( URL : http://myapp.eastus.cloudapp.azure.com/StudentDataService.asmx )

It is giving me a error

Server did not recognize the value of HTTP Header SOAPAction:CheckAlive

Here is the Soap request and Response copied from browser:

HelloWorld

Test

The test form is only available for requests from the local machine.

SOAP 1.1

The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.

POST /StudentDataService.asmx HTTP/1.1 Host: myapp.eastus.cloudapp.azure.com Content-Type: text/xml; charset=utf-8 Content-Length: length SOAPAction: "http://myapp.eastus.cloudapp.azure.com/StudentDataService/HelloWorld"  <?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <HelloWorld xmlns="http://myapp.eastus.cloudapp.azure.com/StudentDataService" /> </soap:Body> </soap:Envelope>
HTTP/1.1 200 OK Content-Type: text/xml; charset=utf-8 Content-Length: length  <?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <HelloWorldResponse xmlns="http://myapp.eastus.cloudapp.azure.com/StudentDataService"> <HelloWorldResult>string</HelloWorldResult> </HelloWorldResponse> </soap:Body> </soap:Envelope>

SOAP 1.2

The following is a sample SOAP 1.2 request and response. The placeholders shown need to be replaced with actual values.

POST /StudentDataService.asmx HTTP/1.1 Host: myapp.eastus.cloudapp.azure.com Content-Type: application/soap+xml; charset=utf-8 Content-Length: length  <?xml version="1.0" encoding="utf-8"?> <soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"> <soap12:Body> <HelloWorld xmlns="http://myapp.eastus.cloudapp.azure.com/StudentDataService" /> </soap12:Body> </soap12:Envelope>
HTTP/1.1 200 OK Content-Type: application/soap+xml; charset=utf-8 Content-Length: length  <?xml version="1.0" encoding="utf-8"?> <soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"> <soap12:Body> <HelloWorldResponse xmlns="http://myapp.eastus.cloudapp.azure.com/StudentDataService"> <HelloWorldResult>string</HelloWorldResult> </HelloWorldResponse> </soap12:Body> </soap12:Envelope>

here is the source code for test SOAP webservice( .Net Framework 3.5 )

[WebService(Namespace = "http://myapp.eastus.cloudapp.azure.com/StudentDataService")]

    [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]

    [System.ComponentModel.ToolboxItem(false)]

    // To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line.

    // [System.Web.Script.Services.ScriptService]

    public class StudentDataService : System.Web.Services.WebService

    {

        [WebMethod(MessageName = "HelloWorld")]

        public string HelloWorld()

        {

            return "Hello World";

        }

    }

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Dec 20 2016
Added on Nov 22 2016
1 comment
740 views