Re: SV: applet in wicket .. exception thrown ...

2012-11-22 Thread venkat
Hi, Am in similar situation, where i have an applet which takes two parameters and in my wicket web page thereis a link when user clicks on that link i need to display this applet. could you please share how you have created the applet object and passed the parameters and displayed the applet. I

SV: applet in wicket .. exception thrown ...

2009-12-21 Thread Wilhelmsen Tor Iver
Problem adding an applet to wicket still remains the same.. can some 1 help 1) Be aware that applets are not loaded from WEB-INF/classes, but it seems you know this. 2) The class attribute value should not end in .class since that can make some browsers try to load HelloWorld.class.class

Re: SV: applet in wicket .. exception thrown ...

2009-12-21 Thread local_shamil
should i create a package under WEBAPP called Class and then add the applet.class file there ??? but still i am getting a NOCLASSFOUND exception ... Wilhelmsen Tor Iver wrote: Problem adding an applet to wicket still remains the same.. can some 1 help 1) Be aware that applets

Re: SV: applet in wicket .. exception thrown ...

2009-12-21 Thread local_shamil
This is the exact error message that i get Java Plug-in 1.6.0_10 Using JRE version 1.6.0_10 Java HotSpot(TM) Client VM User home directory = C:\Documents and Settings\mohamed.s c: clear console window f: finalize objects on finalization

Re: SV: applet in wicket .. exception thrown ...

2009-12-21 Thread James Carman
Try using the correct package: code=com.mycompany.HelloWorld On Mon, Dec 21, 2009 at 6:13 AM, local_shamil shaena...@gmail.com wrote: --- load: class /myproject/src/main/webapp/Class/HelloWorld not found. java.lang.ClassNotFoundException:

Re: SV: applet in wicket .. exception thrown ...

2009-12-21 Thread local_shamil
this was my applet tag in HTML applet code=HelloWorld.class width=150 height=25 / and i had it as this applet code=com.mycompany.HelloWorld width=150 height=25 / still i get the NOCLASS FOUND EXCEPTION James Carman-3 wrote: Try using the correct package:

Re: SV: applet in wicket .. exception thrown ...

2009-12-21 Thread James Carman
You need to make sure your HelloWorld.class file is in src/main/webapp/com/mycompany On Mon, Dec 21, 2009 at 9:13 AM, local_shamil shaena...@gmail.com wrote: this was my applet tag in HTML applet code=HelloWorld.class width=150 height=25 / and i had it as this applet

Re: SV: applet in wicket .. exception thrown ...

2009-12-21 Thread local_shamil
Yeah it worked !!! thanks alot every 1 ... and what might be the reason for this. ? why do v have to insert the applet.class file inside a package ?? James Carman-3 wrote: You need to make sure your HelloWorld.class file is in src/main/webapp/com/mycompany On Mon, Dec 21, 2009 at 9:13

Re: SV: applet in wicket .. exception thrown ...

2009-12-21 Thread James Carman
You don't have to. It was already in a package. I opened up the class file to see the package declaration and it was declared to be in package com.mycompany for some reason (perhaps a quickstart?) On Mon, Dec 21, 2009 at 10:08 AM, local_shamil shaena...@gmail.com wrote: Yeah it worked !!!

Re: SV: applet in wicket .. exception thrown ...

2009-12-21 Thread local_shamil
Oh yeah it was a quick start ... Thanks loadz James Carman-3 wrote: You don't have to. It was already in a package. I opened up the class file to see the package declaration and it was declared to be in package com.mycompany for some reason (perhaps a quickstart?) On Mon, Dec 21,