RE: [OFF TOPIC] STRUTS PROGRAMMER JOB.

2003-12-11 Thread Kuntz, Tim
Martin,

Is the uniform and spatula provided?

tk

-Original Message-
From: Martin Gainty [mailto:[EMAIL PROTECTED]
Sent: Thursday, December 11, 2003 5:37 PM
To: Struts Users Mailing List
Subject: Re: [OFF TOPIC] STRUTS PROGRAMMER JOB.


Actually that figure is a bit high .. 4.75/hr if you want Health Insurance
Saludos,
Martin
- Original Message - 
From: "Marcus Peixoto" <[EMAIL PROTECTED]>
To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
Sent: Thursday, December 11, 2003 1:28 PM
Subject: Re: [OFF TOPIC] STRUTS PROGRAMMER JOB.


> Are you kidding ? Are programmers for sale in US ?
>
> Em Qui, 2003-12-11 Ãs 20:59, Martin Gainty escreveu:
> > Going rate is about 6$/hr
> > - Original Message - 
> > From: "Tiago Henrique Costa Rodrigues Alves"
> > <[EMAIL PROTECTED]>
> > To: "'Struts Users Mailing List'" <[EMAIL PROTECTED]>
> > Sent: Thursday, December 11, 2003 1:37 PM
> > Subject: RE: [OFF TOPIC] STRUTS PROGRAMMER JOB.
> >
> >
> > > I wrote my email wrong: [EMAIL PROTECTED]
> > >
> > > YOU DONT NEED TO REPLY TO THE MAILING LIST send me an email
> > > ([EMAIL PROTECTED])
> > >
> > > Sorry for the off topic, but I just need to hear from you guys...
> > >
> > > I am looking for an American Job, I live in Brazil and I have 2 years
> > > experience in Java + Struts + OJB + Apache + TomCat + UML + PHP + ASP.
Web
> > > in General
> > >
> > > How much an Web/Java Developer can make?
> > >
> > > How easy can I get a job from Brazil?
> > >
> > > Thanks,
> > > Tiago Henrique C. R. Alves
> > >
> > > -
> > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > For additional commands, e-mail: [EMAIL PROTECTED]
> > >
> > >
> >
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> >
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>

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

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



RE: html:form tag - specify rendered action

2003-03-28 Thread Kuntz, Tim
Exactly. Hmmm.. I didn't think of a JavaScript solution but that might be an
option I could investigate.  After looking at the source for the html:form
taglib, I think my best bet is extending the tag class and updating the tld
to allow for an additional attribute that handles my specific business need.

Thanks for your input.

-Original Message-
From: James Mitchell [mailto:[EMAIL PROTECTED]

On Fri, 2003-03-28 at 14:04, Kuntz, Tim wrote:
> Our legacy MVC uses servlet mapping by path "/legacy/*" and Struts is
mapped
> by extension "*.do". 
> 
> The legacy servlet initializes user information and adds it to the request
> object. It then prepends the request.getRequestURI() with "/root" and uses
> the RequestDispatcher to dispatch the request to Struts.  We prepend the
> request URI with "/root" so the legacy servlet doesn't dispatch to itself.
> We also do this because we wrote our own templating system similar to
> SiteMesh without servlet filters... but that's another story.
> 
> Struts is doing exactly what it should be doing in a "normal" application.
> In my case, I just need to modify that behavior so I can get it to work in
> my environment.

I see.  So you want to take advatage of the form handling capabilities
of the html:form tag without it prepending the context?

Interesting.  Would a JavaScript solution work for you?

> 
> -Original Message-
> From: James Mitchell [mailto:[EMAIL PROTECTED]
> 
> On Fri, 2003-03-28 at 13:43, Kuntz, Tim wrote:
> > Sorry, "the framework" refers to my legacy MVC framework and we use a
> > sub-directory named "/root" to store the views (jsps). So while my page
is
> > "/root/legacy/struts.jsp", I want the form to post back to
> > "/legacy/struts.tpc" so my legacy servlet will setup the request prior
to
> > handing it off to Struts.
> 
> I see.  What is your legacy servlet doing to the request?  It appears to
> be confusing Struts.
> 
> > 
> > -Original Message-
> > From: James Mitchell [mailto:[EMAIL PROTECTED]
> 
> > On Fri, 2003-03-28 at 12:16, Kuntz, Tim wrote:
> > > Is it possible to manually control the rendered form action attribute?

> > > 
> > > I am migrating and existing MVC framework to Struts and have the
> > requirement
> > > that the two frameworks run in tandem. The existing framework has a
> front
> > > servlet that is responsible for user initialization, security, etc...
It
> > > then modifies the path and forwards to a view which in my case will be
> the
> > > Struts application. So the user submits to "/legacy/struts.do" but
> Struts
> > > receives "/root/legacy/struts.do" and the page is
> > "/root/legacy/struts.jsp".
> > > 
> > > 
> > > The html:form tag  with an action of "/struts.do" currently sets the
> > action
> > > to "/root/legacy/struts.do" and I need it to be "/legacy/struts.do".
> > > 
> > > Has anyone else dealt with this issue?
> > 
> > The framework is only prepending the context (request.getContextPath()).
> > 
> > Are you sure it's 'root' and not 'ROOT'?
> > 
> > 
> > > 
> > > thanks,
> > > tim
> > > 
> > > -
> > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > For additional commands, e-mail: [EMAIL PROTECTED]
> > -- 
> > James Mitchell
> > Software Developer/Struts Evangelist
> > http://www.open-tools.org
> > 
> > 
> > 
> > 
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> > 
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> -- 
> James Mitchell
> Software Developer/Struts Evangelist
> http://www.open-tools.org
> 
> 
> 
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
-- 
James Mitchell
Software Developer/Struts Evangelist
http://www.open-tools.org




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

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



RE: html:form tag - specify rendered action

2003-03-28 Thread Kuntz, Tim
Our legacy MVC uses servlet mapping by path "/legacy/*" and Struts is mapped
by extension "*.do". 

The legacy servlet initializes user information and adds it to the request
object. It then prepends the request.getRequestURI() with "/root" and uses
the RequestDispatcher to dispatch the request to Struts.  We prepend the
request URI with "/root" so the legacy servlet doesn't dispatch to itself.
We also do this because we wrote our own templating system similar to
SiteMesh without servlet filters... but that's another story.

Struts is doing exactly what it should be doing in a "normal" application.
In my case, I just need to modify that behavior so I can get it to work in
my environment.

-Original Message-
From: James Mitchell [mailto:[EMAIL PROTECTED]

On Fri, 2003-03-28 at 13:43, Kuntz, Tim wrote:
> Sorry, "the framework" refers to my legacy MVC framework and we use a
> sub-directory named "/root" to store the views (jsps). So while my page is
> "/root/legacy/struts.jsp", I want the form to post back to
> "/legacy/struts.tpc" so my legacy servlet will setup the request prior to
> handing it off to Struts.

I see.  What is your legacy servlet doing to the request?  It appears to
be confusing Struts.

> 
> -Original Message-
> From: James Mitchell [mailto:[EMAIL PROTECTED]

> On Fri, 2003-03-28 at 12:16, Kuntz, Tim wrote:
> > Is it possible to manually control the rendered form action attribute? 
> > 
> > I am migrating and existing MVC framework to Struts and have the
> requirement
> > that the two frameworks run in tandem. The existing framework has a
front
> > servlet that is responsible for user initialization, security, etc... It
> > then modifies the path and forwards to a view which in my case will be
the
> > Struts application. So the user submits to "/legacy/struts.do" but
Struts
> > receives "/root/legacy/struts.do" and the page is
> "/root/legacy/struts.jsp".
> > 
> > 
> > The html:form tag  with an action of "/struts.do" currently sets the
> action
> > to "/root/legacy/struts.do" and I need it to be "/legacy/struts.do".
> > 
> > Has anyone else dealt with this issue?
> 
> The framework is only prepending the context (request.getContextPath()).
> 
> Are you sure it's 'root' and not 'ROOT'?
> 
> 
> > 
> > thanks,
> > tim
> > 
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> -- 
> James Mitchell
> Software Developer/Struts Evangelist
> http://www.open-tools.org
> 
> 
> 
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
-- 
James Mitchell
Software Developer/Struts Evangelist
http://www.open-tools.org




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

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



RE: html:form tag - specify rendered action

2003-03-28 Thread Kuntz, Tim
Sorry, "the framework" refers to my legacy MVC framework and we use a
sub-directory named "/root" to store the views (jsps). So while my page is
"/root/legacy/struts.jsp", I want the form to post back to
"/legacy/struts.tpc" so my legacy servlet will setup the request prior to
handing it off to Struts.

-Original Message-
From: James Mitchell [mailto:[EMAIL PROTECTED]
Sent: Friday, March 28, 2003 11:42 AM
To: Struts Users Mailing List
Subject: Re: html:form tag - specify rendered action


On Fri, 2003-03-28 at 12:16, Kuntz, Tim wrote:
> Is it possible to manually control the rendered form action attribute? 
> 
> I am migrating and existing MVC framework to Struts and have the
requirement
> that the two frameworks run in tandem. The existing framework has a front
> servlet that is responsible for user initialization, security, etc... It
> then modifies the path and forwards to a view which in my case will be the
> Struts application. So the user submits to "/legacy/struts.do" but Struts
> receives "/root/legacy/struts.do" and the page is
"/root/legacy/struts.jsp".
> 
> 
> The html:form tag  with an action of "/struts.do" currently sets the
action
> to "/root/legacy/struts.do" and I need it to be "/legacy/struts.do".
> 
> Has anyone else dealt with this issue?

The framework is only prepending the context (request.getContextPath()).

Are you sure it's 'root' and not 'ROOT'?


> 
> thanks,
> tim
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
-- 
James Mitchell
Software Developer/Struts Evangelist
http://www.open-tools.org




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

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



html:form tag - specify rendered action

2003-03-28 Thread Kuntz, Tim
Is it possible to manually control the rendered form action attribute? 

I am migrating and existing MVC framework to Struts and have the requirement
that the two frameworks run in tandem. The existing framework has a front
servlet that is responsible for user initialization, security, etc... It
then modifies the path and forwards to a view which in my case will be the
Struts application. So the user submits to "/legacy/struts.do" but Struts
receives "/root/legacy/struts.do" and the page is "/root/legacy/struts.jsp".


The html:form tag  with an action of "/struts.do" currently sets the action
to "/root/legacy/struts.do" and I need it to be "/legacy/struts.do".

Has anyone else dealt with this issue?

thanks,
tim

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