You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@struts.apache.org by kh...@leopard.com on 2003/03/05 19:10:52 UTC

HELP modules in 1.1

Hello,

I'm trying to use sub modules with struts 1.1 release candidate 1.

After applying code according to O'Reilly documentation at 
http://www.onjava.com/pub/a/onjava/pub/a/2002/11/06/struts1.html?page=2, 
into my application, I'm still getting "Cannot retrieve mapping for action /search/advancedSearch' " error.
It seems that it cannot read the sub modules that I specified.

Does anybody have any idea how to make this work ?
Please help!!
Thank you!

Here is my code and how I setup my directory...

/WEB-INF/struts-config.xml
/WEB-INF/modules/struts-config-search.xml

==============================
web.xml
==============================
    <init-param>
      <param-name>config</param-name>
      <param-value>/WEB-INF/struts-config.xml</param-value>
    </init-param>
    <init-param>
      <param-name>config/search</param-name>
      <param-value>/WEB-INF/modules/struts-config-search.xml</param-value>
    </init-param>


==============================
struts-config.xml
==============================
[ just bunch of global forward ]


==============================
struts-config-search.xml
==============================
<struts-config>

    <form-beans>
        <form-bean name="advanced-search" 
type="org.myclass.AdvancedSearchForm"/>
    </form-beans>

    <action-mappings>
        <action path="/advancedSearch"
                type="org.myclass.AdvancedSearchAction"
                name="advanced-search"
                input="/search/advanced.jsp"
                scope="request">
            <forward contextRelative="true" name="success" 
path="/app/home/search/search_result.jsp"/>
            <forward name="failure" path="/app/home/search/advanced.jsp"/>
        </action>
    </action-mappings>

    <plug-in className="org.apache.struts.tiles.TilesPlugin">
      <set-property property="definitions-config" 
value="/WEB-INF/tiles-defs/default_template_defs.xml"/>
      <set-property property="definitions-debug" value="2"/>
      <set-property property="definitions-parser-details" value="2"/>
      <set-property property="definitions-parser-validate" value="true"/>
    </plug-in>

</struts-config>

==============================
advanced.jsp
==============================
<html:form action="/search/advancedSearch.do">

[bunch of form properties]

</html:form>

Re: [OT] IDE / ERD modeling (Was: Re: struts IDE)

Posted by Don Brown <mr...@twdata.org>.
To add to that, I worked on porting a Struts builder application to a
jEdit plugin a while back.  The application had some issues I wasn't
comfortable with (unfortunately I don't remember what they were :)), so
I never quite finished it.  However, for the adventurous, the plugin is
here:
http://www.twdata.org/rivernorth/

Don

On Thu, 6 Mar 2003, Rick Reumann wrote:

> On 06 Mar 2003 11:44:06 -0500
> Becky Norum <bn...@coe.neu.edu> wrote:
>
> > I've stayed quiet on this since I've used IDEs rarely.
>
> jEdit http://www.jedit.org
>
> It will do all you need and you choose the plugins you want. Want the
> XML validation - just download the XMl plugin, etc. It's the most
> customizable editor/IDE out there (at least that I've found).
>
>
>
> --
> Rick Reumann
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: struts-user-help@jakarta.apache.org
>
>


---------------------------------------------------------------------
To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: struts-user-help@jakarta.apache.org


Re: [OT] IDE / ERD modeling (Was: Re: struts IDE)

Posted by Rick Reumann <ma...@reumann.net>.
On 06 Mar 2003 11:44:06 -0500
Becky Norum <bn...@coe.neu.edu> wrote:

> I've stayed quiet on this since I've used IDEs rarely. 

jEdit http://www.jedit.org 

It will do all you need and you choose the plugins you want. Want the
XML validation - just download the XMl plugin, etc. It's the most
customizable editor/IDE out there (at least that I've found).



-- 
Rick Reumann

---------------------------------------------------------------------
To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: struts-user-help@jakarta.apache.org


Re: [OT] IDE / ERD modeling (Was: Re: struts IDE)

Posted by Chetan Sahasrabudhe <ch...@wisorindia.soft.net>.
Simon:

    Check the mails sent yday on Struts IDE and integration of struts
console with JDeveloper, it does have validation logic. donno how deep does
it go.

Chetan
----- Original Message -----
From: "Simon Kelly" <ke...@ipe.fzk.de>
To: "Struts Users Mailing List" <st...@jakarta.apache.org>
Sent: Friday, March 07, 2003 12:38 PM
Subject: Re: [OT] IDE / ERD modeling (Was: Re: struts IDE)


> I was insalling Red Hat 8.0 last night, and am damn sure I saw a modling
> package being installed.  I'll have a look through it tonight and mail if
I
> find anything.
>
> Cheers
>
> Simon
>
>
> ----- Original Message -----
> From: "Becky Norum" <bn...@coe.neu.edu>
> To: "Struts Users Mailing List" <st...@jakarta.apache.org>
> Sent: Thursday, March 06, 2003 5:44 PM
> Subject: [OT] IDE / ERD modeling (Was: Re: struts IDE)
>
>
> > I've stayed quiet on this since I've used IDEs rarely.  I stick with
> > xemacs and vi when necessary.  I've been curious how much an IDE like
> > JDeveloper speeds up the process, once you are familiar with it.  I
> > tried it for a couple of hours once, but found it kind of a pain to
> > use.  Is spending time learning one's way around really worth it?
> >
> > OTOH, there are times when a typo in my struts-config.xml or web.xml
> > waste an hour or two my time, and having some sort of validation would
> > be great.
> >
> > And _really_ off-topic, what do you folks use for ERD modeling in *nix?
> > I haven't been able to get DIA or xfig to generate decent looking .eps
> > for papers, so I.. um.. do them in Windows.  Any other (free - we are a
> > poor academic research center :D) modeling software out there people
> > use?  Or tips on maximizing xfig/DIA?
> >
> > --
> > Becky Norum <bn...@coe.neu.edu>
> > Becky Norum
> > Database Administrator
> > Center for Subsurface Sensing and Imaging Systems (CenSSIS)
> > Northeastern University
> > http://www.censsis.neu.edu
> > >
> > > --- Dejan Krsmanovic <de...@nbj.sv.gov.yu>
> > > wrote:
> > > > I have used 9.0.3 for building few struts
> > > > applications and I can say it
> > > > saved me a lot of time. They have integrated few
> > > > wizards for working with
> > > > config files and support for taglibs (autocomplete
> > > > etc.). However I have
> > > > found few bugs (for example when specifying data
> > > > source configuration in
> > > > struts-config). Also, there was no support for tiles
> > > > and validator.
> > > >
> > > > These days I saw Oracle has released maintainance
> > > > version - 9.0.3.1, but I
> > > > haven't downloaded it yet.
> > > >
> > > > Dejan
> >
> >
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
> > For additional commands, e-mail: struts-user-help@jakarta.apache.org
> >
> >
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: struts-user-help@jakarta.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: struts-user-help@jakarta.apache.org


Re: [OT] IDE / ERD modeling (Was: Re: struts IDE)

Posted by Simon Kelly <ke...@ipe.fzk.de>.
I was insalling Red Hat 8.0 last night, and am damn sure I saw a modling
package being installed.  I'll have a look through it tonight and mail if I
find anything.

Cheers

Simon


----- Original Message -----
From: "Becky Norum" <bn...@coe.neu.edu>
To: "Struts Users Mailing List" <st...@jakarta.apache.org>
Sent: Thursday, March 06, 2003 5:44 PM
Subject: [OT] IDE / ERD modeling (Was: Re: struts IDE)


> I've stayed quiet on this since I've used IDEs rarely.  I stick with
> xemacs and vi when necessary.  I've been curious how much an IDE like
> JDeveloper speeds up the process, once you are familiar with it.  I
> tried it for a couple of hours once, but found it kind of a pain to
> use.  Is spending time learning one's way around really worth it?
>
> OTOH, there are times when a typo in my struts-config.xml or web.xml
> waste an hour or two my time, and having some sort of validation would
> be great.
>
> And _really_ off-topic, what do you folks use for ERD modeling in *nix?
> I haven't been able to get DIA or xfig to generate decent looking .eps
> for papers, so I.. um.. do them in Windows.  Any other (free - we are a
> poor academic research center :D) modeling software out there people
> use?  Or tips on maximizing xfig/DIA?
>
> --
> Becky Norum <bn...@coe.neu.edu>
> Becky Norum
> Database Administrator
> Center for Subsurface Sensing and Imaging Systems (CenSSIS)
> Northeastern University
> http://www.censsis.neu.edu
> >
> > --- Dejan Krsmanovic <de...@nbj.sv.gov.yu>
> > wrote:
> > > I have used 9.0.3 for building few struts
> > > applications and I can say it
> > > saved me a lot of time. They have integrated few
> > > wizards for working with
> > > config files and support for taglibs (autocomplete
> > > etc.). However I have
> > > found few bugs (for example when specifying data
> > > source configuration in
> > > struts-config). Also, there was no support for tiles
> > > and validator.
> > >
> > > These days I saw Oracle has released maintainance
> > > version - 9.0.3.1, but I
> > > haven't downloaded it yet.
> > >
> > > Dejan
>
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: struts-user-help@jakarta.apache.org
>
>


---------------------------------------------------------------------
To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: struts-user-help@jakarta.apache.org


Re: [OT] IDE / ERD modeling (Was: Re: struts IDE)

Posted by alexj <al...@freesurf.ch>.
ArgoUML is free and open source .
http://argouml.tigris.org/

--
Alexandre Jaquet

----- Original Message ----- 
From: "Becky Norum" <bn...@coe.neu.edu>
To: "Struts Users Mailing List" <st...@jakarta.apache.org>
Sent: Thursday, March 06, 2003 5:44 PM
Subject: [OT] IDE / ERD modeling (Was: Re: struts IDE)


> I've stayed quiet on this since I've used IDEs rarely.  I stick with
> xemacs and vi when necessary.  I've been curious how much an IDE like
> JDeveloper speeds up the process, once you are familiar with it.  I
> tried it for a couple of hours once, but found it kind of a pain to
> use.  Is spending time learning one's way around really worth it?
> 
> OTOH, there are times when a typo in my struts-config.xml or web.xml
> waste an hour or two my time, and having some sort of validation would
> be great.
> 
> And _really_ off-topic, what do you folks use for ERD modeling in *nix? 
> I haven't been able to get DIA or xfig to generate decent looking .eps
> for papers, so I.. um.. do them in Windows.  Any other (free - we are a
> poor academic research center :D) modeling software out there people
> use?  Or tips on maximizing xfig/DIA?
> 
> -- 
> Becky Norum <bn...@coe.neu.edu>
> Becky Norum
> Database Administrator
> Center for Subsurface Sensing and Imaging Systems (CenSSIS)
> Northeastern University
> http://www.censsis.neu.edu
> > 
> > --- Dejan Krsmanovic <de...@nbj.sv.gov.yu>
> > wrote:
> > > I have used 9.0.3 for building few struts
> > > applications and I can say it
> > > saved me a lot of time. They have integrated few
> > > wizards for working with
> > > config files and support for taglibs (autocomplete
> > > etc.). However I have
> > > found few bugs (for example when specifying data
> > > source configuration in
> > > struts-config). Also, there was no support for tiles
> > > and validator.
> > > 
> > > These days I saw Oracle has released maintainance
> > > version - 9.0.3.1, but I
> > > haven't downloaded it yet.
> > > 
> > > Dejan
> 
> 
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: struts-user-help@jakarta.apache.org
> 
> 


---------------------------------------------------------------------
To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: struts-user-help@jakarta.apache.org


RE: [OT] IDE / ERD modeling (Was: Re: struts IDE)

Posted by Mitchell Morris <mm...@mindspring.com>.
This misses your stated constraints in two big ways: it's for Windows, and
it's nothing remotely close to free but you may be able to get the sales
people to comp you one or reduce the price dramatically since you're an
acccredited university.

That said, I've never had the pleasure of working with a tool for database
modeling that's anywhere near as complete as Computer Associates ERwin (now
called "AllFusion Data Modeler", I think). It does logical/physical
modeling, user-defined domains, subject area diagramming, IDEF1X and Chen
notation, and lots of other useful database modeling stuff. I've been using
it rather strenuously for about two years now and I continue to find new
ways to (1) reduce my efforts and (2) improve my results using the tool. Oh
yeah, and it generates loverly diagrams with color-coding.

That isn't to say it's the greatest thing since "vi", because nothing is,
really. It has some, um, interesting interface quirks, strange ideas about
pathfinding for the relationship lines, and the occasional flaky behavior.
On the balance, though, I can't say good enough about it to people who have
the scratch to purchase it.

+Mitchell

> -----Original Message-----
> From: Becky Norum [mailto:bnorum@coe.neu.edu]
> Sent: Thursday, March 06, 2003 11:44 AM
> To: Struts Users Mailing List
> Subject: [OT] IDE / ERD modeling (Was: Re: struts IDE)
>
>
> I've stayed quiet on this since I've used IDEs rarely.  I stick with
> xemacs and vi when necessary.  I've been curious how much an IDE like
> JDeveloper speeds up the process, once you are familiar with it.  I
> tried it for a couple of hours once, but found it kind of a pain to
> use.  Is spending time learning one's way around really worth it?
>
> OTOH, there are times when a typo in my struts-config.xml or web.xml
> waste an hour or two my time, and having some sort of validation would
> be great.
>
> And _really_ off-topic, what do you folks use for ERD
> modeling in *nix?
> I haven't been able to get DIA or xfig to generate decent looking .eps
> for papers, so I.. um.. do them in Windows.  Any other (free
> - we are a
> poor academic research center :D) modeling software out there people
> use?  Or tips on maximizing xfig/DIA?
>
> --
> Becky Norum <bn...@coe.neu.edu>
> Becky Norum
> Database Administrator
> Center for Subsurface Sensing and Imaging Systems (CenSSIS)
> Northeastern University
> http://www.censsis.neu.edu
> >
> > --- Dejan Krsmanovic <de...@nbj.sv.gov.yu>
> > wrote:
> > > I have used 9.0.3 for building few struts
> > > applications and I can say it
> > > saved me a lot of time. They have integrated few
> > > wizards for working with
> > > config files and support for taglibs (autocomplete
> > > etc.). However I have
> > > found few bugs (for example when specifying data
> > > source configuration in
> > > struts-config). Also, there was no support for tiles
> > > and validator.
> > >
> > > These days I saw Oracle has released maintainance
> > > version - 9.0.3.1, but I
> > > haven't downloaded it yet.
> > >
> > > Dejan
>
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: struts-user-help@jakarta.apache.org
>
>



---------------------------------------------------------------------
To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: struts-user-help@jakarta.apache.org


[OT] IDE / ERD modeling (Was: Re: struts IDE)

Posted by Becky Norum <bn...@coe.neu.edu>.
I've stayed quiet on this since I've used IDEs rarely.  I stick with
xemacs and vi when necessary.  I've been curious how much an IDE like
JDeveloper speeds up the process, once you are familiar with it.  I
tried it for a couple of hours once, but found it kind of a pain to
use.  Is spending time learning one's way around really worth it?

OTOH, there are times when a typo in my struts-config.xml or web.xml
waste an hour or two my time, and having some sort of validation would
be great.

And _really_ off-topic, what do you folks use for ERD modeling in *nix? 
I haven't been able to get DIA or xfig to generate decent looking .eps
for papers, so I.. um.. do them in Windows.  Any other (free - we are a
poor academic research center :D) modeling software out there people
use?  Or tips on maximizing xfig/DIA?

-- 
Becky Norum <bn...@coe.neu.edu>
Becky Norum
Database Administrator
Center for Subsurface Sensing and Imaging Systems (CenSSIS)
Northeastern University
http://www.censsis.neu.edu
> 
> --- Dejan Krsmanovic <de...@nbj.sv.gov.yu>
> wrote:
> > I have used 9.0.3 for building few struts
> > applications and I can say it
> > saved me a lot of time. They have integrated few
> > wizards for working with
> > config files and support for taglibs (autocomplete
> > etc.). However I have
> > found few bugs (for example when specifying data
> > source configuration in
> > struts-config). Also, there was no support for tiles
> > and validator.
> > 
> > These days I saw Oracle has released maintainance
> > version - 9.0.3.1, but I
> > haven't downloaded it yet.
> > 
> > Dejan




---------------------------------------------------------------------
To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: struts-user-help@jakarta.apache.org


Re: Commons Logging Configuration

Posted by Mazharullah <ma...@cgdigital.biz>.
Hi Ashok

        Follow the below steps to configure and use the commons logging
library.

        1. Keep your configuration in /etc directory ( prefered location)
for ex. ( /etc/project.conf)
        2. If it is web application configure your web.xml file to get the
configuration file name. For example

<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE web-app
    PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
    "http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app>
  <servlet>
        <servlet-name>InitServlet</servlet-name>
        <description>Initiator </description>
        <servlet-class>package.subpackage.InitServlet</servlet-class>
        <init-param>
                <param-name>config </param-name>
                <param-value>/etc/project.conf </param-value>
        </init-param>
        <load-on-startup>1</load-on-startup>
  </servlet>
</web-app>

    3. In the startup servlet you use PropertyConfigurator to load the log4j
settings using the below statements

         import org.apache.log4j.Logger;
         import org.apache.log4j.PropertyConfigurator;
        ....
        public void init(ServletConfig config) throws ServletException {
            super.init(config);
            //Get the current host name
            try{

PropertyConfigurator.configure(config.getInitParameter("config"));
            }
            catch(Exception e){
                ....
            }
            ......
Regards
Mazharullah
Bangalore - India

----- Original Message -----
From: ashokd <as...@visualsoft-tech.com>
To: Struts Users Mailing List <st...@jakarta.apache.org>
Sent: Thursday, March 07, 2002 12:15 PM
Subject: Commons Logging Configuration


> Hi,
>
>     I have a question regarding configuration of  Commons Logging (for
> Log4j). Where I need to place this configuration property file. Their is
any
> user guide to configure commons Logging.
>
> Thanks & Regards,
> Ashok.D
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: struts-user-help@jakarta.apache.org
>
>




---------------------------------------------------------------------
To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: struts-user-help@jakarta.apache.org


Commons Logging Configuration

Posted by ashokd <as...@visualsoft-tech.com>.
Hi,

    I have a question regarding configuration of  Commons Logging (for
Log4j). Where I need to place this configuration property file. Their is any
user guide to configure commons Logging.

Thanks & Regards,
Ashok.D


---------------------------------------------------------------------
To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: struts-user-help@jakarta.apache.org


struts IDE: Plug-in problem

Posted by Chetan Sahasrabudhe <ch...@wisorindia.soft.net>.
James:

    I can see the addin there, problem is when i right click on
struts-config.xml with proper DOCTYPE itz not giving me option of "struts
console", is there a different way to add struts-config in project so as to
get this thing work.

Thanks
Chetan
----- Original Message -----
From: "James Holmes" <jh...@yahoo.com>
To: "Struts Users Mailing List" <st...@jakarta.apache.org>
Sent: Thursday, March 06, 2003 7:47 PM
Subject: Re: struts IDE


> Most likely the plugin is installed fine, but it is
> not recognizing your xml file as a Struts config file.
>  You need to make sure you have the right DOCTYPE in
> your config file otherwise Struts Console won't work.
> For more on this see the help page:
>
> http://www.jamesholmes.com/struts/console/help.html
>
> To verify that Struts Console plugin is properly
> installed in JDeveloper go to the "Tools" menu and
> select "Preferences". If you see "Struts Console" in
> the tree on the left hand side then Struts Console is
> installed properly.
>
> Hope that helps,
>
> -james
>
> --- Chetan Sahasrabudhe <ch...@wisorindia.soft.net>
> wrote:
> > James :
> >
> >     I am trying out plug-in suggested by u, I
> > followed all the steps and
> > restarted JDev. but I am not able to get it work. do
> > u know any common
> > problem
> >
> > Chetan
> > ----- Original Message -----
> > From: "James Holmes" <jh...@yahoo.com>
> > To: "Struts Users Mailing List"
> > <st...@jakarta.apache.org>
> > Sent: Thursday, March 06, 2003 7:27 PM
> > Subject: Re: struts IDE
> >
> >
> > > That is correct.  The Struts Console plugins don't
> > > provide a facility to create new config files in
> > any
> > > of the IDEs.  Unfortunately, this is only
> > available in
> > > the standalone version.
> > >
> > > -james
> > >
> > > --- Dejan Krsmanovic
> > <de...@nbj.sv.gov.yu>
> > > wrote:
> > > > Yeah, I know. However I have switched to Eclipse
> > now
> > > > and using both Easy
> > > > Struts & Struts Console.
> > > > By the way I coudn't see option for creating new
> > > > struts/validator/tiles
> > > > config file in Eclipse with Struts Console
> > plugin
> > > > installed. I can only edit
> > > > existing config file. Am I missing something?
> > > >
> > > > Dejan
> > > >
> > > >
> > > > ----- Original Message -----
> > > > From: "James Holmes" <jh...@yahoo.com>
> > > > To: "Struts Users Mailing List"
> > > > <st...@jakarta.apache.org>
> > > > Sent: Thursday, March 06, 2003 2:25 PM
> > > > Subject: Re: struts IDE
> > > >
> > > >
> > > > > You can use the Struts Console plugin in
> > > > JDeveloper
> > > > > and it has fully working support for Struts,
> > Tiles
> > > > and
> > > > > Validator config files.  This should solve
> > your
> > > > > problems.
> > > > >
> > > > > http://www.jamesholmes.com/struts/
> > > > >
> > > > > -james
> > > > >
> > > > > --- Dejan Krsmanovic
> > > > <de...@nbj.sv.gov.yu>
> > > > > wrote:
> > > > > > I have used 9.0.3 for building few struts
> > > > > > applications and I can say it
> > > > > > saved me a lot of time. They have integrated
> > few
> > > > > > wizards for working with
> > > > > > config files and support for taglibs
> > > > (autocomplete
> > > > > > etc.). However I have
> > > > > > found few bugs (for example when specifying
> > data
> > > > > > source configuration in
> > > > > > struts-config). Also, there was no support
> > for
> > > > tiles
> > > > > > and validator.
> > > > > >
> > > > > > These days I saw Oracle has released
> > > > maintainance
> > > > > > version - 9.0.3.1, but I
> > > > > > haven't downloaded it yet.
> > > > > >
> > > > > > Dejan
> > > > > >
> > > > > > ----- Original Message -----
> > > > > > From: "Davor Cengija"
> > > > <da...@mail.inet.hr>
> > > > > > To: <st...@jakarta.apache.org>
> > > > > > Sent: Thursday, March 06, 2003 10:38 AM
> > > > > > Subject: RE: struts IDE
> > > > > >
> > > > > >
> > > > > > > Aris Kyriakidis wrote:
> > > > > > >
> > > > > > > > What is your opinion on JDeveloper
> > 9.0.3?
> > > > > > >
> > > > > > > I'd like to hear the people's opinion on
> > JDev
> > > > > > 9.0.3 as well, especially
> > > > > > > regarding the Struts support.
> > > > > > >
> > > > > > > I used JDev 9.0.1 and 9.0.2 on a quite big
> > > > project
> > > > > > with my custom struts
> > > > > > > integration and it was just horrible.
> > 9.0.1
> > > > was
> > > > > > very very buggy. Although
> > > > > > > 9.0.2 fixed some problems, some conceptual
> > > > ideas
> > > > > > were still, well,
> > > > > > strange,
> > > > > > > to say it politelly. I guess 9.0.3
> > provides
> > > > some
> > > > > > taglibs to ease the
> > > > > > struts
> > > > > > > integration, but the basic concepts are
> > still
> > > > the
> > > > > > same (opening and
> > > > > > closing
> > > > > > > the connections within a JSP page, JSPs
> > are
> > > > more
> > > > > > than just a view etc).
> > > > > > >
> > > > > > > What other people think of JDeveloper 9?
> > > > > > >
> > > > > > > --
> > > > > > > davor.cengija@mail.inet.hr
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
> ---------------------------------------------------------------------
> > > > > > > To unsubscribe, e-mail:
> > > > > > struts-user-unsubscribe@jakarta.apache.org
> > > > > > > For additional commands, e-mail:
> > > > > > struts-user-help@jakarta.apache.org
> > > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
> ---------------------------------------------------------------------
> > > > > > To unsubscribe, e-mail:
> > > > > > struts-user-unsubscribe@jakarta.apache.org
> > > > > > For additional commands, e-mail:
> > > > > > struts-user-help@jakarta.apache.org
> > > > > >
> > > > >
> > > > >
> > > > >
> > __________________________________________________
> > > > > Do you Yahoo!?
> > > > > Yahoo! Tax Center - forms, calculators, tips,
> > more
> > > > > http://taxes.yahoo.com/
> > > > >
> > > > >
> > > >
> > >
> >
> ---------------------------------------------------------------------
> > > > > To unsubscribe, e-mail:
> > > > struts-user-unsubscribe@jakarta.apache.org
> > > > > For additional commands, e-mail:
> > > > struts-user-help@jakarta.apache.org
> > > > >
> > > >
> > > >
> > > >
> > > >
> > >
> >
> ---------------------------------------------------------------------
> > > > To unsubscribe, e-mail:
> > > > struts-user-unsubscribe@jakarta.apache.org
> > > > For additional commands, e-mail:
> > > > struts-user-help@jakarta.apache.org
> > > >
> > >
> > >
> > > __________________________________________________
> > > Do you Yahoo!?
> > > Yahoo! Tax Center - forms, calculators, tips, more
> > > http://taxes.yahoo.com/
> > >
> > >
> >
> ---------------------------------------------------------------------
> > > To unsubscribe, e-mail:
> > struts-user-unsubscribe@jakarta.apache.org
> > > For additional commands, e-mail:
> > struts-user-help@jakarta.apache.org
> >
> >
> >
> ---------------------------------------------------------------------
> > To unsubscribe, e-mail:
> > struts-user-unsubscribe@jakarta.apache.org
> > For additional commands, e-mail:
> > struts-user-help@jakarta.apache.org
> >
>
>
> __________________________________________________
> Do you Yahoo!?
> Yahoo! Tax Center - forms, calculators, tips, more
> http://taxes.yahoo.com/
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: struts-user-help@jakarta.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: struts-user-help@jakarta.apache.org


Re: struts IDE

Posted by James Holmes <jh...@yahoo.com>.
Most likely the plugin is installed fine, but it is
not recognizing your xml file as a Struts config file.
 You need to make sure you have the right DOCTYPE in
your config file otherwise Struts Console won't work. 
For more on this see the help page:

http://www.jamesholmes.com/struts/console/help.html

To verify that Struts Console plugin is properly
installed in JDeveloper go to the "Tools" menu and
select "Preferences". If you see "Struts Console" in
the tree on the left hand side then Struts Console is
installed properly.

Hope that helps,

-james

--- Chetan Sahasrabudhe <ch...@wisorindia.soft.net>
wrote:
> James :
> 
>     I am trying out plug-in suggested by u, I
> followed all the steps and
> restarted JDev. but I am not able to get it work. do
> u know any common
> problem
> 
> Chetan
> ----- Original Message -----
> From: "James Holmes" <jh...@yahoo.com>
> To: "Struts Users Mailing List"
> <st...@jakarta.apache.org>
> Sent: Thursday, March 06, 2003 7:27 PM
> Subject: Re: struts IDE
> 
> 
> > That is correct.  The Struts Console plugins don't
> > provide a facility to create new config files in
> any
> > of the IDEs.  Unfortunately, this is only
> available in
> > the standalone version.
> >
> > -james
> >
> > --- Dejan Krsmanovic
> <de...@nbj.sv.gov.yu>
> > wrote:
> > > Yeah, I know. However I have switched to Eclipse
> now
> > > and using both Easy
> > > Struts & Struts Console.
> > > By the way I coudn't see option for creating new
> > > struts/validator/tiles
> > > config file in Eclipse with Struts Console
> plugin
> > > installed. I can only edit
> > > existing config file. Am I missing something?
> > >
> > > Dejan
> > >
> > >
> > > ----- Original Message -----
> > > From: "James Holmes" <jh...@yahoo.com>
> > > To: "Struts Users Mailing List"
> > > <st...@jakarta.apache.org>
> > > Sent: Thursday, March 06, 2003 2:25 PM
> > > Subject: Re: struts IDE
> > >
> > >
> > > > You can use the Struts Console plugin in
> > > JDeveloper
> > > > and it has fully working support for Struts,
> Tiles
> > > and
> > > > Validator config files.  This should solve
> your
> > > > problems.
> > > >
> > > > http://www.jamesholmes.com/struts/
> > > >
> > > > -james
> > > >
> > > > --- Dejan Krsmanovic
> > > <de...@nbj.sv.gov.yu>
> > > > wrote:
> > > > > I have used 9.0.3 for building few struts
> > > > > applications and I can say it
> > > > > saved me a lot of time. They have integrated
> few
> > > > > wizards for working with
> > > > > config files and support for taglibs
> > > (autocomplete
> > > > > etc.). However I have
> > > > > found few bugs (for example when specifying
> data
> > > > > source configuration in
> > > > > struts-config). Also, there was no support
> for
> > > tiles
> > > > > and validator.
> > > > >
> > > > > These days I saw Oracle has released
> > > maintainance
> > > > > version - 9.0.3.1, but I
> > > > > haven't downloaded it yet.
> > > > >
> > > > > Dejan
> > > > >
> > > > > ----- Original Message -----
> > > > > From: "Davor Cengija"
> > > <da...@mail.inet.hr>
> > > > > To: <st...@jakarta.apache.org>
> > > > > Sent: Thursday, March 06, 2003 10:38 AM
> > > > > Subject: RE: struts IDE
> > > > >
> > > > >
> > > > > > Aris Kyriakidis wrote:
> > > > > >
> > > > > > > What is your opinion on JDeveloper
> 9.0.3?
> > > > > >
> > > > > > I'd like to hear the people's opinion on
> JDev
> > > > > 9.0.3 as well, especially
> > > > > > regarding the Struts support.
> > > > > >
> > > > > > I used JDev 9.0.1 and 9.0.2 on a quite big
> > > project
> > > > > with my custom struts
> > > > > > integration and it was just horrible.
> 9.0.1
> > > was
> > > > > very very buggy. Although
> > > > > > 9.0.2 fixed some problems, some conceptual
> > > ideas
> > > > > were still, well,
> > > > > strange,
> > > > > > to say it politelly. I guess 9.0.3
> provides
> > > some
> > > > > taglibs to ease the
> > > > > struts
> > > > > > integration, but the basic concepts are
> still
> > > the
> > > > > same (opening and
> > > > > closing
> > > > > > the connections within a JSP page, JSPs
> are
> > > more
> > > > > than just a view etc).
> > > > > >
> > > > > > What other people think of JDeveloper 9?
> > > > > >
> > > > > > --
> > > > > > davor.cengija@mail.inet.hr
> > > > > >
> > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
---------------------------------------------------------------------
> > > > > > To unsubscribe, e-mail:
> > > > > struts-user-unsubscribe@jakarta.apache.org
> > > > > > For additional commands, e-mail:
> > > > > struts-user-help@jakarta.apache.org
> > > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > >
> > >
> >
>
---------------------------------------------------------------------
> > > > > To unsubscribe, e-mail:
> > > > > struts-user-unsubscribe@jakarta.apache.org
> > > > > For additional commands, e-mail:
> > > > > struts-user-help@jakarta.apache.org
> > > > >
> > > >
> > > >
> > > >
> __________________________________________________
> > > > Do you Yahoo!?
> > > > Yahoo! Tax Center - forms, calculators, tips,
> more
> > > > http://taxes.yahoo.com/
> > > >
> > > >
> > >
> >
>
---------------------------------------------------------------------
> > > > To unsubscribe, e-mail:
> > > struts-user-unsubscribe@jakarta.apache.org
> > > > For additional commands, e-mail:
> > > struts-user-help@jakarta.apache.org
> > > >
> > >
> > >
> > >
> > >
> >
>
---------------------------------------------------------------------
> > > To unsubscribe, e-mail:
> > > struts-user-unsubscribe@jakarta.apache.org
> > > For additional commands, e-mail:
> > > struts-user-help@jakarta.apache.org
> > >
> >
> >
> > __________________________________________________
> > Do you Yahoo!?
> > Yahoo! Tax Center - forms, calculators, tips, more
> > http://taxes.yahoo.com/
> >
> >
>
---------------------------------------------------------------------
> > To unsubscribe, e-mail:
> struts-user-unsubscribe@jakarta.apache.org
> > For additional commands, e-mail:
> struts-user-help@jakarta.apache.org
> 
> 
>
---------------------------------------------------------------------
> To unsubscribe, e-mail:
> struts-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail:
> struts-user-help@jakarta.apache.org
> 


__________________________________________________
Do you Yahoo!?
Yahoo! Tax Center - forms, calculators, tips, more
http://taxes.yahoo.com/

---------------------------------------------------------------------
To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: struts-user-help@jakarta.apache.org


Re: struts IDE

Posted by Chetan Sahasrabudhe <ch...@wisorindia.soft.net>.
James :

    I am trying out plug-in suggested by u, I followed all the steps and
restarted JDev. but I am not able to get it work. do u know any common
problem

Chetan
----- Original Message -----
From: "James Holmes" <jh...@yahoo.com>
To: "Struts Users Mailing List" <st...@jakarta.apache.org>
Sent: Thursday, March 06, 2003 7:27 PM
Subject: Re: struts IDE


> That is correct.  The Struts Console plugins don't
> provide a facility to create new config files in any
> of the IDEs.  Unfortunately, this is only available in
> the standalone version.
>
> -james
>
> --- Dejan Krsmanovic <de...@nbj.sv.gov.yu>
> wrote:
> > Yeah, I know. However I have switched to Eclipse now
> > and using both Easy
> > Struts & Struts Console.
> > By the way I coudn't see option for creating new
> > struts/validator/tiles
> > config file in Eclipse with Struts Console plugin
> > installed. I can only edit
> > existing config file. Am I missing something?
> >
> > Dejan
> >
> >
> > ----- Original Message -----
> > From: "James Holmes" <jh...@yahoo.com>
> > To: "Struts Users Mailing List"
> > <st...@jakarta.apache.org>
> > Sent: Thursday, March 06, 2003 2:25 PM
> > Subject: Re: struts IDE
> >
> >
> > > You can use the Struts Console plugin in
> > JDeveloper
> > > and it has fully working support for Struts, Tiles
> > and
> > > Validator config files.  This should solve your
> > > problems.
> > >
> > > http://www.jamesholmes.com/struts/
> > >
> > > -james
> > >
> > > --- Dejan Krsmanovic
> > <de...@nbj.sv.gov.yu>
> > > wrote:
> > > > I have used 9.0.3 for building few struts
> > > > applications and I can say it
> > > > saved me a lot of time. They have integrated few
> > > > wizards for working with
> > > > config files and support for taglibs
> > (autocomplete
> > > > etc.). However I have
> > > > found few bugs (for example when specifying data
> > > > source configuration in
> > > > struts-config). Also, there was no support for
> > tiles
> > > > and validator.
> > > >
> > > > These days I saw Oracle has released
> > maintainance
> > > > version - 9.0.3.1, but I
> > > > haven't downloaded it yet.
> > > >
> > > > Dejan
> > > >
> > > > ----- Original Message -----
> > > > From: "Davor Cengija"
> > <da...@mail.inet.hr>
> > > > To: <st...@jakarta.apache.org>
> > > > Sent: Thursday, March 06, 2003 10:38 AM
> > > > Subject: RE: struts IDE
> > > >
> > > >
> > > > > Aris Kyriakidis wrote:
> > > > >
> > > > > > What is your opinion on JDeveloper 9.0.3?
> > > > >
> > > > > I'd like to hear the people's opinion on JDev
> > > > 9.0.3 as well, especially
> > > > > regarding the Struts support.
> > > > >
> > > > > I used JDev 9.0.1 and 9.0.2 on a quite big
> > project
> > > > with my custom struts
> > > > > integration and it was just horrible. 9.0.1
> > was
> > > > very very buggy. Although
> > > > > 9.0.2 fixed some problems, some conceptual
> > ideas
> > > > were still, well,
> > > > strange,
> > > > > to say it politelly. I guess 9.0.3 provides
> > some
> > > > taglibs to ease the
> > > > struts
> > > > > integration, but the basic concepts are still
> > the
> > > > same (opening and
> > > > closing
> > > > > the connections within a JSP page, JSPs are
> > more
> > > > than just a view etc).
> > > > >
> > > > > What other people think of JDeveloper 9?
> > > > >
> > > > > --
> > > > > davor.cengija@mail.inet.hr
> > > > >
> > > > >
> > > > >
> > > >
> > >
> >
> ---------------------------------------------------------------------
> > > > > To unsubscribe, e-mail:
> > > > struts-user-unsubscribe@jakarta.apache.org
> > > > > For additional commands, e-mail:
> > > > struts-user-help@jakarta.apache.org
> > > > >
> > > >
> > > >
> > > >
> > > >
> > >
> >
> ---------------------------------------------------------------------
> > > > To unsubscribe, e-mail:
> > > > struts-user-unsubscribe@jakarta.apache.org
> > > > For additional commands, e-mail:
> > > > struts-user-help@jakarta.apache.org
> > > >
> > >
> > >
> > > __________________________________________________
> > > Do you Yahoo!?
> > > Yahoo! Tax Center - forms, calculators, tips, more
> > > http://taxes.yahoo.com/
> > >
> > >
> >
> ---------------------------------------------------------------------
> > > To unsubscribe, e-mail:
> > struts-user-unsubscribe@jakarta.apache.org
> > > For additional commands, e-mail:
> > struts-user-help@jakarta.apache.org
> > >
> >
> >
> >
> >
> ---------------------------------------------------------------------
> > To unsubscribe, e-mail:
> > struts-user-unsubscribe@jakarta.apache.org
> > For additional commands, e-mail:
> > struts-user-help@jakarta.apache.org
> >
>
>
> __________________________________________________
> Do you Yahoo!?
> Yahoo! Tax Center - forms, calculators, tips, more
> http://taxes.yahoo.com/
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: struts-user-help@jakarta.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: struts-user-help@jakarta.apache.org


Re: struts IDE

Posted by James Holmes <jh...@yahoo.com>.
That is correct.  The Struts Console plugins don't
provide a facility to create new config files in any
of the IDEs.  Unfortunately, this is only available in
the standalone version.

-james

--- Dejan Krsmanovic <de...@nbj.sv.gov.yu>
wrote:
> Yeah, I know. However I have switched to Eclipse now
> and using both Easy
> Struts & Struts Console.
> By the way I coudn't see option for creating new
> struts/validator/tiles
> config file in Eclipse with Struts Console plugin
> installed. I can only edit
> existing config file. Am I missing something?
> 
> Dejan
> 
> 
> ----- Original Message -----
> From: "James Holmes" <jh...@yahoo.com>
> To: "Struts Users Mailing List"
> <st...@jakarta.apache.org>
> Sent: Thursday, March 06, 2003 2:25 PM
> Subject: Re: struts IDE
> 
> 
> > You can use the Struts Console plugin in
> JDeveloper
> > and it has fully working support for Struts, Tiles
> and
> > Validator config files.  This should solve your
> > problems.
> >
> > http://www.jamesholmes.com/struts/
> >
> > -james
> >
> > --- Dejan Krsmanovic
> <de...@nbj.sv.gov.yu>
> > wrote:
> > > I have used 9.0.3 for building few struts
> > > applications and I can say it
> > > saved me a lot of time. They have integrated few
> > > wizards for working with
> > > config files and support for taglibs
> (autocomplete
> > > etc.). However I have
> > > found few bugs (for example when specifying data
> > > source configuration in
> > > struts-config). Also, there was no support for
> tiles
> > > and validator.
> > >
> > > These days I saw Oracle has released
> maintainance
> > > version - 9.0.3.1, but I
> > > haven't downloaded it yet.
> > >
> > > Dejan
> > >
> > > ----- Original Message -----
> > > From: "Davor Cengija"
> <da...@mail.inet.hr>
> > > To: <st...@jakarta.apache.org>
> > > Sent: Thursday, March 06, 2003 10:38 AM
> > > Subject: RE: struts IDE
> > >
> > >
> > > > Aris Kyriakidis wrote:
> > > >
> > > > > What is your opinion on JDeveloper 9.0.3?
> > > >
> > > > I'd like to hear the people's opinion on JDev
> > > 9.0.3 as well, especially
> > > > regarding the Struts support.
> > > >
> > > > I used JDev 9.0.1 and 9.0.2 on a quite big
> project
> > > with my custom struts
> > > > integration and it was just horrible. 9.0.1
> was
> > > very very buggy. Although
> > > > 9.0.2 fixed some problems, some conceptual
> ideas
> > > were still, well,
> > > strange,
> > > > to say it politelly. I guess 9.0.3 provides
> some
> > > taglibs to ease the
> > > struts
> > > > integration, but the basic concepts are still
> the
> > > same (opening and
> > > closing
> > > > the connections within a JSP page, JSPs are
> more
> > > than just a view etc).
> > > >
> > > > What other people think of JDeveloper 9?
> > > >
> > > > --
> > > > davor.cengija@mail.inet.hr
> > > >
> > > >
> > > >
> > >
> >
>
---------------------------------------------------------------------
> > > > To unsubscribe, e-mail:
> > > struts-user-unsubscribe@jakarta.apache.org
> > > > For additional commands, e-mail:
> > > struts-user-help@jakarta.apache.org
> > > >
> > >
> > >
> > >
> > >
> >
>
---------------------------------------------------------------------
> > > To unsubscribe, e-mail:
> > > struts-user-unsubscribe@jakarta.apache.org
> > > For additional commands, e-mail:
> > > struts-user-help@jakarta.apache.org
> > >
> >
> >
> > __________________________________________________
> > Do you Yahoo!?
> > Yahoo! Tax Center - forms, calculators, tips, more
> > http://taxes.yahoo.com/
> >
> >
>
---------------------------------------------------------------------
> > To unsubscribe, e-mail:
> struts-user-unsubscribe@jakarta.apache.org
> > For additional commands, e-mail:
> struts-user-help@jakarta.apache.org
> >
> 
> 
> 
>
---------------------------------------------------------------------
> To unsubscribe, e-mail:
> struts-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail:
> struts-user-help@jakarta.apache.org
> 


__________________________________________________
Do you Yahoo!?
Yahoo! Tax Center - forms, calculators, tips, more
http://taxes.yahoo.com/

---------------------------------------------------------------------
To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: struts-user-help@jakarta.apache.org


Re: struts IDE

Posted by Dejan Krsmanovic <de...@nbj.sv.gov.yu>.
Yeah, I know. However I have switched to Eclipse now and using both Easy
Struts & Struts Console.
By the way I coudn't see option for creating new struts/validator/tiles
config file in Eclipse with Struts Console plugin installed. I can only edit
existing config file. Am I missing something?

Dejan


----- Original Message -----
From: "James Holmes" <jh...@yahoo.com>
To: "Struts Users Mailing List" <st...@jakarta.apache.org>
Sent: Thursday, March 06, 2003 2:25 PM
Subject: Re: struts IDE


> You can use the Struts Console plugin in JDeveloper
> and it has fully working support for Struts, Tiles and
> Validator config files.  This should solve your
> problems.
>
> http://www.jamesholmes.com/struts/
>
> -james
>
> --- Dejan Krsmanovic <de...@nbj.sv.gov.yu>
> wrote:
> > I have used 9.0.3 for building few struts
> > applications and I can say it
> > saved me a lot of time. They have integrated few
> > wizards for working with
> > config files and support for taglibs (autocomplete
> > etc.). However I have
> > found few bugs (for example when specifying data
> > source configuration in
> > struts-config). Also, there was no support for tiles
> > and validator.
> >
> > These days I saw Oracle has released maintainance
> > version - 9.0.3.1, but I
> > haven't downloaded it yet.
> >
> > Dejan
> >
> > ----- Original Message -----
> > From: "Davor Cengija" <da...@mail.inet.hr>
> > To: <st...@jakarta.apache.org>
> > Sent: Thursday, March 06, 2003 10:38 AM
> > Subject: RE: struts IDE
> >
> >
> > > Aris Kyriakidis wrote:
> > >
> > > > What is your opinion on JDeveloper 9.0.3?
> > >
> > > I'd like to hear the people's opinion on JDev
> > 9.0.3 as well, especially
> > > regarding the Struts support.
> > >
> > > I used JDev 9.0.1 and 9.0.2 on a quite big project
> > with my custom struts
> > > integration and it was just horrible. 9.0.1 was
> > very very buggy. Although
> > > 9.0.2 fixed some problems, some conceptual ideas
> > were still, well,
> > strange,
> > > to say it politelly. I guess 9.0.3 provides some
> > taglibs to ease the
> > struts
> > > integration, but the basic concepts are still the
> > same (opening and
> > closing
> > > the connections within a JSP page, JSPs are more
> > than just a view etc).
> > >
> > > What other people think of JDeveloper 9?
> > >
> > > --
> > > davor.cengija@mail.inet.hr
> > >
> > >
> > >
> >
> ---------------------------------------------------------------------
> > > To unsubscribe, e-mail:
> > struts-user-unsubscribe@jakarta.apache.org
> > > For additional commands, e-mail:
> > struts-user-help@jakarta.apache.org
> > >
> >
> >
> >
> >
> ---------------------------------------------------------------------
> > To unsubscribe, e-mail:
> > struts-user-unsubscribe@jakarta.apache.org
> > For additional commands, e-mail:
> > struts-user-help@jakarta.apache.org
> >
>
>
> __________________________________________________
> Do you Yahoo!?
> Yahoo! Tax Center - forms, calculators, tips, more
> http://taxes.yahoo.com/
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: struts-user-help@jakarta.apache.org
>



---------------------------------------------------------------------
To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: struts-user-help@jakarta.apache.org


Re: struts IDE

Posted by James Holmes <jh...@yahoo.com>.
You can use the Struts Console plugin in JDeveloper
and it has fully working support for Struts, Tiles and
Validator config files.  This should solve your
problems.

http://www.jamesholmes.com/struts/

-james

--- Dejan Krsmanovic <de...@nbj.sv.gov.yu>
wrote:
> I have used 9.0.3 for building few struts
> applications and I can say it
> saved me a lot of time. They have integrated few
> wizards for working with
> config files and support for taglibs (autocomplete
> etc.). However I have
> found few bugs (for example when specifying data
> source configuration in
> struts-config). Also, there was no support for tiles
> and validator.
> 
> These days I saw Oracle has released maintainance
> version - 9.0.3.1, but I
> haven't downloaded it yet.
> 
> Dejan
> 
> ----- Original Message -----
> From: "Davor Cengija" <da...@mail.inet.hr>
> To: <st...@jakarta.apache.org>
> Sent: Thursday, March 06, 2003 10:38 AM
> Subject: RE: struts IDE
> 
> 
> > Aris Kyriakidis wrote:
> >
> > > What is your opinion on JDeveloper 9.0.3?
> >
> > I'd like to hear the people's opinion on JDev
> 9.0.3 as well, especially
> > regarding the Struts support.
> >
> > I used JDev 9.0.1 and 9.0.2 on a quite big project
> with my custom struts
> > integration and it was just horrible. 9.0.1 was
> very very buggy. Although
> > 9.0.2 fixed some problems, some conceptual ideas
> were still, well,
> strange,
> > to say it politelly. I guess 9.0.3 provides some
> taglibs to ease the
> struts
> > integration, but the basic concepts are still the
> same (opening and
> closing
> > the connections within a JSP page, JSPs are more
> than just a view etc).
> >
> > What other people think of JDeveloper 9?
> >
> > --
> > davor.cengija@mail.inet.hr
> >
> >
> >
>
---------------------------------------------------------------------
> > To unsubscribe, e-mail:
> struts-user-unsubscribe@jakarta.apache.org
> > For additional commands, e-mail:
> struts-user-help@jakarta.apache.org
> >
> 
> 
> 
>
---------------------------------------------------------------------
> To unsubscribe, e-mail:
> struts-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail:
> struts-user-help@jakarta.apache.org
> 


__________________________________________________
Do you Yahoo!?
Yahoo! Tax Center - forms, calculators, tips, more
http://taxes.yahoo.com/

---------------------------------------------------------------------
To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: struts-user-help@jakarta.apache.org


Re: struts IDE

Posted by Dejan Krsmanovic <de...@nbj.sv.gov.yu>.
I have used 9.0.3 for building few struts applications and I can say it
saved me a lot of time. They have integrated few wizards for working with
config files and support for taglibs (autocomplete etc.). However I have
found few bugs (for example when specifying data source configuration in
struts-config). Also, there was no support for tiles and validator.

These days I saw Oracle has released maintainance version - 9.0.3.1, but I
haven't downloaded it yet.

Dejan

----- Original Message -----
From: "Davor Cengija" <da...@mail.inet.hr>
To: <st...@jakarta.apache.org>
Sent: Thursday, March 06, 2003 10:38 AM
Subject: RE: struts IDE


> Aris Kyriakidis wrote:
>
> > What is your opinion on JDeveloper 9.0.3?
>
> I'd like to hear the people's opinion on JDev 9.0.3 as well, especially
> regarding the Struts support.
>
> I used JDev 9.0.1 and 9.0.2 on a quite big project with my custom struts
> integration and it was just horrible. 9.0.1 was very very buggy. Although
> 9.0.2 fixed some problems, some conceptual ideas were still, well,
strange,
> to say it politelly. I guess 9.0.3 provides some taglibs to ease the
struts
> integration, but the basic concepts are still the same (opening and
closing
> the connections within a JSP page, JSPs are more than just a view etc).
>
> What other people think of JDeveloper 9?
>
> --
> davor.cengija@mail.inet.hr
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: struts-user-help@jakarta.apache.org
>



---------------------------------------------------------------------
To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: struts-user-help@jakarta.apache.org


RE: struts IDE

Posted by Davor Cengija <da...@mail.inet.hr>.
Aris Kyriakidis wrote:

> What is your opinion on JDeveloper 9.0.3?

I'd like to hear the people's opinion on JDev 9.0.3 as well, especially 
regarding the Struts support. 

I used JDev 9.0.1 and 9.0.2 on a quite big project with my custom struts 
integration and it was just horrible. 9.0.1 was very very buggy. Although 
9.0.2 fixed some problems, some conceptual ideas were still, well, strange, 
to say it politelly. I guess 9.0.3 provides some taglibs to ease the struts 
integration, but the basic concepts are still the same (opening and closing 
the connections within a JSP page, JSPs are more than just a view etc).

What other people think of JDeveloper 9?

-- 
davor.cengija@mail.inet.hr


---------------------------------------------------------------------
To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: struts-user-help@jakarta.apache.org


Re: CSS stylesheet

Posted by Christopher Cheng <ma...@chrisshare.net>.
There is an extension to Struts to generate CSS link, have a look at the
resouces page

----- Original Message -----
From: "Renato Romano" <r....@set-network.com>
To: "'Struts Users Mailing List'" <st...@jakarta.apache.org>
Sent: Friday, March 07, 2003 12:39 AM
Subject: RE: CSS stylesheet


Thanks a lot !!

____________________________________
Renato Romano
Sistemi e Telematica S.p.A.
Calata Grazie - Vial Al Molo Giano
16127 - GENOVA

e-mail: r.romano@set-network.com
Tel.:   010 2712603
_____________________________________


-----Original Message-----
From: Nicolas De Loof [mailto:nicolas.deloof@cgey.com]
Sent: giovedì 6 marzo 2003 16.13
To: Struts Users Mailing List; r.romano@set-network.com
Subject: Re: CSS stylesheet


<LINK rel="stylesheet"
      href="<html:rewrite page="/css/stileForm.css" />
      type="text/css">

Nico.


> Does anyone knows how to render a
>
> <LINK rel="stylesheet" href="../stileForm.css" type="text/css">
>
> With struts ??
> Thanks a lot.
> Renato
>
> ____________________________________
> Renato Romano
> Sistemi e Telematica S.p.A.
> Calata Grazie - Vial Al Molo Giano
> 16127 - GENOVA
>
> e-mail: r.romano@set-network.com
> Tel.:   010 2712603
> _____________________________________
>
>
>
>
> --------------------------------------------------------------------
-
> To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: struts-user-help@jakarta.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: struts-user-help@jakarta.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: struts-user-help@jakarta.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: struts-user-help@jakarta.apache.org


RE: CSS stylesheet

Posted by Renato Romano <r....@set-network.com>.
Thanks a lot !!

____________________________________
Renato Romano
Sistemi e Telematica S.p.A.
Calata Grazie - Vial Al Molo Giano
16127 - GENOVA

e-mail: r.romano@set-network.com
Tel.:   010 2712603
_____________________________________


-----Original Message-----
From: Nicolas De Loof [mailto:nicolas.deloof@cgey.com] 
Sent: giovedì 6 marzo 2003 16.13
To: Struts Users Mailing List; r.romano@set-network.com
Subject: Re: CSS stylesheet


<LINK rel="stylesheet"
      href="<html:rewrite page="/css/stileForm.css" />
      type="text/css">

Nico.


> Does anyone knows how to render a
>
> <LINK rel="stylesheet" href="../stileForm.css" type="text/css">
>
> With struts ??
> Thanks a lot.
> Renato
>
> ____________________________________
> Renato Romano
> Sistemi e Telematica S.p.A.
> Calata Grazie - Vial Al Molo Giano
> 16127 - GENOVA
>
> e-mail: r.romano@set-network.com
> Tel.:   010 2712603
> _____________________________________
>
>
>
>
> --------------------------------------------------------------------
-
> To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: struts-user-help@jakarta.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: struts-user-help@jakarta.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: struts-user-help@jakarta.apache.org


Re: CSS stylesheet

Posted by Nicolas De Loof <ni...@cgey.com>.
<LINK rel="stylesheet"
      href="<html:rewrite page="/css/stileForm.css" />
      type="text/css">

Nico.


> Does anyone knows how to render a
>
> <LINK rel="stylesheet" href="../stileForm.css" type="text/css">
>
> With struts ??
> Thanks a lot.
> Renato
>
> ____________________________________
> Renato Romano
> Sistemi e Telematica S.p.A.
> Calata Grazie - Vial Al Molo Giano
> 16127 - GENOVA
>
> e-mail: r.romano@set-network.com
> Tel.:   010 2712603
> _____________________________________
>
>
>
>
> --------------------------------------------------------------------
-
> To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: struts-user-help@jakarta.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: struts-user-help@jakarta.apache.org


RE: CSS stylesheet

Posted by apachep2 <ap...@hotmail.com>.
Don't have to use struts to render <LINK> tag

-----Original Message-----
From: Renato Romano [mailto:r.romano@set-network.com] 
Sent: March 6, 2003 9:57 AM
To: 'Struts Users Mailing List'
Subject: CSS stylesheet

Does anyone knows how to render a

<LINK rel="stylesheet" href="../stileForm.css" type="text/css">

With struts ??
Thanks a lot.
Renato

____________________________________
Renato Romano
Sistemi e Telematica S.p.A.
Calata Grazie - Vial Al Molo Giano
16127 - GENOVA

e-mail: r.romano@set-network.com
Tel.:   010 2712603
_____________________________________




---------------------------------------------------------------------
To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: struts-user-help@jakarta.apache.org

---------------------------------------------------------------------
To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: struts-user-help@jakarta.apache.org


RE: CSS stylesheet

Posted by Jacob Hookom <ho...@uwec.edu>.
Sometimes you don't have the luxury of deploying your app at the root of
domain.

| -----Original Message-----
| From: apachep2 [mailto:apachep2@hotmail.com]
| Sent: Thursday, March 06, 2003 1:38 PM
| To: 'Struts Users Mailing List'
| Subject: RE: CSS stylesheet
| 
| I don't understand why people want to use a complicated struts tag while
| a simple href="/styleSheet.css" will solve the problem.
| 
| -----Original Message-----
| From: Jacky Kimmel [mailto:rjkimme@yahoo.com]
| Sent: March 6, 2003 2:31 PM
| To: Struts Users Mailing List; r.romano@set-network.com
| Subject: Re: CSS stylesheet
| 
| 
| <link rel='stylesheet'
|               href='<html:rewrite page="/poconnect.css"/>'
|               type='text/css' />
| 
| in the jsp is how I did it.  Include the stylesheet in your build file.
|  Renato Romano <r....@set-network.com> wrote: Does anyone knows how
| to render a
| 
| 
| 
| 
| With struts ??
| Thanks a lot.
| Renato
| 
| ____________________________________
| Renato Romano
| Sistemi e Telematica S.p.A.
| Calata Grazie - Vial Al Molo Giano
| 16127 - GENOVA
| 
| e-mail: r.romano@set-network.com
| Tel.: 010 2712603
| _____________________________________
| 
| 
| 
| 
| ---------------------------------------------------------------------
| To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
| For additional commands, e-mail: struts-user-help@jakarta.apache.org
| 
| 
| 
| ---------------------------------
| Do you Yahoo!?
| Yahoo! Tax Center - forms, calculators, tips, and more
| 
| ---------------------------------------------------------------------
| To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
| For additional commands, e-mail: struts-user-help@jakarta.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: struts-user-help@jakarta.apache.org


RE: CSS stylesheet

Posted by apachep2 <ap...@hotmail.com>.
I don't understand why people want to use a complicated struts tag while
a simple href="/styleSheet.css" will solve the problem.

-----Original Message-----
From: Jacky Kimmel [mailto:rjkimme@yahoo.com] 
Sent: March 6, 2003 2:31 PM
To: Struts Users Mailing List; r.romano@set-network.com
Subject: Re: CSS stylesheet


<link rel='stylesheet'
              href='<html:rewrite page="/poconnect.css"/>'
              type='text/css' /> 
 
in the jsp is how I did it.  Include the stylesheet in your build file. 
 Renato Romano <r....@set-network.com> wrote: Does anyone knows how
to render a




With struts ??
Thanks a lot.
Renato

____________________________________
Renato Romano
Sistemi e Telematica S.p.A.
Calata Grazie - Vial Al Molo Giano
16127 - GENOVA

e-mail: r.romano@set-network.com
Tel.: 010 2712603
_____________________________________




---------------------------------------------------------------------
To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: struts-user-help@jakarta.apache.org



---------------------------------
Do you Yahoo!?
Yahoo! Tax Center - forms, calculators, tips, and more

---------------------------------------------------------------------
To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: struts-user-help@jakarta.apache.org


Re: CSS stylesheet

Posted by Jacky Kimmel <rj...@yahoo.com>.
<link rel='stylesheet'
              href='<html:rewrite page="/poconnect.css"/>'
              type='text/css' /> 
 
in the jsp is how I did it.  Include the stylesheet in your build file. 
 Renato Romano <r....@set-network.com> wrote: Does anyone knows how to render a




With struts ??
Thanks a lot.
Renato

____________________________________
Renato Romano
Sistemi e Telematica S.p.A.
Calata Grazie - Vial Al Molo Giano
16127 - GENOVA

e-mail: r.romano@set-network.com
Tel.: 010 2712603
_____________________________________




---------------------------------------------------------------------
To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: struts-user-help@jakarta.apache.org



---------------------------------
Do you Yahoo!?
Yahoo! Tax Center - forms, calculators, tips, and more

Re: CSS stylesheet

Posted by Jacky Kimmel <rj...@yahoo.com>.
<link rel='stylesheet'
              href='<html:rewrite page="/poconnect.css"/>'
              type='text/css' />
 
in the jsp is how I did it.  Include the stylesheet in your build file.
 Renato Romano <r....@set-network.com> wrote:Does anyone knows how to render a




With struts ??
Thanks a lot.
Renato

____________________________________
Renato Romano
Sistemi e Telematica S.p.A.
Calata Grazie - Vial Al Molo Giano
16127 - GENOVA

e-mail: r.romano@set-network.com
Tel.: 010 2712603
_____________________________________




---------------------------------------------------------------------
To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: struts-user-help@jakarta.apache.org



---------------------------------
Do you Yahoo!?
Yahoo! Tax Center - forms, calculators, tips, and more

CSS stylesheet

Posted by Renato Romano <r....@set-network.com>.
Does anyone knows how to render a

<LINK rel="stylesheet" href="../stileForm.css" type="text/css">

With struts ??
Thanks a lot.
Renato

____________________________________
Renato Romano
Sistemi e Telematica S.p.A.
Calata Grazie - Vial Al Molo Giano
16127 - GENOVA

e-mail: r.romano@set-network.com
Tel.:   010 2712603
_____________________________________




---------------------------------------------------------------------
To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: struts-user-help@jakarta.apache.org


Re: struts IDE

Posted by Tony Baity <to...@yahoo.com>.
[SERIOUS] The number of times that this topic has come up, does anyone have a poll-taking web site that struts users can place their votes on for favorite IDEs or OR Mapping tools or whatever? [NOT SERIOUS] Or perhaps C|NET could be talked into providing this.
.
 Buics <rb...@pc.ntep.nec.co.jp> wrote:how about scioworks camino 3.0.1



Alok Garg wrote:

> Jbulider8.0
> and Eclipse
> ----- Original Message -----
> From: "Buics" 
> To: "Struts Users Mailing List" 
> Sent: Thursday, March 06, 2003 12:52 PM
> Subject: struts IDE
>
> > good day!
> >
> > anyone could suggest an IDE for struts rapid development?
> >
> > thank you in advance!
> >
> >
> >
>
> ----------------------------------------------------------------------------
> ----
>
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
> > For additional commands, e-mail: struts-user-help@jakarta.apache.org
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: struts-user-help@jakarta.apache.org

---------------------------------------------------------------------
To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: struts-user-help@jakarta.apache.org

.
.
.
Tony Baity
.
.
.


---------------------------------
Do you Yahoo!?
Yahoo! Tax Center - forms, calculators, tips, and more

Re: struts IDE

Posted by Buics <rb...@pc.ntep.nec.co.jp>.
how about scioworks camino 3.0.1



Alok Garg wrote:

> Jbulider8.0
> and Eclipse
> ----- Original Message -----
> From: "Buics" <rb...@pc.ntep.nec.co.jp>
> To: "Struts Users Mailing List" <st...@jakarta.apache.org>
> Sent: Thursday, March 06, 2003 12:52 PM
> Subject: struts IDE
>
> > good day!
> >
> > anyone could suggest an IDE for struts rapid development?
> >
> > thank you in advance!
> >
> >
> >
>
> ----------------------------------------------------------------------------
> ----
>
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
> > For additional commands, e-mail: struts-user-help@jakarta.apache.org
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: struts-user-help@jakarta.apache.org


RE: struts IDE

Posted by Aris Kyriakidis <fe...@neurosoft.gr>.
What is your opinion on JDeveloper 9.0.3?

-----Original Message-----
From: Alok Garg [mailto:alok@direct2s.com]
Sent: Thursday, March 06, 2003 10:04 AM
To: Struts Users Mailing List
Subject: Re: struts IDE


Jbulider8.0
and Eclipse
----- Original Message -----
From: "Buics" <rb...@pc.ntep.nec.co.jp>
To: "Struts Users Mailing List" <st...@jakarta.apache.org>
Sent: Thursday, March 06, 2003 12:52 PM
Subject: struts IDE


> good day!
>
> anyone could suggest an IDE for struts rapid development?
>
> thank you in advance!
>
>
>


----------------------------------------------------------------------------
----


> ---------------------------------------------------------------------
> To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: struts-user-help@jakarta.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: struts-user-help@jakarta.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: struts-user-help@jakarta.apache.org


Re: struts IDE

Posted by Alok Garg <al...@direct2s.com>.
Jbulider8.0
and Eclipse
----- Original Message -----
From: "Buics" <rb...@pc.ntep.nec.co.jp>
To: "Struts Users Mailing List" <st...@jakarta.apache.org>
Sent: Thursday, March 06, 2003 12:52 PM
Subject: struts IDE


> good day!
>
> anyone could suggest an IDE for struts rapid development?
>
> thank you in advance!
>
>
>


----------------------------------------------------------------------------
----


> ---------------------------------------------------------------------
> To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: struts-user-help@jakarta.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: struts-user-help@jakarta.apache.org


struts IDE

Posted by Buics <rb...@pc.ntep.nec.co.jp>.
good day!

anyone could suggest an IDE for struts rapid development?

thank you in advance!