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

best practice for cxf ws client to send request to server (soap)

I have a spring webapp. There is a screen need to make a call to another webservices (Soap protocol- not restful). I am using cxf to develop that web service client with contract first approach. basically, I follow the cxf sample code:…
David
  • 3,538
  • 9
  • 39
  • 50
0
votes
1 answer

Jboss EAP 7 Webservice issue "Could not unwrap Operation", Incorrect SOAP request is generated

I am migrating our Jboss 5 webservices to Jboss EAP 7. While invoking the service, we are seeing issues where the generated SOAP request has merged two tags resulting in Error response. First I see a warning: Could not unwrap operation 09:53:10,936…
Avinash Moram
  • 67
  • 2
  • 13
0
votes
0 answers

Calling web service not working

I trying to call a web service using SOAP protocol with PHP, but it doesn't work. The url on documentation is: URL: http://api.teleport.com.br/wsdl/Teleport My code: ini_set('soap.wsdl_cache_enabled',0); ini_set('soap.wsdl_cache_ttl',0); $url =…
Guilherme
  • 21
  • 4
0
votes
1 answer

How can i get Data from Screen IN401000 using Webservices

Hello everyone i have this problem i try to get the info from this table (for example one inventoryID and all of the subarticle), but the consult is crashing because it's takes a lot of time. I'm stuck right now, i have this in php but if someone…
Beny Hdez
  • 92
  • 1
  • 8
0
votes
1 answer

Nillable = false is not working in apache cxf

I am generating wsdl from java. I have given nillable = false in java field but the field accepts empty value from web service request. My bean is import java.util.Date; import java.util.Formatter; import java.util.Locale; import…
user6543599
  • 541
  • 2
  • 8
  • 18
0
votes
1 answer

How to call Rest Webservice in iPhone using the following details

I have a URL which supports REST WebService https://xxx.yyy.zzz/abc/xyz.svc (added some masking) the following operations are supported: Get Create Update getList $metadata the following options are supported: $top (-1 get’s all…
RVN
  • 4,157
  • 5
  • 32
  • 35
0
votes
1 answer

How to create a common AsyncTask class for webservice call in an android app?

I am trying to write a common webservice class where in any of the activities within my application has to point to this common class for webservice stuff. Currently I got stuck in between i.e; to pass the success/failure message to the calling…
0
votes
1 answer

Spring consume rest json web-service error

below code cause error public ArrayList getObjectByNameGet(String name) { final String uri = "http://127.0.0.1:8080/services/example/{name}" ; Map map = new HashMap(); …
Ehsan
  • 13
  • 4
0
votes
1 answer

Listen to a push message?

I have to listen to a web service’s push message indefinitely. The web service I am listening to send soap response messages whenever there is an update in the content. After I received the message I have to parse it and store it in to structs.…
Kid
  • 169
  • 1
  • 19
0
votes
1 answer

create Web Service client using JDK1.5

I need to create a web service client using JDK1.5 ... Is it possible ? I know in JDK1.6 there are a wsimport utility that generates the artifacts for the service, and hered that earlier versions used wsdl2java, but cannot found in my JDK…
Muhammad Hewedy
  • 29,102
  • 44
  • 127
  • 219
0
votes
1 answer

Converting object with setter to map in java

I need to create a map of RequestContext and set it in BindingProvider as a header. The code I have currently is as follows. I need to create a map with the respective setters and pass it as the second argument for the put() method for the…
Kanupriya
  • 3
  • 2
0
votes
2 answers

Webservice stubs in Blackberry app

I am currently developing a proof of concept Blackberry application that uses RPC calls. I have also developed a very basic server application in .Net that simply timestamps a string sent to it and returns it to the client. I have been able to…
Ren
  • 93
  • 1
  • 13
0
votes
1 answer

Consume https wsdl using Axis2 ADB client?Exception: Missing class for indicator field value

I was successfully able to consume https wsdl usign CXF client. Now I need to do the same using Axis2 ADB client. I have updated the jdk security lib with the certificate. When I consume the code usign http, there is no error. When I change it to…
0
votes
0 answers

nusoap exception Illegal argument invoking

the project made in laravel, call via SOAP to Web service in java, using nusoap complement $factura=Facturas::find($id); $folio=$factura->folio.'L'; $dataws=[ 'serie'=>$factura->serie, 'folio'=>intval($folio), …
0
votes
3 answers

asynchronous web services between different platforms

I am writing web services with VB.NET (2.0). The client side will use different technologies such as Java and Siebel. So, if I write asynchronous web services, is it possible for different platforms to consume them? I know it is quite easy with a…
bileyazan
  • 352
  • 7
  • 18