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

SOAP Calls in Java application

I am trying to integrate SOAP calls into my Java application. I have followed various tutorials online, however when I run the application it gives errors at sm.saveChanges() and if that line is commented out it gives the errors at…
miller2j
  • 79
  • 2
  • 7
0
votes
1 answer

.NET Proxy Web Service how to setup MaxItemsInObjectGraph in app.config

Scenario: .Net application has web service reference and has proxy class. The web service is Java webservice. The payload is pretty huge and I've bumped up the maxBufferSize, MessageSize etc to 2147483647 . Having done above I'm still getting the…
Nil Pun
  • 17,035
  • 39
  • 172
  • 294
0
votes
1 answer

Creating webservice and client with JBossWS using Complex objects as arguments and return types

I am developing a WebService and Client for it using JBoss 5.1.0GA. The JBossWs stack was already preinstalled with the binary that I downloaded and as I understand it is JBossWs 3.1.2GA I have developed a web service using this setup and have also…
Salman A. Kagzi
  • 3,833
  • 13
  • 45
  • 64
0
votes
1 answer

Trouble sending XML string to Java webservice from .NET

I'm trying to send a very basic XML string from a Windows Phone application to a web service run with Java-WS (and the Provider implementation), and retrieve the response. I can see that the string makes it (via TCP monitor on the server) and looks…
Ryan H
  • 349
  • 1
  • 6
  • 20
0
votes
1 answer

How can I get when a webservice does not respond due to internet connection problems

As in title I have a page that calls a lot of webservices through JavaScript to get several infos in client side. I have inserted a counter++ in every webservice call and a counter-- in webservice respond methods or in the webserviceFail method. I…
eKelvin
  • 921
  • 1
  • 9
  • 25
0
votes
2 answers

Consuming WSO2 Data service in C#.Net Windows application

I am trying to consume service created on 'WSO2 Data service server’ into a local .NET Client (Windows application). I am able to communicate with the service(I was able to list of operations those Service provides). But when I try invoking a method…
0
votes
3 answers

NoSuchMethodError on creating a web service client

I'm new to java and web services and axis2. I recently created a web service using some tutorials. When I first follow the tutorial eclipse let me create a client. But when I try to create a new project and a new web service client it gives…
bliss
  • 330
  • 3
  • 14
0
votes
1 answer

best practice to read inner static class and its vairables

The below code is a web service response format.This class has two reference variables to two inner static class. Please let me know how to read in an efficiant way. public class DataResponse { protected DataResponse.Head head ; …
aditya86c
  • 57
  • 2
  • 12
0
votes
1 answer

Error importing wsdl into Eclipse

I have eclipse Galileo and i am trying to create web service client. but i am getting IOException. Can you please help me to create service client? wsdl : http://122.166.101.139:37489/_vti_bin/cmis/soap/NavigationService.svc?wsdl Error : IWAB0399E…
Vivek
  • 1
  • 1
  • 3
0
votes
2 answers

How to pass an object as parameter from android to web service using ksoap2

I'm trying to send object as parameter to web service on java. It always throws a Runtime exception with Cannot serialize what is the best way to do that thx in advance
user1305855
0
votes
1 answer

How to call a web service using poster or any plugin?

I am writing restful web services and everything is fine, my web services are takes input as XML and producing output as XML. For the client testing of web service, I am using the Firefox Poster extension. It is working fine but a few of my web…
subodh
  • 6,136
  • 12
  • 51
  • 73
0
votes
1 answer

Web application inside a windows service

Is it possible to call a web application from within a windows service? I see alot of questions on calling web services inside of a web application but not vice versa. I need to have a windows service that calls my web application which polls my…
user1270384
  • 711
  • 7
  • 24
  • 53
0
votes
3 answers

Specified cast is not valid issue

My code checks for changes in the database and then sends an update via a web service to the client. I had the part sending the message to the client working fine because making the calls to check for changes in the database. Now that I have added…
user1270384
  • 711
  • 7
  • 24
  • 53
0
votes
2 answers

Read XML response webservice

I am so new to .Net web service programming. I am running into a trouble to read the XML response from web services to my client. In my webservice side: Service1.asmx.cs code: [WebMethod(Description = "substruction")] public double…
QLiu
  • 271
  • 2
  • 8
  • 23
0
votes
0 answers

getting data with as3 from c# web service

i am getting my objects from c# web service but i cannot use them in xml list can you please have a look at my code. function LoadedXML(evt:ResultEvent):void { clearALL(); loading.alpha =…