Re: HTML pages convert to Struts/JSP pages

2004-06-10 Thread Bill Siggelkow
Struts console allows you to view in a graphical format the the Struts 
configuration XML files. To do what you want to do I would use the 
following step-by-step process -- forgive me if you have already 
performed some of these steps.

1. Read the Struts User Guide
2. Read over the Struts tags -- particularly, the "html" tag library
3. Bring up your source HTML in an editor such as TextPad, vi, or emacs
4. Replace the HTML "input" tags with the corresponding Struts html tag
5. Create the ActionForm, either as a DynaActionForm in the 
struts-config.xml or your own class that extends ActionForm.

This should get you well on your way -- as another pointed out, there is 
no silver bullet.

Bill Siggelkow
Heligon Sandra wrote:
One person said me that it could be possible to use Struts Console.
Has soemone already used this tool to do that ?

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


RE: HTML pages convert to Struts/JSP pages

2004-06-10 Thread Heligon Sandra
One person said me that it could be possible to use Struts Console.
Has soemone already used this tool to do that ?

-Original Message-
From: Mark Lowe [mailto:[EMAIL PROTECTED]
Sent: 09 June 2004 23:03
To: Struts Users Mailing List
Subject: Re: HTML pages convert to Struts/JSP pages


well you could start by grabbing your webapp with something like wget 
or curl.

wget -r www.mysite.com/

This would give you the rendered html to then start working from, you'd 
still have to deal with the form input when the user submits it. I dont 
know if there' s a zero-cognition, abracadabra widget to do this for 
you. It would depend on what language you where porting to.

Mark

On 9 Jun 2004, at 11:42, Heligon Sandra wrote:

>
>   Hi,
>
>   I would like to shared basic HTML pages with an other web
> application
>   which does not used Struts.
>   Is it possible to convert HTM pages to Struts views automatically ?
>   Is it an existing toolkit to do this ?
>
>   Thanks a lot in advance
>   Sandra
>
> -
> 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 pages convert to Struts/JSP pages

2004-06-09 Thread Jason Long
JBuilderX will do the conversion.  It is not perfect, but can help.

Jason Long - CEO and Chief Software Engineer
Supernova Software - supernovasoftware.com
BS Physics, MS Chemical Engineering

-Original Message-
From: Heligon Sandra [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, June 09, 2004 4:43 AM
To: '[EMAIL PROTECTED]'
Subject: HTML pages convert to Struts/JSP pages


Hi,

I would like to shared basic HTML pages with an other web
application
which does not used Struts.
Is it possible to convert HTM pages to Struts views
automatically ?
Is it an existing toolkit to do this ?

Thanks a lot in advance
Sandra

-
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 pages convert to Struts/JSP pages

2004-06-09 Thread Mark Lowe
well you could start by grabbing your webapp with something like wget 
or curl.

wget -r www.mysite.com/
This would give you the rendered html to then start working from, you'd 
still have to deal with the form input when the user submits it. I dont 
know if there' s a zero-cognition, abracadabra widget to do this for 
you. It would depend on what language you where porting to.

Mark
On 9 Jun 2004, at 11:42, Heligon Sandra wrote:
Hi,
I would like to shared basic HTML pages with an other web
application
which does not used Struts.
Is it possible to convert HTM pages to Struts views automatically ?
Is it an existing toolkit to do this ?
Thanks a lot in advance
Sandra
-
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 pages convert to Struts/JSP pages

2004-06-09 Thread Heligon Sandra

Hi,

I would like to shared basic HTML pages with an other web
application
which does not used Struts.
Is it possible to convert HTM pages to Struts views automatically ?
Is it an existing toolkit to do this ?

Thanks a lot in advance
Sandra

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



Re: HTML pages convert to Struts/JSP pages

2004-06-09 Thread Rick Reumann
Heligon Sandra wrote:
In my Struts application I use JSP pages with DynaValidatorForm effectively
I used Struts tags html:form, html:radio, bean:message, logic:equal etc..
I would like to use basic html pages (created for an other web application)
and convert them to Struts pages in order to have all Struts facilities.
No magic bullet for this. Not sure how their could be.
--
Rick
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


RE: HTML pages convert to Struts/JSP pages

2004-06-09 Thread Hookom, Jacob
Since a lot of this stuff matches up between html and struts, you could
probably use something like Dreamweaver's search and replace functionality
to go through and replace mailto:[EMAIL PROTECTED] 
Sent: Wednesday, June 09, 2004 11:01 AM
To: 'Struts Users Mailing List'
Subject: RE: HTML pages convert to Struts/JSP pages

In my Struts application I use JSP pages with DynaValidatorForm effectively
I used Struts tags html:form, html:radio, bean:message, logic:equal etc..
I would like to use basic html pages (created for an other web application)
and convert them to Struts pages in order to have all Struts facilities.


-Original Message-
From: Rick Reumann [mailto:[EMAIL PROTECTED]
Sent: 09 June 2004 17:53
To: Struts Users Mailing List
Subject: Re: HTML pages convert to Struts/JSP pages


Heligon Sandra wrote:

>   I would like to shared basic HTML pages with an other web
> application
>   which does not used Struts.
>   Is it possible to convert HTM pages to Struts views automatically ?
>   Is it an existing toolkit to do this ?

Not sure what you mean by these questions? Are you sure you mean "view" 
or do you mean "forms"?

-- 
Rick

-
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 pages convert to Struts/JSP pages

2004-06-09 Thread Heligon Sandra
In my Struts application I use JSP pages with DynaValidatorForm effectively
I used Struts tags html:form, html:radio, bean:message, logic:equal etc..
I would like to use basic html pages (created for an other web application)
and convert them to Struts pages in order to have all Struts facilities.


-Original Message-
From: Rick Reumann [mailto:[EMAIL PROTECTED]
Sent: 09 June 2004 17:53
To: Struts Users Mailing List
Subject: Re: HTML pages convert to Struts/JSP pages


Heligon Sandra wrote:

>   I would like to shared basic HTML pages with an other web
> application
>   which does not used Struts.
>   Is it possible to convert HTM pages to Struts views automatically ?
>   Is it an existing toolkit to do this ?

Not sure what you mean by these questions? Are you sure you mean "view" 
or do you mean "forms"?

-- 
Rick

-
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 pages convert to Struts/JSP pages

2004-06-09 Thread Rick Reumann
Heligon Sandra wrote:
I would like to shared basic HTML pages with an other web
application
which does not used Struts.
Is it possible to convert HTM pages to Struts views automatically ?
Is it an existing toolkit to do this ?
Not sure what you mean by these questions? Are you sure you mean "view" 
or do you mean "forms"?

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


HTML pages convert to Struts/JSP pages

2004-06-09 Thread Heligon Sandra

Hi,

I would like to shared basic HTML pages with an other web
application
which does not used Struts.
Is it possible to convert HTM pages to Struts views automatically ?
Is it an existing toolkit to do this ?

Thanks a lot in advance
Sandra


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