Questions tagged [soap1.2]

SOAP 1.2 refers to the latest version of the Simple Open Access Protocol - a protocol used in exchanging structured information through web services.

Version 2.1 of SOAP became a standard in 2003, taking over from v.1.1.

Improvements over v.1.1 include: - A clearer processing model - Better interoperability - Use of XML for the information set which makes for no restrictions on how the information set is transported. - HTTP Binding with support for HTTP Post and Get operations. - Improved extensibility model - Better support for web standards.enter link description here

29 questions
16
votes
0 answers

SOAP port uses a non-standard SOAP 1.2 binding

I am using the jaxws maven plugin to generate webservices access classes. During the generation the following warning is printed: [WARNING] SOAP port "MyServicePort" uses a non-standard SOAP 1.2 binding. line XXX of http://...?wsdl By adding an…
Lonzak
  • 9,334
  • 5
  • 57
  • 88
9
votes
3 answers

ServiceStack Soap 1.2 HTTPS Client

I have a ServiceStack based Soap Client, which operates correctly for HTTP but when I try to use HTTPS it gives me this error ServiceStack.WebServiceException: The provided URI scheme 'https' is invalid; ex pected 'http'. Parameter name: via --->…
Paul Rooney
  • 20,879
  • 9
  • 40
  • 61
9
votes
1 answer

How to identify soap Request is SOAP 1.1 or SOAP 1.2

In java, How do I check if the version of SOAP Request XML is SOAP 1.1 or SOAP 1.2.
user3089869
  • 209
  • 2
  • 6
  • 14
5
votes
4 answers

ksoap2 : java.lang.IllegalArgumentException: size <= 0 while making a http.call

I want to connect to a dot.net based Webservice with my Android 4.03 Device using Ksoap2. My problem is when i call the soap request i get this exception: 11-16 08:35:08.649: W/System.err(6392): java.lang.IllegalArgumentException: size <= 0 11-16…
Lukas Jesenko
  • 51
  • 1
  • 3
4
votes
1 answer

Spring Boot- Producing a SOAP web service that expects application/soap+xml content type

I followed a tutorial Produce SOAP WS. I changed the DefaultWsdl11Definition under WebServiceConfig to generate soap12 binding for the service by adding: wsdl11Definition.setCreateSoap12Binding(true); In my generated wsdl file, I can see that…
sajjad
  • 73
  • 1
  • 3
  • 6
3
votes
3 answers

PHP | SOAP 1.2 | How to set WS Addressing

Here is the WSDL ... I am using the SOAP Client in PHP with documentation HERE ... Soap Call $wsdl = 'https://api.krollcorp.com/EBusinessTest/Kroll.Dealer.EBusiness.svc/Docs?singleWsdl'; try { $client = new SoapClient($wsdl,…
ma77c
  • 1,052
  • 14
  • 31
2
votes
0 answers

Soap XML is different between two machines

I've started my .net service on two machines (one is Windows server 2012 and the other one is Windows 7). The service uses the same compiled c# code on each machine. On the windows server the xml response create a xmlns and calls it "a" and puts it…
2
votes
1 answer

ServiceStack: The maximum array length quota (16384) has been exceeded while reading XML data

I've set up ServiceStack to provide web services for my MVC 4 website. I will only be using Soap1.2 with the web services and so far it's been working well. Except when I'm trying to send a byte array that's too large after which I get the following…
Solitude
  • 31
  • 1
  • 5
2
votes
1 answer

unable to get Response from HttpResponse when passing soap object (soap1.2) android?

Code : String response ; try { final String SOAP_ACTION = "http://tempuri.org/myAction"; final String URL = "MYURL"; HttpClient httpClient = new DefaultHttpClient(); …
Tarsem Singh
  • 14,139
  • 7
  • 51
  • 71
2
votes
1 answer

Is it possible to call WSHTTPBINDING from android?

private static final String SOAP_ACTION = "http://tempuri.org/IService1/HelloTest"; private static final String METHOD_NAME = "HelloTest"; private static final String NAMESPACE = "http://tempuri.org/"; private static final String URL = ""; //blank…
Nirmal
  • 2,340
  • 21
  • 43
1
vote
0 answers

Spring WebService, Spring Boot, SoapFault with SOAPFaultException in SOAP 1.2 not showing attributes like Details, Role

im developing SOAP WebService Server with Spring boot with SOAP 1.2 Protocol. Im trying to fill the SOAPFault with all details it needs and throwing wrapped in SOAPFaultException. But the SOAPFault response in SOAPUI is not showing the detail…
Erik Bors
  • 133
  • 1
  • 14
1
vote
0 answers

BizTalk Sendport WS Secure OASIS WCF Custom and Behavior

I have a BizTalk app that is currently using the WCF-Custom Adapter. The config Sendport, the problem is that only the body and the TimeStamp have to be signed and the messageProtectionOrder property does not allow the only signature. I need…
Sergio
  • 11
  • 2
1
vote
0 answers

SOAP server returns unexpected Action

We are trying to implement a client that connects to a server using SOAP. We are using a WSDL file to generate the client class with the svcutil. So far I have managed to get the communication working so far as to send a message and receive a…
Markus
  • 3,297
  • 4
  • 31
  • 52
1
vote
0 answers

PHP | SOAP 1.2 | HTTP Soap Action

The WSDL can be found HERE. SOAP call $wsdl = 'https://api.krollcorp.com/EBusinessTest/Kroll.Dealer.EBusiness.svc/Docs?singleWsdl'; try { $client = new SoapClient($wsdl, array('soap_version' => SOAP_1_2, 'trace' => 1)); $result =…
ma77c
  • 1,052
  • 14
  • 31
1
2