Showing posts with label web-services. Show all posts
Showing posts with label web-services. Show all posts

Tuesday, May 29, 2012

How to call SOAP web service with Android


I am having a lot of trouble finding good information on how to call a standard SOAP/WSDL web service with Android. All I've been able to find are either very convoluted documents and references to "kSoap2" and then some bit about parsing it all manually with SAX . OK, that's fine, but it's 2008 so I figured there should be some good library for calling standard web services.

Wednesday, May 23, 2012

Consume WCF Web Service using Objective-C on iPhone


I am having a hard time consuming a very simple (Hello World) WCF web service in my iPhone app. From what I have read, you must manually create the request message then send it to the web service URL.

Sunday, May 20, 2012

What should a JSON service return on failure / error


I'm writing a JSON service in C# (.ashx file). On a successful request to the service I return some JSON data. If the request fails, either because an exception was thrown (e.g. database timeout) or because the request was wrong in some way (e.g. an ID that doesn't exist in the database was given as an argument) how should the service respond? What HTTP status codes are sensible, and should I return any data, if any?

Tuesday, May 8, 2012

What is an easy way to stub / dummy a restful web service?


I want to create an android application, this application will make RESTful calls to a web service to obtain some data.

Monday, May 7, 2012

Creating Java Web Service using Google AppEngine


I'm trying to create a simple web service application where I can retrieve a collection of strings and store them into a data store on the AppEngine server.

Wednesday, April 25, 2012

What are some of the pitfalls/tips one could give for developing a web service


Looking to develop a web service (api) in PHP to offer customers an easier way to integrate with our platform. There are workflow calls that will be validated with user/pass as well as some reporting options.

setProperty must be overridden by all subclasses of SOAPMessage


I'm trying to deploy some web services in a WAR application on JBoss 5.1.0.

How to reduce memory size of Apache CXF client stub objects?


My web service client application uses Apache CXF to generate client stubs for talking to several web services. The generated CXF web service stub objects have quite a large memory footprint (10 - 15 web service objects take more than 64 MB of memory). Is there any way to reduce the CXF object footprint?

Wednesday, March 7, 2012

Recommended framework for Java Web Services


With an abundance of frameworks and stacks for Java Web Services (Axis2, Spring WS, CFX, Metro, ...), which one should be selected for new projects? What are the pros and cons for each one? How well have they worked for you?

Monday, March 5, 2012

android device to backup data on local server


I am working on the android application that would perform functionality and ultimately save the data(Highly Confidential) in a local server, I am a newbie, I need ideas from you people in the shape of steps that i need to follow for the implementation. I cant expose the main main idea but the thing is store the customer data (in the database placed on server) on the server via android tablets, there will be multiple tablets feeding the data in parallel. I will appreciate if someone would suggest the appropriate tutorials (for webservice creation/usage etc)

android device to backup data on local server


I am working on the android application that would perform functionality and ultimately save the data(Highly Confidential) in a local server, I am a newbie, I need ideas from you people in the shape of steps that i need to follow for the implementation. I cant expose the main main idea but the thing is store the customer data (in the database placed on server) on the server via android tablets, there will be multiple tablets feeding the data in parallel. I will appreciate if someone would suggest the appropriate tutorials (for webservice creation/usage etc)

Android Application fastest parsing library or inbuilt method


I am working on android application where i will receive a lot of data from webservice(XML format) and I want to have library which can fetch bunch of records which i can display and next bunch of records.

Android Application fastest parsing library or inbuilt method


I am working on android application where i will receive a lot of data from webservice(XML format) and I want to have library which can fetch bunch of records which i can display and next bunch of records.

How can I listen the Android output (using sniffer)?


I wrote simple application that send some data to my server.

Thursday, March 1, 2012

How can I call a plugin in phonegap from a server page for iOS?


I have a html page in a server, and load it with phoneGap for iPhone. In my html page, I call a native plugin but dont work. The same html page in local project, work well. I also have the JS plugin file in the server.

uploading image on web: getting html source code as response


I am trying to upload image on web server, but whenever it tries it is sending me html source code as response and image is not uploaded there. My code is:

Tuesday, February 28, 2012

My first web-based iPhone application - how to do it right?


I've built my first web-based iPhone app and I have some performance issues that I needs to be resolved. I want to verify that I'm doing it right, so your feedback is really appreciated... :-)

Thursday, February 16, 2012

How to parse a SoapObject in android


I'm using webservices for an application to get the data from external servers. I'm able to connect to the server, send my SOAP request and able get the data back to my android class as SoapObject. Here I'm having trouble parsing this SoapObject to retrieve the values (as strings) coming from the webservice. My code is here:

Friday, February 10, 2012

Java deploy webservice ejb to Windows Weblogic


i have a problem with deploying webservice jar file to Weblogic. If i deploy on same version WL linux machine works ok. If i deploy to windows machine it gives error msg NoClassDefFound.

Sunday, January 29, 2012

Is there a way with PHP to access a file on a server and save only the first half of the file?


I want to give users a preview of certain files on my site and will be using scribd API. Does anyone know how I can access the full file from my server and save the file under a different name , which I will then show to users..Can't think of a way to do this with PHP for .docx and image files...Help is much appreciated.