[android-developers] Re: Remote Process Question

2009-09-16 Thread for android
Thanks.I was able to solve the problem.It would be useful if this piece of
information is documented in the Process and Thread section of Application
Fundamentals.

On Wed, Sep 16, 2009 at 10:17 AM, Dianne Hackborn wrote:

> Well there is a limit of 16 active threads calling into a process at once.
> You might to look in the debugger at what your threads are doing.
>
> On Tue, Sep 15, 2009 at 8:22 PM, for android  wrote:
>
>> any-one?
>>
>>
>> On Tue, Sep 15, 2009 at 3:14 PM, for android wrote:
>>
>>> <>
>>>
>>> This happens even before I unbind
>>>
>>> <>> could be>>
>>>
>>> Is there any work around for this? Are you sure that there is a
>>> limitation.
>>>
>>>
>>> On Tue, Sep 15, 2009 at 3:08 PM, Cyril ROQUES <
>>> cyril.roq...@mobiquant.com> wrote:
>>>
  May be you doesn’t clean everything correctly after your unbind

 It seems to have a limitation of 16 things but I have no idea what it
 could be



 *From:* android-developers@googlegroups.com [mailto:
 android-develop...@googlegroups.com] *On Behalf Of *for android
 *Sent:* mardi 15 septembre 2009 11:20
 *To:* Android Developers
 *Subject:* [android-developers] Remote Process Question



 I needed to call a remote service.The service basically fetches data
 from the network.I am bind the connection once,and then I unbind the
 connection when the user is no more in that page.

 Everything works fine.Except that when I call the sa,e remote method for
 17th time,it just does not call the service at all.It neither throws the
 DeadObjecti Exception.I have run out of ideas.Is there anything that I may
 be missing.




>>>
>>
>>
>>
>
>
> --
> Dianne Hackborn
> Android framework engineer
> hack...@android.com
>
> Note: please don't send private questions to me, as I don't have time to
> provide private support, and so won't reply to such e-mails.  All such
> questions should be posted on public forums, where I and others can see and
> answer them.
>
>
>
> >
>

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Remote Process Question

2009-09-15 Thread Dianne Hackborn
Well there is a limit of 16 active threads calling into a process at once.
You might to look in the debugger at what your threads are doing.

On Tue, Sep 15, 2009 at 8:22 PM, for android  wrote:

> any-one?
>
>
> On Tue, Sep 15, 2009 at 3:14 PM, for android  wrote:
>
>> <>
>>
>> This happens even before I unbind
>>
>> <> could be>>
>>
>> Is there any work around for this? Are you sure that there is a
>> limitation.
>>
>>
>> On Tue, Sep 15, 2009 at 3:08 PM, Cyril ROQUES > > wrote:
>>
>>>  May be you doesn’t clean everything correctly after your unbind
>>>
>>> It seems to have a limitation of 16 things but I have no idea what it
>>> could be
>>>
>>>
>>>
>>> *From:* android-developers@googlegroups.com [mailto:
>>> android-develop...@googlegroups.com] *On Behalf Of *for android
>>> *Sent:* mardi 15 septembre 2009 11:20
>>> *To:* Android Developers
>>> *Subject:* [android-developers] Remote Process Question
>>>
>>>
>>>
>>> I needed to call a remote service.The service basically fetches data from
>>> the network.I am bind the connection once,and then I unbind the connection
>>> when the user is no more in that page.
>>>
>>> Everything works fine.Except that when I call the sa,e remote method for
>>> 17th time,it just does not call the service at all.It neither throws the
>>> DeadObjecti Exception.I have run out of ideas.Is there anything that I may
>>> be missing.
>>>
>>>
>>>
>>>
>>
>
> >
>


-- 
Dianne Hackborn
Android framework engineer
hack...@android.com

Note: please don't send private questions to me, as I don't have time to
provide private support, and so won't reply to such e-mails.  All such
questions should be posted on public forums, where I and others can see and
answer them.

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Remote Process Question

2009-09-15 Thread for android
any-one?

On Tue, Sep 15, 2009 at 3:14 PM, for android  wrote:

> <>
>
> This happens even before I unbind
>
> < could be>>
>
> Is there any work around for this? Are you sure that there is a limitation.
>
>
> On Tue, Sep 15, 2009 at 3:08 PM, Cyril ROQUES 
> wrote:
>
>>  May be you doesn’t clean everything correctly after your unbind
>>
>> It seems to have a limitation of 16 things but I have no idea what it
>> could be
>>
>>
>>
>> *From:* android-developers@googlegroups.com [mailto:
>> android-develop...@googlegroups.com] *On Behalf Of *for android
>> *Sent:* mardi 15 septembre 2009 11:20
>> *To:* Android Developers
>> *Subject:* [android-developers] Remote Process Question
>>
>>
>>
>> I needed to call a remote service.The service basically fetches data from
>> the network.I am bind the connection once,and then I unbind the connection
>> when the user is no more in that page.
>>
>> Everything works fine.Except that when I call the sa,e remote method for
>> 17th time,it just does not call the service at all.It neither throws the
>> DeadObjecti Exception.I have run out of ideas.Is there anything that I may
>> be missing.
>>
>>
>> >>
>>
>

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Remote Process Question

2009-09-15 Thread for android
The only work around I got to know is killing the process when the method is
being called at 15th time,then it obviously started working.Is there
anything I am missing here.

On Tue, Sep 15, 2009 at 3:14 PM, for android  wrote:

> <>
>
> This happens even before I unbind
>
> < could be>>
>
> Is there any work around for this? Are you sure that there is a limitation.
>
>
> On Tue, Sep 15, 2009 at 3:08 PM, Cyril ROQUES 
> wrote:
>
>>  May be you doesn’t clean everything correctly after your unbind
>>
>> It seems to have a limitation of 16 things but I have no idea what it
>> could be
>>
>>
>>
>> *From:* android-developers@googlegroups.com [mailto:
>> android-develop...@googlegroups.com] *On Behalf Of *for android
>> *Sent:* mardi 15 septembre 2009 11:20
>> *To:* Android Developers
>> *Subject:* [android-developers] Remote Process Question
>>
>>
>>
>> I needed to call a remote service.The service basically fetches data from
>> the network.I am bind the connection once,and then I unbind the connection
>> when the user is no more in that page.
>>
>> Everything works fine.Except that when I call the sa,e remote method for
>> 17th time,it just does not call the service at all.It neither throws the
>> DeadObjecti Exception.I have run out of ideas.Is there anything that I may
>> be missing.
>>
>>
>> >>
>>
>

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Remote Process Question

2009-09-15 Thread for android
<>

This happens even before I unbind

<>

Is there any work around for this? Are you sure that there is a limitation.


On Tue, Sep 15, 2009 at 3:08 PM, Cyril ROQUES wrote:

>  May be you doesn’t clean everything correctly after your unbind
>
> It seems to have a limitation of 16 things but I have no idea what it could
> be
>
>
>
> *From:* android-developers@googlegroups.com [mailto:
> android-develop...@googlegroups.com] *On Behalf Of *for android
> *Sent:* mardi 15 septembre 2009 11:20
> *To:* Android Developers
> *Subject:* [android-developers] Remote Process Question
>
>
>
> I needed to call a remote service.The service basically fetches data from
> the network.I am bind the connection once,and then I unbind the connection
> when the user is no more in that page.
>
> Everything works fine.Except that when I call the sa,e remote method for
> 17th time,it just does not call the service at all.It neither throws the
> DeadObjecti Exception.I have run out of ideas.Is there anything that I may
> be missing.
>
>
> >
>

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Remote Process Question

2009-09-15 Thread Cyril ROQUES
May be you doesn't clean everything correctly after your unbind

It seems to have a limitation of 16 things but I have no idea what it could
be

 

From: android-developers@googlegroups.com
[mailto:android-develop...@googlegroups.com] On Behalf Of for android
Sent: mardi 15 septembre 2009 11:20
To: Android Developers
Subject: [android-developers] Remote Process Question

 

I needed to call a remote service.The service basically fetches data from
the network.I am bind the connection once,and then I unbind the connection
when the user is no more in that page.

Everything works fine.Except that when I call the sa,e remote method for
17th time,it just does not call the service at all.It neither throws the
DeadObjecti Exception.I have run out of ideas.Is there anything that I may
be missing.




--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---