Re: Wicket 6.0.0 + Netbeans + Atmosphere

2012-08-28 Thread Mats
That is correct...

I now tried to add some stuff in my web.xml and include the atmosphere.xml
from the example files... but I'm probaly still doing something wrong
---> SEVERE: failed to initialize atmosphere framework

And probably I should try to include the same jars as in the example
project...

So I think i vill give this up for the moment

This is my web.xml


http://java.sun.com/xml/ns/javaee";
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd";>

WicketApplication
   
org.apache.wicket.protocol.http.WicketFilter

applicationClassName
asterix.webui.WebUI


configuration
deployment



WicketApplication
/wicket/*



30






AtmosphereApplication
org.atmosphere.cpr.AtmosphereServlet

applicationClassName
asterix.webui.WebUI


org.atmosphere.useWebSocket
true


org.atmosphere.useNative
true


   
org.atmosphere.cpr.CometSupport.maxInactiveActivity
3


filterMappingUrlPattern
/atmosphere/*


   
org.atmosphere.websocket.WebSocketProtocol
   
org.atmosphere.websocket.protocol.EchoProtocol

1


AtmosphereApplication
/atmosphere/*



This is the atmosphere.xml





 




--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Wicket-6-0-0-Netbeans-Atmosphere-tp4651521p4651527.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 6.0.0 + Netbeans + Atmosphere

2012-08-27 Thread Emond Papegaaij
You probably did not setup Atmosphere. Wicket-Atmosphere requires Atmosphere 
to be available in your web application. Please consult the documentation of 
Atmosphere for instructions. You can also take a look at wicket-examples 
(especially web.xml and atmosphere.xml), which includes a working Wicket-
Atmosphere example.

Best regards,
Emond

On Monday 27 August 2012 00:25:44 Mats wrote:
> Hi,
> 
> I just tried to get Atmosphere up and running in Wicket 6.0.0-beta3 using
> Netbeans 7.2...
> 
> I have just added the jars needed one by one. Still I get some runtime error
> at startup;
> 
>   @Override
>   public void init() {
> super.init();
> eventBus = new EventBus(this);  < SEVERE:
> WebModule[/WebUI_2]PWC1270: Exception starting filter WicketApplication ...
>   }
> 
> So, my question is; *Exactly what jars do I need to include in my project?*
> I'm using NetBeans with Glassfish 3.1.2
> 
> This is the included jars so far...
> http://apache-wicket.1842946.n4.nabble.com/file/n4651521/jars.png
> 
> Anyone that could help me?
> 
> 
> 
> 
> 
> --
> View this message in context:
> http://apache-wicket.1842946.n4.nabble.com/Wicket-6-0-0-Netbeans-Atmosphere
> -tp4651521.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

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



Re: Wicket 6.0.0 + Netbeans + Atmosphere

2012-08-27 Thread Martin Grigorov
Hi,

There must be a more detailed exception in the logs explaining what
exactly is the problem.

There were several fixes to wicket-atmosphere since beta3. Create a
quickstart with 6.0-SNAPSHOT from
http://wicket.apache.org/start/quickstart.html and then add your
Atmosphere related code.
Wicket 6.0.0 is being voted and most likely will be released in the
next few days.

On Mon, Aug 27, 2012 at 9:25 AM, Mats  wrote:
> Hi,
>
> I just tried to get Atmosphere up and running in Wicket 6.0.0-beta3 using
> Netbeans 7.2...
>
> I have just added the jars needed one by one. Still I get some runtime error
> at startup;
>
>   @Override
>   public void init() {
> super.init();
> eventBus = new EventBus(this);  < SEVERE:
> WebModule[/WebUI_2]PWC1270: Exception starting filter WicketApplication ...
>   }
>
> So, my question is; *Exactly what jars do I need to include in my project?*
> I'm using NetBeans with Glassfish 3.1.2
>
> This is the included jars so far...
> http://apache-wicket.1842946.n4.nabble.com/file/n4651521/jars.png
>
> Anyone that could help me?
>
>
>
>
>
> --
> View this message in context: 
> http://apache-wicket.1842946.n4.nabble.com/Wicket-6-0-0-Netbeans-Atmosphere-tp4651521.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
>



-- 
Martin Grigorov
jWeekend
Training, Consulting, Development
http://jWeekend.com

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



Wicket 6.0.0 + Netbeans + Atmosphere

2012-08-27 Thread Mats
Hi,

I just tried to get Atmosphere up and running in Wicket 6.0.0-beta3 using
Netbeans 7.2...

I have just added the jars needed one by one. Still I get some runtime error
at startup;

  @Override
  public void init() {
super.init();
eventBus = new EventBus(this);  < SEVERE:
WebModule[/WebUI_2]PWC1270: Exception starting filter WicketApplication ...
  }

So, my question is; *Exactly what jars do I need to include in my project?*
I'm using NetBeans with Glassfish 3.1.2

This is the included jars so far...
http://apache-wicket.1842946.n4.nabble.com/file/n4651521/jars.png 

Anyone that could help me?





--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Wicket-6-0-0-Netbeans-Atmosphere-tp4651521.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