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

Android JSON Parsing View Gujarati Character Using Web Service

View Gujarati Character Using Web Service in Android JSON Parsing I Got Gujarati Word Like the one in the images I've included. If Gujarati Word is presented like અપૂર્વ, then it appears like the 1st rounded circle in the image. Please help me to…
APOORVA DOSHI
  • 61
  • 1
  • 3
-1
votes
1 answer

Set class property at runtime

I have a problem with my code, I cannot get it the 'test' to get the values im trying to assign to it. rec = new Record(perosn, actually, com, Centre, CCentre); webservicename.singleSummary test = new webservicename.singleSummary(); test.person =…
Ebikeneser
  • 2,582
  • 13
  • 57
  • 111
-1
votes
1 answer

Catch SocketTimeOutException In cxf Jaxrsclient

I am making a rest call using apache cxf . I am able to set timeout during invoking a service and corresponding socketConnection timeout exception gets thrown but i am not able to catch the exception and set it as user definied exception. Please…
-1
votes
2 answers

Wsimport don't work

I want to program a WebService Client with Java but it doesn't work. I use "c:\Program Files (x86)\Java\jdk1.8.0_60\bin\wsimport.exe" http://ovc.catastro.meh.es/ovcservweb/OVCSWLocalizacionRC/OVCCallejero.asmx?wsdl Run the command and I obtain…
1938web
  • 25
  • 1
  • 6
-1
votes
1 answer

How to handle a webservice client breakdown in my code

Im writing a program, where I use a webservice client. 24-7-365. With a default frequency the program runs on a server. My problem is how do I handle when the webservice (webservice delivered by one of our business suppliers) is down and my object…
Lars Hansen
  • 155
  • 1
  • 2
  • 16
-1
votes
1 answer

Security of Saving user data on mobile

My mobile app has users, so after someone log in, I send back the user id to be used for future requests (GET and POST HTTP web service calls to manage user data), and I store it in an sqlite table called user_settings after encrypting it using…
M.R.M
  • 540
  • 1
  • 13
  • 30
-1
votes
1 answer

How can I create WebService Client side on HTML5 that sends a integer number?

I just want a simple example of a WebService Client in HTML5 that sends a integer number to a link on my network. I've tried but it didn't work, the client side that I used is below if necessary. Thanks in advance.
user4502652
-1
votes
1 answer

Problems with returning json PHP encode that are NULL

I am fetching a json string $url = 'https://api.twitch.tv/kraken/channels/rootkitztv/follows'; and want to fetch the users who have a profile pic. Those don't it returns as 'null'. Here is my script $ch = curl_init($url); …
ServerSideSkittles
  • 2,713
  • 10
  • 34
  • 60
-1
votes
1 answer

No connection with webservice Windows Phone 8.1

In my universal app i'm connecting with remote webservice. In windows phone I get WebException : The remote server returned an error: NotFound. The same application I have on windows 8.1 and there connection with webservice work fine. What can be…
Nethia
  • 1
  • 2
-1
votes
2 answers

Tools to help prove to a customer web application latency is from their network

I need to be able to prove to a customer that the latency issues he is having is as a result of their slow internet or that this is nothing to do with my service. The customer is trying to access a web application hosted in the UK. The customer is…
-1
votes
2 answers

how to build a web service client through ssl

I'm new to SSL and security and I want to build a java client for a web service that uses SSL. the server is properly configured to use two way ssl configuration, but how to build the client.. also if spring has anything for this it will be…
monim
  • 3,427
  • 3
  • 23
  • 36
-1
votes
1 answer

how to get data form this webservices using php?

I want to get respond from this web services. http://www.w3schools.com/webservices/tempconvert.asmx web_server.php file
-1
votes
1 answer

How to consume web service using WSDL file in java using IBM RAD 8.5

I am new to Webservices. We got WSDL files and we need to call its web service using IBM port lets. Someone plz help me on this.
user3592257
  • 105
  • 1
  • 3
  • 16
-1
votes
3 answers

Printing auto generated WS client response

I auto generated WS client from WSDL file (using eclipse). I am using this client to invoke a method, for example: Proxy proxy = new Proxy(); try{ object view = proxy.invokeEndPoint(input); } catch (Exception e) { …
Michael A
  • 5,770
  • 16
  • 75
  • 127
-1
votes
3 answers

Android app crashes when connecting to webservice LOCAL

I got a problem connecting to my webservice from an Android client. In my MainActivity class the program crashes at the line 66: transporte.call(accionSoap, sobre); I think that the problem could be something with the accionSoap, any help would be…