How to create a stub in android?

Can someone tell me which tool is used to create Stub in Android, and is it possible to use the JAX-RPC concept to invoke a web service in android. If possible, please provide me a sample code. Regards, s.kumaran

0
source share
3 answers

After defining your interface as <interface>.aidlin eclipse, go to project-> build project.

It automatically generates a file <interface>.java. This will contain the stub class.

+1
source

Can someone tell me which tool is used to create Stub in Android

, "Stub", . , , , "".

"Stub", Android, - AIDL stub.

JAX-RPC - android

JAX-RPC, Android.

0

If you use eclipse, it takes care of creating stubs. In my case, eclipse did not generate it automatically. I cleaned the project and built again.

0
source

All Articles