<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel about="http://blog.gmane.org/gmane.comp.java.ide.netbeans.user">
    <title>gmane.comp.java.ide.netbeans.user</title>
    <link>http://blog.gmane.org/gmane.comp.java.ide.netbeans.user</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/127006"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/127005"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/127004"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/127003"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/127002"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/127001"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/127000"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/126999"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/126998"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/126997"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/126996"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/126995"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/126994"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/126993"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/126992"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/126991"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/126990"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/126989"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/126988"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/126987"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/127006">
    <title>Re: Multi-file copy seems to crash project explorer pane</title>
    <link>http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/127006</link>
    <description>No problem,

http://www.netbeans.org/issues/show_bug.cgi?id=149205

Let me know if you need more details.
thanks, regards

Filippo


On Tue, Oct 7, 2008 at 1:17 PM, Tomas Musil &lt;Tomas.Musil&lt; at &gt;sun.com&gt; wrote:

</description>
    <dc:creator>Filippo Mariotti</dc:creator>
    <dc:date>2008-10-07T14:22:13</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/127005">
    <title>Re: Login.config problem.. JAAS with glassfish..on netbeans</title>
    <link>http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/127005</link>
    <description>
Hi,

   I have resolve the login problem. And its is very important for me to
tell people like me who use IDE but not DOS..

we can configure login module.. in two ways

On the command line.
You can use a -Djava.security.auth.login.config interpreter command line
argument to specify the login configuration file that should be used. We use
this approach for all the tutorials. For example, we run our SampleAcn
application in the JAAS Authentication tutorial using the following command,
which specifies that the configuration file is the sample_jaas.config file
in the current directory:

java -Djava.security.auth.login.config==sample_jaas.config sample.SampleAcn

In the Java security properties file.
An alternate approach to specifying the location of the login configuration
file is to indicate its URL as the value of a login.config.url.n property in
the security properties file. The security properties file is the
java.security file located in the lib/security directory of the J2RE.

Here, n indicates a consecutively-numbered integer starting with 1. Thus, if
desired, you can specify more than one login configuration file by
indicating one file's URL for the login.config.url.1 property, a second
file's URL for the login.config.url.2 property, and so on. If more than one
login configuration file is specified (that is, if n &gt; 1), then the files
are read and concatenated into a single configuration.

Here is an example of what would need to be added to the security properties
file in order to indicate the sample_jaas.config login configuration file
used by this tutorial. This example assumes the file is in the C:\AcnTest
directory on a Microsoft Windows system:

login.config.url.1=file:C:/AcnTest/sample_jaas.config
(Note that URLs always use forward slashes, regardless of what operating
system the user is running.)


for more information please check this link.. All the best..

http://java.sun.com/j2se/1.4.2/docs/guide/security/jaas/tutorials/LoginConfigFile.html

( Read till bottom of the page)


glassfish wrote:

</description>
    <dc:creator>glassfish</dc:creator>
    <dc:date>2008-10-07T14:13:07</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/127004">
    <title>PLEASE HELP - URGENT!</title>
    <link>http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/127004</link>
    <description>marc.farrow - I apologize for my panic reaction.  I appreciate your suggestion for better posting.



Futaleufu_John - thank you for your suggestion.  I will try it out.  I'm using NB 6.1.  I forgot you mention that this problem occurred after I tried to run the NB update.  NB notified me that it has 27 updates so I decided to click on it, but it did not successfully download or install the update.  It hangs right after "checking for updates..."





</description>
    <dc:creator>laila63</dc:creator>
    <dc:date>2008-10-07T13:38:25</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/127003">
    <title>Re: NetBeans 6.1 Deploy to Tomcat 5.5: ClassNotFoundException</title>
    <link>http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/127003</link>
    <description>make sure you have the axis libs/jars in tomcat lib directory or ideally in
WEB-INF\lib

Sipathamandla Shoko
Java Developer


____________________________________________________________________________________________



2008/10/6 MassimoH &lt;MassimoHeitor&lt; at &gt;gmail.com&gt;

</description>
    <dc:creator>Sipathamandla</dc:creator>
    <dc:date>2008-10-07T13:52:39</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/127002">
    <title>Profiler does seem to be able to locate the class.</title>
    <link>http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/127002</link>
    <description>
    Recently converted an eclipse project to Netbeans project.

    Currently running NetBeans 6.1  and  this project plugs into an IBM
framework so my project doesn't have a class with a main method.  I want to
profile my project and have NetBeans launch the profiler using a class from
their library.

     If I either run or debug everything works fine but when the profiler is
started it does seem to be able to locate the class to be used. The dialog
displayed has the following message "project xxx does not have a main class
set correctly". The only dialog options available to select an main class
from are my project classes.

     This is the first time using Netbeans and not sure were to start
looking.

     Any ideas?




</description>
    <dc:creator>LukeC</dc:creator>
    <dc:date>2008-10-07T13:52:12</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/127001">
    <title>problems with netbeans ide 6.1 and vmware</title>
    <link>http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/127001</link>
    <description>hello,

i`ve got problems with the netbeans 6.1 ide. i`m using 
the ide in a vmware and with jdk 6.

sometimes the ide doesn`t work, wich means the ide does not response anymore.
if i stop java.exe with the task manager, i`m able to restart the ide again and my
system is working.

how can i detect what`s the reason for this behavior ? maybe it is a memory configuration
problem ? this problem occurs using the netbeans ide in vmware.

thank you,

Oliver</description>
    <dc:creator>Oliver</dc:creator>
    <dc:date>2008-10-07T13:54:22</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/127000">
    <title>Re: Will 6.5 stop wasting my time?</title>
    <link>http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/127000</link>
    <description/>
    <dc:creator>Thomas Wolf</dc:creator>
    <dc:date>2008-10-07T13:29:13</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/126999">
    <title>Generating source from template "Java/CompilationUnit.java" ...ERROR: java.lang.NullPointerException</title>
    <link>http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/126999</link>
    <description>When trying to generate code from a UML Class diagram, this is all I get for all of the elements in the diagram.





</description>
    <dc:creator>ncgsoftware</dc:creator>
    <dc:date>2008-10-07T12:05:59</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/126998">
    <title>Re: PLEASE HELP - URGENT!</title>
    <link>http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/126998</link>
    <description>And please try to use proper etiquette when creating messages.  Titling a
messing in screaming words, to PLEASE HELP ME, IT'S URGENT is not going to
get you a lot of sympathy with people reading through messages to see if
they can help someone.  It would be much more proper to title the message
has "Problem with Installing and Uninstalling NetBeans".  If you want to
mention that it is urgent to you, then feel free to do so in the body of the
message.  Yelling (using all caps) is a huge turn off to users of these
lists and more than likely you will get the proper help out of spite.

On Tue, Oct 7, 2008 at 8:14 AM, Futaleufu_John &lt;jhalupka&lt; at &gt;cfinish.com&gt; wrote:

</description>
    <dc:creator>Marc Farrow</dc:creator>
    <dc:date>2008-10-07T12:21:40</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/126997">
    <title>Re: PLEASE HELP - URGENT!</title>
    <link>http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/126997</link>
    <description>
Which version of NB did you install? Did you accidentally delete any folders
residing within the NB installation?

I really don't recommend manually uninstalling an application, but if the NB
uninstaller keeps crashing on you, then you may not have any other choice.

From what I can tell, NB installs itself in several folders.

The main installation folder is where most of NB is installed. This is the
folder you specify during installation(for example C:\Program Files\NetBeans
6.1).

NB also creates a number of folders located in Documents and
Settings\&lt;Username&gt;. I did a check on my installation and I have the
following NB-related folders: .nbi, .netbeans, .netbeans-derby, and
.netbeans-registration.

DISCLAIMER: I'm not an expert on NB, so I can't give you any guarantees that
any of this will work.

First, I suggest backing up the above folders to a safe place before
proceeding. I also recommend backing up the Windows registry. (To start the
registry editor, open a command window and type regedit. There's a command
to back up the registry.)

Next, before deleting any files, try reinstalling NB into the same
installation folder. Some application installers have a Repair option to fix
corrupted installations, but I don't know if NB does.

If that doesn't work, take out the hammer. Delete the above mentioned
folders. What won't get cleaned up is the Windows registry. Some anti-virus
products have a registry cleanup feature. If yours does, use it to remove
any NB artifacts from the registry.

Once you have removed the NB folders, reinstall NB. I have no idea what
information NB writes to the registry so I don't know how the NB installer
will react to an improper uninstallation.

Good luck...

laila63 wrote:

</description>
    <dc:creator>Futaleufu_John</dc:creator>
    <dc:date>2008-10-07T12:14:52</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/126996">
    <title>Re: Problems with the JavaScript Editor in 6.5</title>
    <link>http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/126996</link>
    <description>Hi Stefan,
thanks for the report but have problem to reproduce it on latest Nb build. If you can,
please fill a issue on javascript component:
http://www.netbeans.org/issues/enter_bug.cgi?component=javascript

Insert steps to reproduce, what did you expect to get and what did you get.

Regards,

-msk

Stefan Sturm wrote:

</description>
    <dc:creator>Martin Schovanek</dc:creator>
    <dc:date>2008-10-07T11:31:52</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/126995">
    <title>Re: Multi-file copy seems to crash project explorer pane</title>
    <link>http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/126995</link>
    <description>Hi Fillipo,
could you please post here the issue number? I just want to make sure 
that this issue gets properly evaluated by responsible developer...
Thanks in advance

T.

Filippo Mariotti wrote:


</description>
    <dc:creator>Tomas Musil</dc:creator>
    <dc:date>2008-10-07T11:17:25</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/126994">
    <title>Re: [VWP] How to change css properties of tree nodes</title>
    <link>http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/126994</link>
    <description>Hi,

There is information about this in this blog entry: 
http://blogs.sun.com/branajam/entry/jsf_1_2_tree_component

Best regards,

--James Branam
Technical Writer
NetBeans Web Applications

Mariano López wrote:

</description>
    <dc:creator>James Branam</dc:creator>
    <dc:date>2008-10-07T10:26:00</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/126993">
    <title>Re: NetBeans on EEEPC hanging when using the plugin console...</title>
    <link>http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/126993</link>
    <description>I use it not frequently, but with some regularity (differences: EEE 900 
and only 1gb) and I have no problems. Can you look at the log files 
under $HOME/.netbeans/6.1/var/log and check whether there's something 
strange?

</description>
    <dc:creator>Fabrizio Giudici</dc:creator>
    <dc:date>2008-10-07T09:58:37</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/126992">
    <title>[VWP] How to change css properties of tree nodes</title>
    <link>http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/126992</link>
    <description>Hi all, I'm developing a tree componente in Visual Web Pack page from 
database records by code.

I would like to specify different css properties for color, fonts, etc. 
for each tree node depending on some criterias but when I set 
treeNode.setStyleClass( "classXXX" ) or treeNode.setStyleClass( 
"prop1;..;propN" ) and the node has set its url property this takes no 
effect over tree node.

I have searching in mailing list archives and google and nothing found 
about it.

Can  somebody help me ?

Thank you very much,

Mariano


</description>
    <dc:creator>Mariano López</dc:creator>
    <dc:date>2008-10-07T09:11:41</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/126991">
    <title>Log Management plugin / Logger</title>
    <link>http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/126991</link>
    <description>Hi,



i installed the Log Management plugin (http://contrib.netbeans.org/logmanagement/). Unfortunately there is no Documentation available how this should work.

I tried sending messages with Logger.getLogger("loggername").log(....) but nothing shows up in the Registered Loggers Tree (Services Window). I guess i have to register a Handler first or smth.



Does someone use this feature ? How does it work ?



thanks in advance





</description>
    <dc:creator>btvoyager</dc:creator>
    <dc:date>2008-10-07T08:29:13</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/126990">
    <title>Invisible Characters</title>
    <link>http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/126990</link>
    <description>The top one is gvim, invisible chars are circled. The bottom one is netbeans, notice the tabs are not shown, nor are the end line characters.



jVi won't keep my spaces per tab setting either, even though it's set to 4 using vim settings and 4 in the netbean config, but that's another issue.




Attachments: 
http://forums.netbeans.org//files/untitled_2_198.gif


</description>
    <dc:creator>muzzi</dc:creator>
    <dc:date>2008-10-06T21:53:16</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/126989">
    <title>PLEASE HELP - URGENT!</title>
    <link>http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/126989</link>
    <description>I'm a newbie here and I think I have totally broke Netbeans to the point that I can't even uninstall, reinstall, or even connect to report the problem.



Is there a way to manually removing Netbeans from the system?  I'm using Windows XP, Service Pack 3



I get a Critial Error when I try to uninstall...



"An unexpected exception happened in thread Thread-4



Exception:



      java.lang.AbstractMedhodError:

        gnu.xml.dom.DomElement.getTextContentxt()Ljava/lang/String;



    You can get more details about the issue in the installer log file:  &lt;log_name&gt; "



I don't understand what the log file means and it doesn't tell me how to fix the problem.



Please help me fix this problem.  I am not sure what to do next now that I can't even uninstall.



Thanks.





</description>
    <dc:creator>laila63</dc:creator>
    <dc:date>2008-10-06T22:08:35</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/126988">
    <title>New Maven Problem tonight</title>
    <link>http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/126988</link>
    <description>Up until tonight, I was able to place jar files into my repository manually that didn't exist in the repository.



I manually add them as follows:

mvn install:install-file -Dfile=./securityfilter-2.0.jar -DgroupId=securityfilter -DartifactId=securityfilter -Dversion=2.0 -Dpackaging=jar



As of about an hour ago, my build working due to a "corrupted" pom file int the .m2 folder.  Somehow Netbeans placed my cable provider's   "web page not found" page in place of the manually added pom.xml.



When maven tried to use this "does not exist" page, it thought it was a corrupted pom.xml and failed to build.



org.apache.maven.project.InvalidProjectModelException: Not a v4.0.0 POM. for project securityfilter:securityfilter at C:\Users\Baba\.m2\repository\securityfilter\securityfilter\2.n\securityfilter-2.n.pom





I have attached the invalidly downloaded "pom.xml" file that is the cable proder's HTML web page.  Nothing else had changed in my environment and the build went from working to not working within minutes of each other with no changes outside of restarting the IDE.



I don't know for sure if a pom file had been put there when I manually added the jar file or if Maven in Netbeans added it itself upon not finding the pom file locally.



Hope this makes sense.



JohnE




Attachments: 
http://forums.netbeans.org//files/securityfilter_2npom_934.zip


</description>
    <dc:creator>jeichels</dc:creator>
    <dc:date>2008-10-07T02:19:11</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/126987">
    <title>beanshell prompt</title>
    <link>http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/126987</link>
    <description>is there a better place to ask this? it seems like it should be a simple thing to do, but i've been googling and rtfming and coming up blank.





</description>
    <dc:creator>martindemello</dc:creator>
    <dc:date>2008-10-07T02:20:59</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/126986">
    <title>New Maven Problem tonight</title>
    <link>http://permalink.gmane.org/gmane.comp.java.ide.netbeans.user/126986</link>
    <description>Though you could have likely guessed, when I deleted the corrupted pom.xml files and marked the maven plug-in to work offline, the build went through to completion successfully.



JohnE





</description>
    <dc:creator>jeichels</dc:creator>
    <dc:date>2008-10-07T02:32:44</dc:date>
  </item>
  <textinput about="http://search.gmane.org/?group=$group=gmane.comp.java.ide.netbeans.user">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.java.ide.netbeans.user</link>
  </textinput>
</rdf:RDF>
