Compare JSP Vs Wicket

View: New views
5 Messages — Rating Filter:   Alert me  

Compare JSP Vs Wicket

by Edi :: Rate this Message:

Reply (Restricted by the Administrator) | Reply to Author | View Threaded | Show Only this Message

Please send me all your suggestions.

including the below question

In jsp, I can pass the values using query string

for eg. <form action="actionJSP.jsp?userName=edi&password=edi">

using request.getParameter("userName"); I can get the userName.
using request.getParameter("password"); I can get the password.

In wicket, how can we do that?

And send all notes regarding "Compare JSP Vs Wicket"

Thanking You.

Re: Compare JSP Vs Wicket

by Johan Compagner :: Rate this Message:

Reply (Restricted by the Administrator) | Reply to Author | View Threaded | Show Only this Message

for bookmarkable pages see pageparamer constructor,
else
RequestCycle.get.getRequest().getParameters(). But you should be
looking at what you are trying to do.. think differently

On 8/9/07, Edi <edward_durai@...> wrote:

>
> Please send me all your suggestions.
>
> including the below question
>
> In jsp, I can pass the values using query string
>
> for eg. <form action="actionJSP.jsp?userName=edi&password=edi">
>
> using request.getParameter("userName"); I can get the userName.
> using request.getParameter("password"); I can get the password.
>
> In wicket, how can we do that?
>
> And send all notes regarding "Compare JSP Vs Wicket"
>
> Thanking You.
>
> --
> View this message in context:
> http://www.nabble.com/Compare-JSP-Vs-Wicket-tf4242739.html#a12072743
> Sent from the Wicket - User (OLD) mailing list archive at Nabble.com.
>
>
> -------------------------------------------------------------------------
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems?  Stop.
> Now Search log events and configuration files using AJAX and a browser.
> Download your FREE copy of Splunk now >>  http://get.splunk.com/
> _______________________________________________
> IMPORTANT NOTICE:
>
> This mailing list is shutting down. Please subscribe to the Apache Wicket
> user list. Send a message to: "users-subscribe at wicket.apache.org" and
> follow the instructions.
> _______________________________________________
> Wicket-user mailing list
> Wicket-user@...
> https://lists.sourceforge.net/lists/listinfo/wicket-user
>
-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
IMPORTANT NOTICE:

This mailing list is shutting down. Please subscribe to the Apache Wicket user list. Send a message to: "users-subscribe at wicket.apache.org" and follow the instructions.
_______________________________________________
Wicket-user mailing list
Wicket-user@...
https://lists.sourceforge.net/lists/listinfo/wicket-user

Re: Compare JSP Vs Wicket

by Edi :: Rate this Message:

Reply (Restricted by the Administrator) | Reply to Author | View Threaded | Show Only this Message

I am a Java, JSP Programmer. Now I am studying wicket. That's why I am asking Your all Suggestions.

Thanking You.

Johan Compagner wrote:
for bookmarkable pages see pageparamer constructor,
else
RequestCycle.get.getRequest().getParameters(). But you should be
looking at what you are trying to do.. think differently

On 8/9/07, Edi <edward_durai@yahoo.com> wrote:
>
> Please send me all your suggestions.
>
> including the below question
>
> In jsp, I can pass the values using query string
>
> for eg. <form action="actionJSP.jsp?userName=edi&password=edi">
>
> using request.getParameter("userName"); I can get the userName.
> using request.getParameter("password"); I can get the password.
>
> In wicket, how can we do that?
>
> And send all notes regarding "Compare JSP Vs Wicket"
>
> Thanking You.
>
> --
> View this message in context:
> http://www.nabble.com/Compare-JSP-Vs-Wicket-tf4242739.html#a12072743
> Sent from the Wicket - User (OLD) mailing list archive at Nabble.com.
>
>
> -------------------------------------------------------------------------
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems?  Stop.
> Now Search log events and configuration files using AJAX and a browser.
> Download your FREE copy of Splunk now >>  http://get.splunk.com/
> _______________________________________________
> IMPORTANT NOTICE:
>
> This mailing list is shutting down. Please subscribe to the Apache Wicket
> user list. Send a message to: "users-subscribe at wicket.apache.org" and
> follow the instructions.
> _______________________________________________
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
>
-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
IMPORTANT NOTICE:

This mailing list is shutting down. Please subscribe to the Apache Wicket user list. Send a message to: "users-subscribe at wicket.apache.org" and follow the instructions.
_______________________________________________
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

Re: Compare JSP Vs Wicket

by Eelco Hillenius :: Rate this Message:

Reply (Restricted by the Administrator) | Reply to Author | View Threaded | Show Only this Message

> I am a Java, JSP Programmer. Now I am studying wicket. That's why I am asking
> Your all Suggestions.

Best way is to create a test application with both. Start simple and
gradually improve the complexity of your examples. You'll find out
what you like better soon enough.

Also, you can take a look at
http://www.virtuas.com/articles/webframework-sweetspots.html

Eelco

-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
IMPORTANT NOTICE:

This mailing list is shutting down. Please subscribe to the Apache Wicket user list. Send a message to: "users-subscribe at wicket.apache.org" and follow the instructions.
_______________________________________________
Wicket-user mailing list
Wicket-user@...
https://lists.sourceforge.net/lists/listinfo/wicket-user

Re: Compare JSP Vs Wicket

by newbie_to_wicket :: Rate this Message:

Reply (Restricted by the Administrator) | Reply to Author | View Threaded | Show Only this Message


i am also using the same in our aplication....
use this following....

setting the parameter.....
url = "/urlpattern?abc=true";

getting the parameter...
Request req = RequestCycle.get().getRequest();

HttpServletRequest httpreq = ((wicket.protocol.http.servlet.ServletWebRequest) req)
                                                                .getHttpServletRequest();




String skipCreatingUserInAuthStrat = req.getParameter("abc");