I wrote a remote service that the clients can log on with the usual mechanisms of IPC provided by Android and the binding seems to work. The problem arises when I go to call a method that I have to pass an object as a parameter because I get this "curious" exception:

10-19 15:09:04.601: ERROR/AndroidRuntime(2985): FATAL EXCEPTION: main  
10-19 15:09:04.601: ERROR/AndroidRuntime(2985): java.lang.NullPointerException  
10-19 15:09:04.601: ERROR/AndroidRuntime(2985): at android.os.Parcel.readException(Parcel.java:1253)   
10-19 15:09:04.601: ERROR/AndroidRuntime(2985):at android.os.Parcel.readException(Parcel.java:1235)  
10-19 15:09:04.601: ERROR/AndroidRuntime(2985): at it.domod.commons.interfaces.DeviceManager$Stub$Proxy.sendCommand(DeviceManager.java:121)`

It seems to be thrown from the proxy class generated from the .aidl file.

The more strange thing is that the oject seems t be passed correctly but probabbly there is something wrong. Any idea?

link|improve this question

50% accept rate
Were you able to solve this? I'm having somewhat similar issue. – folone Mar 18 '11 at 15:00
3  
Can you post the aidl file and the code for the parcelable – Greg Mar 20 '11 at 17:50
similar to this: anddev.it/index.php?topic=1175.0 – Marek Sebera Mar 25 '11 at 13:47
I've been geting this as well, rather frustratingly it used to work and I'm not aware of modifying anything that could have caused this. If anyone does have this and finds what the cause was it would be really helpful to know... my hunch so far is I'm returning a null object apparently but first tests I can't see this happening. – sradforth May 24 '11 at 13:15
feedback

1 Answer

I've been encountering this issue as well and after a bit of poking around found the problem. I'm going to post my solution in case it helps others found drifting in the same boat.

Firstly debugging the remote thread doesn't work in Eclipse unless you enable debugging on the remote service. To do this I needed to run the app and put a breakpoint in my first activity that just binds the service, once the service is up and running I open the DDMS window in eclipse and select the remote thread and press the debug button. Now it's possible to jump back to the java window and add your breakpoints into the remote service and have them triggered.

From there I found my problem was actually I was trying to operate on a null pointer object in my stub function in the remote process which in turn injected a parcel exception for nullpointerexception in the result it was returning and looks like what this original question is asking about.

My solution was simply to test the object wasn't null before using it :)

i.e. I added the 'if' statement as you'd expect in the implementation of the stub function...

if( myobject != null )
{
   myobject.dosomething() 
}
link|improve this answer
I just put the invocation in a try/catch block just to avoid to modify auto-generated code :) – rciovati Jun 6 '11 at 14:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.