running Struts with no network connection

2003-11-18 Thread Afshartous, Nick

Hi,

I'm trying to run with no network connection, and I've set
the init param validation to false.  Yet Struts is looking for
the Validator's DTD.  Thanks for any help.

--
Nick

95 [main] INFO validator.ValidatorPlugIn - Loading validation rules 
file from '/WEB-INF/validation.xml'
3130 [main] ERROR 
validator.ValidatorPlugIn - jakarta.apache.org

java.net.UnknownHostException: jakarta.apache.org
at 
java.net.InetAddress.getAllByName0(InetAddress.java:566)
at 
java.net.InetAddress.getAllByName0(InetAddress.java:535)
at 
java.net.InetAddress.getByName(InetAddress.java:444)
at 
java.net.Socket.(Socket.java:95)
at 
sun.net.NetworkClient.doConnect(NetworkClient.java:45)
at 
sun.net.www.http.HttpClient.openServer(HttpClient.java:330)
at 
sun.net.www.http.HttpClient.openServer(HttpClient.java:516)
at 
sun.net.www.http.HttpClient.(HttpClient.java:266)
at 
sun.net.www.http.HttpClient.(HttpClient.java:276)
at 
sun.net.www.http.HttpClient.New(HttpClient.java:288)
at 
sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection
.java:417)
at 
sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLCon
nection.java:510)
at java.net.URL.openStream(URL.java:793)
at 
org.apache.xerces.impl.XMLEntityManager.setupCurrentEntity(Unknown 
Source)
at 
org.apache.xerces.impl.XMLEntityManager.startEntity(Unknown Source)

at org.apache.xerces.impl.XMLEntityManager.startDTDEntity(Unknown 
Source)
at 
org.apache.xerces.impl.XMLDTDScannerImpl.setInputSource(Unknown 
Source)
at 
org.apache.xerces.impl.XMLDocumentScannerImpl$DTDDispatcher.dispatch(
Unknown Source)
at 
org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Un
known Source)
at 
org.apache.xerces.parsers.DTDConfiguration.parse(Unknown Source)
at 
org.apache.xerces.parsers.DTDConfiguration.parse(Unknown Source)
at 
org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
at 
org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
at 
org.apache.commons.digester.Digester.parse(Digester.java:1302)
at 
org.apache.commons.validator.ValidatorResourcesInitializer.initialize
(ValidatorResourcesInitializer.java:256)
at 
org.apache.struts.validator.ValidatorPlugIn.initResources(ValidatorPl
ugIn.java:222)
at 
org.apache.struts.validator.ValidatorPlugIn.init(ValidatorPlugIn.java
:161)
at 
org.apache.struts.action.ActionServlet.initModulePlugIns(ActionServle
t.java:1158)
at 
org.apache.struts.action.ActionServlet.init(ActionServlet.java:473)

at javax.servlet.GenericServlet.init(GenericServlet.java:256)
at 
org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.
java:935)
at 
org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:82
3)
at 
org.apache.catalina.core.StandardContext.loadOnStartup(StandardContex
t.java:3420)
at 
org.apache.catalina.core.StandardContext.start(StandardContext.java:3
608)
at 
org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase
.java:821)
at 
org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:80
7)
at 
org.apache.catalina.core.StandardHost.addChild(StandardHost.java:579)

at 
org.apache.catalina.core.StandardHostDeployer.install(StandardHostDep
loyer.java:307)
at 
org.apache.catalina.core.StandardHost.install(StandardHost.java:772)

at 
org.apache.catalina.startup.HostConfig.deployDirectories(HostConfig.j
ava:559)
at 
org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:401
)
at 
org.apache.catalina.startup.HostConfig.start(HostConfig.java:718)
at 
org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java
:358)
at 
org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(Lifecycl
eSupport.java:166)
at 
org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1196)

at 
org.apache.catalina.core.StandardHost.start(StandardHost.java:738)

at 
org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1188)

at 
org.apache.catalina.core.StandardEngine.start(StandardEngine.java:347
)
at 
org.apache.catalina.core.StandardService.start(StandardService.java:4
97)
at 
org.apache.catalina.core.StandardServer.start(StandardServer.java:219
0)
at org.apache.catalina.startup.Catalina.start(Catalina.java:512)

at org.apache.catalina.startup.Catalina.execute(Catalina.java:400)

at org.apache.catalina.startup.Catalina.process(Catalina.java:180)

at java.lang.reflect.Method.invoke(Native Method)
at 
org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:203)
[INFO] 
Http11Protocol - -Starting Coyote HTTP/1.1 on port 8080
[INFO] 
ChannelSocket - -JK2: ajp13 listening on 0.0.0.0/0.0.0.0:8009
[INFO] 
JkMain - -Jk running ID=0 time=1/111 config=/Users/afshar/local/
jakarta-tomcat-4.1.24/conf/jk2.properties

--


can't redirect out of the context

2003-06-25 Thread Afshartous, Nick

Hi,

I'm trying to have an Action redirect to yahoo using the lines
below. However, the servlet context is getting prepended
and the error is

   The requested resource (/acme/www.yahoo.com) is not available.

Setting contextRelative did not make a difference.

Thanks for any suggestions.  
--
Nick




 ActionForward forward = new RedirectingActionForward("www.yahoo.com");

 forward.setContextRelative(false);

 return forward;


not getting right ActionMapping class with StrutsTestCase

2002-12-17 Thread Afshartous, Nick

I noticed the following when trying to use StrutsTestCase
(latest version of StrutsTestCase with Struts B2). 

 It seems that when a request is sent via StrutsTest that 
RequestProcessor,processMapping does not find
the ActionMapping class that has been configured in
web.xml.  Instead it finds the Struts ActionMapping class.

If I hit the same server via the browser then the configured
ActionMapping class is found by RequestProcessor,processMapping.

Thanks for any explanation as to why the these two
situations are behaving differently.

--
Nick




Struts TestCase v1.9 exception

2002-12-06 Thread Afshartous, Nick

Hi,

I'm trying to use Struts TestCase v1.9 and am getting the exception below
when calling actionPerform().  Thanks for any explanation.  
--
  Nick

 
junit.framework.
AssertionFailedError: Error running action.perform(): class
java.lang.ClassCastException - org.apache.struts.action.ActionMapping

at junit.framework.Assert.fail(Assert.java:51)
at
servletunit.struts.CactusStrutsTestCase.actionPerform(CactusStrutsTestCase.j
ava:278)
at
testcases.com.proactcorp.web.benmgmt.common.security.action.TestLogonAction.
logon(TestLogonAction.java:62) 
 



RE: mapping.getInputForward().getPath() is null

2002-12-05 Thread Afshartous, Nick

Maybe its null because in struts-config.xml the input attribute of the
action
mapping is not set ?

Nick

-Original Message-
From: Jordan Thomas [mailto:[EMAIL PROTECTED]]
Sent: Thursday, December 05, 2002 3:50 PM
To: Struts User List
Subject: mapping.getInputForward().getPath() is null


Hi,

I am trying to set a String as mapping.getInputForward().getPath() but this
is returning a null. How could this be. I though that this was set on every
request through the ActionServlet. If anyone can shed some light on this it
would be appreciated.

thanks

Jordan


--
To unsubscribe, e-mail:

For additional commands, e-mail:




Profiling a Struts app

2002-10-02 Thread Afshartous, Nick


Hi,

I'm looking for a way to generate profile data
(i.e. time stats at the method level) for our Struts 
app.  Has anyone done this using any of the 
HPROF based tools (preferably free) ?  

Thanks for any info.  
--
Nick




RE: Firewall and Struts inhibit CSS references

2002-09-24 Thread Afshartous, Nick


< From: James Mitchell [mailto:[EMAIL PROTECTED]]

< The request made by the browser for the text file
< "/strutstest/css/adm_01.css" is handled by your web server.  It never even
< makes it to the servlet container, much less the struts action servlet.

Would it be possible that somehow the environment of the servlet or
container indirectly
affects the processing of the CSS link ref ?  I'm asking this because 
when the file has a .html suffix it works fine, but with a .jsp suffix
the CSS file is not applied.  Also, when the URL path to the page is
requested (i.e. .../test.jsp) it works fine.  Its only when an action
forwards to the .jsp file that the CSS file is not found/applied to the
.jsp.

< You should consult the firewall documentation or try a bit more debugging
< with your firewall software.  I run a very restrictive firewall on my home
< server and it handles .css just fine.

The firewall in our case is not at the server end.  The user's machine 
is behind a firewall looking at the outside world where the server is.  
When the user's machine is not behind a firewall the CSS file is applied to
the .jsp and the page is rendered fine.

Thanks for any info.

Nick
 
 




> -Original Message-
> From: Eddie Bush [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, September 24, 2002 12:33 PM
> To: Struts Users Mailing List
> Subject: Re: Firewall and Struts inhibit CSS references
>
>
> Pardon, but I think your subject is misleading.  Struts is doing nothing
> to inhibit your CSS references.  Your firewall I don't know about -
> that's a different story.  This is definitely not a "Struts" issue
> though :-)
>
> Afshartous, Nick wrote:
>
> > We have run into an issue with references to CSS files.
> > The references have this form
> >
> >  >href="/strutstest/css/adm_01.css">
> >
> > We have set up the application in our DMZ and the pages are rendered
> >fine for us,
> > however for one of our customers who is viewing from behind a
> >firewall, the stylesheets
> > are not being found/applied.
> >
> > We have tested the pages via a non-Struts servlet and that works
> >fine for the
> > customer, so somehow
> > the combination of Struts and the external firewall are causing the
> >problem.
> > If anyone has any suggestions please let me know, thanks.
> >
> >--
> >Nick
> >
>
> --
> Eddie Bush
>
>
>
>
> --
> To unsubscribe, e-mail:
<mailto:[EMAIL PROTECTED]>
For additional commands, e-mail:
<mailto:[EMAIL PROTECTED]>



--
To unsubscribe, e-mail:
<mailto:[EMAIL PROTECTED]>
For additional commands, e-mail:
<mailto:[EMAIL PROTECTED]>



Firewall and Struts inhibit CSS references

2002-09-24 Thread Afshartous, Nick


We have run into an issue with references to CSS files.  
The references have this form



We have set up the application in our DMZ and the pages are rendered
fine for us,
however for one of our customers who is viewing from behind a
firewall, the stylesheets
are not being found/applied.  

We have tested the pages via a non-Struts servlet and that works
fine for the
customer, so somehow
the combination of Struts and the external firewall are causing the
problem.
If anyone has any suggestions please let me know, thanks.  

--
Nick




RE: RE: RE: How to use XML and XSL with Struts?

2002-03-13 Thread Afshartous, Nick


There was also a recent posting about an article 
on the same topic.  See

   http://www.mail-archive.com/struts-user@jakarta.apache.org/msg23094.html

  Nick

> -Original Message-
> From: Gernot Koller [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, March 13, 2002 2:44 PM
> To: Struts Users Mailing List
> Subject: Re: RE: RE: How to use XML and XSL with Struts?
> 
> 
> Haven't had a closer look to STXX yet. Already had finished my own
> XSLT-Servlet when I stumbled over STXX. My solution heavily relies
> on XSLT-Filter chaining to provide practicable solutions for 
> i18n, etc.
> I didn't touch Struts though, as I know I won't be able to keep up
> as Struts envolves...
> But I will  asap take a closer look to STXX. 
> 
> Gernot.
> 
> 13.03.2002 20:20:40, "Robert" <[EMAIL PROTECTED]> wrote:
> 
> >Couldn't tell you as that's out of my hands :-) The feature that I'm
> >adding is the ability to support static XML files. The current action
> >uses dynamic XML files, generated in the action class. It stores the
> >document (a JDom Document) in the request, and the servlet then
> >transforms the document with a supplied XSL sheet. The .9 
> examples are
> >really good and you should take a look at them.
> >
> >- Robert
> >
> >-Original Message-
> >From: Gernot Koller [mailto:[EMAIL PROTECTED]] 
> >Sent: Wednesday, March 13, 2002 1:22 PM
> >To: Struts Users Mailing List
> >Subject: Re: RE: How to use XML and XSL with Struts?
> >
> >Hi!
> >
> >Do you know if STXX will find it's way into Struts standard 
> distribution
> >?
> >
> >13.03.2002 18:47:16, "Robert" <[EMAIL PROTECTED]> wrote:
> >
> >>Try out STXX (http://www.oroad.com/opencode/index.html). It 
> handles XML
> >>and XSLT transforms for you at the Action level. It is 
> currently at .9
> >>release and I'm helping Jeff (the author of STXX) with a 
> few extras for
> >>a 1.0 release.
> >>
> >>- Robert
> >>
> >>-Original Message-
> >>From: Struts Newsgroup [mailto:@[EMAIL PROTECTED]] 
> >>Sent: Wednesday, March 13, 2002 11:40 AM
> >>To: [EMAIL PROTECTED]
> >>Subject: How to use XML and XSL with Struts?
> >>
> >>Subject: How to use XML and XSL with Struts?
> >>From: "jcorey" <[EMAIL PROTECTED]>
> >> ===
> >>In my action I parse an xml document.  I find the section of the xml
> >>data I
> >>want to display.
> >>Then I put a Node in the request and forward to a view jsp. 
>  The view
> >>jsp
> >>transforms the node object and puts the result in the 
> response output
> >>stream.
> >>
> >>Is there a better way?
> >>
> >>
> >>
> 
> 
> 
> 
> --
> To unsubscribe, e-mail:   

For additional commands, e-mail:


--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




RE: Login Authentication

2002-02-07 Thread Afshartous, Nick


> From: Galbreath, Mark [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, February 07, 2002 7:16 AM

> What's the best way to authenticate users from a backend database in a
> system using Struts?  Should the HTML form action go through the
> ActionServlet or should I write a small validation class that 
> authenticates
> the login and forwards to the appropriate JSP?

I would say the latter.  Another option would be 
to have the container perform authentication
(see the Servlet 2.2 spec for into on how to set this
 up).  

  Nick

--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




RE: Threading issues

2002-01-31 Thread Afshartous, Nick


The golden rule is not to maintain any state in an Action instance variable.

In other words Actions should not have any instance variables that are 
updated when perform is called.  

  Nick

> -Original Message-
> From: Brian Holzer [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, January 31, 2002 1:27 PM
> To: [EMAIL PROTECTED]
> Subject: Threading issues
> 
> 
> Hi there,
> I have not yet had to develop an application that had to 
> deal with threading issues before.  From reading the 
> documentation I see that all users, are using the same 
> instance of the Action class.
>Can anyone give me some basic pointers on things to do or 
> avoid in order to avoid having users trample each other 
> within my Action code since I seem to have a fair amount of 
> app flow control going on,  or  any design decisions that 
> anyone has come up with to avoid these types of problems.
> 
> thanks
> Brian
> 
> 
> --
> To unsubscribe, e-mail:   

For additional commands, e-mail:


--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




RE: Transactional Control Tokens?

2002-01-31 Thread Afshartous, Nick


I think both double-clicking and going back to submit again
would do it.  

  Nick

> -Original Message-
> From: Greg Hess [mailto:[EMAIL PROTECTED]]
> 
> Could you describe how a user would submit a form twice? By 
> clicking fast?
> or by going back after the first submit?
> 
> -Original Message-----
> From: Afshartous, Nick [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, January 31, 2002 11:00 AM
> To: Struts Users Mailing List
> Subject: RE: Transactional Control Tokens?
> 
> 
> 
> I believe the transactional token is used to validate that
> the user does not submit the same form twice.  A common
> problem is web applications.
> 
>Nick
> 
> > -Original Message-
> > From: Greg Hess [mailto:[EMAIL PROTECTED]]
> > Sent: Thursday, January 31, 2002 10:47 AM
> > To: Struts Users Mailing List
> > Subject: Transactional Control Tokens?
> >
> >
> > In the struts-example application in
> > (SaveRegistrationAction.java:190, :161)
> > the author calls the method saveToken(request) and then
> > isTokenValid() and
> > resetToken(). What does this use of transactional control
> > tokens provide?
> >
> >
> > --
> > To unsubscribe, e-mail:
> > <mailto:[EMAIL PROTECTED]>
> > For additional commands, e-mail:
> > <mailto:[EMAIL PROTECTED]>
> >
> 
> --
> To unsubscribe, e-mail:
> <mailto:[EMAIL PROTECTED]>
> For additional commands, e-mail:
> <mailto:[EMAIL PROTECTED]>
> 
> 
> 
> --
> To unsubscribe, e-mail:   
<mailto:[EMAIL PROTECTED]>
For additional commands, e-mail:
<mailto:[EMAIL PROTECTED]>

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>




RE: Transactional Control Tokens?

2002-01-31 Thread Afshartous, Nick


I believe the transactional token is used to validate that
the user does not submit the same form twice.  A common
problem is web applications.  

   Nick

> -Original Message-
> From: Greg Hess [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, January 31, 2002 10:47 AM
> To: Struts Users Mailing List
> Subject: Transactional Control Tokens?
> 
> 
> In the struts-example application in 
> (SaveRegistrationAction.java:190, :161)
> the author calls the method saveToken(request) and then 
> isTokenValid() and
> resetToken(). What does this use of transactional control 
> tokens provide?
> 
> 
> --
> To unsubscribe, e-mail:   
> 
> For additional commands, e-mail: 
> 
> 

--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




RE: bean comparison using tags

2002-01-24 Thread Afshartous, Nick


Comments embedded below.

> From: Keith Bacon [mailto:[EMAIL PROTECTED]]
> Subject: RE: bean comparison using tags
> 
> Thinking about this I suspect the esteemed designers of 
> struts think you shouldn't want to do
> this!
> It means you are putting logic in the jsp that should be in 
> the Action class (or even the business
> logic). example:-
> 
> for Cust Type = DisplayParm.CustTypOption1  display is in one format
> for others it's the default format.
> In your JSP you want to make the test
>  name2="displayParm" property2="custTypeOption1"
> >  
> 
> The idea is to change this so your action class puts a string 
> called displayType in the request
> so in your jsp you code
> 
 
I'm not sure I follow you here since you left out the "value" attribute
that is required by logic:equal.  In any case I just figured out the answer
to my original question.  To insert a run-time expression for 
the value of the "value" attribute one has to use single quotes in
conjunction with a scriptlet.  For example, 

   
 conditional content...
   

means that the value of the property p1 of bean b1 is compared to
the String value referenced by bean b2.  Without the scriptlet
the value attribute would be bound to the literal String value "b2".  
It seems then that the single quotes are necessary to use a scriptlet
within a call to a custom tag.  

Nick

> --- "Afshartous, Nick" <[EMAIL PROTECTED]> wrote:
> > > From: Fernando Esteban Barril Otero 
> >  
> > > Try to use the  to get the property
> > > of the second bean (b2) first and then use .
> > > 
> > > 
> > > 
> > > 
> > >Yes, the two are equal
> > > 
> > 
> > Thanks but the value attribute is used to specify literal String
> > values.  In the above example value="strProp" specifies the
> > String value "strProp" not a bean named strProp.  
> > All the examples I could find using logic:equal in the 
> example app compare a
> > bean
> > property to a literal String value.
> > 
> > Does anyone know if its possible to do a comparision involving two 
> > beans ?
> > 
> > > - Original Message -
> > > From: "Afshartous, Nick" <[EMAIL PROTECTED]>
> > > To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
> > > Sent: Thursday, January 24, 2002 12:39 PM
> > > Subject: bean comparison using tags
> > > 
> > > 
> > > >
> > > > (sorry if this got posted twice).
> > > >
> > > > Hi,
> > > >
> > > > I'm trying to perform an equal test on two String values
> > > > accessed via two beans.  So I'd like to do something like:
> > > >
> > > >> > >value="b2"/>
> > > >Yes, the two are equal
> > > >   
> > > >
> > > > but it seems that only literal String values may be specified by
> > > > the 'value' attribute.  Does anyone have any 
> suggestions on this ?
> > > > Thanks.
> > > > __
> > > >
> > > >  Nick
> > > >
> > > > --
> > > > To unsubscribe, e-mail:
> > > <mailto:[EMAIL PROTECTED]>
> > > > For additional commands, e-mail:
> > > <mailto:[EMAIL PROTECTED]>
> > > 
> > > 
> > > --
> > > To unsubscribe, e-mail:   
> > <mailto:[EMAIL PROTECTED]>
> > For additional commands, e-mail:
> > <mailto:[EMAIL PROTECTED]>
> > 
> > --
> > To unsubscribe, e-mail:   
<mailto:[EMAIL PROTECTED]>
> For additional commands, e-mail:
<mailto:[EMAIL PROTECTED]>
> 


__
Do You Yahoo!?
Great stuff seeking new owners in Yahoo! Auctions! 
http://auctions.yahoo.com

--
To unsubscribe, e-mail:
<mailto:[EMAIL PROTECTED]>
For additional commands, e-mail:
<mailto:[EMAIL PROTECTED]>

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>




RE: bean comparison using tags

2002-01-24 Thread Afshartous, Nick

> From: Fernando Esteban Barril Otero 
 
> Try to use the  to get the property
> of the second bean (b2) first and then use .
> 
> 
> 
> 
>Yes, the two are equal
> 

Thanks but the value attribute is used to specify literal String
values.  In the above example value="strProp" specifies the
String value "strProp" not a bean named strProp.  
All the examples I could find using logic:equal in the example app compare a
bean
property to a literal String value.

Does anyone know if its possible to do a comparision involving two 
beans ?

> - Original Message -
> From: "Afshartous, Nick" <[EMAIL PROTECTED]>
> To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
> Sent: Thursday, January 24, 2002 12:39 PM
> Subject: bean comparison using tags
> 
> 
> >
> > (sorry if this got posted twice).
> >
> > Hi,
> >
> > I'm trying to perform an equal test on two String values
> > accessed via two beans.  So I'd like to do something like:
> >
> >>value="b2"/>
> >Yes, the two are equal
> >   
> >
> > but it seems that only literal String values may be specified by
> > the 'value' attribute.  Does anyone have any suggestions on this ?
> > Thanks.
> > __
> >
> >  Nick
> >
> > --
> > To unsubscribe, e-mail:
> <mailto:[EMAIL PROTECTED]>
> > For additional commands, e-mail:
> <mailto:[EMAIL PROTECTED]>
> 
> 
> --
> To unsubscribe, e-mail:   
<mailto:[EMAIL PROTECTED]>
For additional commands, e-mail:
<mailto:[EMAIL PROTECTED]>

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>




bean comparison using tags

2002-01-24 Thread Afshartous, Nick

 
(sorry if this got posted twice).

Hi,

I'm trying to perform an equal test on two String values
accessed via two beans.  So I'd like to do something like:

  
   Yes, the two are equal
  

but it seems that only literal String values may be specified by
the 'value' attribute.  Does anyone have any suggestions on this ?
Thanks.  
__

 Nick 

--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




Using a tag to compare two beans

2002-01-23 Thread Afshartous, Nick


Hi,

I'm trying to perform an equal test on two String values
accessed via two beans.  So I'd like to do something like:

  
   Yes, the two are equal
  

but it seems that only literal String values may be specified by
the 'value' attribute.  Does anyone have any suggestions on this ?
Thanks.  
__

 Nick 

--
To unsubscribe, e-mail:   
For additional commands, e-mail: