Questions tagged [soap-client]

An application that calls upon a SOAP server.

A SOAP client is any application that calls upon a server.

Example SOAP Clients

2272 questions
7
votes
3 answers

How to log SOAP messages on client side?

Good day. I'm learning how to write a connector to external SOAP RCP styled service. I'm using jaxws-maven-plugin plugin to generate Java classes from the WSDL file. And I'm using Spring to create the web service client bean: @Configuration public…
Vojtech
  • 2,533
  • 9
  • 34
  • 65
7
votes
3 answers

ASMX web service reference how to set equivalent to MaxReceivedMessageSize

Web Service is an ASMX web service (NOT WCF) I am receiving an error The maximum message size quota for incoming messages (65536) has been exceeded. To increase the quota, use the MaxReceivedMessageSize property on the appropriate binding…
Gustavo
  • 685
  • 3
  • 7
  • 17
7
votes
2 answers

Consume a Web Service that requires WS-Security from ASP.NET 4.5 Application

I need to consume a web service that requires WS-Security based on X.509 certificates from ASP.NET 4.5 application. So far i have created the web reference but i don't know how implement WS-Security. I have no problem with getting the certificate,…
Diane
  • 428
  • 2
  • 6
  • 16
7
votes
2 answers

401 Authentication Error when SoapClient tries to fetch schema file

My application routinely connects to a third-party server to fetch data via SOAP/WSDL: $this->soap_client = new SoapClient("https://[the-domain]:443/[path]?wsdl", array( 'trace'=>1, 'login'=>$this->username, 'password'=>$this->password, …
Ben D
  • 14,321
  • 3
  • 45
  • 59
7
votes
1 answer

SOAP Service Reference in Windows Phone 8.1 Universal app

I try to add a reference to a SOAP WebService. No problem adding it to the Windows 8.1 part of the project. But no chance to do the same for the WP 8.1. Somehow I could only add a new "Push Notification" as a reference. Adding the generated…
Obiwan007
  • 646
  • 1
  • 8
  • 20
7
votes
2 answers

How to make a SOAP request by using SOAPpy?

I'm trying to call a method using a SOAP request by using SOAPpy on Python 2.7. The method is called GetCursOnDate and returns exchange rates. It takes a date parameter. I'm using the following code: from SOAPpy import SOAPProxy import…
Leo
  • 1,787
  • 5
  • 21
  • 43
7
votes
1 answer

Convert C# to PHP

I am accessing a webservice using SOAP and PHP. I can connect to a number of functions through to webservice API. But one eludes me. I have an example but it is in C#. I have tried to emulate the example in PHP with no luck. I have attached the C#…
Cudos
  • 5,733
  • 11
  • 50
  • 77
7
votes
2 answers

Sending XML input to WSDL using SoapClient

I have this WSDL: https://secure.softwarekey.com/solo/webservices/XmlCustomerService.asmx?WSDL I am trying to use SoapClient to send a request to the CustomerSearch method. The code I'm using is as follows: $url =…
Axel
  • 10,732
  • 2
  • 30
  • 43
7
votes
1 answer

PHP SoapClient and reading attributes

I have found numerous explanations about how SoapClient expects you to set attributes in a request, but I simply cannot find a way to read attributes from a response. For example, my SoapClient response has these elements in it: ...
Jesse Skrivseth
  • 481
  • 2
  • 13
7
votes
2 answers

Integrating with SecureNet payment gateway

I'm trying to integrate our software with SecureNet gateway. They have a SOAP based API. The problem I'm having is their WSDL file really doesn't work with PHP. Specifically their WSDL file is split across multiple files with a wsdl:import…
Luke
  • 13,678
  • 7
  • 45
  • 79
7
votes
3 answers

SOAP request with attribute

I can not seem to find out how to set an attribute to a SOAP request without using the XSD_ANYXML encoding. The request parameter should look as follows ...
Pierre Spring
  • 10,525
  • 13
  • 49
  • 44
7
votes
2 answers

Generate SoapServer from WSDL in PHP

I have a WSDL generated by a webservice in java, and I need to replicate this same web service in a php application. I looked, and most scripts I found just generate the client. And I need server side that will be consumed.
Fabio
  • 109
  • 1
  • 7
7
votes
1 answer

Rails 3.1 Savon soap request giving Timeout::Error: Timeout::Error ut using curl i get response

I am having trouble to construct the soap client using savon in rails 3.1. But i am able to successfully get the response when i try to make the request from the curl command line. My curl request from command line look like this curl -d…
6
votes
1 answer

Calling soap API without WSDL in python

I need to call a SOAP API which has no WSDL. The API Server is written in Perl's SOAP::Lite and using SOAP::Lite as client works without WSDL. I'm trying zeep and suds in python but both of them need WSDL. How can I use SOAP API without WSDL? Is…
Ariyan
  • 14,760
  • 31
  • 112
  • 175
6
votes
1 answer

Asp.Net Core 2.0 WCF Client CustomBinding PlatformNotSupportedException: BuildChannelFactoryCore is not supported

I need to be able to send authorization in my Client using custom bindings in Asp.Net Core 2.0. It works in Asp.net 4.6.1 and doesn't work in Core 2.2. I am trying to connect to a Workday Public Web Service in our Tenant. Since I was able to make…
Paul Hegel
  • 61
  • 1
  • 6