fx5900 | 1 Nov 01:06
Picon

Jasper exception problem


Hi,

    i'm running basic web app to allow users to enter their details, however
when i run it i get the following error message

org.apache.jasper.JasperException: Failed to load or instantiate
TagLibraryValidator class: org.apache.taglibs.standard.tlv.JstlCoreTLV

org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:51)

org.apache.jasper.compiler.ErrorDispatcher.dispatch(ErrorDispatcher.java:409)

org.apache.jasper.compiler.ErrorDispatcher.jspError(ErrorDispatcher.java:281)

org.apache.jasper.compiler.TagLibraryInfoImpl.createValidator(TagLibraryInfoImpl.java:666)

org.apache.jasper.compiler.TagLibraryInfoImpl.parseTLD(TagLibraryInfoImpl.java:248)

org.apache.jasper.compiler.TagLibraryInfoImpl.<init>(TagLibraryInfoImpl.java:163)
	org.apache.jasper.compiler.Parser.parseTaglibDirective(Parser.java:420)
	org.apache.jasper.compiler.Parser.parseDirective(Parser.java:483)
	org.apache.jasper.compiler.Parser.parseElements(Parser.java:1433)
	org.apache.jasper.compiler.Parser.parse(Parser.java:133)

org.apache.jasper.compiler.ParserController.doParse(ParserController.java:216)

org.apache.jasper.compiler.ParserController.parse(ParserController.java:103)
	org.apache.jasper.compiler.Compiler.generateJava(Compiler.java:153)
	org.apache.jasper.compiler.Compiler.compile(Compiler.java:314)
(Continue reading)

Behrang Saeedzadeh | 1 Nov 07:06
Picon
Gravatar

Shortcut for stopping the running application

Hi all,

Is there a shortcut for stopping the current running application?

--
Behrang Saeedzadeh
Behrang Saeedzadeh | 1 Nov 07:07
Picon
Gravatar

Adding a JAR to a NetBeans moule

Hi,

How can I add a dependency on a JAR file to a NetBeans Module project?

Thanks in advance,
--
Behrang Saeedzadeh
spamforonly | 1 Nov 01:16
Favicon

Show whitespace

Hi,

there is possible to show whitespaces in editor?

Peter Pis | 1 Nov 09:37
Picon

Re: nb 6.5RC coan't commit code using SVN

Hi,

   or you can also verify whether your authorization data are correct 
from within the command line or other SVN client. Just try to list the 
content of the repository that is visible for you.

svn list <repositoryurl> --username <user_name> --password <password>

Regards,
-Peter

wolfgang wrote:
> I just downloaded nb6.1 and exactly the same thing?!?!?!?! Why is this happening? I'm at a complete loss,
can anyone help?
>
>
>
> Thanks
>
>
>
>
>   

Peter Pis | 1 Nov 09:50
Picon

Re: nb 6.5RC coan't commit code using SVN

Valid and already used repository URLs with username and password are 
stored in "Tools | Options | Miscellaneous | Versionig | Subversion | 
Manage Connection Setting..."

    It also depends on repository settings. Username you use doesn't 
seem to have appropriate permission for committing.

So in case you use svn:// protocol then the correct set up can be found:
http://svnbook.red-bean.com/en/1.5/svn.serverconfig.svnserve.html#svn.serverconfig.svnserve.auth.general

    Or try to:
1. Close NB.
2. Delete the folder <nb_user_dir>/config/svn
3. Start NB again and try to commit. You should be asked for user/password.

Regards,
-Peter

wolfgang wrote:
> I just downloaded nb6.1 and exactly the same thing?!?!?!?! Why is this happening? I'm at a complete loss,
can anyone help?
>
>
>
> Thanks
>
>
>
>
>   

mann | 1 Nov 11:52
Picon

Toggle comment in Java editor

I've tried new RC2 and this issue looks fixed. I will report a bug in case I'll run into this problem again.

Thanks for all, I think we can assume this is solved.

Tomas Mann

Denis Moinel | 1 Nov 11:55
Picon

my enum property is not editable in the property sheet

Hi,

On a form, I have a javabeans with a property of type "enum EDisposition"

In the property sheet of netbeans (6.5RC), my property is not editable: 
Netbeans does'nt provide a list of choice for the differents enum values.
The displayed text in the property sheet is: "[EDisposition]"

I saw in nb source code that a module 
org.openide.explorer.propertysheet.EnumPropertyEditor.java
should handle this use case.

After many hours of research on faqs, tutorials, google, mailings lists 
archives..., I have not found informations about that.

Is that a bug?

Thanks.

Denis M.

Here is the definition of my property:
public enum EDisposition {
   horizontal("horizontal"),
   vertical("vertical"),
   horizontalReversed("horizontalReversed"),
   verticalReversed("verticalReversed");

   protected String label;

   /** Constructor */
   EDisposition(String pLabel) {
      this.label = pLabel;
   }

   public String getLabel() {
      return this.label;
   }
}

bigbigJava | 1 Nov 12:20
Picon
Favicon

NetBeans 6.5 fails to create a VisualJSF desigining page


Hi all,

I was doing the Tutorial "Getting Started with Visual Web JSF Application
Development" on Netbeans' site http://www.netbeans.org/kb/60/web/intro.html.

This tutorial teaches to create a simple Web app using Visual JSF.

 I started a new project following exactly what the tutorial tells me to do
: creating a new project in the category Web app , using the framework
Visual JSF.

Then, the problem comed just after. In the  Projects window, I clicked on
the file Page1.jsp to open it. Normally we have 3 tabs for designing this
page : the Design tab, the JSP tab and the Java tab. While I can open the
JSP and Java tabs to modify the corresponding files, I CAN NOT open the
Design tab : it says "Loading, please wait ..." eternally after throwing the
following exceptions

java.lang.NoSuchMethodError:
javax.el.ExpressionFactory.newInstance()Ljavax/el/ExpressionFactory;
	at
org.apache.jasper.runtime.JspApplicationContextImpl.getExpressionFactory(JspApplicationContextImpl.java:80)
	at
com.sun.faces.config.ConfigureListener.registerELResolverAndListenerWithJsp(ConfigureListener.java:1570)
	at
com.sun.faces.config.ConfigureListener.contextInitialized(ConfigureListener.java:403)
	at
org.netbeans.modules.visualweb.jsfsupport.container.RaveConfigureListener.contextInitialized(RaveConfigureListener.java:93)
	at
org.netbeans.modules.visualweb.jsfsupport.container.FacesContainer.initialize(FacesContainer.java:174)
	at
org.netbeans.modules.visualweb.jsfsupport.container.FacesContainer.<init>(FacesContainer.java:119)
	at
org.netbeans.modules.visualweb.insync.models.FacesModelSet.getFacesContainer(FacesModelSet.java:574)
	at
org.netbeans.modules.visualweb.insync.models.FacesModelSet.<init>(FacesModelSet.java:411)
Caused: java.lang.reflect.InvocationTargetException
	at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
	at
sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
	at
sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
	at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
	at
org.netbeans.modules.visualweb.insync.ModelSet.createInstance(ModelSet.java:265)
Caused: java.lang.RuntimeException
	at
org.netbeans.modules.visualweb.insync.ModelSet.createInstance(ModelSet.java:269)
	at
org.netbeans.modules.visualweb.insync.ModelSet.getInstance(ModelSet.java:250)
	at org.netbeans.modules.visualweb.insync.ModelSet$1.run(ModelSet.java:217)
[catch] at java.lang.Thread.run(Thread.java:619)

I am with JDK 1.6.07, Netbeans 6.5, JSF component 1.2 for Java EE 5
installed. I tried with Netbeans 
6.1 but it dit not work neither.

Please help !

Thank you !

Best regards,

bigbigJava
--

-- 
View this message in context: http://www.nabble.com/NetBeans-6.5-fails-to-create-a-VisualJSF-desigining-page-tp20279399p20279399.html
Sent from the Netbeans IDE Users mailing list archive at Nabble.com.

Michael D. Spence | 1 Nov 14:26
Picon

RE: Shortcut for stopping the running application

On the left edge of the Output tab (usually at the bottom of the Netbeans window) there is
a square, pinkish-colored icon with a white square in the middle.  That's a Stop
button.
 
If you're in Debug mode, then the Output tab will have two tabs, one labeled Application name (debug),
which will have the stop button.  Also, when in Debug mode, the main Tool Bar will have that same Icon.
 
 
 
Michael D. Spence
Mockingbird Data Systems, Inc.
 
-----Original Message-----
From: Behrang Saeedzadeh [mailto:behrangsa <at> gmail.com]
Sent: Saturday, November 01, 2008 2:07 AM
To: nbusers <at> netbeans.org
Subject: [nbusers] Shortcut for stopping the running application

Hi all,

Is there a shortcut for stopping the current running application?

--
Behrang Saeedzadeh

Gmane