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
0
votes
2 answers

Convert XML to C# object

I am having difficulty trying to convert my XML to a C# object. This needs to be done dynamically. I think the problem exists somewhere in the c# object class. The XML
ashley g
  • 857
  • 3
  • 11
  • 21
0
votes
1 answer

Attachment data send from Soap UI is not received in WCF service

I have a wcf service that looks for a stream data [MessageContract] public class NextService : INextService { [WebInvoke(Method = "POST", UriTemplate = "*")] public void Upload(Stream data) { try { …
makdu
  • 908
  • 2
  • 13
  • 26
0
votes
1 answer

How to consume a Java soap web service using Java app based on JDK 11

I created a web service with java, I've used jaxb and jax-ws annotations with the help of maven dependencies, I'd like to consume that web service with java application after some research I found that I should run a wsimport command to generate…
0
votes
1 answer

Calling multiple parallel call to SOAP services using spring boot # SOAP Service

I am currently using spring boot. I have a list of request objects (around 1000) and would like to call SOAP services in parallel for all the objects and get the response for all of them. Once all the request is processed, I want to execute my…
Vijay Pandey
  • 1
  • 1
  • 4
0
votes
1 answer

How to Intercept Axis/Apache SOAP request, can I use Log4J?

So Im able to successfully send a SOAP call to this web service. For better debugging, I would like to be able to intercept the actual XML body request being sent to the web service. How would I go about doing this? Any documentation ,sample demo,…
ReyAnthonyRenacia
  • 17,219
  • 5
  • 37
  • 56
0
votes
2 answers

WCF connected service ServicePointManager.ServerCertificateValidationCallback not executed

I added WCF connected service reference in my project and set ServicePointManager.ServerCertificateValidationCallback function. For some reason, this callback function is ignored when i am requesting server. I have to notify user about certificate…
Erik Parso
  • 194
  • 14
0
votes
0 answers

PHP 7.0 SoapClient on Debian 9 gives error randomly

I am connecting to a SOAPServer using an https WSDL uri which gives errors once out of 10 or 15 attempts. I am connecting to this SOAP uri once every 5 minutes. I am occasionally getting the below errors randomly. Error Fetching http headers …
Dilani
  • 533
  • 1
  • 6
  • 22
0
votes
2 answers

Php SoapClient is very slow on first connection

I use php SoapClient to call M3 (Movex) webservices, stored on our internal server. My Symfony 3.4 project which does the calls is on another internal linux server. I noticed that the initialization of the soap client is very slow (2-3 minutes) when…
Eve
  • 776
  • 2
  • 11
  • 32
0
votes
1 answer

Returning a class instead of void from port's method

I am a beginner in SOAP services. I have a use-case to consume some SOAP methods. Therefore, for that, I have coded a client to get some service port's methods data. Currently, I realized from the WSDL that I imported, the specific service methods…
jOasis
  • 394
  • 2
  • 10
  • 32
0
votes
1 answer

how to invoke the method of webservice with parameter?

I should invoke webservice to add a new user. for this i used WSDL2JAVA to generate artifacts from WSDL My Endpoint Interface has the different operation that i can invoke: @WebMethod @WebResult(name = "addUserReturn", targetNamespace =…
0
votes
1 answer

How do I access the credentials in web service that the user has set while calling the webservice?

I have a webservice e.g. [WebService(Namespace = "http://tempuri.org/")] [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] // To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line. //…
TestinGuy
  • 21
  • 5
0
votes
1 answer

FileNotFound exception when calling a SOAP WebService

I developed a console application in C# that should call a Web Service method. After I added the service reference and VS created the Proxy classes, I could use this to call the method: var seed = new Seed.CrSeedClient(); string…
jstuardo
  • 3,901
  • 14
  • 61
  • 136
0
votes
1 answer

SOAP web service call using WebServiceTemplate in SpringBoot client

I am calling a SOAP web service using WebServiceTemplate. I am able to call the service using SOAP UI with following input and getting the correct response.
likeGreen
  • 1,001
  • 1
  • 20
  • 40
0
votes
1 answer

ProcessingCompleteFlag SOAP

Sometime I get correct response which is expected... But sometimes it fail and return xml like this: false
Vladimir Djukic
  • 925
  • 2
  • 9
  • 28
0
votes
0 answers

wsimport not generating type class

I have the following element in my web service request and used wsimport to generate client. I also have other enum types which get classes generated. As this particular type contains values like 1-Critical I think it fails to generate enum type but…
itsraja
  • 1,640
  • 4
  • 32
  • 48