Results 1 to 6 of 6

Thread: How to debug on samsung wave

  1. #1
    Join Date
    Mar 2011
    Posts
    160

    How to debug on samsung wave

    Hi guys I have Samsung wave and I am used to play with new widgets one my widgets is absolutely working fine with SDK emulator but when I run on my Samsung wave then it is not working and it shows that It has no network connection. I don’t know what is wrong with that widget. Is there any idea about how to debug a widget on Samsung wave? Or any other way to solve this problem, then please tell me what should I do to make this widget perfectly on my Samsung wave mobile, Any help will be appreciated.

  2. #2
    Join Date
    Nov 2005
    Posts
    930

    Re: How to debug on samsung wave

    If you are having problem with run the widget on your Samsung wave device then first you need to check few things before you load the widget in your mobile phone.
    • First check the Access Network is checked in project.xml or not if not then make it.
    • Now cross check with the appropriate feature selected in your bondi features in project.xml or not.
    • Now make sure that all the bondi method calls protected by try/catch blocks
    • After that check that you can access the network through the Internet application or not.
    • After that validated your html.

    After performing all these steps try your widget you will be able to run it successfully on your Samsung wave. If you still having the problem the let me know.

  3. #3
    Join Date
    Mar 2011
    Posts
    160

    Re: How to debug on samsung wave

    Hey thank you for the help provided by you I have checked all the setting twice before running the application in my Samsung wave but after doing all the steps according to your previous post I am still having same problem. Is there any more setting which is required for that, if yes then what it should be? Or if you have any more idea about this problem then please help me with you useful solutions I will be very thankful to you.

  4. #4
    Join Date
    Nov 2005
    Posts
    930

    Re: How to debug on samsung wave

    If you are still having the same problem after doing the all those steps then don’t worry I have some other ways to do debug on the device. On the bottom of my html I normally add a list and after that I add items to the list according to code. For example-

    <ul id="debuglist">Debug Output</ul>
    function debugPrint(body) {
    var list = document.getElementById("debuglist");
    var item = document.createElement("li");
    item.appendChild(document.createTextNode(body));
    list.appendChild(item);
    }
    After the further procedure you will be able to run application which you asked for.

  5. #5
    Join Date
    Mar 2011
    Posts
    160

    Re: How to debug on samsung wave

    Hey thank you again for your help. I have tried the whole procedure as you suggested in previous post and I found it very useful but I think there is one problem for me as you said in lst post that “after doing further procedure” I am not getting that what should be further procedure after that coding part please explain me that also then I think I will be able to run my application successfully. please reply me with that last step then I think my work will be done. Thank you.

  6. #6
    Join Date
    Mar 2011
    Posts
    160

    Re: How to debug on samsung wave

    Ok I will help you with further steps also. Once you done with the coding part after that you need to
    • First add the debug list in the html, after doing that go to my JavaScript in that insert the debug Print.
    • Then as the you make progress through code call the debug Print or catch exceptions
    after that it will be done try this steps and enjoy your widgets. I hope my posts will be helpful to you.

Similar Threads

  1. Samsung wave 2 VS Samsung galaxy ace
    By Gimbya in forum Portable Devices
    Replies: 2
    Last Post: 18-07-2011, 12:22 PM
  2. Does Anyone know about Samsung Wave 578
    By dinkster in forum Portable Devices
    Replies: 4
    Last Post: 16-02-2011, 10:22 PM
  3. Samsung Wave - I like It
    By andrwclark in forum Portable Devices
    Replies: 3
    Last Post: 27-07-2010, 12:51 AM
  4. Replies: 3
    Last Post: 12-01-2009, 07:35 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,713,962,268.95898 seconds with 17 queries