On Tuesday 01 June 2004 23:07, snpe wrote:
> You try http://horstmann.com/corejsf/
One of my favorite Java authors. Just to drop
a note Sun has released JSF RI 1.1 just recently,
so it might be time for an update again :-)
http://java.sun.com/j2ee/javaserverfaces/download.html
-- Chris
> regard
On Friday 04 June 2004 18:42, vpsangeetha wrote:
You can't directly access Tiles definitions from
your JSPs, but have to wrap them into Struts
actions (in struts-config.xml) like this:
Then call login.do, and it will work.
HTH,
-- Chris.
> Hi,
>
> I have a very basic question wrt tiles. I ha
On Sunday 18 July 2004 19:08, Craig McClanahan wrote:
+1. But one thing I always wondered about, and as you
brought the term into play here:
> I suspect Bryan might be confusing particular tools (i.e. Sun Java
> Studio Creator, deliberately aimed at corporate developers) with the
> underlying te
On Tuesday 03 August 2004 17:34, John McGrath wrote:
Something possibly even cooler (as long as the client is
IE 5.5+; otherwise, it won't show up) I recently stumbled
over is
http://www.interactivetools.com/products/htmlarea/
which turns a into a configurable WYSIWYG
HTML editor. Easy to use a
On Wednesday 07 April 2004 22:43, Tin Pham wrote:
+1
Tiles basically is a highly configurable extension to the
RequestDispatcher.include() capabilities provided by the
Servlet API. Therefore, the entire page has to be rebuilt
upon each request, which is done in a flash, but sometimes
not without
On Friday 09 April 2004 21:33, Erez Efrati wrote:
Already tried s/th like
in your index.jsp? :-)
HTH,
-- Chris.
> Hi,
>
> Like all Struts application I have the index.jsp redirecting the user
> client to my "home.do" struts action.
>
> Is it possible to get rid of the "home.do" in the address
On Friday 09 April 2004 16:19, dream_and_yang wrote:
No, you can't include such files directly, as the container
forbids direct access to anything underneath WEB-INF.
But of course, you can always wrap test.jsp in a
ForwardAction and set your tag to load
that instead:
HTH,
-- Chris
> 1.in my j
On Friday 09 April 2004 21:19, Paul Barry wrote:
Generally, it's a good idea to have only String and boolean
properties in an ActionForm and convert the information
gathered for further processing lateron. For complex
validations (like Dates), I usually check in validate() if
the value entered can
On Friday 09 April 2004 21:56, Wendy Smoak wrote:
> > From: Christian Bollmeyer [mailto:[EMAIL PROTECTED]
> > Already tried s/th like
> > in your index.jsp? :-)
>
> But then the URL will still have 'index.jsp' in it, at least if
> Tomcat is involved. IIRC,
On Friday 09 April 2004 22:42, Craig McClanahan wrote:
> Wendy Smoak wrote:
> >>From: Christian Bollmeyer [mailto:[EMAIL PROTECTED]
> >>Already tried s/th like
> >>in your index.jsp? :-)
> >
> >But then the URL will still have 'index.jsp' in i
On Friday 09 April 2004 21:55, Ralf Schneider wrote:
Hi,
I've experimented with the same setup some time
ago and found this helpful:
http://cymulacrum.net/writings/tomcat5/c831.html
HTH,
-- Chris.
NB. Luckily, there are binary versions of mod_jk2
available now, so you can skip the first part
On Saturday 10 April 2004 18:36, Marc Tinnemeyer wrote:
Hi,
didn't check if your overall configuration is correct, but
the first thing I'd suggest is moving the
part to a normal ForwardAction like this
and refer to that in your index.jsp:
This should work. I never researched why Struts gl
On Saturday 10 April 2004 19:24, J.R. Heisey wrote:
Hi,
1. Considering the CLASSPATH issue: 'first come, first
serve'. I would suspect you may have multiple, different
versions of commons.logging in your CLASSPATH.
How that's set up exactly in your environment(s)
(Tomcat uses a separate one), I c
On Saturday 10 April 2004 19:36, Michael McGrady wrote:
Well, after downloading the binaries, for me it was nearly
kind of out-of the box, after having worried a lot of time
with the tomcat-connectors package shipped with SuSE 9.0
(which obviously doesn't work with TC5). The only thing
I finally h
On Saturday 10 April 2004 21:48, Mike Duffy wrote:
Hi,
> I've read documentation for The Tomcat 5 Servlet/JSP Container:
> Clustering/Session Replication HOW-TO
> http://jakarta.apache.org/tomcat/tomcat-5.0-doc/cluster-howto.html
>
> I understand clustering for individual user sessions. Are ther
Finally!
http://otn.oracle.com/software/products/jdev/index.html (249MB)
-- Chris
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
On Wednesday 14 April 2004 10:24, Christian Bollmeyer wrote:
> Finally!
>
> http://otn.oracle.com/software/products/jdev/index.html (249MB)
>
> -- Chris
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
&
On Thursday 15 April 2004 11:30, Mu Mike wrote:
Simple 'rule of thumb': whenever possible, use
a forward. Use redirects only if:
1. You've reached the end of a processing chain
and want to leave the user at a determined
application state, a point from which he may
start another interaction with t
On Thursday 15 April 2004 15:36, Diego wrote:
I admit having but limited experience with Validator,
and DynaActionForm, and the reason for that is
not that it's bad in itself, but I found that complex,
in particular application specific 'dependant' validation
can be performed much easier by using
On Friday 16 April 2004 12:08, Mu Mike wrote:
Hi,
probably I don't fully grok what's your exact
problem. What I get is that you have an
plus a jsp page that's intended to be displayed
there. Forgetting about the for the
moment, let's have a closer look at my.jsp.
I see a that calls something,
On Saturday 17 April 2004 14:13, Erik Price wrote:
> On Apr 14, 2004, at 4:24 AM, Christian Bollmeyer wrote:
> > Finally!
> >
> > http://otn.oracle.com/software/products/jdev/index.html (249MB)
> >
> > -- Chris
>
> No MacOSX version?
>
> >:
On Friday 16 April 2004 21:58, Paulo Alvim wrote:
> Hi!
>
> Is it possible to test "isUserInRole" using JSTL 1.0 (like the struts
> "logic present role" tag)?
>
> Thanks in Advance...
>
> Alvim.
Hi,
AFAIK that's not possible in plain JSTL, so your options
are either to use scriptlets or stick to
On Saturday 17 April 2004 05:13, as as wrote:
> Hi
>
> Has anyone implemented two html:form in a same jsp..
>
> I wish to do this to implement two tables.each table displaying
> values in a row, of a bean...
>
> so there are two beans...
>
> for some reason, it gives me error saying it cnat find ge
On Sunday 18 April 2004 16:30, as as wrote:
Hi,
>Thanks for the reply. I am submitting both the forsm...
Probably, but where?
>so does only one submitted form end up in the request?
Yes.
>Here is my code briefly:
> type="com.PrincipalForm" >
>
>
> ID #:
>
>
>
On Wednesday 06 July 2005 19:48, Rick Reumann wrote:
Hi,
> Daniel Perry wrote the following on 7/6/2005 12:49 PM:
> > Hah, it's the business use of web/email they fire you for. Go read
> > your terms of employment, and the reference to "IT acceptible use
> > policy" that you inadvertantly agreed
Hi,
my suggestion would be to have a closer look at the
Spring framework. IoC / dependency injection is
really cool once you get a grasp of it. Instead of
having the service look up a DAO instance, you
simply inject the fitting implementation class into
the service via Spring. The service itself
On Thursday 01 September 2005 19:26, Larry Meadors wrote:
> iBATIS is 100% thread-safe.
>
> Larry
>
>
> PS: can you point me to a good example of a Spring-based DAO
> implementation?
Hm...IMHO one good example would be the JPetstore sample
app that comes with the Spring distribution, for instance.
?? What's wrong with Tiles? It's a part of Struts since
then and still under active development.
http://svn.apache.org/viewcvs.cgi/struts/tiles/
-- Ch.
- Original Message -
From: "???" <[EMAIL PROTECTED]>
To: "Struts Users Mailing List"
Sent: Friday, September 16, 2005 4:38 PM
Subjec
On Friday 18 February 2005 19:00, Erik Weber wrote:
> Learn to use (Servlet) path mapping ("/something/*") instead of
> extension mapping ("*.something").
Hm. Extension mapping is typically safe, while path-prefix
mapping may be *not*. The details are laid out in
Bergsten's 'Java Server Pages' 2nd
On Sunday 20 February 2005 16:52, Erik Weber wrote:
> Could you elaborate please? Is this a Servlet model security problem,
> one specific to Struts, or one that is only exposed by neglect in
> some other area (which is what I suspect)? This is news to me. I've
> used path mapping all my Java life.
On Monday 28 February 2005 18:47, Shey Rab Pawo wrote:
> I don't know what a bd is but just make your action forward whatever
> you want to forward to.
Now, this may not be too helpful, regardless of whether 'BD'
means Business Delegate or is a typo for 'DB'. In fact, I
would prefer the first alte
On Tuesday 01 March 2005 22:07, Joe Hertz wrote:
> Curious as to which concept Struts/Hibernate implementers like more
> for implementation:
>
> #1- Ted Husted's example of Struts and Hibernate. Stick the Hibernate
> Session object into the httpServletRequest. Every action has a fresh
> Hibernate S
On Tuesday 07 December 2004 17:15, Luiz Esmiralha wrote:
> On Mon, 06 Dec 2004 16:55:43 -0500, Frank W. Zammetti
Hi,
> When you are starting out you really can't make the decision all by
> yourself, can you? The only reason you presented for using frames is
> increasing performance. If your appl
On Friday 04 February 2005 21:42, Leon Rosenberg wrote:
Well, actually my IDE (Oracle JDev 10g) supports multiple
kinds of projects within one WorkSpace, the web tier being
just one of them. Taglibs may be another issue, business and
backend tiers, too. All those are strictly seperate things. But
On Friday 04 February 2005 22:53, Soaring Eagle wrote:
Check the syntax of your struts-config.xml. The one you
posted is heavily mixed up. In fact it's not even well-formed
XML, with odd nestings, closing tags without a start tag,
illegal attributes and the like. I'd recommend to drop the
current
On Saturday 05 February 2005 08:07, Sab wrote:
> 1>How to create a jsp page in struts with it's mappings in config, if
> it has 1 button and no fields.
> When user clicks on button it will go to another webpage or action
> defined.
Use a ForwardAction to simply forward to your button page.
There,
Hi,
well, the truth may be found somewhere in-between.
First of all, each java class has a version stamp,
older versions have lower numbers. The JVM is
backward compatible, so older classes also run
in a newer JVM. Version ranges are as follows:
Java 1.1 platform: 45.3-45.65535
Java 1.2 platform
This is kind of trivial and not related to Tiles at all.
Fact is, your Flash thing or "even" the image, if you like,
are not found because their URLs are incorrect. Solution
is to specify context-relative URLs like this (JSP 2.0):
and the like. For older JSP versions, use the or
tags.
HTH,
-
Paul Benedict schrieb:
Panak, how are the menu items going to communicate to your
application which item was selected? Obviously, by incoking
an Action; if the menu items can invoke the Action, so can a user.
There is no such thing as security in this case.
Just a thought, but probably the Act
Hi,
just wanted to drop some note that finally
Oracle put the EA version of the upcoming
JDeveloper 10g release on OTN. Only had
little time for evaluation so far, but as far
as I can tell by now, the thing really rocks.
http://www.oracle.com/technology/software/products/jdev/index.html
-- Chri
Hi,
I think what you mean is a feature named 'Local History'
that has been around in Eclipse for quite some time.
The new release has a much improved built-in CVS
client (10.1.2 still used the CVS binaries which is
optional now) and supports other SCMs (ClearCase,
Perforce, Dimensions at the time
[EMAIL PROTECTED] schrieb:
+1. The first thing I always preach new developers
on my team is that they should think the entire web
tier away and replace it (mentally) with a Swing or
whatever client, without changing anything in the
subsequent layers, and the application still has to
work as usual
Hi,
you may want to check out these first:
http://support.microsoft.com/kb/234067/EN-US/
http://support.microsoft.com/kb/222064/EN-US/
Then, IE understands extended HTTP/1.1 Cache-Control headers
that the directive doesn't issue. For testing, add
the following line to the top of your JSP:
<%
Zsolt schrieb:
Hi,
Hi,
I need a good tab control for JSP. I have tried struts-layout and
http://209.61.157.8:8080/taglibs/?orgDitchnetTabPaneId=overview.
This component is quite good, but requires JSP 2.0 (SimpleTag) and
has issues with Tiles (switch off JavaScript and see for yourself).
Fu
Ah, another important issue I forgot: the tab titles are 'fixed'
and therefore not i18n-capable, neither via resource bundles
nor .
-- Ch.
Laurie Harper schrieb:
Christian Bollmeyer wrote:
This component is quite good, but requires JSP 2.0 (SimpleTag) and
has issues with Tiles (
Laurie Harper wrote:
Christian Bollmeyer wrote:
Hi,
This component is quite good, but requires JSP 2.0 (SimpleTag) and
has issues with Tiles (switch off JavaScript and see for yourself).
Damn, I was thinking this looked pretty promising 'til I read that...
Can you expand at all? I
.1.3 EA restriction with nested tags
or generally illegal, I forgot.
-- Chris.
That one, I think, can be dispelled: tab titles are set with the
tabTitle attribute, so you can just pass in a value retrieved from your
message resources. Admittedly it'd be nice if it was 'Struts aware'
In fact, this should not occur, for a 2.3 spec-compliant server
matches the taglib uri against web.xml and the tld file(s) inside
the jar's META-INF directory first and should therefore resolve
it locally before looking up the web. The latter would fail any-
way in most cases. As an example, just
Hi,
don't have any recommendations specifically for CSS attacks at hand,
but you may want to hava a look at WebGoat and WebScarab avai-
lable from here:
http://www.owasp.org/software/webgoat.html
WebGoat teaches common Java web security pitfalls and has been
quite successfuly used here for inte
Hi,
you may want to take a look at this one:
http://grinder.sourceforge.net/g3/features.html
If you want code-based auditing/profiling/code metrics
capabilities, there are a lot of commercial tools on the
market, most of them bearing a hefty price tag. One
exception is Oracle's JDeveloper which
Hi,
I only have limited experience with MDA, and we don't use AndroMDA
at work. But as I understand from their site, there's an existing
cartridge for Struts already available:
http://www.andromda.org/andromda-bpm4struts-cartridge/index.html
I know that in Germany there are projects where the e
Hi,
your thoughts are quite interesting, but unfortunately I don't know
about an official MOF and kind of doubt from my own experiences Struts
development can succesfully be formalized that way. For instance, many
people still think quite differently about the 'M' part; there is no
'official' r
Or eXtremeTable (www.extremecomponents.org), which is
what we use in our current project.
-- Ch.
Martin Gainty schrieb:
This is Fantastic
Thanks Dennis!
Martin-
617-852-7822
- Original Message - From: <[EMAIL PROTECTED]>
To: "Struts Users Mailing List"
Sent: Thursday, November 03, 2
Michael Jouravlev schrieb:
On 11/3/05, Christian Bollmeyer <[EMAIL PROTECTED]> wrote:
Or eXtremeTable (www.extremecomponents.org), which is
what we use in our current project.
Home page is not shown if Javascript is turned off. Not even a message.
Yep. Wasn't so earlier, but a
Murray Collingwood schrieb:
If you know of any sites providing formatted text inside a textarea I would be really
interested (as would most readers) please post the link.
It's not possible in plain HTML, but in JavaScript (to some
degree). There are a lot of such scripts on the web, many of
Just to add that Sun is offering both Java Studio Enterprise 8
and Java Studio Creator for free now,
http://developers.sun.com/prodtech/javatools/free/
-- Ch.
JDeveloper 10.1.3 EA (which is also free) has excellent
JSF support, too.
Ted Husted schrieb:
On 11/9/05, Ashish Kulkarni <[EMAIL PROT
The Oracle database has integrated web functionality
(implementation is version specific; some versions have
the 'pigs on the wing' OSE, others XDB) which runs on
port 8080 which is also the Tomcat default. IIRC it's
rather difficult to make Oracle change the port (IIRC
it's stored somewhere in th
Craig McClanahan schrieb:
On 1/15/06, Deepa Khetan <[EMAIL PROTECTED]> wrote:
Hi!
My application requires, "per-session cookie" to be enabled on client
browser. How can i determine in my java code if it is enabled or not!
Deepa
There is only one test that is useful for this ... set a cookie on
58 matches
Mail list logo