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

JSON Client Is not receiving Data from The Server for PHP development

This is my first question on stackoverflow, so i apologize in advance if its been asked and answered before. I tried searching but could not find an answer, or maybe i don't know the exact terms to use. I'm current learning PHP and Android and…
0
votes
0 answers

Web Service in CI, PHP

Hy, i have problem with my code. i use RESTful web service with CI Framework. //model in Rest Server public function ambil($semester, $matkul, $kelas){ $this->db->select('mahasiswa.nama, mahasiswa.nim, k.grup'); $this->db->from('mhs…
0
votes
0 answers

Kerberosmixed authentication ADFS mulesoft webservice consumer

I am trying to call ADFS from the Webservice Consumer component in MuleESB with the kerberosmixed authentication, but I cannot make it work. Does anyone know how to make it work? My setup is as follows: My Transformer message building the message…
Yantes
  • 251
  • 3
  • 18
0
votes
2 answers

Can't read JSON reply from web service

So I have a JQuery modal dialog form that takes in a user's registration info, which is then sent as JSON to a web service. The web service processes the registration request and sends back its own JSON. This all works, except I can't figure out…
Daniel Anderson
  • 275
  • 3
  • 16
0
votes
1 answer

Can an asp.net app integrate with a Google App

Looking to drive the content displayed on my Google Apps domain by using my IIS7-based webservice. Would it be more productive to ask 'how can i drive a Google Gadget with asp.net'?
justSteve
  • 5,444
  • 19
  • 72
  • 137
0
votes
0 answers

Apache CXF could not send message to third party webservice connection timeout but works from soapUI when Authorization header is added

Apache CXF could not send message to third party webservice and throws away connection timeout, but it works from soapUI when Authorization header is added. we have applied few solutions provided in other similar questions, but didn't work. -…
user2885920
  • 31
  • 1
  • 6
0
votes
1 answer

ServiceStack Client multiple GET arguments (not comma separated)

I am writing a client wrapper over a RESTful API which can take more than one value for an argument. Take for example this endpoint /rest/bug?product=Foo&product=Bar My class for this is public class SearchBugRequest : IReturn { …
0
votes
1 answer

jsonp memory leak

So I've recently setup a chrome extension to refresh a page and call a jsonp web service I've written but there is a memory leak. I've searched all of the internet to find solutions and nothing seems to work. I've used the plain jQuery .ajax() call…
0
votes
1 answer

connecting with WCF client

I am trying to connect to a Java based service from WCF .NET client. the address of the service is something like https://xxxxx:4444/myownservice I can successfully access the WSDL on https://servername:4444/myownservice/?WSDl but when I run the…
Ghassan Karwchan
  • 3,355
  • 7
  • 37
  • 65
0
votes
2 answers

Invoke of webservice fails with HTTP status 400 Bad Request

I'm getting a failure in my web application calling a webservice: Server Error in '/zVersion2a' Application. The request failed with HTTP status 400: Bad Request. Here is a link to the webservice itself (this…
John Adams
  • 4,773
  • 25
  • 91
  • 131
0
votes
1 answer

SSL exception during consuming web service in weblogic 12c with CXF generated client

I've got a CXF 2.7.18-enabled SOAP WebService client in Weblogic 12.1.3.0.3. There is an SSL check during WebService Proxy Client creation and it passes. But during an actual method call I get an SSL exception (below). If I add properties with…
0
votes
1 answer

Tracking webservice usage in Java

I am using a 3rd party (address validation) WebService in our application. The license to the WS includes only certain number of calls, exceeding which we pay more. I am trying to keep track of the usage within our application, so we can warn the…
svaratech
  • 241
  • 1
  • 4
  • 17
0
votes
1 answer

how to create a cycle in zephyr using zephyr rest api?

I am trying create a "cycle" in the zephyr using the zephyr java rest API.I have written the following client code to create cycle. String auth = new String(Base64.encode("test.manager:test.manager")); Client client1 = Client.create(); …
0
votes
1 answer

Call Web Service Method from R

I am calling a WebService Method using R with SSOAP Package. I Created a SoapServer Object s2<-SOAPServer("http://www.webservicex.net","http://www.webservicex.net/stockquote.asmx?op=GetQuote") and called the method using .SOAP as…
utkarsh
  • 333
  • 1
  • 3
  • 11
0
votes
2 answers

Web2py parsing json return values

I'm just starting with web2py and python, I am trying to utilize a rest web service using Requests, the call goes through ok and I get the appropriate data back but I am having trouble finding information on how to parse the response to a field.…
cmhdev
  • 43
  • 8