Questions tagged [webservice-client]

An application which calls on and consumes the response of a web service.

An application which calls on and consumes the response of a web service.

1128 questions
6
votes
4 answers

web service proxy setting

In c# 4.0, I have a web service called ManufacturerContactDetails. I am calling that web service from a windows app using the following: var ws = new ManufacturerContactDetailsWebServiceSoapClient(); ContactDetails cd =…
Fidel
  • 7,027
  • 11
  • 57
  • 81
6
votes
3 answers

How does a webservice work

I am new to webservices and i want to implement webservices by using java in my eclipse project. So can anyone tel me how to implement and creating a project please Thanks
user314344
  • 105
  • 1
  • 2
  • 9
6
votes
2 answers

Consume a web service in R

Here's the scenario: I have JBoss serving a web service with JBossWS providing me with a wsdl. I have connected and used it from both .NET and Java so far (and it has been quite easy once I figured it out). I am now trying to do the same with…
caseyboardman
  • 799
  • 2
  • 11
  • 26
6
votes
0 answers

Create SOAP clients dynamic by WSDL

I'm trying to convert this code, to work at .net core... This code reads a WSDL file, and dynamic generate the assembly (because I have multiple wsdl files). But this code not compile at core... because I don't have for example the…
Steve
  • 107
  • 7
6
votes
1 answer

How to test fileupload using SOAP UI

How to test fileupload using SOAP UI. There is a service which accepts file as input I want to simulate that using SOAP UI It gives me . content should be inline .
NewBeee_Java
6
votes
2 answers

Getting sun.security.validator.ValidatorException: PKIX path building failed Error

My application calls a web service in order to authenticate a specific user in that web service. That web service has their own self-signed CA certificate. I am using POST REST call to that service to authenticate a user by passing users 'username'…
Sk Shoaib
  • 63
  • 1
  • 1
  • 7
6
votes
2 answers

Providing keystore to webService client

Hi I have created a web service client in eclipse from wsdl file. But when I try to access the service from client it says. No SSL configuration available for the endpoint. And then the address of my endpoint. Please let me know how can I provide…
ankit
  • 4,919
  • 7
  • 38
  • 63
6
votes
2 answers

How to get SOAP message while using a Axis 1.4 wsdl2java-generated client

This is probably an easy question for anyone with any moderate expertise with web services using Apache Axis. I have a web service client that was generated by wsdl2java in Axis 1.4. I am writing unit tests that need to access the actual SOAP…
rshepherd
  • 1,396
  • 3
  • 12
  • 21
6
votes
3 answers

SoapUI vs Java Web Service Client

If a SOAP web service is working well via SoapUI (producing the correct SOAP responses), while building a web service client in Java using different APIs/frameworks to call this web service is facing different issues, is it safe to consider this web…
Aziz Alfoudari
  • 5,193
  • 7
  • 37
  • 53
6
votes
2 answers

Implementing Re-connect Strategy using Ruby Net

I'm developing a small application which posts XML to some webservice. This is done using Net::HTTP::Post::Post. However, the service provider recommends using a re-connect. Something like: 1st request fails -> try again after 2 seconds 2nd request…
Matt
  • 1,610
  • 2
  • 17
  • 24
5
votes
1 answer

Applet Web service client, with Eclipse Indigo using Apache CXF,

I'm trying to consume a web service within an applet. For that objective i've tried Apache and Apache2, both with good results but the problem is that the jar dependencies are far too fat for my application (the jar for axis or axis2 are over 1.5MB,…
Anibaru
  • 193
  • 1
  • 2
  • 12
5
votes
2 answers

Failure to call web service over HTTPS

I'm developing a .Net application that communicates with a web service to get some data. The connection between the .Net application and the web service is done over HTTPS. When I call the web service from the .Net application, I get the following…
Mouhammed Soueidane
  • 1,056
  • 2
  • 24
  • 42
5
votes
0 answers

Generating missing Webservice Proxy Class

We are using axis webservices in our projects. Up to now we generated our webservice clients within Eclipse. We choose New -> Other -> Web Services -> Web Service Client. Afterwards we selected the wsdl, changed the step to develop client and choose…
Udo Held
  • 12,314
  • 11
  • 67
  • 93
5
votes
3 answers

how do I make my application read the application config instead of machine.config?

I have an word add in application created in c# which is accessing a web service and is perfectly working if installed outside Program Files folder. the weird thing is that when I install this in Program Files folder, the client is failing to read…
Red
  • 1,141
  • 8
  • 13
5
votes
1 answer

WCF set Endpoint and Binding dynamically in code

Yes, I've read the other questions on SO, MSDN, and other sites, but I found no answers as clear as I can understand. I need to set my Silverlight application's WCF references relative to the site that it's loaded from, but I can't get it to work.…