You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@wicket.apache.org by matteus <ma...@hotmail.com> on 2012/01/19 18:51:07 UTC

Wicket webshere 7

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-unsubscribe@wicket.apache.org
For additional commands, e-mail: users-help@wicket.apache.org


Re: Wicket webshere 7

Posted by matteus <ma...@hotmail.com>.
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-name>wicket.application</servlet-name>
		
<servlet-class>org.apache.wicket.protocol.http.WicketServlet</servlet-class>
			<init-param>
				<param-name>applicationClassName</param-name>
				<param-value>myApplication</param-value>
			</init-param>
		</servlet>

<servlet-mapping>
			<servlet-name>wicket.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-unsubscribe@wicket.apache.org
For additional commands, e-mail: users-help@wicket.apache.org


Re: Wicket webshere 7

Posted by James Carman <jc...@carmanconsulting.com>.
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" <wi...@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 <ma...@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-unsubscribe@wicket.apache.org
> > For additional commands, e-mail: users-help@wicket.apache.org
> >
>

Re: Wicket webshere 7

Posted by Geoff Lancaster <wi...@geofflancaster.com>.
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 <ma...@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-unsubscribe@wicket.apache.org
> For additional commands, e-mail: users-help@wicket.apache.org
> 

Re: Wicket webshere 7

Posted by Eric Hamel <da...@gmail.com>.
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 <an...@gmail.com>wrote:

> 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 <ma...@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-unsubscribe@wicket.apache.org
> > For additional commands, e-mail: users-help@wicket.apache.org
> >
> >
>



-- 
Sent by Eric Hamel

Re: Wicket webshere 7

Posted by Andrew Geery <an...@gmail.com>.
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 <ma...@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-unsubscribe@wicket.apache.org
> For additional commands, e-mail: users-help@wicket.apache.org
>
>

Re: Wicket webshere 7

Posted by matteus <ma...@hotmail.com>.
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-unsubscribe@wicket.apache.org
For additional commands, e-mail: users-help@wicket.apache.org


Re: Wicket webshere 7

Posted by Eric Hamel <da...@gmail.com>.
Am I right to assume you're running with Wicket Filter ?


On Thu, Jan 19, 2012 at 12:51 PM, matteus <ma...@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-unsubscribe@wicket.apache.org
> For additional commands, e-mail: users-help@wicket.apache.org
>
>


-- 
Sent by Eric Hamel