What is the query string of a BlazeDS request?

Posted by dacracot on Stack Overflow See other posts from Stack Overflow or by dacracot
Published on 2009-09-29T18:18:31Z Indexed on 2010/04/11 15:13 UTC
Read the original article Hit count: 374

Filed under:
|
|
|

I have a Tomcat service running on localhost:8080 and I have installed BlazeDS. I created and configured a simple hello world application like this...

package com.adobe.remoteobjects;
import java.util.Date;
public class RemoteServiceHandler {
public RemoteServiceHandler()
{
//This is required for the Blaze DS to instantiate the class
}
public String getResults(String name)
{
String result = “Hi ” + name + “, the time is : ” + new Date();
return result;
}
}

With what query string can I invoke RemoteServiceHandler to my Tomcat instance via just a browser? Something like... http://localhost:8080/blazeds/?xyz

© Stack Overflow or respective owner

Related posts about blazeds

Related posts about http