[android-developers] Re: Errors In Android Run time I need suggestions

2009-07-02 Thread Desu Vinod Kumar
Hi Can Any Body Say in which format the response it is etRatingResponse {return=ContestInfo{item=anyType{name=Ankitha; totalimages=2; rating=2.5; }; item=anyType{name=Anushka; totalimages=4; rating=9.5; }; item=anyType{name=Apsara; totalimages=1; rating=0; }; item=anyType{name=Assorted;

[android-developers] Re: Errors In Android Run time I need suggestions

2009-06-25 Thread Desu Vinod Kumar
06-25 12:59:19.997: ERROR/AndroidRuntime(825): Uncaught handler: thread main exiting due to uncaught exception 06-25 12:59:20.318: ERROR/AndroidRuntime(825): java.lang.StackOverflowError 06-25 12:59:20.318: ERROR/AndroidRuntime(825): at java.lang.String.getChars(String.java:1065) 06-25

[android-developers] Re: Errors In Android Run time I need suggestions

2009-06-25 Thread Daniel Janev
Hi, The default stack size of Android threads is 8K which is not enough for your purpose. All you have to do is to start this operation in separate thread using the constructor with stack size. IMHO 64K will be enough for you. Desu Vinod Kumar wrote: 06-25 12:59:19.997:

[android-developers] Re: Errors In Android Run time I need suggestions

2009-06-25 Thread Desu Vinod Kumar
Hi 06-25 17:41:35.920: ERROR/NetworkStateTracker(53): net.tcp.buffersize.unknown not found in system properties. Using defaults 06-25 17:41:35.959: ERROR/NetworkStateTracker(53): Can't set tcp buffer sizes:java.io.FileNotFoundException: /sys/kernel/ipv4/tcp_rmem_min 06-25 17:41:36.099:

[android-developers] Re: Errors In Android Run time I need suggestions

2009-06-24 Thread Desu Vinod Kumar
HI This errors iam getting in log cat 06-24 15:05:51.610: ERROR/AndroidRuntime(472): Uncaught handler: thread main exiting due to uncaught exception 06-24 15:05:51.774: ERROR/AndroidRuntime(472): android.content.ActivityNotFoundException: Unable to find explicit activity class

[android-developers] Re: Errors In Android Run time I need suggestions

2009-06-24 Thread Mark Murphy
Desu Vinod Kumar wrote: This errors iam getting in log cat snip 06-24 15:05:51.774: ERROR/AndroidRuntime(472): android.content.ActivityNotFoundException: Unable to find explicit activity class {com.dci.isizzle/com.dci.isizzle.WebServices}; have you declared this activity in your

[android-developers] Re: Errors In Android Run time I need suggestions

2009-06-23 Thread Urs Grob
There's a NullPointerException on line 31 in org.tuxpan.Adder ... in the method onCreate. That's the cause for the RuntimeException being thrown. -- Urs On Tue, Jun 23, 2009 at 12:54 PM, Desu Vinod Kumarvinny.s...@gmail.com wrote: On Tue, Jun 23, 2009 at 4:23 PM, android.vinny

[android-developers] Re: Errors In Android Run time I need suggestions

2009-06-23 Thread Desu Vinod Kumar
Hi thanks for giving response How to clear that i am not getting this is my code package org.tuxpan; import org.ksoap2.SoapEnvelope; import org.ksoap2.serialization.SoapObject; import org.ksoap2.serialization.SoapSerializationEnvelope; import org.ksoap2.transport.AndroidHttpTransport; import

[android-developers] Re: Errors In Android Run time I need suggestions

2009-06-23 Thread Urs Grob
Ok ..counting by hand I think this is the 31st line: findViewById(R.id.cmdCalculate).setOnClickListener(new OnClickListener() { So I guess findViewById(R.id.cmdCalculate) returns null. Is there a definition for cmdCalculate in your main layout? (if there is, there's maybe a typo?) -- Urs On

[android-developers] Re: Errors In Android Run time I need suggestions

2009-06-23 Thread Desu Vinod Kumar
Hi Yes absolutly correct that cmdcalculate button invoking webservices when i press that button it is quitting i am not getting how to solve this On Tue, Jun 23, 2009 at 4:51 PM, Urs Grob grob@gmail.com wrote: Ok ..counting by hand I think this is the 31st line: