[S2] session question

2007-08-16 Thread Eugen Stoianovici
how do i get a handle to Session / Request from an action implementing import com.opensymphony.xwork2.Preparable;? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: action mappings help

2007-08-16 Thread Eugen Stoianovici
Laurie Harper wrote: Eugen Stoianovici wrote: I'm using struts 2.0.9. Where do i read about action mappings and how to configure them? In the Struts2 documentation of course ;-) These pointers may help: http://struts.apache.org/2.x/docs/action-configuration.html http://struts.apache.org/2.x/d

Re: [S2] How to use https on form submissions?

2007-08-16 Thread Srinivas.N.
I dont directly specify any URL with the tag - I use the tag with an action parameter as in I want the login action to be invoked via https. For example, the tag has a parameter called scheme, which can be be set to https - I dont see anything similar in the tag. I am sure I am missing som

newbie's question

2007-08-16 Thread AngeloChen
Hi, New to Struts, I have a need like this: If my LoginAction verify that the user is valid, it will retrieve a list of emails addressed to him from model and send all of them to a yourEmail.jsp. now as I understand from the doc that for every jsp you have to create a form-bean/ActionForm, so ho

Re: [S2]

2007-08-16 Thread yitzle
On 8/16/07, Steve Sether <[EMAIL PROTECTED]> wrote: > I'm using struts 2 to create a form whose action links outside of struts > 2. The problem is when I set the action parameter in the the framework is putting the Struts2 context in the URL. For instance: > say I have a struts 2 project called st

Re: Struts2 Annotation Based Validation

2007-08-16 Thread j alex
Dave, How do we use the action-alias XML approach if we've the same alias but different methods on the same action ? ex : say myAction has methodA(), methodB() etc. which are invoked using different submit buttons in the jsp In this case, we could have myAction-abc-validation.xml , but how

Re: [S2] How to use https on form submissions?

2007-08-16 Thread yitzle
On 8/16/07, Srinivas.N. <[EMAIL PROTECTED]> wrote: > > Struts 2 - Is there a way by which I can configure a form submission to use > https? > > Thanks > SN You should be able to specify the url to point to any URL, including https I am using Axis, though, and it doesn't nativaly support https. It

[OT] Re: Struts2 Annotation Based Validation

2007-08-16 Thread Dave Newton
--- meisam sarabadani wrote: > can somebody tell me why we need the struts.xml and > build.xml or web.xml? what are their duties ? Google can tell you. struts.xml is the usual name for the Struts 2 configuration file. build.xml is for Apache Ant. web.xml is for configuring your web application.

Re: Struts2 Annotation Based Validation

2007-08-16 Thread meisam sarabadani
can somebody tell me why we need the struts.xml and build.xml or web.xml?what are their duties ? On 8/16/07, j alex <[EMAIL PROTECTED]> wrote: > > try changing @RequiredFieldValidator to @RequiredStringValidator > > the RequiredFieldValidator only looks for "not null" and even if the > field is n

Re: [OT] Re: [action question]

2007-08-16 Thread meisam sarabadani
I suppose basser is right, Spring is supporting more frameworks and more architectures, it is easier to work with. On 8/16/07, Dave Newton <[EMAIL PROTECTED]> wrote: > > --- meisam sarabadani wrote: > > If you wanna compare them which one do u like the > > most ? and why? can we say which one s be

Re: [S2] 2 Select Boxes, one based on the other

2007-08-16 Thread Rene Gielen
Indeed there is no way without Javascript. The s2 tag Skip is searching for is http://cwiki.apache.org/confluence/display/WW/doubleselect Zoran Avtarovski schrieb: Any solution has to be javascript based. The question is wether you want a server side visit or not. And that is dependant on how m

Re: Extension mapping question

2007-08-16 Thread Rene Gielen
You might want to read here: http://cwiki.apache.org/confluence/display/WW/RestfulActionMapper http://cwiki.apache.org/confluence/display/WW/Zero+Configuration http://cwiki.apache.org/confluence/display/WW/Codebehind+Plugin Brian Mc schrieb: I want to be able to send this URL: www.mysite.com/l

Re: Retriving values from a properties file using Struts 1.3.8

2007-08-16 Thread Laurie Harper
I suspect this is caused by accessing the JSP directly, without going through Struts. If you haven't already, try setting up an action mapping that forwards to the JSP (i.e. add forward='/path/to/jsp'/> to your action-mappings in struts-config.xml) and requesting the page through that. L. kok

Re: params in model driven action

2007-08-16 Thread Laurie Harper
Clement, Steve wrote: Is there an easy way to suppress the parameter exceptions when I use a model driven action? I know I can add them as exclusions in the interceptor stack config, but this seems a bit cumbersome and adds additional maintenance if the form and model change. Currently, I am usi

Re: action mappings help

2007-08-16 Thread Laurie Harper
Eugen Stoianovici wrote: I'm using struts 2.0.9. Where do i read about action mappings and how to configure them? In the Struts2 documentation of course ;-) These pointers may help: http://struts.apache.org/2.x/docs/action-configuration.html http://struts.apache.org/2.x/docs/result-types.html

Re: debugging tag syntax problems

2007-08-16 Thread Laszlo Borsos
I use Eclipse and it does not validate for example OGNL. Is there really no means to see the exception raised by JSP compiler? kuvera > Idea validates tag syntax, and I'm sure other IDEs have this > functionality too. > > Oleg --

Re: guice and custom converters

2007-08-16 Thread Oleg Mikheev
Oleg Mikheev wrote: Anyone fought a problem with guice plugin not working with custom converters? I'm working it around by using per field converters instead of global ones, but it's no good. Oleg - To unsubscribe, e-mail: [E

Re: debugging tag syntax problems

2007-08-16 Thread Oleg Mikheev
Laszlo Borsos wrote: When I have a syntax error in a tag, I get an "Unable to load class for JSP" / ClassNotFoundException, as the JSP file does not get translated and compiled. But Tomcat 6 logs don't show the original exception, that would refer to the problem. How can it be logged? Syntax er

Re: Fw: Date problem

2007-08-16 Thread Oleg Mikheev
vamsi wrote: I have some problem with date conversion. Is struts automatically converts String in to date format? if the answer is YES How to do that http://struts.apache.org/2.x/docs/type-conversion.html XWork will automatically handle the most common type conversion for you.

Help with scope interceptor

2007-08-16 Thread j alex
Hi, I need help regarding correct usage of Scope interceptor (http://struts.apache.org/2.0.9/docs/scope-interceptor.html) Before going into details i had couple of qns : #1. Is this usable we have multiple actions sharing the same model object ? - i.e each page of the app posts to a different Ac

RE: XSLT Result matching pattern

2007-08-16 Thread John Krueger
You may also be able to use the exposedValue param in the result to get the xml output that you are looking for. questionTree John > -Original Message- > From: John Krueger [mailto:[EMAIL PROTECTED] > Sent: Thursday, August 16, 2007 12:16 PM > To: Struts Users Mailing List > Subject: R

debugging tag syntax problems

2007-08-16 Thread Laszlo Borsos
When I have a syntax error in a tag, I get an "Unable to load class for JSP" / ClassNotFoundException, as the JSP file does not get translated and compiled. But Tomcat 6 logs don't show the original exception, that would refer to the problem. How can it be logged? kuvera -

Re: Ajax form_how to submit a ajax form without clicking button?

2007-08-16 Thread lupus
I got answers by myself: using document.createEvent('MouseEvents') instead of form.submit :) -- View this message in context: http://www.nabble.com/Ajax-form_how-to-submit-a-ajax-form-without-clicking-button--tf4280769.html#a12185842 Sent from the Struts - User mailing list archive at Nabble.com

Ajax form_how to submit a ajax form without clicking button?

2007-08-16 Thread lupus
Hi all, Is there any way to submit a ajax form automatically without clicking on the submit button? I tried using javascript like "document.theForm1.submit();": when I execute the js, ajax form action is called but there comes another blank page with the result instead of showing the result in

RE: XSLT Result matching pattern

2007-08-16 Thread John Krueger
There is an open issue for struts2 with the matchingPattern and excludingPattern params for the xslt result type. https://issues.apache.org/struts/browse/WW-1550 Other options/workarounds for this would be to change the accessibility of your getUser and getSession methods to something other than

Re: empty operator

2007-08-16 Thread Chris Pratt
> > In OGNL, how can I assert that a String property is not null or empty? This question get's asked A LOT!! I think the OGNL developers ought to take notice and consider adding an empty operator, or at least address why this is such a bad idea. (*Chris*) --

Re: Using the Restful2ActionMapper

2007-08-16 Thread Dale Newfield
mraible wrote: I'm trying to change from using the old-style URLs to Restful2ActionMapper. What do you want your URLs to be for the various actions? If you really just want the view to look restful, you don't need to muck with the ActionMapper at all: /user/bob.html to view bob {1

There is no Action mapped for namespace /struts and action name webconsole.

2007-08-16 Thread SamImari
Hi, I want to start the struts2-webconsole with http://localhost:8080/myStruts2App?debug=console but got the following stacktrace. Any hint? Regards, SAM There is no Action mapped for namespace /struts and action name webconsole. - [unknown location] com.opensymphony.xwork2.DefaultActionP

RE: Retriving values from a properties file using Struts 1.3.8

2007-08-16 Thread kokro
> > Please check location of property file > It should be in "it.francesco.tutorial.utils" inside your web root > WEB-INF\classes (i.e classpath) > The ApplicationResources.properties file is on that location and it has the login.title key; infact I dont get the Missing message for key "label.tit

[S2]

2007-08-16 Thread Steve Sether
I'm using struts 2 to create a form whose action links outside of struts 2. The problem is when I set the action parameter in the the framework is putting the Struts2 context in the URL. For instance: say I have a struts 2 project called struts2.war, and another project called myProject.war. .

Re: Struts2 Annotation Based Validation

2007-08-16 Thread j alex
try changing @RequiredFieldValidator to @RequiredStringValidator the RequiredFieldValidator only looks for "not null" and even if the field is not entered, but is present on the form, it'll be populated with "" (empty) and not a java null. -Joseph On 8/16/07, David Copeland <[EMAIL PROTECTED]> w

Re: Trouble getting to portlet render phase

2007-08-16 Thread Frederick N. Brier
I have deployed the struts-portlet example, and it works. I continue to make comparison's between all of its configuration files, my own, and other examples. For instance, your example does not specify a parent in your pom.xml. The example does. The example pom.xml has no plugins. Yours ha

Re: Tabbed Panel and Ajax

2007-08-16 Thread Richard Sayre
I seem to have it working now. There was a form wrapped around the tabbed panel. My Ajax function was setting the inner html of this form, effectively wiping out the rest of the tab contents. Now I am wondering if listening to the topics is nessessary? In fact how does it work? In my function

RE: Retriving values from a properties file using Struts 1.3.8

2007-08-16 Thread Baseer Patel MD
Yes, If file is at wrong location or key is missing then error will be >> Missing message for key "label.title" Cause of error may be different -B -Original Message- From: kokro [mailto:[EMAIL PROTECTED] Sent: Thursday, August 16, 2007 7:41 PM To: user@struts.apache.org Subject: RE: Retr

Re: Struts2 Annotation Based Validation

2007-08-16 Thread David Copeland
Here's my struts.xml /Register.jsp my web.xml: NoShame struts2 org.apache.struts2.dispatcher.FilterDispatcher actionPackages com.naildrivin5.applications.noshame.client

Struts2 ajax and StreamResult

2007-08-16 Thread Jan Steinke
Hi, i've got a StreamResult from a Struts action ( using struts 2.0.9), that returns an image/jpeg. Works fine without using ajax(shows the image into the broser, but in a new window), but returns only plain text with using ajax. My Code: xml: image/jpg

RE: Retriving values from a properties file using Struts 1.3.8

2007-08-16 Thread kokro
The ApplicationResources.properties file is into (being just a simple application I have just copied the project into the webapps subdir without creating a .war file): Tomcat 5.5.23 installation dir\webapps\GestioneMP3\WEB-INF\classes\it\francesco\tutorial\utils Is this what you meant Baseer? Th

Re: src.js in Struts2

2007-08-16 Thread Dave Newton
--- meeboo <[EMAIL PROTECTED]> wrote: > but my app constantly complains about not finding > "src.js" Never heard of it; are you sure it's related to Struts? d. Sick sense of humor? Visit Yahoo! TV's

src.js in Struts2

2007-08-16 Thread meeboo
Hey all I've moved all the static Dojo stuff from the Struts2 jar to an external location, but my app constantly complains about not finding "src.js" - as far as I can see this file isn't even included in the S2 lib. I've tried googling for the file but can't seem to find it anywhere, any ideas?

RE: Retriving values from a properties file using Struts 1.3.8

2007-08-16 Thread Baseer Patel MD
Please check location of property file It should be in "it.francesco.tutorial.utils" inside your web root WEB-INF\classes (i.e classpath) -Original Message- From: kokro [mailto:[EMAIL PROTECTED] Sent: Thursday, August 16, 2007 7:22 PM To: user@struts.apache.org Subject: Retriving values f

Re: [OT] Re: [action question]

2007-08-16 Thread Dave Newton
--- meisam sarabadani wrote: > If you wanna compare them which one do u like the > most ? and why? can we say which one s better ? or > this is a wrong question may be ? Probably the wrong question. Spring *does* have an MVC web application framework; you could compare *that* with Struts (in whi

Retriving values from a properties file using Struts 1.3.8

2007-08-16 Thread kokro
Hi all, I'm developing a test application using Struts 1.3.8 and Java 1.5.0_12 and I have this problem: when I try to get the value linked to the key "login.title" I get this error: org.apache.jasper.JasperException: Exception in JSP: /index.jsp:6 3: 4: 5: 6:

params in model driven action

2007-08-16 Thread Clement, Steve
Is there an easy way to suppress the parameter exceptions when I use a model driven action? I know I can add them as exclusions in the interceptor stack config, but this seems a bit cumbersome and adds additional maintenance if the form and model change. Currently, I am using the paramsPreparePara

Re: Tabbed Panel and Ajax

2007-08-16 Thread Musachy Barroso
so you are saying that the tabs work fine before clicking on the link, but they don't work after that? What are you doing in editUdf()? Is there any error when you set debug="true" on head? (or any javascript error in general?) musachy On 8/16/07, Richard Sayre <[EMAIL PROTECTED]> wrote: > I hav

RE: [OT] Re: [action question]

2007-08-16 Thread Baseer Patel MD
Through spring frame work one can integrate other open source framework (like hibernate, Struts iBatis..) in a flexible way. Spring provides many other features like DI and AOP. Also we can add customized code through interceptors and proxy. DI = No need to create Bean, container knows when and how

guice and custom converters

2007-08-16 Thread Oleg Mikheev
Hi! Anyone fought a problem with guice plugin not working with custom converters? Thanks, Oleg - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Tabbed Panel and Ajax

2007-08-16 Thread Richard Sayre
I have a tabbed panel set up as follows Static Content... Static link Edit UDF Static content When I click the link in the UDF tab, the /editUdfs gets published and the edit gui displays in the tab, the problem is if I click on another tab after this happens, the conten

Re: [OT] Re: [action question]

2007-08-16 Thread meisam sarabadani
If you wanna compare them which one do u like the most ? and why? can we say which one s better ? or this is a wrong question may be ? thank you On 8/16/07, Dave Newton <[EMAIL PROTECTED]> wrote: > > Struts is a web application framework. > > Spring's functionality runs the gamut; its primary use

disable error-message in field

2007-08-16 Thread Pedro Herrera
I´m using css_xhtml theme in my application. Each CRUD screen has a error area(in the bottom). When a error occurs I need to disable the error message showed for each field(near the field) that is provided by the css_xhtml theme. I don´t like to create my own theme. Thanks -- View this message i

Re: Trouble getting to portlet render phase

2007-08-16 Thread Nils-Helge Garli
What does your pom.xml look like? Going back to your original problem, are you sure you don't get any exceptions while running or starting up the portlet? Check your logs to see if you find any exceptions. Also, try deploying the struts2-portlet example portlet and see if that works. Nils-H On 8

Re: Trouble getting to portlet render phase

2007-08-16 Thread Frederick N. Brier
Neither is working/generating content. In the case of the JBossPortal, a portlet window is rendered with the appropriate title, but nothing in it - not even an error, just a wide short box. Before I fixed some other problems, I had seen what a portlet looks like when there is an error, as wel

[OT] Re: [action question]

2007-08-16 Thread Dave Newton
Struts is a web application framework. Spring's functionality runs the gamut; its primary use in Struts is as a dependency injection mechanism. Looking at the Spring website [1] might be a good place to learn about Spring. d. [1] http://www.springframework.org/ - Original Message Fro

Re: [action question]

2007-08-16 Thread Eugen Stoianovici
Dave Newton wrote: can i forward an action to another action using the result tag in action mappings? Yes; result type is redirect-action [1] ([2] for all types). See [3] regarding action mapping configuration. d. [1] http://struts.apache.org/2.x/docs/redirect-action-result.html [2] htt

Fw: Date problem

2007-08-16 Thread vamsi
Hi all, I have some problem with date conversion. Is struts automatically converts String in to date format? if the answer is YES How to do that regards Vamsi Krishna

Date problem

2007-08-16 Thread vamsi
Hi all, I have some problem with date conversion. Is struts automatically converts String in to date format? if the answer is YES How to do that regards Vamsi Krishna

Re: [action question]

2007-08-16 Thread meisam sarabadani
can anybody tell me the differences between Spring and Struts ? Im confused over here :(( On 8/16/07, Dave Newton <[EMAIL PROTECTED]> wrote: > > > can i forward an action to another action using the result > > tag in action mappings? > > Yes; result type is redirect-action [1] ([2] for all types)

Re: [action question]

2007-08-16 Thread Dave Newton
> can i forward an action to another action using the result > tag in action mappings? Yes; result type is redirect-action [1] ([2] for all types). See [3] regarding action mapping configuration. d. [1] http://struts.apache.org/2.x/docs/redirect-action-result.html [2] http://struts.apache.org/

[action question]

2007-08-16 Thread Eugen Stoianovici
can i forward an action to another action using the result tag in action mappings? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

action mappings help

2007-08-16 Thread Eugen Stoianovici
I'm using struts 2.0.9. Where do i read about action mappings and how to configure them? Is there any detailed documentation? Right now i'm doing something like this...but i don't really know why i need the result name="input" tag and couldn't find any info about it on my own:

Open session in view question.

2007-08-16 Thread Ruimo Uno
Hi, I'm trying to implement 'open session in view pattern' using Struts2 and feeling difficulties. First, I have prepared the following interceptor: public String intercept(ActionInvocation invocation) throws Exception { Strung ret = null; try { ret = super.interce

Re: Serious need

2007-08-16 Thread meisam sarabadani
the com.sysdeo.eclipse.tomcat_3.2.1 (latest version) just downloaded, from this website--> http://www.eclipsetotale.com/tomcatPlugin.html#A3 On 8/16/07, Andvar Woo <[EMAIL PROTECTED]> wrote: > > *Just see the download specification carefully* > The file you choose may be a full pack with the ne

Re: [S2] static content

2007-08-16 Thread Laszlo Borsos
It was due to struts.action.extension set to empty string. I guess it is compulsory then. kuvera Laszlo Borsos írta: > My static content does not get served by Tomcat, either with relative or > absolute paths: > > > > ... > > > > Struts 2 filter is configured for /* url pattern and there ar

Re: Serious need

2007-08-16 Thread meisam sarabadani
I have downloaded these up to now; 1. emf-sdo-runtime-M200708142030.zip (latest version) ---> but i suppose there must be no difference between emf-sdo-xsd-SDK-2.3.0.zip and emf-sdo-runtime-M200708142030.zip page-->http://download.forge.objectweb.org/lomboz/ the eclipse website itself when i trie

Re: How to know if an element of a list belongs to another list using Struts2 tags?

2007-08-16 Thread fergunet
Well it's more complicated than that, I guess. Exactly is to compare two ID attribute between two objects (the rest of the attributes may be different), so I'm thinking in create the external OGNL variable and set it to "true" when the element is found (as I said in my previous post). ... Ok. Fi

Re: Serious need

2007-08-16 Thread Andvar Woo
*Just see the download specification carefully* The file you choose may be a full pack with the necessary plugins such as eclipse,just choose the "only" lomboz to download 2007/8/16, meisam sarabadani <[EMAIL PROTECTED]>: > > is it really big ? > in its web site its written its an IDE itself, not

Re: empty operator

2007-08-16 Thread Laszlo Borsos
Thank you. Does that mean that under OGNL I must do two checks? bean.string neq null and bean.string.length neq 0 instead of ${!empty bean.string} Tiresome... Al Sutton wrote: > I tend to use > > empty eq null > > To test if it's null and; > > empty neq null > > For non-null > > -Original

RE: empty operator

2007-08-16 Thread Al Sutton
I tend to use empty eq null To test if it's null and; empty neq null For non-null -Original Message- From: Laszlo Borsos [mailto:[EMAIL PROTECTED] Sent: 16 August 2007 08:04 To: Struts Users Mailing List Subject: empty operator In OGNL, how can I assert that a String property is no

[S2] static content

2007-08-16 Thread Laszlo Borsos
My static content does not get served by Tomcat, either with relative or absolute paths: ... Struts 2 filter is configured for /* url pattern and there are no servlets. Does the filter eat up the static requests? What should I do? kuvera -

Re: Serious need

2007-08-16 Thread Angelo zerr
Hi, you can too download Eclipse (Europa) distribution "*Eclipse IDE for Java EE Developers * " into http://www.eclipse.org/downloads/. There is several plu

Re: Serious need

2007-08-16 Thread Andvar Woo
*Download Plug-ins* Tomcat plug-in *check the parent link for the newest version.* http://www.sysdeo.com/eclipse/tomcatPluginV3.zip lomboz plug-in needs two parts,one is emf,the other is lomboz emf *check the parent link for the newest version.* http://eclipse.mirrors.tds.net/tools/emf/download

Re: Serious need

2007-08-16 Thread meisam sarabadani
Here is the web site : http://lomboz.objectweb.org/index.php do you mean this friend ? Thank you On 8/16/07, Andvar Woo <[EMAIL PROTECTED]> wrote: > > > > > > > >That needs some plug-ins to support,you can try "Lomboz" > > how to install Lomboz ? should i only get it and put it in a eclipse > > p

Re: Serious need

2007-08-16 Thread meisam sarabadani
is it really big ? in its web site its written its an IDE itself, not only a plugin, its almost 245 MB :o am i wrong ? On 8/16/07, Andvar Woo <[EMAIL PROTECTED]> wrote: > > > > > > > >That needs some plug-ins to support,you can try "Lomboz" > > how to install Lomboz ? should i only get it and pu

Re: Serious need

2007-08-16 Thread meisam sarabadani
sorry made a mistake :p apologize the driver is this: org.objectweb.lomboz-all-in-one-R-3.2.2-200706042126-win32.zip (md5

Re: Serious need

2007-08-16 Thread meisam sarabadani
I downloaded the plugin from sourceforge is this the one ? com.objectlearn.jdt.j2ee ??? is this the plugin ? Ok i now only put it in the eclipse plugins dir and follow your steps and let you know what happens. if any error or something I let you know. Thank you On 8/16/07, Andvar Woo <[EMAIL PR

[S2] static content

2007-08-16 Thread Laszlo Borsos
My static content does not get served by Tomcat, either with relative or absolute paths: ... Struts 2 filter is configured for /* url pattern and there are no servlets. Does the filter eat up the static requests? What should I do? kuvera -

Re: Serious need

2007-08-16 Thread meisam sarabadani
Dear Friend I have tried this example while i was waiting for your reply : http://struts.apache.org/2.0.9/docs/struts-2-spring-2-jpa-ajax.html i have done the whole things and steps, but when i wanted to publish the project to Tomcat it did not publish it, and gave me no error, seems that tomcat

[S2] How to use https on form submissions?

2007-08-16 Thread Srinivas.N.
Struts 2 - Is there a way by which I can configure a form submission to use https? Thanks SN -- View this message in context: http://www.nabble.com/-S2--How-to-use-https-on-form-submissions--tf4277986.html#a12176662 Sent from the Struts - User mailing list archive at Nabble.com. -

Re: How to make initialize with struts2 action?

2007-08-16 Thread Andvar Woo
I tested it,it works fine. Note that static block can only refer to static fields and static methods Don't put the static block in any method, just put it alone like a function. 2007/8/16, red phoenix <[EMAIL PROTECTED]>: > > static > { > //doSomeInit,this only run once > } > > above code can't ru

Re: Serious need

2007-08-16 Thread Andvar Woo
> > > >That needs some plug-ins to support,you can try "Lomboz" > how to install Lomboz ? should i only get it and put it in a eclipse > plugins > dir ? > *A:just download it and put it in the eclipse plug-in, you can google it > with key words: "eclipse Lomboz" for details* > >thirdly,configure th

empty operator

2007-08-16 Thread Laszlo Borsos
In OGNL, how can I assert that a String property is not null or empty? I would like this functionality: ${!empty bean.string} kuvera - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED