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
1 answer

Android: Accessing SOAP Webside returning JSON

I am trying to connect to a webside using SOAP and returning result in JSON format. However I'm really black on the subject and really need some guidance.. My SoapAccess code: public SoapAccess (){ this.user_id = "MYID"; …
Maggie
  • 33
  • 2
  • 6
0
votes
1 answer

receiving "Unprocessed 'mustUnderstand' header element" while creating Web service client

I am developing a web service client. Unprocessed 'mustUnderstand' header element: {http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd}Security Wherever it works fine with SoapUI, returns proper response with…
0
votes
1 answer

Connecting to web service | unable to get request | Clear aaplication pool works fine

In my application I have to connect to web service and get the results. Currently it's a public property as I have so many calls to service. I'm aborting and closing the service only when the service goes to faulted state. My application is hosted…
SabVenkat
  • 68
  • 10
0
votes
1 answer

Springs RestTemplate doesn't find the right MessageConverter when reciving data from the IMDB api

first I have to say, that I am pretty new to Springs RestTemplate. I am trying to receive data from the imdb-api. (For example http://imdbapi.org/?title=Avatar&type=xml) Therefore I am using Springs RestTemplate. But: the webservice returns the…
chresse
  • 5,486
  • 3
  • 30
  • 47
0
votes
0 answers

Getting 400 Bad Request erro calling java web service

I am connecting to a java web service from my asp.net app ,but I am getting a 400 Bad request exception. I have added a web reference in my project and using that to connect in the code as follows : client is the web service reference object. …
0
votes
1 answer

How to show web service results in flex?

Hi I have the following flex code but I dont know how to show the result of the xml. Currently the result of textbox is String[] but I need it to show the result of the xml as 100,200,300,400,500 Thanks
Eme Emertana
  • 561
  • 8
  • 14
  • 29
0
votes
2 answers

Error in configuration of Keystore , TrustStore in java

I want to access ssl webservice. I have generated the client bindings in Netbeans Generated JKS and imported client pfx file to the client.jks with ckeystorepwd and calias Webservice Producer has shared server.jks with srvalias and…
Azhar
  • 933
  • 1
  • 12
  • 28
0
votes
1 answer

Connect multiple server by webservices from asp.net

Thanks for reading my question.I wondered if you have any idea about this problem. I wrote a SOAP-SERVER. Running it at CentOS. Changing Soap-Server's IPAddress for match with CentOS Ifconfig. Running SOAP-SERVER in CentOS. Using VisualStudio tools…
Brian
  • 163
  • 2
  • 18
0
votes
2 answers

Performance with Java Web Services

I have created both the client and server for the Java Web Service Project in eclipse. What I tried to do was - Step 1 - Make 1000 server calls and measure the average time of each call. Step 2 - Make 100000 server calls and measure the average…
Student
  • 4,481
  • 8
  • 27
  • 32
0
votes
1 answer

Different declaration of a WebMethod in asmx and aspx file?

I have the exact code when declaring webmethod in aspx file and in asmx file. They are webmethods exposed for client scripting. I just want to use webmethod inside asmx file, but cannot get it to work. When I reference a method in aspx file…
mko
  • 6,638
  • 12
  • 67
  • 118
0
votes
2 answers

How to set a namespace with NuSOAP (client side)

I asked a question like this some months ago but the problem was that the WebService was not working right. Now it is working perfectly and I'm still having problems making a simple request. First of all, I tried it with…
fedejp
  • 958
  • 3
  • 12
  • 20
0
votes
1 answer

How to access webservice with HttpClient through Android Application?

I'm developing some applications and I want to connect them to a Restful WebService. To do that I wrote this class: public class WebServiceClient { public void postService() { HttpClient client = new DefaultHttpClient(); String…
Rita
  • 1
  • 1
  • 3
0
votes
1 answer

Access ResTWebService in Android

I'm developing some applications and I want to connect them to a Restful WebService. To do that I wrote this class: public class TagDS { public TagDS(){ } public boolean recordTag(Tag t){ try{ String send =…
Rita
  • 1
  • 1
  • 3
0
votes
1 answer

Why am I getting a can't load class, when the class is in my JAR file?

I'm running JBoss 4.2.3.GA (can't change this version) and Java 6. I'm tryhing to deploy a JAR file. Within it, I'm attempting to connect to a web service, but am getting the error, "Cannot load java type:…
Dave
  • 15,639
  • 133
  • 442
  • 830
0
votes
1 answer

webservices client code generated by clientgen not able tro parse the wsdl

My requirement is to create a java client for webservice written in SAP and has to be deployed in weblogic. And the web methods taking complex types as input parameters. I have created stub classes using clientgen. And written a stand alone client…
1 2 3
15
16