IT Community - Software Programming, Web Development and Technical Support

blackberry in netbeans

This is a discussion on blackberry in netbeans within the Blackberry forums, part of the Mobile Software Development category; hi there, I was terribly excited about the prospect of getting unique place for blackberry in this forum...well am ...


Go Back   IT Community - Software Programming, Web Development and Technical Support > Software Development > Mobile Software Development > Blackberry

Register FAQ Members List Calendar Mark Forums Read
  #1  
Old 10-27-2007, 04:25 AM
amansundar amansundar is offline
D-Web Analyst
 
Join Date: May 2007
Posts: 310
amansundar is on a distinguished road
Default blackberry in netbeans

hi there,
I was terribly excited about the prospect of getting unique place for
blackberry in this forum...well am newbie in blackberry development..i thought
of developing through jde..but it was not so as other ide since even latest version consist of all features its no ever compared with ctrl + space in netbeans...so
i need to make develop BB app in netbeans...but i dont know how to start ..
some one please help....
__________________
cheers
Aman

Last edited by amansundar : 10-28-2007 at 09:53 PM.
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2  
Old 10-29-2007, 03:46 AM
S.Vinothkumar S.Vinothkumar is offline
D-Web Genius
 
Join Date: May 2007
Posts: 904
S.Vinothkumar is on a distinguished road
Cool Re: blackberry in netbeans

Hi aman,

I think the following link will help you.

S.Vinothkumar: Blackberry Development using Netbeans
__________________
S.VinothkumaR
Behind me is infinite power,
Before me is Endless Possibility,
Around me is Boundless Opportunity,
Why should I fear!
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3  
Old 10-29-2007, 04:34 AM
amansundar amansundar is offline
D-Web Analyst
 
Join Date: May 2007
Posts: 310
amansundar is on a distinguished road
Default Re: blackberry in netbeans

dude thank you very much...i can now able to do BB app(cldc) in netbeans ...also i can even get the blackberry simulator running in netbeans...but now a new problem arrised. can i debug those application same as other midlet app in netbeans itself ..
__________________
cheers
Aman
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4  
Old 10-30-2007, 01:25 AM
jeyaprakash.c jeyaprakash.c is offline
D-Web Sr.Programmer
 
Join Date: May 2007
Posts: 194
jeyaprakash.c is on a distinguished road
Arrow blackberry in netbeans

I get the error:
Warning!: No definition found for exported static routine: .main(String[])
Any suggestions how to avoid this error?
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5  
Old 10-30-2007, 03:33 AM
amansundar amansundar is offline
D-Web Analyst
 
Join Date: May 2007
Posts: 310
amansundar is on a distinguished road
Default Re: blackberry in netbeans

i think u may have done some coding error.....so it will be better if you try midlet application first and check out the building and execution process..if everything fine then you have made some problem in your coding only..check it out and let me know the result....
__________________
cheers
Aman
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6  
Old 10-30-2007, 04:21 AM
jeyaprakash.c jeyaprakash.c is offline
D-Web Sr.Programmer
 
Join Date: May 2007
Posts: 194
jeyaprakash.c is on a distinguished road
Arrow Re: blackberry in netbeans

Am creating Default mobile project With helloworld midlet so coding is not a matter!!!!!!
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7  
Old 10-30-2007, 04:58 AM
jeyaprakash.c jeyaprakash.c is offline
D-Web Sr.Programmer
 
Join Date: May 2007
Posts: 194
jeyaprakash.c is on a distinguished road
Arrow Re: blackberry in netbeans

I find the Reason for .main(String[]) warning I do *not* include the "-midlet" option after added this "-midlet " my project compiled successfully but it doesn't create a cod Files i can create manually but my netbeen didnt configure properly Any more suggestions?
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8  
Old 10-30-2007, 10:51 PM
jeyaprakash.c jeyaprakash.c is offline
D-Web Sr.Programmer
 
Join Date: May 2007
Posts: 194
jeyaprakash.c is on a distinguished road
Arrow blackberry in netbeans

Finally i configured Blackberry Jde 4.2.1 with Netbeens 5.5 beta2 succesfully ..it may help you
click here to see my Article
jeyaprakash-Blackberry(RIM)4.2.1 development with netbeans 5.5


i got following Errors while configuring i mentioned that Errors With Solution


Error:1
Quote:
C:\Documents and Settings\Jaya Prakash\MyOwn\hello\build.xml:27: Execute failed: java.io.IOException: Cannot run program "${rim.blackberry.home}\bin\rapc.exe" (in directory "C:\Documents and Settings\Jaya Prakash\MyOwn\hello\dist"): CreateProcess error=2, The system cannot find the file specified
Solution:
i donot declare the Property variables in my build.xml if u got this type of errors add this lines in your Build.xml right before init methods..

Quote:
<property name="rim.blackberry.home" location="C:\Program Files\Research In Motion\BlackBerry JDE 4.2.1" />
<property name="rim.blackberry.emulator" value="8100" />
<property name="rim.blackberry.jdwp.port" value="8000" />

Error:2
Quote:
Application descriptor does not declare any MIDlet. Direct execution is not allowed.
Solution:

Quote:
As we know In midp application we want to add midlet Name in project name>properties>Midlets but Cldc application we want to add our class name
in project properties netbeans shown -some MIDlet class are invalid ...Dont care About this warning...

Last edited by jeyaprakash.c : 10-30-2007 at 11:02 PM.
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9  
Old 10-31-2007, 11:32 PM
amansundar amansundar is offline
D-Web Analyst
 
Join Date: May 2007
Posts: 310
amansundar is on a distinguished road
Default Re: blackberry in netbeans

have you tried debugging BB app in netbeans......
__________________
cheers
Aman

Last edited by amansundar : 11-03-2007 at 01:43 AM.
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #10  
Old 10-31-2007, 11:56 PM
jeyaprakash.c jeyaprakash.c is offline
D-Web Sr.Programmer
 
Join Date: May 2007
Posts: 194
jeyaprakash.c is on a distinguished road
Arrow blackberry in netbeans

i didnt tried ...did u got any problem?
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

Similar Threads
Thread Thread Starter Forum Replies Last Post
Eventinjector in blackberry amansundar Blackberry 13 09-29-2008 04:59 AM
netbeans plugins for editing JSP pages? saravanan Java Server Pages (JSP) 0 03-21-2008 05:07 AM
is there any visual tool or netbeans plugin available to build JAVA BEANS? saravanan Java Server Pages (JSP) 0 03-19-2008 09:08 PM
j2me application in Blackberry amansundar Mobile Software Development 2 12-20-2007 01:22 AM
NetBeans 5.5 - Mobile Development Karpagarajan Java Programming 0 04-06-2007 05:08 AM


All times are GMT -7. The time now is 12:26 AM.


Copyright ©2004 - 2007, DiscussWeb. All Rights Reserved.
Our Partners
Stamford Dentist | Euro Millions Lottery | Tech Support Services

SEO by vBSEO 3.0.0