facebook

Using Hessian for Client interaction

  1. MyEclipse IDE
  2.  > 
  3. Off Topic
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #315988 Reply

    Hello,

    I created an Android project and added the two programs (shown below). When I run the project, the console shows that the below example has been loaded onto the Emulator. But I don’t see my application as an icon on the AVD (android virtual device). Why so?

    ______________________
    package example.ex;

    public interface Basic {
    public String hello();
    }
    ______________________

    _______________________________________________
    package example.ex;

    import example.ex.Basic;

    import com.caucho.hessian.client.HessianProxyFactory;

    public class BasicClient {
    public static void main(String []args)
    throws Exception
    {
    String url = “http://www.caucho.com/hessian/test/basic”;

    HessianProxyFactory factory = new HessianProxyFactory();
    Basic basic = (Basic) factory.create(Basic.class, url);

    System.out.println(“Hello: ” + basic.hello());
    }
    }
    ____________________________________________________

    #315992 Reply

    support-joy
    Member

    krishna.chaitanya,

    Please cross post your query to android forums.

Viewing 2 posts - 1 through 2 (of 2 total)
Reply To: Using Hessian for Client interaction

This topic is marked as closed to new replies, however your posting capabilities still allow you to do so.

You must be logged in to post in the forum log in