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

jax-ws generated webservice client change service endpoint at runtime

How can I change the webservice endpoint URL of a webservice client generated by the netbeans wizard (webservice client from wdsl URL ). I tried to change the webservice endpoint by both methods given in this question Change WebService endpoint…
WillamS
  • 2,457
  • 6
  • 24
  • 23
2
votes
0 answers

Web service fails until the URL is hit with IE

We have a WinForms application (.NET 4.0/C#) that accesses several web services. We deployed to a client who has some proxy feature on their firewall (no proxy settings in Internet Options on the client machine, but it definitely IS a proxy). The…
Adam Plocher
  • 13,994
  • 6
  • 46
  • 79
2
votes
1 answer

PHP Webservice using NUSoap Client not working

We need to communicate with the .NET webservice url and get the date from the method by passing respective arguments. When trying to use with the NUSOAP library in the reponse i got the error as result in the response node. So i tried the sample…
Srinivasan
  • 433
  • 3
  • 8
  • 20
2
votes
2 answers

Using RijndaelManaged encryption in Silverlight

I'm implementing a webservice client that is required to encrypt the request using 128-bits Rijndael. Because the RijndaelManaged class doesn't exist in Silverlight, I've followed the advice here: This was discussed here: AesManaged and…
2
votes
1 answer

Publicly available webservice I can use

I am learning to write PHP client programs which call webservices with POST & GET. Is there any publicly available webservice I can use for trying out client programs? Basically, I don't want to get into writing a webservice first before I start…
Genboy
  • 57
  • 1
  • 6
2
votes
2 answers

How to return JSON in REST get method using the Odoo full API

I made an api with 'GET' method in odoo10 and I would like the return value is in json. When I run my code below with postman @http.route("/check_method_get", auth='none', type='http',method=['GET']) def check_method_get(self,**values): output =…
2
votes
2 answers

I need some help with web services

Here is my scenario: I have an iPhone app (written in Monotouch but that has nothing to do with the design) that has consumables. I give 25 free consumables when the app is installed. If the user deletes the app and re-installs it, he now gets…
SpokaneDude
  • 4,856
  • 13
  • 64
  • 120
2
votes
2 answers

Ignore invalid Enum values in SOAP deserialization

I have a WebMethod on an ASP.NET webservice which is returning an array of an Enum. If a new value is added, and that value is returned by a function call, then a consumer of the webservice will throw an exception, even though it doesn't care about…
Chris Berger
  • 557
  • 4
  • 14
2
votes
0 answers

how to connect webservices in iphone developement

i am developing location based app,in this app using .net webservices how can connect in theses webservices in iphone,please forward some sample code of in these realted application thanks in advance
Narasimha
  • 3,802
  • 11
  • 55
  • 83
2
votes
1 answer

How to access web service using Boost::Asio?

I wonder whether there is a possibility to access a web service using boost asio library. I have tried following code (in IOS, C++11) which I got from boost asio documentation. But it throws the following. try { boost::asio::io_service…
Kid
  • 169
  • 1
  • 19
2
votes
1 answer

Rest api testing using java POJO and jackson

I am new to webservices testing and i am trying to test a webservice which returns both a JSON as well as XML output . my management wants me to do this with jackson jersery and other libraries for XML i created a java client using jersey and i got…
2
votes
2 answers

How to Securely Transmit Data to/from a Public Web Service

An app I'm working on interfaces with an existing application running on a remote box. Communicaitons with the remote app are via its public web services. I've been asked to build an enhancement which will involve a client making use of the web…
immutabl
  • 6,857
  • 13
  • 45
  • 76
2
votes
0 answers

Axis2-ParseError: javax.xml.stream.XMLStreamException: ParseError at [row,col]:[-1,-1]

I have an Axis2 service running under Tomcat 7. I get the Axis Error: org.apache.axis2.AxisFault: javax.xml.stream.XMLStreamException: ParseError at [row,col]:[-1,-1] Message: Invalid encoding name "". at…
2
votes
0 answers

Android Java - Call a WCF Rest Webservice with Post Request

I'm tired of giving turns to something that seems so simple but it is not to give and have scoured all forums and tututiais . I wanted to do in android a call to a WCF Rest WebService through POST requests . In c# I can do it, sending the post , url…
2
votes
1 answer

Difference between ClientFactory and ClientBuilder in JAX-RS

What's the difference between creating a new Client instance using ClientFactory and ClientBuilder in JAX-RS?
RedPe4rl
  • 185
  • 1
  • 2
  • 10
1 2
3
15 16