I'd like to monitor HTTP traffic to/from my PC so I can watch web services interaction. (SOAP and RESTful services) There seems to be a lot of different software ... |
I what all my applications logs to be centralized (ideally in near real-time). We will use a Log4 Appender. Which one should I use:
- Send log event in a JMS Queue
- Syslog / ...
|
Today's browsers (or HTML < 5) only support HTTP GET and POST, but to communicate RESTful one need PUT and DELETE too. If the workaround should not be to use Ajax, ... |
I want a simple client that takes a few parameters (Method, URL, Parameters), makes an HTTP request, and shows me the results that were returned.
A browser obviously can easily ... |
I'm running JEE6 with glassfish v3 on NetBean6.9 and working on RESTful web service.
I have jsp file which contains javascript function below.
It basically read info from HTML input fields and convert ... |
Is there any way to enforce that a method call in soap based wcf is called as an HTTP get? I'm not sure if this would be handled on the client ... |
I'm writing REST web app (Netbean6.9, JAX-RS, Toplink-essential) and trying to return JSON and Http status code.
I have code ready and working just to return JSON when HTTP GET Method is ... |
|
Say we have a website that responds to a host header "kebab-shop.intra.net"
Is is possible to have both SOAP and RESTful in this URL?
That is, both of these are handled within the ... |
I've been told that adding an HTTP RPC web service given an existing SOAP web service implemented with WCF is as simple as adding a webHttpBinding and a couple of attributes. ... |
I'm currently developing a library for the bitbucket issues RESTful API. I made good progress and now I'm going to tackle the section Updating an Issue which demands an ... |
We have a system wherein numerous retrieval/updation operations can be performed using making http calls. Now, am wondering if it would make sense to write a Web Service framework on top ... |
Are all web services through HTTP and not SOAP automagically restful web services?
I have been hearing the term "Restful web services" everywhere.. but ain't it simply a plain old "web service ... |
I am trying to figure out how to read from a REST source that requires authentication and having no luck. I have this working fine using C# as follows:
HttpWebRequest request = ...
|
I'm building a web and mobile phone application and they should both have access to a picture storage. Picture storage would store user's pictures.
My idea is to have a service with ... |
Summary: I want to return a JSONArray via an HTTP response. How do I do that?
I am working on a problem where I was previously returning a JSON object, which was ... |
We have a software that reads data from other third party websites, so far so good, but for each new website that we want to import data, we have to read ... |
Let's say I have many web services (REST or normal HTTP request) and I want to define in which order they should be called. I want the order to be easily ... |
I basically want to set up a proxy server using Java which will capture the outgoing requests and the incoming response and dump it in a file.
It should be able to ... |
I am using an URL like the following:
https://www.google.com/accounts/OAuthAuthorizeToken?
oauth_token=ab3cd9j4ks73hf7g&oauth_callback=http%3A%2F%2Fwww.example.com
This gets redirected to:
http://www.youtube.com/oauth_authorize_token?oauth_callback=http%3A%2F%2Fwww.google.com&oauth_token=1%2FyT-RZ-5PAMCp43Wt0RAGpNUAbMKAHxq1MG_RiX3Cmtk
After the user clicks allow access, YouTube directs the page to:
http://www.youtube.com/t/oauth_token_authorized
Why is the callback not working?
Their API ... |
I need to write quickly a simple client-server application in Java that will do the following:
- Remotely login a client application to a server application
- Continuously read text data at the client
- Post the ...
|
Hi Leonard and Sam, I think I'm right in my understanding that proper use of the full set of HTTP Verbs is crucial to the REST model - Get for return resource, Delete for delete resource, Put for insert resource, Post for update resource? This all seems very sensible. However, what do you think about the continued low uptake of Put ... |
|
|
I am trying to call DELETE method for my REST web service which I created using enuncaite. when I try to access get it's working fine .. but unable to access DELETE and POST methods.. please fine my service class below @Path("add/{id}") @GET public Persona readPersona(@PathParam ("id") String personaId); @Path("store") @POST public void storePersona(Persona persona); @Path("delete/{id}") @DELETE public Persona deletePersona(@PathParam("id") String ... |