Re: wicket examples very slow

2011-01-27 Thread Martin Grigorov
On Tue, Jan 25, 2011 at 1:25 PM, kondwani kondw...@gmail.com wrote:


 Any luck in resolving this problem?  I'm unable to even look at the Source
 Code.

Tomcat is upgraded from 5.5.x to 6.0.x and all is fine again.

 --
 View this message in context:
 http://apache-wicket.1842946.n4.nabble.com/wicket-examples-very-slow-tp3234627p3236027.html
 Sent from the Users forum mailing list archive at Nabble.com.

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org




Re: wicket examples very slow

2011-01-25 Thread kondwani

Any luck in resolving this problem?  I'm unable to even look at the Source
Code.
-- 
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/wicket-examples-very-slow-tp3234627p3236027.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



wicket examples very slow

2011-01-24 Thread fachhoch

I was trying to see wicket examples   

http://www.wicket-library.com/wicket-examples/

its very slow I tried on Friday ,again today   its very slow , I tried in
different browsers.It did not help.
   
-- 
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/wicket-examples-very-slow-tp3234627p3234627.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: wicket examples very slow

2011-01-24 Thread Jeremy Thomerson
On Mon, Jan 24, 2011 at 12:23 PM, fachhoch fachh...@gmail.com wrote:


 I was trying to see wicket examples

 http://www.wicket-library.com/wicket-examples/

 its very slow I tried on Friday ,again today   its very slow , I tried in
 different browsers.It did not help.


Run them locally:

svn co https://svn.apache.org/repos/asf/wicket/branches/wicket-1.4.x
cd wicket-1.4.x/
mvn install
# if you want to load the code in Eclipse to put debug points, etc, run mvn
eclipse:eclipse
cd wicket-examples
mvn jetty:run

Browse to http://localhost:8080/wicket-examples/

-- 
Jeremy Thomerson
http://wickettraining.com
*Need a CMS for Wicket?  Use Brix! http://brixcms.org*


Re: wicket examples very slow

2011-01-24 Thread Martin Grigorov
On Mon, Jan 24, 2011 at 7:48 PM, Jeremy Thomerson jer...@wickettraining.com
 wrote:

 On Mon, Jan 24, 2011 at 12:23 PM, fachhoch fachh...@gmail.com wrote:

 
  I was trying to see wicket examples
 
  http://www.wicket-library.com/wicket-examples/
 
  its very slow I tried on Friday ,again today   its very slow , I tried in
  different browsers.It did not help.
 

 Run them locally:

 svn co https://svn.apache.org/repos/asf/wicket/branches/wicket-1.4.x
 cd wicket-1.4.x/
 mvn install
 # if you want to load the code in Eclipse to put debug points, etc, run
 mvn
 eclipse:eclipse
 cd wicket-examples
 mvn jetty:run

 Browse to http://localhost:8080/wicket-examples/

 except the fact that this is 1.5 demo

I'm looking what is wrong


 --
 Jeremy Thomerson
 http://wickettraining.com
 *Need a CMS for Wicket?  Use Brix! http://brixcms.org*



Re: wicket examples very slow

2011-01-24 Thread Martin Grigorov
Each request fails with

WARN  - ServletWebRequest  - Error parsing request body for post
parameters; Fallback to ServletRequest#getParameters().
java.net.SocketTimeoutException: Read timed out
at java.net.SocketInputStream.socketRead0(Native Method)
at java.net.SocketInputStream.read(SocketInputStream.java:129)
at
org.apache.coyote.http11.InternalInputBuffer.fill(InternalInputBuffer.java:747)
at
org.apache.coyote.http11.InternalInputBuffer$InputStreamInputBuffer.doRead(InternalInputBuffer.java:777)
at
org.apache.coyote.http11.InternalInputBuffer.doRead(InternalInputBuffer.java:710)
at org.apache.coyote.Request.doRead(Request.java:427)
at
org.apache.catalina.connector.InputBuffer.realReadBytes(InputBuffer.java:283)
at
org.apache.catalina.connector.InputBuffer.realReadChars(InputBuffer.java:329)
at
org.apache.tomcat.util.buf.CharChunk.substract(CharChunk.java:382)
at
org.apache.catalina.connector.InputBuffer.read(InputBuffer.java:351)
at
org.apache.catalina.connector.CoyoteReader.read(CoyoteReader.java:80)
at org.apache.wicket.util.io.Streams.readString(Streams.java:192)
at
org.apache.wicket.protocol.http.servlet.ServletWebRequest.generatePostParameters(ServletWebRequest.java:251)
at
org.apache.wicket.protocol.http.servlet.ServletWebRequest.getPostRequestParameters(ServletWebRequest.java:294)
at
org.apache.wicket.protocol.http.servlet.ServletWebRequest.access$000(ServletWebRequest.java:60)
at
org.apache.wicket.protocol.http.servlet.ServletWebRequest$1.getParameterValue(ServletWebRequest.java:318)
at
org.apache.wicket.request.parameter.CombinedRequestParametersAdapter.getParameterValue(CombinedRequestParametersAdapter.java:71)
at
org.apache.wicket.request.http.WebRequest.isAjax(WebRequest.java:124)
at
org.apache.wicket.protocol.http.servlet.ServletWebRequest.getClientUrl(ServletWebRequest.java:124)
at
org.apache.wicket.request.cycle.RequestCycle.newUrlRenderer(RequestCycle.java:143)
at
org.apache.wicket.request.cycle.RequestCycle.getUrlRenderer(RequestCycle.java:167)
at
org.apache.wicket.request.handler.render.WebPageRenderer.respond(WebPageRenderer.java:191)


It is either the JVM (1.5.0_22) or Tomcat (5.5.?) ...

On Mon, Jan 24, 2011 at 7:51 PM, Martin Grigorov mgrigo...@apache.orgwrote:

 On Mon, Jan 24, 2011 at 7:48 PM, Jeremy Thomerson 
 jer...@wickettraining.com wrote:

 On Mon, Jan 24, 2011 at 12:23 PM, fachhoch fachh...@gmail.com wrote:

 
  I was trying to see wicket examples
 
  http://www.wicket-library.com/wicket-examples/
 
  its very slow I tried on Friday ,again today   its very slow , I tried
 in
  different browsers.It did not help.
 

 Run them locally:

 svn co https://svn.apache.org/repos/asf/wicket/branches/wicket-1.4.x
 cd wicket-1.4.x/
 mvn install
 # if you want to load the code in Eclipse to put debug points, etc, run
 mvn
 eclipse:eclipse
 cd wicket-examples
 mvn jetty:run

 Browse to http://localhost:8080/wicket-examples/

 except the fact that this is 1.5 demo

 I'm looking what is wrong


 --

 Jeremy Thomerson
 http://wickettraining.com
 *Need a CMS for Wicket?  Use Brix! http://brixcms.org*