web-services

Writing a simple DMS web service in Python

Hello, I recently learned Python and want to do a project just to get my hands dirty and let the knowledge settle. So I was thinking to create a simple Document Management System in Python because I have another project written in Java which needs it. I want the two to be linked by SOAP so the DMS will be a web service. I need the DM...

How to avoid "505: HTTP Version not supported" error?

Hi all, I am trying to use the Bing SOAP API for a simple search request. But now that I finally figured out how to send the request using JAX-WS, I am stuck again. I get the reply com.sun.xml.internal.ws.client.ClientTransportException: The server sent HTTP status code 505: HTTP Version not supported when I send the request. Can anyon...

Is it possible to transfer result set between web services?

I would like to know if its possible? Step1: call one web service A which retrieves data from the database and stores in a result set (dynamically) Step2: web service A calls web service B to process the data stored in the result set. Is it possible to share result sets which could be of large or small size between web services. If it...

Universal REST frontend - does it exist?

I'm looking for some thin layer on top of handling HTTP requests that can easily do routing to different backends, based on the uri / rest verb / actual service location / .... This layer should also handle encoding into whatever the requested format is (xml / json / returning binary data / etc.). The most important point though is to m...

TCP or Generic Handler/ Web service

I have a program, lets call it program ABC. This program talks to a dll and return a message. For my silverlight app, I will need to talk to this program, and receive the message. I will have different amount of silverlight clients talking to the program at the same time. It ranges from usually 10 to 100. I am currently using TCP to co...

Why does the itune store webservice returns nothing for iphone apps ?

I read the guide http://www.apple.com/itunes/affiliates/resources/documentation/itunes-store-web-service-search-api.html and tried http://ax.phobos.apple.com.edgesuite.net/WebObjects/MZStoreServices.woa/wa/itmsSearch?limit=100&term=finance&output=json&media=all&entity=software&country=us it returns nothing, why ?...

windows service debugging

Hi Everyone, I am trying to debug a windows service using the Debugger.Break() method.On the service OnStart() method i am calling my business logic(QueueProcessor.StartProcessing() ) to process the message queue items every 1sec.I have kept my breakpoint(Debugger.Break())in the startprocessing method. Now When i starting the service th...

Kind of web services and how to call them from an iphone

Hi!!! I'm not able to understand the process of calling web services from my iphone application. Please explain the procedure for calling web services in my iphone application in detail: How to send request to webservices How to parse the responses Which protocol is used to send the request Which parser is used to retrive the respons...

Fine Reader API, webservice

hi all i want to use finereader API to embed in my app. But i do not to know where i get API. Abby suport no much about webservice, API of finereader. i downloaded finereader 9.0 and installed, but i cannot see where APIs to call in my app (in window). thank ...

NetSuite,3CX Assistant,3CX Phones

I have created a application for Net Suite which returns all the Net Suite contacts to the assistant.For this i have used the web service which lookup for the net suite contacts. This web service returns me the records and working fine on my machine but the problem is that when i put this application dll in the 3CX Assistant it gives me...

what is the Message Exchange Patterns, in plain english?

Can someone please explain in plain English what the MEP is? I can't grasp the concept. From what I figure, is just a concept for two parties to understand each other (i.e. agree on a type of format that the messages they exchange between them must have). Is this it, or is there more? Thank you! ...

What is the purpose of <order phase="..."/> in an Axis2 handler tag?

In axis2.xml, why do you need to specify the phase again in the handler tag? Why this: <phaseOrder type="InFlow"> <phase name="Transport"> <handler name="RequestURIBasedDispatcher" class="org.apache.axis2.engine.RequestURIBasedDispatcher"> <order phase="Transport"/> </handler> <handler name="SOAPAction...

WebService Fetching video files from a server

Hi ! I am developing a web service. It fetches data from a server. The data in this case is a video file.Now i want this video file to be accessible to others. What should i do? I have the idea to approach as shown below : (This was done for accessing an image file kept on the server) class NetworkTask extends AsyncTask { @Over...

Fetching an image from Server

Here is my code to fetch an image from a server location into a web service folder "web content". // imports removed public class WebService { public int writeToFileImage(int a) throws IOException{ File file =new File("sdcard/myImage.jpg"); file.createNewFile(); URL u = new URL("http://172.29.26.40:8080/E...

PHP SOAP client and SOAP server errors

I have a web server which is acting as a SOAP client to communicate with a third party SOAP server. My client is implemented in PHP using php::soapclient. What is the best way to verify the SOAP server is functioning so I can provide the client browser with the site otherwise if if the SOAP server is down or not responding inform the ...

jQuery ASP.net webservice consumption

Hi, I have been looking on how to consume a webmethod using the $.ajax call using this code below: $.ajax({ type: "POST", contentType: "application/json; charset=utf-8", url: "WebService.asmx/HelloWorld", data: "{}", dataType: "json", success: function(msg) { ...

Share an interface type with Silverlight

Hi, I have a Silverlight application. I added an edmx files to host application and a DomainService class. So I can use all classes of edmx file in Silverlight app. But I have an interface type that I want to use in Silverlight app. How can I use it? l. ...

Spring Web Services - Exception Skipping ExceptionResolver

I have a SOAP service, the request and responses work as expected with good input, if I specify bad input for an XML element in request body: ... <ns:myIntegerElement>asdf</ns:myIntegerElement> ... my exception resolver is invoked, this resolver is just an implementation of the exception resolver, so it doesn't have exception mapping...

Consume a web service C#?

I'm building a web service, and it uses an external web services (example http://www.webservicex.com/stockquote.asmx?WSDL) , how do I consume the external web service inside the web service im building? ...

When using soappy SOAPServer, how do I read the request's headers?

I've got a Python webservice using SOAPpy. The webservice server is structured as shown below: class myClass: def hello(): return 'world' if __name__ == "__main__": server = SOAPServer( ( 'localhost', 8888 ) ) myObject = myClass() namespace = 'whatever::namespace' server.registerObject( myObject, namespace ) server.ser...