Re: [Wicket-user] RC2 - still have javascript errors

2006-04-21 Thread Vincent Jenks
Oh, sorry, here's the whole thing.

  servlet
servlet-nameProductCatalogApp/servlet-name
servlet-classwicket.protocol.http.WicketServlet/servlet-class
init-param
  param-nameapplicationClassName/param-name
  param-valuecom.myapp.ProductCatalogApp/param-value
/init-param
load-on-startup1/load-on-startup
  /servlet
  servlet-mapping
servlet-nameProductCatalogApp/servlet-name
url-pattern/products/url-pattern
  /servlet-mapping

...obviously I need to change it to /products/* ??  I guess I must
have missed that in the transition doc, sorry!

On 4/20/06, Eelco Hillenius [EMAIL PROTECTED] wrote:
 I think Igor meant what the servlet-mapping element looks like. E.g.
 phonebook has:

 servlet-mapping
 servlet-namephonebook/servlet-name
 url-pattern/app/*/url-pattern
 /servlet-mapping

 if that would be

 servlet-mapping
 servlet-namephonebook/servlet-name
 url-pattern/app//url-pattern
 /servlet-mapping

 (without the *), package resources won't work.

 Eelco


 On 4/20/06, Vincent Jenks [EMAIL PROTECTED] wrote:
  servlet-classwicket.protocol.http.WicketServlet/servlet-class
 
  On 4/20/06, Igor Vaynberg [EMAIL PROTECTED] wrote:
   what is the servlet mapping you use for the wicket servlet?
  
   -Igor
  
  
  
   On 4/20/06, Vincent Jenks [EMAIL PROTECTED]  wrote:
404 not found
   
On 4/20/06, Johan Compagner  [EMAIL PROTECTED] wrote:
 and what does this link return?



   /MyApp/products/resources/wicket.markup.html.WebPage/cookies.js;jsessionid=8D5250BD41A597EBD63C695113E757DF

 johan



 On 4/20/06, Vincent Jenks [EMAIL PROTECTED] wrote:
 
  Yep, here's all the js stuff I see in the head:

 script type=text/javascript

   src=/MyApp/products/resources/wicket.markup.html.WebPage/cookies.js;jsessionid=8D5250BD41A597EBD63C695113E757DF/script
 script type=text/javascriptvar pagemapcookie =
 getWicketCookie('pm-null/MyAppProductCatalogApp');
 if(!pagemapcookie  pagemapcookie !=

   '1'){setWicketCookie('pm-null/MyAppProductCatalogApp',1);}
 else {document.location.href =

   '/MyApp/products;jsessionid=8D5250BD41A597EBD63C695113E757DF?wicket:bookmarkablePage=wicket-0:com.myapp.ui.ProductCatalog';}
 /script

 ...and in the body tag:

 body

   onUnLoad=deleteWicketCookie('pm-null/MyAppProductCatalogApp');

 On 4/20/06, Johan Compagner [EMAIL PROTECTED] wrote:
  how is that possible?
  don't you have a script like:
  script type=text/javascript
 

   src=/wicket/forminput/resources/wicket.markup.html.WebPage/cookies.js/script
 
  included in youre page?
 
 
  johan
 
 
  On 4/20/06, Vincent Jenks  [EMAIL PROTECTED]  wrote:
  
   Using Wicket 1.2RC2, I still get these javascript errors in both
  Firefox 1.5.0.2 and IE 6.0:
 
  deleteWicketCookie is not defined
  getWicketCookie is not defined
 
 
 
   ---
  Using Tomcat but need to do more? Need to support web services,
   security?
  Get stuff done quickly with pre-integrated technology to make your 
  job
  easier
  Download IBM WebSphere Application Server v.1.0.1 based on Apache
   Geronimo
 

   http://sel.as-us.falkag.net/sel?cmdlnkkid0709bid3057dat1642
  ___
  Wicket-user mailing list
  Wicket-user@lists.sourceforge.net
 
   https://lists.sourceforge.net/lists/listinfo/wicket-user
 
 


 ---

 Using Tomcat but need to do more? Need to support web services,
   security?
 Get stuff done quickly with pre-integrated technology to make your job
 easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache
   Geronimo

   http://sel.as-us.falkag.net/sel?cmdlnkkid0709bid3057dat1642
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net

   https://lists.sourceforge.net/lists/listinfo/wicket-user


   
   
---
Using Tomcat but need to do more? Need to support web services, 
security?
Get stuff done quickly with pre-integrated technology to make your job
   easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache 
Geronimo
   
   http://sel.as-us.falkag.net/sel?cmdlnkkid0709bid3057dat1642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user
   
  
  
 
 
  ---
  Using Tomcat but need to do more? Need to support web services, security?
  Get stuff done quickly with pre-integrated 

Re: [Wicket-user] RC2 - still have javascript errors

2006-04-21 Thread Vincent Jenks
Finally got around to putting the /* in the mapping and t's all good
now, thanks!

On 4/21/06, Vincent Jenks [EMAIL PROTECTED] wrote:
 Oh, sorry, here's the whole thing.

   servlet
 servlet-nameProductCatalogApp/servlet-name
 servlet-classwicket.protocol.http.WicketServlet/servlet-class
 init-param
   param-nameapplicationClassName/param-name
   param-valuecom.myapp.ProductCatalogApp/param-value
 /init-param
 load-on-startup1/load-on-startup
   /servlet
   servlet-mapping
 servlet-nameProductCatalogApp/servlet-name
 url-pattern/products/url-pattern
   /servlet-mapping

 ...obviously I need to change it to /products/* ??  I guess I must
 have missed that in the transition doc, sorry!

 On 4/20/06, Eelco Hillenius [EMAIL PROTECTED] wrote:
  I think Igor meant what the servlet-mapping element looks like. E.g.
  phonebook has:
 
  servlet-mapping
  servlet-namephonebook/servlet-name
  url-pattern/app/*/url-pattern
  /servlet-mapping
 
  if that would be
 
  servlet-mapping
  servlet-namephonebook/servlet-name
  url-pattern/app//url-pattern
  /servlet-mapping
 
  (without the *), package resources won't work.
 
  Eelco
 
 
  On 4/20/06, Vincent Jenks [EMAIL PROTECTED] wrote:
   servlet-classwicket.protocol.http.WicketServlet/servlet-class
  
   On 4/20/06, Igor Vaynberg [EMAIL PROTECTED] wrote:
what is the servlet mapping you use for the wicket servlet?
   
-Igor
   
   
   
On 4/20/06, Vincent Jenks [EMAIL PROTECTED]  wrote:
 404 not found

 On 4/20/06, Johan Compagner  [EMAIL PROTECTED] wrote:
  and what does this link return?
 
 
 
/MyApp/products/resources/wicket.markup.html.WebPage/cookies.js;jsessionid=8D5250BD41A597EBD63C695113E757DF
 
  johan
 
 
 
  On 4/20/06, Vincent Jenks [EMAIL PROTECTED] wrote:
  
   Yep, here's all the js stuff I see in the head:
 
  script type=text/javascript
 
src=/MyApp/products/resources/wicket.markup.html.WebPage/cookies.js;jsessionid=8D5250BD41A597EBD63C695113E757DF/script
  script type=text/javascriptvar pagemapcookie =
  getWicketCookie('pm-null/MyAppProductCatalogApp');
  if(!pagemapcookie  pagemapcookie !=
 
'1'){setWicketCookie('pm-null/MyAppProductCatalogApp',1);}
  else {document.location.href =
 
'/MyApp/products;jsessionid=8D5250BD41A597EBD63C695113E757DF?wicket:bookmarkablePage=wicket-0:com.myapp.ui.ProductCatalog';}
  /script
 
  ...and in the body tag:
 
  body
 
onUnLoad=deleteWicketCookie('pm-null/MyAppProductCatalogApp');
 
  On 4/20/06, Johan Compagner [EMAIL PROTECTED] wrote:
   how is that possible?
   don't you have a script like:
   script type=text/javascript
  
 
src=/wicket/forminput/resources/wicket.markup.html.WebPage/cookies.js/script
  
   included in youre page?
  
  
   johan
  
  
   On 4/20/06, Vincent Jenks  [EMAIL PROTECTED]  wrote:
   
Using Wicket 1.2RC2, I still get these javascript errors in both
   Firefox 1.5.0.2 and IE 6.0:
  
   deleteWicketCookie is not defined
   getWicketCookie is not defined
  
  
  
---
   Using Tomcat but need to do more? Need to support web services,
security?
   Get stuff done quickly with pre-integrated technology to make 
   your job
   easier
   Download IBM WebSphere Application Server v.1.0.1 based on Apache
Geronimo
  
 
http://sel.as-us.falkag.net/sel?cmdlnkkid0709bid3057dat1642
   ___
   Wicket-user mailing list
   Wicket-user@lists.sourceforge.net
  
https://lists.sourceforge.net/lists/listinfo/wicket-user
  
  
 
 
  ---
 
  Using Tomcat but need to do more? Need to support web services,
security?
  Get stuff done quickly with pre-integrated technology to make your 
  job
  easier
  Download IBM WebSphere Application Server v.1.0.1 based on Apache
Geronimo
 
http://sel.as-us.falkag.net/sel?cmdlnkkid0709bid3057dat1642
  ___
  Wicket-user mailing list
  Wicket-user@lists.sourceforge.net
 
https://lists.sourceforge.net/lists/listinfo/wicket-user
 
 


 ---
 Using Tomcat but need to do more? Need to support web services, 
 security?
 Get stuff done quickly with pre-integrated technology to make your job
easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache 
 Geronimo

http://sel.as-us.falkag.net/sel?cmdlnkkid0709bid3057dat1642
 ___
 Wicket-user mailing list
  

Re: [Wicket-user] RC2 - still have javascript errors

2006-04-21 Thread Gwyn Evans
Just as an aside, to the best of my knowledge, this isn't something
that's new/changed in 1.2, hence nothing in any transition notes -
this is been there right from the start, but maybe it's more apparent
now there tends to be more to Wicket than the basic servlet, if you
see what I mean.

/Gwyn

On 21/04/06, Vincent Jenks [EMAIL PROTECTED] wrote:
 Finally got around to putting the /* in the mapping and t's all good
 now, thanks!

 On 4/21/06, Vincent Jenks [EMAIL PROTECTED] wrote:
  Oh, sorry, here's the whole thing.
 
servlet
  servlet-nameProductCatalogApp/servlet-name
  servlet-classwicket.protocol.http.WicketServlet/servlet-class
  init-param
param-nameapplicationClassName/param-name
param-valuecom.myapp.ProductCatalogApp/param-value
  /init-param
  load-on-startup1/load-on-startup
/servlet
servlet-mapping
  servlet-nameProductCatalogApp/servlet-name
  url-pattern/products/url-pattern
/servlet-mapping
 
  ...obviously I need to change it to /products/* ??  I guess I must
  have missed that in the transition doc, sorry!


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid0709bid3057dat1642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] RC2 - still have javascript errors

2006-04-21 Thread Vincent Jenks
Interesting, I had never noticed it before and didn't get the error
while using 1.1.1.  I've only been using wicket for about 1.5 mo. so
I'm still a greenhorn.

On 4/21/06, Gwyn Evans [EMAIL PROTECTED] wrote:
 Just as an aside, to the best of my knowledge, this isn't something
 that's new/changed in 1.2, hence nothing in any transition notes -
 this is been there right from the start, but maybe it's more apparent
 now there tends to be more to Wicket than the basic servlet, if you
 see what I mean.

 /Gwyn

 On 21/04/06, Vincent Jenks [EMAIL PROTECTED] wrote:
  Finally got around to putting the /* in the mapping and t's all good
  now, thanks!
 
  On 4/21/06, Vincent Jenks [EMAIL PROTECTED] wrote:
   Oh, sorry, here's the whole thing.
  
 servlet
   servlet-nameProductCatalogApp/servlet-name
   servlet-classwicket.protocol.http.WicketServlet/servlet-class
   init-param
 param-nameapplicationClassName/param-name
 param-valuecom.myapp.ProductCatalogApp/param-value
   /init-param
   load-on-startup1/load-on-startup
 /servlet
 servlet-mapping
   servlet-nameProductCatalogApp/servlet-name
   url-pattern/products/url-pattern
 /servlet-mapping
  
   ...obviously I need to change it to /products/* ??  I guess I must
   have missed that in the transition doc, sorry!


 ---
 Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
 http://sel.as-us.falkag.net/sel?cmdlnkkid0709bid3057dat1642
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user



---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid0709bid3057dat1642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] RC2 - still have javascript errors

2006-04-20 Thread Vincent Jenks
Using Wicket 1.2RC2, I still get these javascript errors in both
Firefox 1.5.0.2 and IE 6.0:

deleteWicketCookie is not defined
getWicketCookie is not defined


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid0709bid3057dat1642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] RC2 - still have javascript errors

2006-04-20 Thread Johan Compagner
how is that possible?don't you have a script like:script type=text/_javascript_ 
src=/wicket/forminput/resources/wicket.markup.html.WebPage/cookies.js/scriptincluded in youre page?
johanOn 4/20/06, Vincent Jenks [EMAIL PROTECTED] wrote:
Using Wicket 1.2RC2, I still get these _javascript_ errors in bothFirefox 1.5.0.2 and IE 6.0:deleteWicketCookie is not definedgetWicketCookie is not defined---
Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easierDownload IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmdlnkkid0709bid3057dat1642___
Wicket-user mailing listWicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user



Re: [Wicket-user] RC2 - still have javascript errors

2006-04-20 Thread Juergen Donnerstag
What was the bug number again? Opening a bug in sourceforge is the
safest way to make sure that nothing gets forgotten and junit tests
are helpful for us to reproduce the error and to make sure it doesn't
come back in new releases. Running wicket-example, cdapp and the
phonebook on IE6.0 and FF 1.5.02 doesn't produce any error on my side.

What do need setWicketCookie and deleteWicketCookie for? What is the
use case? Apologize that I'm not reading every mail anymore, but there
are just to many. Has there been a discussion on the use case already?
RFE?

Juergen

On 4/20/06, Vincent Jenks [EMAIL PROTECTED] wrote:
 Using Wicket 1.2RC2, I still get these javascript errors in both
 Firefox 1.5.0.2 and IE 6.0:

 deleteWicketCookie is not defined
 getWicketCookie is not defined


 ---
 Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
 http://sel.as-us.falkag.net/sel?cmdlnkkid0709bid3057dat1642
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user



---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid0709bid3057dat1642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] RC2 - still have javascript errors

2006-04-20 Thread Vincent Jenks
Yep, here's all the js stuff I see in the head:

script type=text/javascript
src=/MyApp/products/resources/wicket.markup.html.WebPage/cookies.js;jsessionid=8D5250BD41A597EBD63C695113E757DF/script
script type=text/javascriptvar pagemapcookie =
getWicketCookie('pm-null/MyAppProductCatalogApp');
if(!pagemapcookie  pagemapcookie !=
'1'){setWicketCookie('pm-null/MyAppProductCatalogApp',1);}
else {document.location.href =
'/MyApp/products;jsessionid=8D5250BD41A597EBD63C695113E757DF?wicket:bookmarkablePage=wicket-0:com.myapp.ui.ProductCatalog';}
/script

...and in the body tag:

body onUnLoad=deleteWicketCookie('pm-null/MyAppProductCatalogApp');

On 4/20/06, Johan Compagner [EMAIL PROTECTED] wrote:
 how is that possible?
 don't you have a script like:
 script type=text/javascript
 src=/wicket/forminput/resources/wicket.markup.html.WebPage/cookies.js/script

 included in youre page?


 johan


 On 4/20/06, Vincent Jenks [EMAIL PROTECTED] wrote:
 
  Using Wicket 1.2RC2, I still get these javascript errors in both
 Firefox 1.5.0.2 and IE 6.0:

 deleteWicketCookie is not defined
 getWicketCookie is not defined


 ---
 Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job
 easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
 http://sel.as-us.falkag.net/sel?cmdlnkkid0709bid3057dat1642
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user




---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid0709bid3057dat1642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] RC2 - still have javascript errors

2006-04-20 Thread Johan Compagner
and what does this link return?/MyApp/products/resources/wicket.markup.html.WebPage/cookies.js;jsessionid=8D5250BD41A597EBD63C695113E757DFjohanOn 4/20/06, 
Vincent Jenks [EMAIL PROTECTED] wrote:
Yep, here's all the js stuff I see in the head:script type=text/_javascript_src=""
script type=text/_javascript_var pagemapcookie =getWicketCookie('pm-null/MyAppProductCatalogApp');if(!pagemapcookie  pagemapcookie !='1'){setWicketCookie('pm-null/MyAppProductCatalogApp',1);}
else {document.location.href ="">'/MyApp/products;jsessionid=8D5250BD41A597EBD63C695113E757DF?wicket:bookmarkablePage=wicket-0:com.myapp.ui.ProductCatalog';}/script...and in the body tag:body 
On 4/20/06, Johan Compagner [EMAIL PROTECTED] wrote: how is that possible? don't you have a script like: script type=text/_javascript_
 src=""> included in youre page? johan On 4/20/06, Vincent Jenks 
[EMAIL PROTECTED] wrote: Using Wicket 1.2RC2, I still get these _javascript_ errors in both Firefox 1.5.0.2
 and IE 6.0: deleteWicketCookie is not defined getWicketCookie is not defined --- Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo 
http://sel.as-us.falkag.net/sel?cmdlnkkid0709bid3057dat1642 ___ Wicket-user mailing list 
Wicket-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-user---
Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easierDownload IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmdlnkkid0709bid3057dat1642___
Wicket-user mailing listWicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user



Re: [Wicket-user] RC2 - still have javascript errors

2006-04-20 Thread Vincent Jenks
404 not found

On 4/20/06, Johan Compagner [EMAIL PROTECTED] wrote:
 and what does this link return?


 /MyApp/products/resources/wicket.markup.html.WebPage/cookies.js;jsessionid=8D5250BD41A597EBD63C695113E757DF

 johan



 On 4/20/06, Vincent Jenks [EMAIL PROTECTED] wrote:
 
  Yep, here's all the js stuff I see in the head:

 script type=text/javascript
 src=/MyApp/products/resources/wicket.markup.html.WebPage/cookies.js;jsessionid=8D5250BD41A597EBD63C695113E757DF/script
 script type=text/javascriptvar pagemapcookie =
 getWicketCookie('pm-null/MyAppProductCatalogApp');
 if(!pagemapcookie  pagemapcookie !=
 '1'){setWicketCookie('pm-null/MyAppProductCatalogApp',1);}
 else {document.location.href =
 '/MyApp/products;jsessionid=8D5250BD41A597EBD63C695113E757DF?wicket:bookmarkablePage=wicket-0:com.myapp.ui.ProductCatalog';}
 /script

 ...and in the body tag:

 body
 onUnLoad=deleteWicketCookie('pm-null/MyAppProductCatalogApp');

 On 4/20/06, Johan Compagner [EMAIL PROTECTED] wrote:
  how is that possible?
  don't you have a script like:
  script type=text/javascript
 
 src=/wicket/forminput/resources/wicket.markup.html.WebPage/cookies.js/script
 
  included in youre page?
 
 
  johan
 
 
  On 4/20/06, Vincent Jenks  [EMAIL PROTECTED] wrote:
  
   Using Wicket 1.2RC2, I still get these javascript errors in both
  Firefox 1.5.0.2 and IE 6.0:
 
  deleteWicketCookie is not defined
  getWicketCookie is not defined
 
 
  ---
  Using Tomcat but need to do more? Need to support web services, security?
  Get stuff done quickly with pre-integrated technology to make your job
  easier
  Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
 
 http://sel.as-us.falkag.net/sel?cmdlnkkid0709bid3057dat1642
  ___
  Wicket-user mailing list
  Wicket-user@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wicket-user
 
 


 ---

 Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job
 easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
 http://sel.as-us.falkag.net/sel?cmdlnkkid0709bid3057dat1642
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user




---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid0709bid3057dat1642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] RC2 - still have javascript errors

2006-04-20 Thread Igor Vaynberg
what is the servlet mapping you use for the wicket servlet?-IgorOn 4/20/06, Vincent Jenks [EMAIL PROTECTED]
 wrote:404 not foundOn 4/20/06, Johan Compagner 
[EMAIL PROTECTED] wrote: and what does this link return? /MyApp/products/resources/wicket.markup.html.WebPage/cookies.js;jsessionid=8D5250BD41A597EBD63C695113E757DF johan
 On 4/20/06, Vincent Jenks [EMAIL PROTECTED] wrote: Yep, here's all the js stuff I see in the head:
 script type=text/_javascript_ src=""> script type=text/_javascript_var pagemapcookie =
 getWicketCookie('pm-null/MyAppProductCatalogApp'); if(!pagemapcookie  pagemapcookie != '1'){setWicketCookie('pm-null/MyAppProductCatalogApp',1);} else {document.location.href ="">
 '/MyApp/products;jsessionid=8D5250BD41A597EBD63C695113E757DF?wicket:bookmarkablePage=wicket-0:com.myapp.ui.ProductCatalog';} /script ...and in the body tag: body
 > On 4/20/06, Johan Compagner [EMAIL PROTECTED] wrote:  how is that possible?
  don't you have a script like:  script type=text/_javascript_  src=""
   included in youre page?johanOn 4/20/06, Vincent Jenks  [EMAIL PROTECTED]
 wrote:   Using Wicket 1.2RC2, I still get these _javascript_ errors in both  Firefox 1.5.0.2 and IE 6.0:   deleteWicketCookie is not defined
  getWicketCookie is not defined---  Using Tomcat but need to do more? Need to support web services, security?
  Get stuff done quickly with pre-integrated technology to make your job  easier  Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo  
http://sel.as-us.falkag.net/sel?cmdlnkkid0709bid3057dat1642  ___  Wicket-user mailing list  
Wicket-user@lists.sourceforge.net  https://lists.sourceforge.net/lists/listinfo/wicket-user  
 --- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job
 easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmdlnkkid0709bid3057dat1642
 ___ Wicket-user mailing list Wicket-user@lists.sourceforge.net 
https://lists.sourceforge.net/lists/listinfo/wicket-user---Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easierDownload IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmdlnkkid0709bid3057dat1642___Wicket-user mailing listWicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] RC2 - still have javascript errors

2006-04-20 Thread Vincent Jenks
servlet-classwicket.protocol.http.WicketServlet/servlet-class

On 4/20/06, Igor Vaynberg [EMAIL PROTECTED] wrote:
 what is the servlet mapping you use for the wicket servlet?

 -Igor



 On 4/20/06, Vincent Jenks [EMAIL PROTECTED]  wrote:
  404 not found
 
  On 4/20/06, Johan Compagner  [EMAIL PROTECTED] wrote:
   and what does this link return?
  
  
  
 /MyApp/products/resources/wicket.markup.html.WebPage/cookies.js;jsessionid=8D5250BD41A597EBD63C695113E757DF
  
   johan
  
  
  
   On 4/20/06, Vincent Jenks [EMAIL PROTECTED] wrote:
   
Yep, here's all the js stuff I see in the head:
  
   script type=text/javascript
  
 src=/MyApp/products/resources/wicket.markup.html.WebPage/cookies.js;jsessionid=8D5250BD41A597EBD63C695113E757DF/script
   script type=text/javascriptvar pagemapcookie =
   getWicketCookie('pm-null/MyAppProductCatalogApp');
   if(!pagemapcookie  pagemapcookie !=
  
 '1'){setWicketCookie('pm-null/MyAppProductCatalogApp',1);}
   else {document.location.href =
  
 '/MyApp/products;jsessionid=8D5250BD41A597EBD63C695113E757DF?wicket:bookmarkablePage=wicket-0:com.myapp.ui.ProductCatalog';}
   /script
  
   ...and in the body tag:
  
   body
  
 onUnLoad=deleteWicketCookie('pm-null/MyAppProductCatalogApp');
  
   On 4/20/06, Johan Compagner [EMAIL PROTECTED] wrote:
how is that possible?
don't you have a script like:
script type=text/javascript
   
  
 src=/wicket/forminput/resources/wicket.markup.html.WebPage/cookies.js/script
   
included in youre page?
   
   
johan
   
   
On 4/20/06, Vincent Jenks  [EMAIL PROTECTED]  wrote:

 Using Wicket 1.2RC2, I still get these javascript errors in both
Firefox 1.5.0.2 and IE 6.0:
   
deleteWicketCookie is not defined
getWicketCookie is not defined
   
   
   
 ---
Using Tomcat but need to do more? Need to support web services,
 security?
Get stuff done quickly with pre-integrated technology to make your job
easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache
 Geronimo
   
  
 http://sel.as-us.falkag.net/sel?cmdlnkkid0709bid3057dat1642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
   
 https://lists.sourceforge.net/lists/listinfo/wicket-user
   
   
  
  
   ---
  
   Using Tomcat but need to do more? Need to support web services,
 security?
   Get stuff done quickly with pre-integrated technology to make your job
   easier
   Download IBM WebSphere Application Server v.1.0.1 based on Apache
 Geronimo
  
 http://sel.as-us.falkag.net/sel?cmdlnkkid0709bid3057dat1642
   ___
   Wicket-user mailing list
   Wicket-user@lists.sourceforge.net
  
 https://lists.sourceforge.net/lists/listinfo/wicket-user
  
  
 
 
  ---
  Using Tomcat but need to do more? Need to support web services, security?
  Get stuff done quickly with pre-integrated technology to make your job
 easier
  Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
 
 http://sel.as-us.falkag.net/sel?cmdlnkkid0709bid3057dat1642
  ___
  Wicket-user mailing list
  Wicket-user@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wicket-user
 




---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid0709bid3057dat1642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] RC2 - still have javascript errors

2006-04-20 Thread Igor Vaynberg
i was talking about the servlet mapping...whats between your servlet-mapping tags?On 4/20/06, Vincent Jenks 
[EMAIL PROTECTED] wrote:servlet-classwicket.protocol.http.WicketServlet
/servlet-classOn 4/20/06, Igor Vaynberg [EMAIL PROTECTED] wrote: what is the servlet mapping you use for the wicket servlet? -Igor
 On 4/20/06, Vincent Jenks [EMAIL PROTECTED]  wrote:  404 not found   On 4/20/06, Johan Compagner  
[EMAIL PROTECTED] wrote:   and what does this link return?   /MyApp/products/resources/wicket.markup.html.WebPage/cookies.js;jsessionid=8D5250BD41A597EBD63C695113E757DF
 johan On 4/20/06, Vincent Jenks [EMAIL PROTECTED] wrote:
 Yep, here's all the js stuff I see in the head: script type=text/_javascript_   src=""
   script type=text/_javascript_var pagemapcookie =   getWicketCookie('pm-null/MyAppProductCatalogApp');   if(!pagemapcookie  pagemapcookie !=
   '1'){setWicketCookie('pm-null/MyAppProductCatalogApp',1);}   else {document.location.href ="">   '/MyApp/products;jsessionid=8D5250BD41A597EBD63C695113E757DF?wicket:bookmarkablePage=wicket-0:
com.myapp.ui.ProductCatalog';}   /script ...and in the body tag: body   
 On 4/20/06, Johan Compagner [EMAIL PROTECTED] wrote:how is that possible?don't you have a script like:
script type=text/_javascript_  src="">
   included in youre page?  johan  On 4/20/06, Vincent Jenks  
[EMAIL PROTECTED]  wrote:   Using Wicket 1.2RC2, I still get these _javascript_ errors in bothFirefox 
1.5.0.2 and IE 6.0:   deleteWicketCookie is not definedgetWicketCookie is not defined  
---Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job
easierDownload IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo  
http://sel.as-us.falkag.net/sel?cmdlnkkid0709bid3057dat1642___Wicket-user mailing list
Wicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user
 --- Using Tomcat but need to do more? Need to support web services,
 security?   Get stuff done quickly with pre-integrated technology to make your job   easier   Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
   http://sel.as-us.falkag.net/sel?cmdlnkkid0709bid3057dat1642   ___
   Wicket-user mailing list   Wicket-user@lists.sourceforge.net   
https://lists.sourceforge.net/lists/listinfo/wicket-user---  Using Tomcat but need to do more? Need to support web services, security?
  Get stuff done quickly with pre-integrated technology to make your job easier  Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo  
http://sel.as-us.falkag.net/sel?cmdlnkkid0709bid3057dat1642  ___  Wicket-user mailing list  
Wicket-user@lists.sourceforge.net  https://lists.sourceforge.net/lists/listinfo/wicket-user ---
Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easierDownload IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmdlnkkid0709bid3057dat1642___
Wicket-user mailing listWicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user



Re: [Wicket-user] RC2 - still have javascript errors

2006-04-20 Thread Eelco Hillenius
I think Igor meant what the servlet-mapping element looks like. E.g.
phonebook has:

servlet-mapping
servlet-namephonebook/servlet-name
url-pattern/app/*/url-pattern
/servlet-mapping

if that would be

servlet-mapping
servlet-namephonebook/servlet-name
url-pattern/app//url-pattern
/servlet-mapping

(without the *), package resources won't work.

Eelco


On 4/20/06, Vincent Jenks [EMAIL PROTECTED] wrote:
 servlet-classwicket.protocol.http.WicketServlet/servlet-class

 On 4/20/06, Igor Vaynberg [EMAIL PROTECTED] wrote:
  what is the servlet mapping you use for the wicket servlet?
 
  -Igor
 
 
 
  On 4/20/06, Vincent Jenks [EMAIL PROTECTED]  wrote:
   404 not found
  
   On 4/20/06, Johan Compagner  [EMAIL PROTECTED] wrote:
and what does this link return?
   
   
   
  /MyApp/products/resources/wicket.markup.html.WebPage/cookies.js;jsessionid=8D5250BD41A597EBD63C695113E757DF
   
johan
   
   
   
On 4/20/06, Vincent Jenks [EMAIL PROTECTED] wrote:

 Yep, here's all the js stuff I see in the head:
   
script type=text/javascript
   
  src=/MyApp/products/resources/wicket.markup.html.WebPage/cookies.js;jsessionid=8D5250BD41A597EBD63C695113E757DF/script
script type=text/javascriptvar pagemapcookie =
getWicketCookie('pm-null/MyAppProductCatalogApp');
if(!pagemapcookie  pagemapcookie !=
   
  '1'){setWicketCookie('pm-null/MyAppProductCatalogApp',1);}
else {document.location.href =
   
  '/MyApp/products;jsessionid=8D5250BD41A597EBD63C695113E757DF?wicket:bookmarkablePage=wicket-0:com.myapp.ui.ProductCatalog';}
/script
   
...and in the body tag:
   
body
   
  onUnLoad=deleteWicketCookie('pm-null/MyAppProductCatalogApp');
   
On 4/20/06, Johan Compagner [EMAIL PROTECTED] wrote:
 how is that possible?
 don't you have a script like:
 script type=text/javascript

   
  src=/wicket/forminput/resources/wicket.markup.html.WebPage/cookies.js/script

 included in youre page?


 johan


 On 4/20/06, Vincent Jenks  [EMAIL PROTECTED]  wrote:
 
  Using Wicket 1.2RC2, I still get these javascript errors in both
 Firefox 1.5.0.2 and IE 6.0:

 deleteWicketCookie is not defined
 getWicketCookie is not defined



  ---
 Using Tomcat but need to do more? Need to support web services,
  security?
 Get stuff done quickly with pre-integrated technology to make your job
 easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache
  Geronimo

   
  http://sel.as-us.falkag.net/sel?cmdlnkkid0709bid3057dat1642
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net

  https://lists.sourceforge.net/lists/listinfo/wicket-user


   
   
---
   
Using Tomcat but need to do more? Need to support web services,
  security?
Get stuff done quickly with pre-integrated technology to make your job
easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache
  Geronimo
   
  http://sel.as-us.falkag.net/sel?cmdlnkkid0709bid3057dat1642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
   
  https://lists.sourceforge.net/lists/listinfo/wicket-user
   
   
  
  
   ---
   Using Tomcat but need to do more? Need to support web services, security?
   Get stuff done quickly with pre-integrated technology to make your job
  easier
   Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
  
  http://sel.as-us.falkag.net/sel?cmdlnkkid0709bid3057dat1642
   ___
   Wicket-user mailing list
   Wicket-user@lists.sourceforge.net
   https://lists.sourceforge.net/lists/listinfo/wicket-user
  
 
 


 ---
 Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
 http://sel.as-us.falkag.net/sel?cmdlnkkid0709bid3057dat1642
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user



---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid0709bid3057dat1642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net