Re: Wicket webshere 7

2012-01-25 Thread Geoff Lancaster
Filters work just fine. Did you set

com.ibm.ws.webcontainer.invokefilterscompatibility= true
In your web containers custom properties?

Application servers - server - web container settings - web container - 
custom properties

Sent from my iPhone

On Jan 23, 2012, at 11:23 AM, matteus matteu...@hotmail.com wrote:

 
 Yes, my application is running with the filter  Wicket Filter.
 
 --
 View this message in context: 
 http://apache-wicket.1842946.n4.nabble.com/Wicket-websphere-7-tp4310810p4321364.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 webshere 7

2012-01-25 Thread James Carman
The surprising thing is that you actually have to do something like that to
get it to work properly.
On Jan 25, 2012 3:04 AM, Geoff Lancaster wic...@geofflancaster.com
wrote:

 Filters work just fine. Did you set

 com.ibm.ws.webcontainer.invokefilterscompatibility= true
 In your web containers custom properties?

 Application servers - server - web container settings - web container
 - custom properties

 Sent from my iPhone

 On Jan 23, 2012, at 11:23 AM, matteus matteu...@hotmail.com wrote:

 
  Yes, my application is running with the filter  Wicket Filter.
 
  --
  View this message in context:
 http://apache-wicket.1842946.n4.nabble.com/Wicket-websphere-7-tp4310810p4321364.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 webshere 7

2012-01-25 Thread matteus

Its work with the servlet, but I had to change the implementation that you
gave me through the link. 

In my application when I put all the code was it not working so I had to put
only the following code:

servlet
servlet-namewicket.application/servlet-name

servlet-classorg.apache.wicket.protocol.http.WicketServlet/servlet-class
init-param
param-nameapplicationClassName/param-name
param-valuemyApplication/param-value
/init-param
/servlet

servlet-mapping
servlet-namewicket.application/servlet-name
url-pattern/*/url-pattern
/servlet-mapping

Only this and its work..

Thanks a lot to everyone who helped me


--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Wicket-websphere-7-tp4310810p4327096.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 webshere 7

2012-01-23 Thread matteus

Yes, my application is running with the filter  Wicket Filter.

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Wicket-websphere-7-tp4310810p4321364.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 webshere 7

2012-01-23 Thread Andrew Geery
I've had a very similar problem with WAS 6.1 (basic functionality would
work but AJAX functionality did not).  The solution was simply to use the
Wicket servlet instead of the filter -- see
https://cwiki.apache.org/WICKET/websphere.html.  What made it hard to debug
was the fact that the Wicket filter implementation did work for aspects on
WAS, but it didn't work for AJAX calls.

HTH
Andrew

On Mon, Jan 23, 2012 at 12:23 PM, matteus matteu...@hotmail.com wrote:


 Yes, my application is running with the filter  Wicket Filter.

 --
 View this message in context:
 http://apache-wicket.1842946.n4.nabble.com/Wicket-websphere-7-tp4310810p4321364.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 webshere 7

2012-01-23 Thread Eric Hamel
We also had similar problems on WAS 6.1 and we also used Wicket Servlet to
mitigate our issues.

We've been preparing for an upgrade of our servers, mostly comparing
WebSphere 7 and WebSphere 8. V7 seems to behave the same as V6.1 whereas V8
seems to handle the Wicket Filter much better.

On Mon, Jan 23, 2012 at 1:49 PM, Andrew Geery andrew.ge...@gmail.comwrote:

 I've had a very similar problem with WAS 6.1 (basic functionality would
 work but AJAX functionality did not).  The solution was simply to use the
 Wicket servlet instead of the filter -- see
 https://cwiki.apache.org/WICKET/websphere.html.  What made it hard to
 debug
 was the fact that the Wicket filter implementation did work for aspects on
 WAS, but it didn't work for AJAX calls.

 HTH
 Andrew

 On Mon, Jan 23, 2012 at 12:23 PM, matteus matteu...@hotmail.com wrote:

 
  Yes, my application is running with the filter  Wicket Filter.
 
  --
  View this message in context:
 
 http://apache-wicket.1842946.n4.nabble.com/Wicket-websphere-7-tp4310810p4321364.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
 
 




-- 
Sent by Eric Hamel


Wicket webshere 7

2012-01-19 Thread matteus
Hi, I have a big problem with websphere and wicket because of several ajax
behavior that does not work when it is configured in webphere. Someone has
gone through some configuration problem with websphere wicket that could
help me? Being that we've set the property called
com.ibm.ws.webcontainer.invokefilterscompatibility and dont work. thanks.

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Wicket-webshere-7-tp4310810p4310810.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 webshere 7

2012-01-19 Thread Eric Hamel
Am I right to assume you're running with Wicket Filter ?


On Thu, Jan 19, 2012 at 12:51 PM, matteus matteu...@hotmail.com wrote:

 Hi, I have a big problem with websphere and wicket because of several ajax
 behavior that does not work when it is configured in webphere. Someone has
 gone through some configuration problem with websphere wicket that could
 help me? Being that we've set the property called
 com.ibm.ws.webcontainer.invokefilterscompatibility and dont work. thanks.

 --
 View this message in context:
 http://apache-wicket.1842946.n4.nabble.com/Wicket-webshere-7-tp4310810p4310810.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




-- 
Sent by Eric Hamel