web-services

"Remote name could not be resolved"

While accessing a wsdl file as webservice I am getting this Exception. "Remote name could not be resolved" ...

Web service in iphone

i have a webservice and implementing that ,but when i get the array from this weservice its showing characters like this line brake in some keys. I am trying to replace that with stringbyreplacing occurance of string but nothing happens. Could anyone help me for this to replace this type of characters,show that when u want to sho...

EOF faults and keep alive

Hi, I have a SOAP server process that fails with "EOF" errors. Does anybody know if EOF faults are related with keep alive timeouts? If yes how? My code is in C/C++ ...

URI for RESTful Web Services

I'm trying to understand how URIs are supposed to look like. Looking at this reference: http://en.wikipedia.org/wiki/Representational_State_Transfer#RESTful_web_services, I am a bit confused by how POST is supposed to work. The example given is this: http://example.com/resources/142. I'm associating "142" as a specific item in "resource...

URI for RESTful Web Services - Part 2

I'm trying to understand how to construct URIs for RESTful web services. Assume I had a dating site, would the following be correct: domain.com/profiles/ <-- list of profiles domain.com/profiles/123/ <-- profile number 123 domain.com/profiles/123/likes/ <-- list of profile 123's likes domain.com/profiles/123/likes/2/ <-- 2nd item in th...

How to install this source from github?

I tried to instal dalecook actionwebservice (this is updated datanoise's version 2.3.2 to 2.3.5), with command: sudo gem install actionwebservice --source gems.github.com I tried too: dalecook-actionwebservice instead actionwebservice or http://github.com/dalecook/actionwebservice instead gem.github.com and resut is the same ERROR:...

Looking for email to web service api (e.g. push email inbox to webapp)

There are many email marketing/delivery service providers that offer an api to create and send emails: http://postmarkapp.com, mailchimp, etc. Does any one know of a web app that offers the reverse: a service that will parse new emails into more api accessible information? In other words, I am looking for a service that allows me to a...

How to do ad-hoc testing of web service PUT methods?

I've written a web service and it's nice that you can just navigate to http://whatever... and see the response to GETs. Is there some nifty way I can do something similar for PUTs? (presumably involving some tool to write the info that's PUTed). Obviously I'll have automated tests for these methods, but I'd like to be able to play arou...

Web service Listener for soap messages in C#

Hi, I want to create a listener for soap messages. Can this be done using a web service in c sharp? The soap messages contain xml data inside the soap body. I want the web service listener to be able to extract this xml data from the soap message. Appreciate your help! ...

REST - web service response - mime type?

1) Is it important to set the correct mime type for a web service response? 2) what is the correct mime type for a, a) XML response? b) JSON response? application/xml text/xml application/json application/x-javascript text/javascript text/x-javascript text/x-json ...

Host a .NET web service

Are there any companies out there that host .NET web services for a monthly fee? Can you please recommend some of the good ones that are simple to deploy and cheap. ...

Qt Getting Response from SoapRequest

Consider the following in Qt using QtSoap lib: QtSoapHttpTransport http; http.setHost("XXXX",3333); connect(&http, SIGNAL(responseReady()), this, SLOT(getResponse())); now there is a method i want to call which is: QtSoapMessage request; request.setMethod("test"); request.addMethodArgument("xxx","zzzz",xxx); request.addMethodArgum...

Creating a SOAP proxy ?

I Want to create a SOAP proxy, that modifies the original web service SOAP header, nampespace and keeping the body the same) What is the best way to do this? Create a SOAP provider , that consumes the original web service then modify the header and namespacs? (this seems like alot of work?) ...

How do I post XML?

How do I post a XML and get the response status from the response? I want to post <myExampleRequest><myValue>xyz</myValue></myExampleRequest> to http://domain.com/GetStatus.aspx The page responds with <myExampleResponse><status>True</status><Message></Message></myExampleResponse> ...

Can Prism be modular when calling webservices?

I am playing around creating a demo prism application. The application I have has a shell project and another module that has a prism service and a view (and a view-model). (mostly based off of Mike Taulty's videos, but in WPF rather than silverlight). I setup the prism-service to call my web service. It seemed all setup right, but w...

running jar as webservice?

Can a .jar be run as a webservice? Since jar file consume a lot of cpu on my development machine, I would like to call and run it on another machine via network. Need advice on this, what is the best way of doing it? Thanks. ...

Web Service Deployment

Hi Does any body know how to pakage several webservices into one before deployment using ASP.Net. Like say for instance, I have 5 web services and i need to deploy all of them in such a way that the user need to click jus one link. Does anybody know how to do that?... ...

invoke a webservice through pl/sql block

How to invoke a webservice through pl/sql block for which we know url,username and password. And how to see the response? Give some sample code... Thanks in advance I have used the following piece of code: CREATE OR REPLACE FUNCTION READ_DATA_FROM_WS (url IN VARCHAR2, username IN VARCHAR...

Securing webservice with certificates in weblogic server

I'm recently facing an issue with web service security. the basic requirement is that, the client code doesn't want to use username token to authenticate the user, they want to use certificates. (some big companies have password policies and certificates live longer) There are multiple users calling the service and different client will...

Convert web app from HTTP to HTTPS on OAS

I have a web service in EJB that runs on Oracle Application Server (OAS).. I need to change it to run on HTTPS instead of HTTP... I know that it doesn't require any code change as the change is in the Transport layer not in the application layer. But actually I don't know how to start! Could you please help me? ...