Hello Erik,
I have noticed that I'm loosing session not only when I switch from http to
https but when I switch from ip-address to pc-name.e.g the first request is
with
http://123.33.44.24:8080/myapp and the second is http://pc24:8080/mypapp. I
beleive that the change of the protocol used is consi
Hi Wendy,
No, I'm not using DynaForms. I was just desperate so I started trying
EVERYTHING. That included testing with and without the specific mappings
inside the descriptor. I'd also checked the names and they were fine.
I'll give it a look again, though.
I don't know if this will give you mor
Hello Friends,
I am very new in Struts.
I am seeking for an example application, that has EJB, JSP, servlets.
Actually I want ot know, how a JSP can show some data extracted from EJB.
Sanjay Gupta
-
To unsubscribe, e-mail: [EMA
Perhaps the JSESSIONID cookie is lost when you switch from ip-address
to host-name or vice versa
This happens because cookie is assosiated with the host (and path), so
if you redirect IP request to HOSTNAME path the cookie is not
attached to this request (it is supposed to belong to IP-based "doma
Hi, Joe.
I also need an enhancement of Struts. Up to now I did not discuss this on any list
since the need for enhancement came up just two days ago. What I have up to now is a
patched version of a Struts class, which means I can no longer live with the standard
struts release.
My enhancement d
Hi Wendy,
Solved the problem. As usual: stupid problem, stupid answer...
Turns out the checkboxes were outside the form's scope (the placed
before the 's).
Thanx 4 everything! (shame on me)
F.
-Mensaje original-
De: Wendy Smoak [mailto:[EMAIL PROTECTED]
Enviado el: miércoles, 06 de oct
Hi, Craig.
You hit the bull's eye. No I claim this not only to be a JSP/Servlet problem.
The way you describe will cause the browser to encode all form data with UTF-8.
Unfortunately the servlet container (Tomcat in my case) does not know about this.
To obtain the correct parameter values, someon
Hi, Jain.
Use
<[EMAIL PROTECTED] contentType="text/html;charset=UTF-8"%>
to set a HTTP header that tells the browser how special characters are transferred.
Most probably you then get the correct display.
If that is not sufficient, check the fonts your browser is configured to use.
Hiran
--
Actually this is not a struts question, but if someone could help me I
would be so grateful.
I'm implementing an fleet trucking web based system. When the system has
new information (positions or alarms) of the trucks, the client web page
should be "repainted". The problem is that is the server wh
Tito Eritja wrote:
Would be an
applet a good solution?, is there another way to solve it?
You could stick a hidden Iframe on the page that uses the refresh tag in
the page header.
This page checks for changes and reloads the main page if required.
I'd stay away from applets ;)
Cheers,
James
This
Hi
Use HTML META-REFRESH tag to refresh the page (from client) at a fixed
interval.
Hermod
-Opprinnelig melding-
Fra: Tito Eritja [mailto:[EMAIL PROTECTED]
Sendt: 6. oktober 2004 11:24
Til: struts
Emne: "refreshing" server side infromation
Actually this is not a struts question, but if
Hello Guys ,
Im using DynaActionForms and I cant figure out how to display the
messages I have created on the Action back to the jsp.
Thanks in Advance
Here are my codes
SubmitAction.java
===
ActionMessages errors = new ActionMessages();
ActionMessage error = new
Hi All,
I have a application developed in struts on JDeveloper and standalone
oc4j... Now I want to implement https protocol for few actions.
What are the steps to do this ..?
First, I have to get certificate from verisign then ..??
Any document reference..??
Thanks,
Viral
Google for SSLExt.
On Wed, 6 Oct 2004 15:39:49 +0530, Viral_Thakkar
<[EMAIL PROTECTED]> wrote:
> Hi All,
>
> I have a application developed in struts on JDeveloper and standalone
> oc4j... Now I want to implement https protocol for few actions.
>
> What are the steps to do this ..?
>
> First,
Hi
What can go wrong when this is thrown?
javax.servlet.ServletException: Exception creating bean of class
sg.edu.astar.flamingo.web.proteomics.form.FileForm: {1}
FileForm contains some FormFile variables and I have the correct enctype
in my JSP already.
Tell me if codes are needed before I pos
Hi, Sebastian.
Seems like Struts cannot create an instance of your FileForm class. Something must be
wrong during (class) construction.
Do your log files reveal some more information?
Hiran
-
Hiran Chaudhuri
SAG Systemhaus GmbH
Elsenheimer Straße 11
80867
You mean struts log file? Give me some time. Mean while this is the
output from my server.
18:28:33,772 ERROR [Engine] ApplicationDispatcher[/Flamingo]
Servlet.service() for servlet jsp threw exception
org.apache.jasper.JasperException: Exception creating bean of class
sg.edu.astar.flamingo.web.pr
Hi, Sebastian.
It looks like the call to new FileForm() throws an exception.
Have a look at your Tomcat logfiles. There might be more information about the JSP
compiler failing.
If that is not the case, check that the class exists (class name/package name).
If it is the first instantiation in yo
I traced it to a nullpointerexception. Didn't know why Struts is calling
toString() which throws NullPointerException. Anyway, it uncovers the
bug in my toString.
Thanks Hiran!
Sebastian
2004-10-06 17:47:33,268 ERROR [org.apache.struts.util.RequestUtils]
Error creating form bean of class
sg
Hi, Sebastien.
This might be caused since Struts logs what bean it created and is going to populate.
Turn off the RequestProcessor's log4j category and the call to toString() should be
gone.
Hiran
-
Hiran Chaudhuri
SAG Systemhaus GmbH
Elsenheimer Straße
Please tell me how to configure Tomcat/Struts so that
error messages are sent to a file, not the console?
SERVER
==
I am using tomcat-5.0.27
BACKGROUND
==
I am using for logging error messages.
The output of the code below goes to Eclipse console.
What I want is for the output t
Hi, O.
Check the configuration of the log facility actually in use (commons-logging can use
several).
Most probably this is log4j. Then have a look at the log4j configuration, which can be
done with a log4j.properties file.
Changes in this file and restarting your application should be all you n
Hi,
I have a JSP Page where I have a multiple selection Listbox. When the
user submits the page, there should be some values in this listbox. How
do I make the validations for the same in validator.xml ?
I have done similar thing for dropdown by the following entry in
validator.xml
Personally I would log this as a bug
org.apache.struts.util.RequestUtils.createActionForm(RequestUtils.java:844)
should *not* be allowing nulls as string
Anyone else ??
Martin Gainty
(cell) 617-852-7822
(e) [EMAIL PROTECTED]
(http)www.laconiadatasystems.com
Hi, Sebastien.
This might be caused sinc
Configure the proper appender: http://logging.apache.org/log4j/docs/manual.html
Dennis
"O. Oke" <[EMAIL PROTECTED]>
10/06/2004 08:10 AM
Please respond to
"Struts Users Mailing List" <[EMAIL PROTECTED]>
To
Struts Users Mailing List
<[EMAIL PROTECTED]>
cc
Subject
How to config
Peter Werno wrote:
This is how it works:
- struts-config.xml --
...
more
...
- end -
this is how it does NOT work:
- index-config.xml --
...
Hello Jeff,
thanks for the hint. I had tested multiple variations of it, including
/index/index.do, but to no avail. I have checked in the Action Class that
tries to get it. It does
-
ActionForward myForward = mapping.findForward("indexHome");
if(myForward == null)
System.out.println("Fo
Hi Hiran,
Thanks for your response. I am using simplelog and it
is already working. The only problem is that the
output is going to the console. What I want is for
the output to go into a file. There is nothing in the
configuration information that states how to redirect
output to a file.
Ple
See responses in-line below...djsuarez
-Original Message-
From: Joe Germuska [mailto:[EMAIL PROTECTED]
Sent: Tuesday, October 05, 2004 2:40 PM
To: Struts Users Mailing List
Subject: Re: Enhancement requests
At 2:23 PM -0500 10/5/04, Hubert Rabago wrote:
>http://issues.apache.org/bugzilla
Have you read
http://struts.apache.org/userGuide/configuration.html#module_config-switching?
It explains how to use contextRelative forwards in Module A to forward
to pages in Module B.
If that's not what you need, you could define all of your
application-global forwards in an XML external en
Your log4j configuration probably uses a consoleappender.
Change this to be a fileappender instead, and you are done.
This document describes the configuration of log4j in short:
http://logging.apache.org/log4j/docs/manual.html
To see what appenders are available in log4j, see
http://logging.apac
Create a bugzilla ticket
http://jakarta.apache.org/site/bugs.html
... preferably with a patch in unified diff format:
Please note that Struts has recently moved from CVS to SVN and any patches
should be generated against the latest source in SVN:
http://svn.apache.org/viewcvs.cgi/struts/tru
Either use the or tag
http://struts.apache.org/userGuide/struts-html.html#errors
http://struts.apache.org/userGuide/struts-html.html#messages
Niall
- Original Message -
From: "Richard" <[EMAIL PROTECTED]>
To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
Sent: Wednesday, October 06,
At 1:31 AM -0400 10/6/04, David G. Friedman wrote:
Joe,
Dumb question for you: Is the taglib line in your displaytag using jsp
really
<%@ taglib uri="http://displaytag.sf.net/"; prefix="display" %>
The uri is arbitrary, and just needs to match up with one
element value in the web.xml file. I cho
Hi Jeff,
thanks for the hint. Using the "include file" variant is probably a
work-around for my problem, but it doesn't really allow for what I was
planning.
My idea was to have a global forwards section in each module that would be
global for the application. Each module could that way define, ho
Hi,
Is there a flag I can set so that Struts tells me what it's doing? I'm
having a problem with one of my actions: when I click on it, I get a blank
page and I don't understand why. I'd like to be able to see what decisions
Sruts is taking in order to load my pages, to determine where I made a
Hello All,
I am planning to implement a Page Navigation functionality to navigate
through search results in my project. I read about ValueListHandler pattern
and thought that would be the best approach. But am not sure if Struts has
any inbuilt navigation functionality or if I can adopt any other
Ok, My Code snippet looks like this.
<%=item%>
view
I have a map, & for each key in the map I hav
Thanks for your response.
I am using simplelog, not log4j.
Thank you.
--- [EMAIL PROTECTED] wrote:
> Your log4j configuration probably uses a
> consoleappender.
> Change this to be a fileappender instead, and you
> are done.
>
> This document describes the configuration of log4j
> in short:
>
Hi Laurent,
I use log4j and the following log4j.properties file to achieve this.
It gets the framework logging to one file (ie. struts) and my application logging to
another file
Can change the levels for each as desired as Struts put out a hefty chunk at debug
level... but very useful...
Sorry,
Missed a bit on my cut and paste,
Last line og log4j.properties should have read:
log4j.appender.file2.layout.ConversionPattern=%d{dd-MMM HH:mm:ss} %-5p %t%x [%C{1}.%M]
%m%n
-Original Message-
From: Robin Mannering
Sent: 06 October 2004 15:44
To: 'Struts Users Mailing List'
Su
Folks,
I'm wondering if anyone has thought about developing an Eclipse like
WebApp framework. The idea is to provide an application shell and a
contribution (think plugin) mechanism. Contributions could include,
tabs, navigation, help, etc..
Why bother you say? I've found that in a corporate en
Hi,
What is the best approach for the above? I don't use container security -
when a user logs in I store a User object in the session and each page
should then check that the User is not null before proceding.
You seem to get a real mix of opinions reading about the subject - the
Servlet 2.3 s
Boy, Howdie, Hiran! It would be great to have RequestUtils be
extensible. That sounds like the start of something really good to me.
Michael McGrady
[EMAIL PROTECTED] wrote:
Hi, Craig.
You hit the bull's eye. No I claim this not only to be a JSP/Servlet problem.
The way you describe will cause
If the probelm is appearing in a development system then I find the easiest
way to do this kind of thing is to download the struts source & use my
debugger with the struts code.
Paul
> -Original Message-
> From: Laurent Duperval [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, October 06, 200
Apache Struts provides just what you want ;) That's about as generic as you
can get.
What type of 'specific' functionality do you want bolted on? Have you
looked at AppFuse?
--
James Mitchell
Software Engineer / Open Source Evangelist
EdgeTech, Inc.
678.910.8017
AIM: jmitchtx
- Original
Hi Rob,
Rob Evans wrote:
[...]
Anyone know a WebApp framework that does what I've described? Anyone
else seen this problem or am I alone in this concern?
You may want to check out Matt Raible's Appfuse. It's pretty cool, but
when I tried it, i quit too quick cause it seemed too tied up with
Tomc
Hubert Rabago has done some work on this already..
http://issues.apache.org/bugzilla/show_bug.cgi?id=31299
Niall
- Original Message -
From: "Michael McGrady" <[EMAIL PROTECTED]>
To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
Sent: Wednesday, October 06, 2004 4:03 PM
Subject: Re: In
James,
I got the impression from the original post that he was asking about some kind of IDE
that allows you to specify web application behaviour and then have a WAR or EAR file
magically created with no thought necessary to how it was generated. This is truely a
cool idea, but I can think of n
No, I think he wanted an IDE that would read his mind - just kidding!!
Rob was wanting a web application framework that allows you to add
functionality/decorations via extension points described by a 'drag 'n drop'
plugin. I know of no such animal (right now), but I think we may be headed
that wa
I have a proposal at the bottom of this email.
I know exactly what you want. Struts is a wonderful potential base for
this. I have been crying for this in Struts, but have only gotten
resistence from the more vocal committers and, I think, a failure to see
what the problem is.
Right now Stru
On Wed, 6 Oct 2004 11:07:26 -0400, James Mitchell <[EMAIL PROTECTED]> wrote:
> Apache Struts provides just what you want ;) That's about as generic as you
> can get.
>
> What type of 'specific' functionality do you want bolted on? Have you
> looked at AppFuse?
The contribution mechanism of stru
Are either Tapestry or Zope the kind of things you're talking about
here? They are both component based web app frameworks. If those are not
what you're talking about, whats the difference?
dave
On Wed, 2004-10-06 at 11:26, Michael McGrady wrote:
> I have a proposal at the bottom of this email.
>
Rob Evans wrote:
On Wed, 6 Oct 2004 11:07:26 -0400, James Mitchell <[EMAIL PROTECTED]> wrote:
Apache Struts provides just what you want ;) That's about as generic as you
can get.
What type of 'specific' functionality do you want bolted on? Have you
looked at AppFuse?
The contribution mech
Kinda. What I'm after is a way to contribute functionality (screens,
menus, tabs) to a shell of a WebApp in a standard way. For example,
let's say I have a web shell that provides all the basic facilities of
an online store. Now, I want a way for development teams to contribute
to the application.
Hi, L.
Did you upgrade your struts.jar recently?
The new struts action servlet calls a different method on actions, and it's default
implementation is to show an empty page.
Stumbled over this one also.
Hiran
-
Hiran Chaudhuri
SAG Systemhaus GmbH
Elsenhei
Hello,
The user wishes to edit a message that was previously created. In my edit.jsp I wish
to display a dropdown
with the option that was previously selected as "selected". Currently I have:
I want the value of expiryDay from the database to be selected (by default) on the
dr
I'm struggling to wrap my head around this and the closest comparison
that I can make is something like tiles/hibernate.
Tiles makes it easy to plug in additional functionality, and a good
object model makes it so that anything implementing hibernate can just
plug right in, right?
B.
> -Orig
On Wed, 06 Oct 2004 10:18:22 -0400, Laurent Duperval
<[EMAIL PROTECTED]> wrote:
> Hi,
>
> Is there a flag I can set so that Struts tells me what it's doing? I'm
> having a problem with one of my actions: when I click on it, I get a blank
> page and I don't understand why. I'd like to be able to se
Comments inline
On Wed, 06 Oct 2004 08:26:20 -0700, Michael McGrady
<[EMAIL PROTECTED]> wrote:
> I have a proposal at the bottom of this email.
>
> I know exactly what you want. Struts is a wonderful potential base for
> this. I have been crying for this in Struts, but have only gotten
> resis
HI,
While tracing my application, this is the debug output I get:
[DEBUG] RequestProcessor - Processing a 'GET' for path '/mainHardwareProfile'
[DEBUG] ActionConfigMatcher - Attempting to match '/mainHardwareProfile' to
a wildcard pattern
[DEBUG] BeanUtils - Cloning bean: org.apache.struts.action.
From: "Anna Kerekes" <[EMAIL PROTECTED]>
> I want the value of expiryDay from the database to be selected (by
default) on the dropdown.
> The user can select another option from the dropdown if they want to
change it...
> how do i do it in struts?
In the Action code, set the 'expiryDay' property o
>-Original Message-
>From: Rob Evans [mailto:[EMAIL PROTECTED]
>Sent: Wednesday, October 06, 2004 10:45 AM
>To: Struts Users Mailing List
>Subject: Re: An Eclipse Like WebApp Framework? -- a proposal
>When it comes to architecture and design, feelings suck. ;-)
You wouldn't know that
Hi,
I'm trying to use the struts validator, i have created a simple form with
few inputs, i'd like to oblige the user to enter values into inputs.
I therefore :
1-added the validator pluing to strus-config.xml
2-added the action mapping with the path set to test, the type set to the
path of the a
[EMAIL PROTECTED] wrote:
Hi, L.
Did you upgrade your struts.jar recently?
Yes.
The new struts action servlet calls a different method on actions, and it's default
implementation is to show an empty page.
Stumbled over this one also.
Sure, but I've got mappings that should load the correct page. I
> This would build a framework without ego in the core.
Michael,
What does this mean?
David
Michael McGrady
Hi, Niall.
Good hint. Somehow the bug reads as work in progress. Just delegating the work to
another class won't solve my problem. I need a way to hook in my own implementation.
But I might add this question to the bug directly
Hiran
-
Hiran Chaudhur
Rob Evans wrote:
Could be. I for one am still trying to nail down the issues. Why is
having a single WebApp that utilizes Inversion of Control and plugins
better than just having several webapps that use the same UI libraries
and abide by the same standards? From experience, I know that this has
no
Just to make sure the bases are covered, have you investigated JSF and found it
lacking?
Quoting Rob Evans <[EMAIL PROTECTED]>:
> Comments inline
>
>
> On Wed, 06 Oct 2004 08:26:20 -0700, Michael McGrady
> <[EMAIL PROTECTED]> wrote:
> > I have a proposal at the bottom of this email.
> >
> > I
Laurent Duperval wrote:
The "foo" parameter should actually read "add". I changed it to see if
my class was being called and it isn't. Otherwise, I would get a
NoSuchMethodExcpetion. My class is defined as:
Grmblb. I found it. There was an execute() method in the class and if
that method ex
Why do you have a testAction?
When you configure validation.xml and validator-rules.xml (see Apache/Struts/Validator
documentation) you don't need to write an Action Class.
Also, why do you have failure/success forwards? Upon a failure, the validation will
automatically forward your page to
Hello everyone,
I am facing this problem of session. I have my action
form in session(a wizard like thing). Now if the user
starts filling in values and clicks on the NEXT
button, to go on to the next screen and then instead
of completing the process of application, clicks on
some other link.
Agai
[EMAIL PROTECTED] wrote:
This would build a framework without ego in the core.
Michael,
What does this mean?
David
Great implementations are eclipsed. Not only being open to or allowing
for this but specifically creating an environment in which it is easy to
do is the idea.
Without specifi
On Wed, 06 Oct 2004 08:59:26 -0700, Michael McGrady
<[EMAIL PROTECTED]> wrote:
> Rob Evans wrote:
>
> >Could be. I for one am still trying to nail down the issues. Why is
> >having a single WebApp that utilizes Inversion of Control and plugins
> >better than just having several webapps that use th
On Wed, 6 Oct 2004 12:01:15 -0400, Kris Schneider <[EMAIL PROTECTED]> wrote:
> Just to make sure the bases are covered, have you investigated JSF and found it
> lacking?
I've not. Do you know much about it? I was under the impression that
its purpose in life was to provided support for UI widget
I have a specific action which destroys the existsing form bean and then
recreates it based on struts-config.
See: http://marc.theaimsgroup.com/?l=struts-user&m=109351495917793&w=2
Paul
> -Original Message-
> From: struts lover [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, October 06, 20
Michael -
I would have to say...get working. It is pretty obvious from this and
the dev list that you are very unhappy with struts and its developers.
While struts does some of what you want, it is very lacking for you. I
think it is also obvious that your view of what struts should be does
not
Thanks Paul. :)
--- Paul McCulloch <[EMAIL PROTECTED]>
wrote:
> I have a specific action which destroys the
> existsing form bean and then
> recreates it based on struts-config.
>
> See:
>
http://marc.theaimsgroup.com/?l=struts-user&m=109351495917793&w=2
>
> Paul
>
> > -Original Message--
I need to access only the first object in this Array. Any ideas?
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Tuesday, October 05, 2004 5:19 PM
To: [EMAIL PROTECTED]
Subject: Iterate tag issue with an array
I have a DTO that may contain a Guarantor[].
Here
If you have your action in HttpSession, why don`t you
just call reset whenever a user clicks on the button
supposed to start this wizard?
--- struts lover <[EMAIL PROTECTED]> escreveu:
> Hello everyone,
> I am facing this problem of session. I have my
> action
> form in session(a wizard like t
I certainly don't know enough about it to point you at its various pieces and
say, "here's just what you need" (partly because I'm not crystal clear on what
your requirements are). It was mainly just a Pavlovian reaction to discussions
about web component frameworks and designing with IDEs in mind,
From: <[EMAIL PROTECTED]>
> I need to access only the first object in this Array. Any ideas?
> I have a DTO that may contain a Guarantor[].
> Here is my code that keeps giving me an "null
java.lang.ArrayIndexOutOfBoundsException"
> when I do not have a Guarantor[0]
>
You're checking to see if the
> PROPOSAL/SUGGESTION
I was a big fan of the component software model
advocated by a technology called OpenDoc developed by
Apple, IBM, and Novell back in the mid 90's...
http://en.wikipedia.org/wiki/OpenDoc
Ironically, Steve Jobs killed off this technology
because the thought was that Java
I came across this problem of displaying the string
elements in an Arraylist into Textfields.
How can I display them into the textfileds & capture
them back into the ArrayList. (Using Struts 1.0)
Thanks.
_
I have a Struts app that needs to communicate with a .Net web service via
SOAP. What is "best practice" for this? Can someone point me to some
relevant info?
Thanks,
Brian Barnett
I am willing to use the jstl if needed. What is that syntax?
-Original Message-
From: Wendy Smoak [mailto:[EMAIL PROTECTED]
Sent: Wednesday, October 06, 2004 9:47 AM
To: Struts Users Mailing List
Subject: Re: Iterate tag issue with an array
From: <[EMAIL PROTECTED]>
> I need to access
Can you point me to a how-to doc so I can get a feel for what JSR-168
has to offer?
On Wed, 6 Oct 2004 10:04:37 -0700 (PDT), Scott Anderson
<[EMAIL PROTECTED]> wrote:
>
> > PROPOSAL/SUGGESTION
>
> I was a big fan of the component software model
> advocated by a technology called OpenDoc develop
Well, I am not sure exactly what 'Filters should not rely on session
state' means; but I would use a filter -- IMO its the best way to apply
across-the-board behavior w/o using container-managed security.
-Bill Siggelkow
andy wix wrote:
Hi,
What is the best approach for the above? I don't use c
Thanks for your ideas, Matt. Some thoughts on this, relating the
personal issues as much to Struts as possible, follow:
The subtitle of "eXtreme Programming eXplained" is "EMBRACE CHANGE" by
Kent Beck. This is all I am saying. Struts as it looks to v3.0 should
embrace change as potential, wh
Sanjay Gupta wrote:
Hello Friends,
I am very new in Struts.
I am seeking for an example application, that has EJB, JSP, servlets.
Actually I want ot know, how a JSP can show some data extracted from EJB.
Sanjay Gupta
It shows data from an EJB just like it shows data from any other source
... take
Personally, I favor a filter approach, specifically SecurityFilter -
http://securityfilter.sourceforge.net/
It's configuration format follows Container-Managed Security, but is
much more flexible.
Don
On Wed, 06 Oct 2004 13:19:59 -0400, Bill Siggelkow
<[EMAIL PROTECTED]> wrote:
> Well, I am not
Can you help me to find free javascript htmlEditor.
--
regards,
Sergey mailto:[EMAIL PROTECTED]
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Barnett, Brian W. wrote:
I have a Struts app that needs to communicate with a .Net web service via
SOAP. What is "best practice" for this? Can someone point me to some
relevant info?
Thanks,
Brian Barnett
One way is to use Apache Axis to generate a client based on the services
WSDL.
-Bill Siggel
If you want to ensure that at least one item is selected from the
mulit-select list you can use "required" just like with the drop-down.
If you need something more (like at least 2 items selected), to use
Validator you will need to create a custom rule.
-Bill Siggelkow
Priya Jotwani wrote:
Hi,
From: <[EMAIL PROTECTED]>
> I am willing to use the jstl if needed. What is that syntax?
Google should turn up a bunch of examples to get you started if you really
want to go that route.
I think there's a simpler solution, and would first try to get that *one*
item out of the array somehow, so y
If you are using a Gecko-based browser check out the Mozilla Editor.
http://www.mozilla.org/editor/
On Wed, 6 Oct 2004 20:29:27 +0300, Sergey Livanov
<[EMAIL PROTECTED]> wrote:
>
> Can you help me to find free javascript htmlEditor.
>
> --
> regards,
> Sergey mailto:[
Rob Evans wrote:
On Wed, 06 Oct 2004 08:59:26 -0700, Michael McGrady
<[EMAIL PROTECTED]> wrote:
Rob Evans wrote:
Could be. I for o
It sounds like we are on the same page regarding the nature of the
solution i.e. we're after something that looks like components. I'm
sure Craig and Halloway w
I have tried out the FCKeditor (Tag version) and looks good to me, the other
I haven't
http://www.fckeditor.net/
http://www.interactivetools.com/products/htmlarea/
Niall
- Original Message -
From: "Sergey Livanov" <[EMAIL PROTECTED]>
To: "Struts Mailing List" <[EMAIL PROTECTED]>
Sent:
http://struts.apache.org/roadmap.html
http://wiki.apache.org/struts/StrutsJericho
Seem like pretty significant potential changes to me. I think the
problem is that the way struts is currently proposed to change is not
the way that you (and some others) want it to. This is why you must stop
talki
I second that emotion -- SecurityFilter can be described in one word ...
SWEET !
Don Brown wrote:
Personally, I favor a filter approach, specifically SecurityFilter -
http://securityfilter.sourceforge.net/
It's configuration format follows Container-Managed Security, but is
much more flexible.
D
1 - 100 of 144 matches
Mail list logo