netbeans

NetBeans Plugin for flowchart

Hi all, I am using netbeans 6.5. Is there any plugin available creating flowchart from the netbeans project? I am using jdk 1.6. I need to create simple flow chart of each and every method in the project. ...

Creating/Accessing Maven repository in SVN through NetBeans 6.7 *Revised*

EDIT: Ok... so I've gathered that SVN shouldn't really be used for this... which makes sense, I suppose (why version individual files when the version should be a separate jar?). So we should use an internal server to host a repository management tool like Nexus (etc), and access that over http to pull down and put out dependencies. We ...

In Ruby on Rails is there a way to view the properties of a model

I am using NetBeans to create my first Ruby on Rails application. Is there a way by which I can view all of the properties of a model? Should I just be looking in the database? ...

In a Netbeans java project: How can I copy misc. data files into build directory

After a build of a java applet I would like to copy a file, or files from $PROJECT_DIR\data into the build directory. Can I do this easily somehow by marking the files in some way, or must I write an ant copy statement? ...

"Unable to resolve..." in NetBeans 6.7.1, Linux, C++

I am working with a small group on a C++ project in NetBeans. For some reason, NetBeans is reporting things like "string", "endl", "cout" as "Unable to Resolve" even though the correct libraries have been included. The project compiles and runs as expected, so at the end of the day, it is no big deal, it is just that having everything ...

Please suggest a better workflow in Mercurial

I'm new to Mercurial and what I'm starting to realize is that my basic workflow may not be the most efficient way of working because I perform commits so frequently and for feature improvements that are so small that when I need to find some earlier step to revert to, it is extremely difficult. Here's what I do after I have a project s...

Even better support for HAML in Netbeans?

This plugin is pretty good, definitely better than plain-text.. but I'm longing for a little more. Code completion, the Netbeans code generator shortcuts, 'ri' integration for looking up documentation like the .erb files have.. Does anyone have some tricks, is there a different plugin for this type of functionality in Netbeans? Definit...

Tomcat startup issue

I am using tomcat6(distribution) integrated with Netbeans 6.5. It was working with no issues and now suddenly stopped working. Now if i try to start Tomcat from netbeans in console it prints server starts up in some millisecond and all other things abut even after that , netbeans keep on showing the status bar of "starting tomcat" and fi...

com.sun.xml.rpc.tools.ant.Wscompile cannot be found

Hi I need to use a service at http://mihansmscenter.com/webservice/?wsdl so i should use jax-rpc i add jax-rpc plugin to my netbeans then righ click on my project > New > Web service client > and set: WSDL URL:http://mihansmscenter.com/webservice/?wsdl project: my project package: smsService client style: JAX-RPC Style but when cl...

Comparing local and remote files in NetBeans

Is there a way to compare local and remote (FTP) file in NetBeans? There is an upload (and download) command in NetBeans. What I want to do is to see the changes between local and remote version in built-in compare tool when I am using download and upload and ideally select which changes to apply. In short, I would like to sync local a...

NetBeans version control for newb?

I'm a relatively new programmer and I've never used version control before. I'm working on a Java project in NetBeans and was wondering about some good version control options that are relatively easy to install and use. Not sure if it matters, but I run OSX. ...

How to make Class.forName ignore lowercase/uppercase

For example when I have a class named; 'MonkeyBusiness' I know I can call it using Class.forName("MonkeyBusiness"); But when I call it using Class.forName("monkeyBusiness"); or Class.forName("monkeybusiness"); it gives me the exception; Exception in thread "main" java.lang.NoClassDefFoundError: monkeyBusiness (wrong name: ntx/gmd/se...

How do you generate executables within a gem with Rake?

I've been learning Ruby recently, and I've not gotten into the dirty recesses of learning Rake yet. I've been playing around with NetBeans, and I made a little Ruby project with a file that simply prints "Hello, World!". I was looking at the Rakefile that NetBeans generates, and I noticed that it had commented out the s.executables line,...

Android Emulator not loading on netbeans

I just downloaded the android sdk from the adnroid site and followed this tutorial to set it up on netbeans. Everything to seem to have installed fine but whenever i try to run the application this window pops up: What I am assuming it asking me to choose the emulator, but it is not showing up on the list. Is there a reason why? ...

Installing SwingX 1.0 to NetBeans 6.7.1

Has anyone successfully installed SwingX to NetBeans' Palette? I'm following the instructions in SwingX Wiki, but with some glitches: The components appear in the Palette, but their icons won't show up correctly. If I add the componets shown by "Show All JavaBeans" (instead of "Show Marked JavaBeans") in the Palette manager, then I get ...

Can Nexus/Artifactory store a copy of an internet Maven artifact?

I would like to have Nexus (or Artifactory, we're not decided yet) store a copy of an artifact when it is downloaded from a public repository on the internet (like Maven Central). Basically, if you don't have the jar in your local repo and the repo manager doesn't have it either, I want to ask the repo manager for the jar, have it send ...

How do I view application directories and directories that begin with dot in Netbeans on OSX?

How do I view directories that begin with dot and how do I browse application directories in Netbeans? I can't seem to view directories that begin with a "dot" through the open file dialog in Netbeans. Similarly, I can't browse any application directory e.g. File->Open File->"someapp.app". Attempting to browse "someapp.app" gives the er...

'Failed shutdown of Apache Portable Runtime' from Netbeans

After I have deployed and clicked around in an application, tomcat won't shut down gracefully from within the Netbeans IDE. This is what can be seen in the netbeans/tomcat console after "stop" has been pressed. Sep 27, 2009 11:17:40 PM org.apache.coyote.http11.Http11BaseProtocol pause INFO: Pausing Coyote HTTP/1.1 on http-8080 Sep 27, ...

Log4J properties file - where to put it

I wrote a web service project using netbeans 6.7.1 with glassfish v2.1, put log4j.properties to the root dir of project and use static Logger logger = Logger.getLogger(MyClass.class); in Constructor: PropertyConfigurator.configure("log4j.properties"); and in functions: logger.info("..."); logger.error("..."); ... but, it is error in...

How to add class-files to new java project

I'm tasked with converting an existing Java/C++ mixed web-application to pure Java, but I'm hampered by some missing Java sources (.java files) for which only the class-files are available. Fortunately I don't need to change anything in that code, just need to continue calling the methods. I created a new Java Web Application project (u...