Questions tagged [webservices-client]

A web service client is a consumer of a defined web service, based on its contract (the service API) and constraints (i.e. security).

A web service client is a consumer of a defined web service, based on its contract (the service API) and constraints (i.e. security).

Web service clients can be automatically generated (based on a given contract and via technology related tools) or developed using the given service API and a technology of choice.

234 questions
2
votes
1 answer

sending SOAP request with Matlab

I've been having trouble sending Matlab SOAP request callSoapService(endpoint,soapAction,message) <--http://www.mathworks.com/help/techdoc/ref/callsoapservice.html For instance how would I find the endpoint, soapAction, and message in…
user1431282
  • 6,535
  • 13
  • 51
  • 68
1
vote
1 answer

Need Apache Axis (not Axis2) client example for calling web service with SSL

I have searched in vain for a straightforward example of calling a web service requiring SSL authentication and that has a self-signed certificate. I already have the code to be able to trust all certs, so you don't need to provide that. Just a…
mjkrumlauf
  • 89
  • 1
  • 4
1
vote
1 answer

Web service client (applet) keeps asking for "/META-INF/services/javax.xml.ws.spi.provider"

Consider the following snippet running in an applet insdie a browser: WebServiceClient s = MyWS_Service.class.getAnnotation(WebServiceClient.class); String servicePath = pathName; String wsdlLocation =…
adaj21
  • 543
  • 3
  • 11
  • 25
1
vote
5 answers

Sending commands to the client with Javascript

For a site I'm planning, I need the server to be able to send commands to a logged-in user's browser. Simplic example: When a call center rep gets a call, I want to automatically pull up the lead who is calling in. I've got the rest of the…
Brian MacKay
  • 31,133
  • 17
  • 86
  • 125
1
vote
0 answers

difference in classes generated for a wsdl file in .net and java

i am trying to develop a client application (both in java and .net) using a wsdl file. The problem scenario is that: in .net the classes generated by adding wsdl is different to the classes generated by adding same wsdl file in java. here the…
vicky
  • 31
  • 4
1
vote
1 answer

capturing .net webservice out parameter using ksoap2

i was trying to call a .net webservice with the Android SDK, that was simple using the ksoap2 library, including passing and getting complex types.yet i faced a more complicated problem, the SoapSerializationEnvelope.getResult() or…
Sohayb
  • 11
  • 2
1
vote
4 answers

Using a progress bar in C#

I am currently getting the status of files getting sent to a webservice to be displayed in a richTextBox however for demonstration purposes I would prefer it to be shown as a progress bar. so far my code is - richTextBox1.Text =…
Ebikeneser
  • 2,582
  • 13
  • 57
  • 111
1
vote
2 answers

Accessing SOAP web service from Silverlight 4 client

I am doing a proof of concept where I access a public web service from my Silverlight 4 client application. When I attempt to make the call this sample public web service, I get the following error: An error occurred while trying to make a request…
Keith Adler
  • 20,880
  • 28
  • 119
  • 189
1
vote
1 answer

Updating a Sharepoint List from flex

I have been trying to find a way to connect Flex to sharepoint in an elegant way that allows me to update lists, build charts, and create widgets with FLEX on the client-side. I have researched this extensively but I am running into circles. I…
Eddie
  • 11
  • 2
1
vote
1 answer

jax-ws redirect http / https

I am having problem with jax-ws making it work if the server return 301 on http to https. I got an exception, and after debugging it with charles it seems that the redirect doesn't work. I also noticed that there is some trick for http to https[*],…
user3804873
  • 155
  • 2
  • 11
1
vote
1 answer

Java soap client for EJBCA webservices

I am trying to build a Java Soap Client to call Ejbca webservices. I'm facing to an issue at certificat level. Exception in thread "main" org.ejbca.core.protocol.ws.AuthorizationDeniedException_Exception: Error no client certificate received used…
hbellahc
  • 81
  • 1
  • 11
1
vote
1 answer

webservice referer

It's possible to get the webservice caller url referer? If yes how?
Pedro
  • 2,907
  • 6
  • 34
  • 46
1
vote
1 answer

Javax.xml.ws Client for OAuth2.0

I had implementation of client using javax.xml.ws for a soap webservice. It work fine with basic authentication. Where I am setting authentication parameters like…
khan
  • 2,664
  • 8
  • 38
  • 64
1
vote
2 answers

Consuming SOAP web services without the add reference approach

I am looking to make a service agent in C# from scratch. If the contracts/XSD are shareable via WSDL or dll. How do I go about writing a light weight service agent that can be configured to make calls to the SOAP webservice. When you do an add…
Perpetualcoder
  • 13,501
  • 9
  • 64
  • 99
1
vote
0 answers

HTTP 503 when calling long-running ASP.NET web service

We have ASP.NET Web Service running on IIS6 that has long-running methods (processing takes about 5 minutes). When we call the web service from Win 2003 Server, our client gets HTTP 503 error after waiting for the response for couple of minutes. So…