Re: [Wicket-user] Adding more roles to wicket-auth-roles
Hi Matt, I could chip in some assistance here if you wish. So far I have been able to integrate this roles model with acegi, of course I cannot share the code per se, but I could extract some basic examples of how we approached it. Be warned that it may not be the most elegant solution, but it could be a start or basis for discussion. De. Matt Welch wrote: > >>From my perspective, what would be most useful would be some documentation > beyond the auth-roles example regarding implementing custom authentication > and authorization schemes. Now that I have some experience, perhaps I'll > take a stab at that myself, however I'm still completely new to Wicket, so > I'd really appreciate some oversight and review to correct my mistakes > once > I have something written. Is the wiki is the right place for this? Any > particular section of the wiki? > > Matt > > > On 2/11/07, Jonathan Locke <[EMAIL PROTECTED]> wrote: >> >> >> >> yeah. i hear ya and i agree in general. but if there i something simple >> and straightforward we could do to make the existing code more broadly >> applicable or extensible somehow, why not at least put in an RFE to >> consider >> it? >> >> >> igor.vaynberg wrote: >> > >> > i dont know if its worth doing this. the truth of the matter is that >> most >> > apps have very different authorization schemes. i think what you will >> end >> > up >> > doing is creating something so generic it is convoluted, take a look at >> > acegi - they tried to do that. i think we are better off with a concise >> > and >> > simple example of a specific authorization scenario that will give our >> > users >> > ideas on how to build their own. >> > >> > -igor >> > >> > >> > On 2/11/07, Jonathan Locke <[EMAIL PROTECTED]> wrote: >> >> >> >> >> >> >> >> it's been a long time since i worked on this code, so i don't recall >> the >> >> details that well. if there are specific things we could do to make >> >> wicket-auth-roles more reusable right out of the box, i think we >> should >> >> consider them... please feel free to file an RFE if you have a >> specific >> >> idea >> >> of what would be good here. >> >> >> >> >> >> Matt Welch wrote: >> >> > >> >> > Well, yes(and I could certainly be making this harder than it really >> >> is) >> >> > but >> >> > that doesn't seem to alleviate the issue with all of the classes in >> >> that >> >> > use >> >> > the Roles class explicitly. >> >> > >> >> > In any case, I took Igor's suggestion and used the great work in >> >> > wicket-auth-roles as a guide and created something more specific to >> our >> >> > project's exact needs. It was a good learning experience for me to >> >> write >> >> > some of my own annotation interfaces and I ended up with something >> that >> >> > fits >> >> > our domain model well. >> >> > >> >> > On 2/11/07, Jonathan Locke <[EMAIL PROTECTED]> wrote: >> >> >> >> >> >> >> >> >> >> >> >> Well, yes. ADMIN and USER are just string constants of no >> particular >> >> >> significance. You can use any strings you want without changing >> the >> >> >> source >> >> >> code. >> >> >> >> >> > >> >> > >> >> >> - >> >> > 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=lnk&kid=120709&bid=263057&dat=121642 >> >> > ___ >> >> > Wicket-user mailing list >> >> > Wicket-user@lists.sourceforge.net >> >> > https://lists.sourceforge.net/lists/listinfo/wicket-user >> >> > >> >> > >> >> >> >> -- >> >> View this message in context: >> >> >> http://www.nabble.com/Adding-more-roles-to-wicket-auth-roles-tf3204288.html#a8919115 >> >> Sent from the Wicket - User mailing list archive at Nabble.com. >> >> >> >> >> >> >> - >> >> 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=lnk&kid=120709&bid=263057&dat=121642 >> >> ___ >> >> 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.n
Re: [Wicket-user] VOTE on wicket:component
Stability and consistency is paramount in a good framework - delete. Jonathan Locke wrote: > > > Our Wiki describes the wicket:component tag as follows: > > " - Creates a Wicket component on the fly. Needs a class > attribute. Though this has been in wicket for a long time, it is still > kind of an unsupported feature, as most of the core developers believe > that this may lead to misuse of the framework. Before heavily relying on > this feature, you might want to contact the user list to discuss > alternative strategies." > > It's unclear to me that anyone is using this. The utility is limited and > unimportant. And for anyone creating tooling support for wicket, this > will be a tripping point. I can't see any good reason to keep this > feature as it is a way to instantiate a component in the markup and might > server as the beginning of a bunch of requests to add component > configuration or other code logic where we should only have nice clean > markup. > > VOTE: > > [ ] Delete this unimportant and generally unsupported feature > [ ] Keep , but define its limits, document it on the > wiki as fully supported and commit to supporting it in the future > > > > -- View this message in context: http://www.nabble.com/VOTE-on-wicket%3Acomponent-tf3221780.html#a8967701 Sent from the Wicket - User mailing list archive at Nabble.com. - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV ___ Wicket-user mailing list Wicket-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-user
[Wicket-user] AjaxFallbackDefaultDataTable (2.0) - how to update table when item is added or deleted
Hello, I know that there must be an easy way to do this, but I have not been able to figured it out os far, and there are no examples that I could find. I would like to know how you can update the AjaxFallbackDefaultDataTable in 2.0, when the underlying data has changed, such as in a delete or add operation. So far I have tried updating the table through the standard target mechanism we use for other AJAX components in Wicket, however no joy so far. I have also tried calling the "modelChanged()" method on the table, still no effect. I could replace the whole table, but that seems a bit draconian, and would defeat the purpose of using AJAX in the first place. The only thing I have not tried is targeting each column of the table individually. Thanks in advance for all assistance. De. -- View this message in context: http://www.nabble.com/AjaxFallbackDefaultDataTable-%282.0%29---how-to-update-table-when-item-is-added-or-deleted-tf3228031.html#a8967651 Sent from the Wicket - User mailing list archive at Nabble.com. - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV ___ Wicket-user mailing list Wicket-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-user
[Wicket-user] java.lang.NoSuchMethodError: wicket.util.string.Strings.escapeMarkup(Ljava/lang/String; ZZ)Ljava/lang/CharSequence
Hello, with the latest from 2.0 trunk I seem to be suddenly getting the following error: java.lang.NoSuchMethodError: wicket.util.string.Strings.escapeMarkup(Ljava/lang/String;ZZ)Ljava/lang/CharSequence Is this due to a bug or API change? Thanks. -- View this message in context: http://www.nabble.com/java.lang.NoSuchMethodError%3A-wicket.util.string.Strings.escapeMarkup%28Ljava-lang-String-ZZ%29Ljava-lang-CharSequence-tf3207659.html#a8907588 Sent from the Wicket - User mailing list archive at Nabble.com. - 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=lnk&kid=120709&bid=263057&dat=121642 ___ Wicket-user mailing list Wicket-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-user
Re: [Wicket-user] external request response - best approach
I realized that was probably the easiest option. Thanks. Carfield Yim-2 wrote: > > Are you refer to something like verisign payflow pro API? For me I > will just have a form and open an HTTP connection at onSubmit() method > just like the example they've given. > > On 1/28/07, De Soca <[EMAIL PROTECTED]> wrote: >> >> Hello, >> >> I have a requirement to validate credit card via an external service >> (external to our wicket application) then display the approriate response >> to >> the client. >> >> How best to approach this task the wicket way. >> >> 1. Should I do a redirect? If so how do I get the response >> >> 2. I saw mention here of using a "RequestTarger" but I can find no such >> class. >> >> Of course this whole operation occurs in an HTTPS session. >> >> All suggestions appreciated. >> >> Thanks in advance. >> -- >> View this message in context: >> http://www.nabble.com/external-request-response---best-approach-tf3128605.html#a8668662 >> Sent from the Wicket - User mailing list archive at Nabble.com. >> >> >> - >> Take Surveys. Earn Cash. Influence the Future of IT >> Join SourceForge.net's Techsay panel and you'll get the chance to share >> your >> opinions on IT & business topics through brief surveys - and earn cash >> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV >> ___ >> Wicket-user mailing list >> Wicket-user@lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/wicket-user >> > > - > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share > your > opinions on IT & business topics through brief surveys - and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > ___ > Wicket-user mailing list > Wicket-user@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/wicket-user > > -- View this message in context: http://www.nabble.com/external-request-response---best-approach-tf3128605.html#a8675330 Sent from the Wicket - User mailing list archive at Nabble.com. - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys - and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV ___ Wicket-user mailing list Wicket-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-user
Re: [Wicket-user] external request response - best approach
In your "validatethecard()" do have to work with the raw servlet api or are there wicket objects i can i use. I guess that is the crux of my question. igor.vaynberg wrote: > > heh > > form/button.onsubmit() { > boolean validated=validatethecard(); > if (validated==true ) { >processthedata(); >setresposnepage(new successpage()); > } else { > error("invalid cc num"); > } > } > > -igor > > > On 1/27/07, De Soca <[EMAIL PROTECTED]> wrote: >> >> >> How would I get the response object in wicket? >> >> Do I do a redirect? >> >> Please elaborate. >> >> Thanks. >> >> >> igor.vaynberg wrote: >> > >> > heh so what exactly is the problem? make the call in your onsubmit... >> ?? >> > >> > -igor >> > >> > >> > On 1/27/07, De Soca <[EMAIL PROTECTED]> wrote: >> >> >> >> >> >> No I don't, the call all happens in one request response cycle. >> >> >> >> Ideally I would like to perform the call and receive the response >> within >> >> my >> >> wicket submit method. >> >> >> >> Thanks. >> >> >> >> >> >> >> >> igor.vaynberg wrote: >> >> > >> >> > you need to redirect to another website, and then that website >> >> redirects >> >> > back to you? when you redirect to it you pass it the url you want to >> >> > comeback to? >> >> > >> >> > -igor >> >> > >> >> > >> >> > On 1/27/07, De Soca <[EMAIL PROTECTED]> wrote: >> >> >> >> >> >> >> >> >> Hello, >> >> >> >> >> >> I have a requirement to validate credit card via an external >> service >> >> >> (external to our wicket application) then display the approriate >> >> response >> >> >> to >> >> >> the client. >> >> >> >> >> >> How best to approach this task the wicket way. >> >> >> >> >> >> 1. Should I do a redirect? If so how do I get the response >> >> >> >> >> >> 2. I saw mention here of using a "RequestTarger" but I can find no >> >> such >> >> >> class. >> >> >> >> >> >> Of course this whole operation occurs in an HTTPS session. >> >> >> >> >> >> All suggestions appreciated. >> >> >> >> >> >> Thanks in advance. >> >> >> -- >> >> >> View this message in context: >> >> >> >> >> >> http://www.nabble.com/external-request-response---best-approach-tf3128605.html#a8668662 >> >> >> Sent from the Wicket - User mailing list archive at Nabble.com. >> >> >> >> >> >> >> >> >> >> >> >> - >> >> >> Take Surveys. Earn Cash. Influence the Future of IT >> >> >> Join SourceForge.net's Techsay panel and you'll get the chance to >> >> share >> >> >> your >> >> >> opinions on IT & business topics through brief surveys - and earn >> cash >> >> >> >> >> >> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV >> >> >> ___ >> >> >> Wicket-user mailing list >> >> >> Wicket-user@lists.sourceforge.net >> >> >> https://lists.sourceforge.net/lists/listinfo/wicket-user >> >> >> >> >> > >> >> > >> >> >> - >> >> > Take Surveys. Earn Cash. Influence the Future of IT >> >> > Join SourceForge.net's Techsay panel and you'll get the chance to >> share >> >> > your >> >> > opinions on IT & business topics through brief surveys - and earn >> cash >> >> > >> >> >> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV >> >> > ___ >> >> > Wicket-user mailing list >> >> >
Re: [Wicket-user] external request response - best approach
Hi Igor, this is the direction I would like to take: snip - Form form = new Form(this, "inputForm"); new Button(form, "saveButton") { @Override public void onSubmit() { logger.debug(" > need to validate credit card here .>"); getPage().getResponse().redirect("https://secure.x.com/process.cgi";); how do I get the response object here: } }; -- snip - Cheers, De. igor.vaynberg wrote: > > heh so what exactly is the problem? make the call in your onsubmit... ?? > > -igor > > > On 1/27/07, De Soca <[EMAIL PROTECTED]> wrote: >> >> >> No I don't, the call all happens in one request response cycle. >> >> Ideally I would like to perform the call and receive the response within >> my >> wicket submit method. >> >> Thanks. >> >> >> >> igor.vaynberg wrote: >> > >> > you need to redirect to another website, and then that website >> redirects >> > back to you? when you redirect to it you pass it the url you want to >> > comeback to? >> > >> > -igor >> > >> > >> > On 1/27/07, De Soca <[EMAIL PROTECTED]> wrote: >> >> >> >> >> >> Hello, >> >> >> >> I have a requirement to validate credit card via an external service >> >> (external to our wicket application) then display the approriate >> response >> >> to >> >> the client. >> >> >> >> How best to approach this task the wicket way. >> >> >> >> 1. Should I do a redirect? If so how do I get the response >> >> >> >> 2. I saw mention here of using a "RequestTarger" but I can find no >> such >> >> class. >> >> >> >> Of course this whole operation occurs in an HTTPS session. >> >> >> >> All suggestions appreciated. >> >> >> >> Thanks in advance. >> >> -- >> >> View this message in context: >> >> >> http://www.nabble.com/external-request-response---best-approach-tf3128605.html#a8668662 >> >> Sent from the Wicket - User mailing list archive at Nabble.com. >> >> >> >> >> >> >> - >> >> Take Surveys. Earn Cash. Influence the Future of IT >> >> Join SourceForge.net's Techsay panel and you'll get the chance to >> share >> >> your >> >> opinions on IT & business topics through brief surveys - and earn cash >> >> >> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV >> >> ___ >> >> Wicket-user mailing list >> >> Wicket-user@lists.sourceforge.net >> >> https://lists.sourceforge.net/lists/listinfo/wicket-user >> >> >> > >> > >> - >> > Take Surveys. Earn Cash. Influence the Future of IT >> > Join SourceForge.net's Techsay panel and you'll get the chance to share >> > your >> > opinions on IT & business topics through brief surveys - and earn cash >> > >> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV >> > ___ >> > Wicket-user mailing list >> > Wicket-user@lists.sourceforge.net >> > https://lists.sourceforge.net/lists/listinfo/wicket-user >> > >> > >> >> -- >> View this message in context: >> http://www.nabble.com/external-request-response---best-approach-tf3128605.html#a8671764 >> Sent from the Wicket - User mailing list archive at Nabble.com. >> >> >> - >> Take Surveys. Earn Cash. Influence the Future of IT >> Join SourceForge.net's Techsay panel and you'll get the chance to share >> your >> opinions on IT & business topics through brief surveys - and earn cash >> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV >> ___ >> Wicket-user mailing list >> Wicket-user@lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/wicket-user
Re: [Wicket-user] external request response - best approach
How would I get the response object in wicket? Do I do a redirect? Please elaborate. Thanks. igor.vaynberg wrote: > > heh so what exactly is the problem? make the call in your onsubmit... ?? > > -igor > > > On 1/27/07, De Soca <[EMAIL PROTECTED]> wrote: >> >> >> No I don't, the call all happens in one request response cycle. >> >> Ideally I would like to perform the call and receive the response within >> my >> wicket submit method. >> >> Thanks. >> >> >> >> igor.vaynberg wrote: >> > >> > you need to redirect to another website, and then that website >> redirects >> > back to you? when you redirect to it you pass it the url you want to >> > comeback to? >> > >> > -igor >> > >> > >> > On 1/27/07, De Soca <[EMAIL PROTECTED]> wrote: >> >> >> >> >> >> Hello, >> >> >> >> I have a requirement to validate credit card via an external service >> >> (external to our wicket application) then display the approriate >> response >> >> to >> >> the client. >> >> >> >> How best to approach this task the wicket way. >> >> >> >> 1. Should I do a redirect? If so how do I get the response >> >> >> >> 2. I saw mention here of using a "RequestTarger" but I can find no >> such >> >> class. >> >> >> >> Of course this whole operation occurs in an HTTPS session. >> >> >> >> All suggestions appreciated. >> >> >> >> Thanks in advance. >> >> -- >> >> View this message in context: >> >> >> http://www.nabble.com/external-request-response---best-approach-tf3128605.html#a8668662 >> >> Sent from the Wicket - User mailing list archive at Nabble.com. >> >> >> >> >> >> >> - >> >> Take Surveys. Earn Cash. Influence the Future of IT >> >> Join SourceForge.net's Techsay panel and you'll get the chance to >> share >> >> your >> >> opinions on IT & business topics through brief surveys - and earn cash >> >> >> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV >> >> ___ >> >> Wicket-user mailing list >> >> Wicket-user@lists.sourceforge.net >> >> https://lists.sourceforge.net/lists/listinfo/wicket-user >> >> >> > >> > >> - >> > Take Surveys. Earn Cash. Influence the Future of IT >> > Join SourceForge.net's Techsay panel and you'll get the chance to share >> > your >> > opinions on IT & business topics through brief surveys - and earn cash >> > >> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV >> > ___ >> > Wicket-user mailing list >> > Wicket-user@lists.sourceforge.net >> > https://lists.sourceforge.net/lists/listinfo/wicket-user >> > >> > >> >> -- >> View this message in context: >> http://www.nabble.com/external-request-response---best-approach-tf3128605.html#a8671764 >> Sent from the Wicket - User mailing list archive at Nabble.com. >> >> >> - >> Take Surveys. Earn Cash. Influence the Future of IT >> Join SourceForge.net's Techsay panel and you'll get the chance to share >> your >> opinions on IT & business topics through brief surveys - and earn cash >> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV >> ___ >> Wicket-user mailing list >> Wicket-user@lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/wicket-user >> > > - > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share > your > opinions on IT & business topics through brief surveys - and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > ___ > Wicket-user mailing list > Wicket-user@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/wicket-user > > -- View this message in context: http://www.nabble.com/external-request-response---best-approach-tf3128605.html#a8671789 Sent from the Wicket - User mailing list archive at Nabble.com. - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys - and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV ___ Wicket-user mailing list Wicket-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-user
Re: [Wicket-user] external request response - best approach
No I don't, the call all happens in one request response cycle. Ideally I would like to perform the call and receive the response within my wicket submit method. Thanks. igor.vaynberg wrote: > > you need to redirect to another website, and then that website redirects > back to you? when you redirect to it you pass it the url you want to > comeback to? > > -igor > > > On 1/27/07, De Soca <[EMAIL PROTECTED]> wrote: >> >> >> Hello, >> >> I have a requirement to validate credit card via an external service >> (external to our wicket application) then display the approriate response >> to >> the client. >> >> How best to approach this task the wicket way. >> >> 1. Should I do a redirect? If so how do I get the response >> >> 2. I saw mention here of using a "RequestTarger" but I can find no such >> class. >> >> Of course this whole operation occurs in an HTTPS session. >> >> All suggestions appreciated. >> >> Thanks in advance. >> -- >> View this message in context: >> http://www.nabble.com/external-request-response---best-approach-tf3128605.html#a8668662 >> Sent from the Wicket - User mailing list archive at Nabble.com. >> >> >> - >> Take Surveys. Earn Cash. Influence the Future of IT >> Join SourceForge.net's Techsay panel and you'll get the chance to share >> your >> opinions on IT & business topics through brief surveys - and earn cash >> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV >> ___ >> Wicket-user mailing list >> Wicket-user@lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/wicket-user >> > > - > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share > your > opinions on IT & business topics through brief surveys - and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > ___ > Wicket-user mailing list > Wicket-user@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/wicket-user > > -- View this message in context: http://www.nabble.com/external-request-response---best-approach-tf3128605.html#a8671764 Sent from the Wicket - User mailing list archive at Nabble.com. - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys - and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV ___ Wicket-user mailing list Wicket-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-user
[Wicket-user] external request response - best approach
Hello, I have a requirement to validate credit card via an external service (external to our wicket application) then display the approriate response to the client. How best to approach this task the wicket way. 1. Should I do a redirect? If so how do I get the response 2. I saw mention here of using a "RequestTarger" but I can find no such class. Of course this whole operation occurs in an HTTPS session. All suggestions appreciated. Thanks in advance. -- View this message in context: http://www.nabble.com/external-request-response---best-approach-tf3128605.html#a8668662 Sent from the Wicket - User mailing list archive at Nabble.com. - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys - and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV ___ Wicket-user mailing list Wicket-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-user
Re: [Wicket-user] Wicket 2 HEAD problem - java.lang.NoSuchMethodError: wicket.MetaDataKey.(Ljava/lang/Class; )V
I receive a similar error from the AuthenticatedWebApplication. Guess it has not been refactored as yet. Cheers. Mark Derricutt wrote: > > Hey all, I just updated my Wicket 2 HEAD copy and now get the following > errors: > > Exception in thread "main" java.lang.NoSuchMethodError: wicket.MetaDataKey > .(Ljava/lang/Class;)V > at wicket.spring.injection.SpringComponentInjector$1.( > SpringComponentInjector.java:67) > at wicket.spring.injection.SpringComponentInjector.( > SpringComponentInjector.java:65) > at com.theoryinpractice.timetrackr.TimeTrackrApplication.init( > TimeTrackrApplication.java:34) > at wicket.protocol.http.WicketFilter.init(WicketFilter.java:341) > at org.mortbay.jetty.servlet.FilterHolder.start(FilterHolder.java > :162) > at > org.mortbay.jetty.servlet.WebApplicationHandler.initializeServlets( > WebApplicationHandler.java:145) > at org.mortbay.jetty.servlet.WebApplicationContext.start( > WebApplicationContext.java:458) > at org.mortbay.http.HttpServer.start(HttpServer.java:663) > at com.theoryinpractice.timetrackr.Start.main(Start.java:57) > [EMAIL PROTECTED]:~/IdeaProjects/timetrackr$ > > I'm using the latest HEAD of wicket, wicket-extensions, and wicket-spring > - > bug? uncommitted code? something broken on my end? > > Cheers, > Mark > > -- > It was not the presence of God that formed me, but his absence which broke > me. > > http://www.talios.com > http://www.flickr.com/photos/talios > > - > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share > your > opinions on IT & business topics through brief surveys - and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > ___ > Wicket-user mailing list > Wicket-user@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/wicket-user > > -- View this message in context: http://www.nabble.com/Wicket-2-HEAD-problem---java.lang.NoSuchMethodError%3A-wicket.MetaDataKey.%3Cinit%3E%28Ljava-lang-Class--%29V-tf3011785.html#a8383006 Sent from the Wicket - User mailing list archive at Nabble.com. - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys - and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV ___ Wicket-user mailing list Wicket-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-user
[Wicket-user] wicket-spring-examples 2.0 seem to be broken
Hello, I don't seem to be able to get wicket spring examples in 2.0 to run with the latest from svn. In addition the example does not use the WicketFilter. Just wonder if no one has gotten around to it as yet or am I doing something wrong. I receive the following on startup: 2007-01-14 13:12:32,122 INFO wicket.protocol.http.WicketServlet - 2007-01-14 13:12:32,123 INFO wicket.protocol.http.WicketServlet - DEPRECATED! Please use WicketFilter instead. 2007-01-14 13:12:32,123 INFO wicket.protocol.http.WicketServlet - 2007-01-14 13:12:32,123 WARN wicket.settings.Settings - A IComponentResolver of type wicket.markup.resolver.ParentResolver has already been registered. The new one will not be added 2007-01-14 13:12:32,124 WARN wicket.settings.Settings - A IComponentResolver of type wicket.markup.resolver.MarkupInheritanceResolver has already been registered. The new one will not be added 2007-01-14 13:12:32,124 WARN wicket.settings.Settings - A IComponentResolver of type wicket.markup.resolver.WicketLinkResolver has already been registered. The new one will not be added 2007-01-14 13:12:32,124 WARN wicket.settings.Settings - A IComponentResolver of type wicket.markup.resolver.WicketHeaderResolver has already been registered. The new one will not be added 2007-01-14 13:12:32,124 WARN wicket.settings.Settings - A IComponentResolver of type wicket.markup.resolver.WicketMessageResolver has already been registered. The new one will not be added 2007-01-14 13:12:32,124 WARN wicket.settings.Settings - A IComponentResolver of type wicket.markup.resolver.FragmentResolver has already been registered. The new one will not be added 2007-01-14 13:12:32,124 WARN wicket.settings.Settings - A IComponentResolver of type wicket.markup.resolver.AutoComponentResolver has already been registered. The new one will not be added 2007-01-14 13:12:32,125 WARN wicket.settings.Settings - A IComponentResolver of type wicket.markup.resolver.AutoLinkResolver has already been registered. The new one will not be added When I attempt to load the first page I get the following: javax.servlet.ServletException: Servlet.init() for servlet example threw exception org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105) org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148) org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869) org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664) org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527) org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80) org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684) java.lang.Thread.run(Thread.java:613) root cause java.lang.NoClassDefFoundError wicket.spring.common.web.AnnotApplication.init(AnnotApplication.java:27) wicket.protocol.http.WicketFilter.init(WicketFilter.java:341) wicket.protocol.http.WicketServlet.init(WicketServlet.java:166) javax.servlet.GenericServlet.init(GenericServlet.java:211) org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105) org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148) org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869) org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664) org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527) org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80) org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684) java.lang.Thread.run(Thread.java:613) -- snip - And the class does not exist. Thanks. Cheers, De. -- View this message in context: http://www.nabble.com/wicket-spring-examples-2.0-seem-to-be-broken-tf3010200.html#a8360726 Sent from the Wicket - User mailing list archive at Nabble.com. - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys - and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV ___ Wicket-user mailing list Wicket-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-user
Re: [Wicket-user] AjaxFallbackDefaultDataTable - Markup with path 'label' not found
Thank you much. igor.vaynberg wrote: > > fixed > > -igor > > > On 1/8/07, De Soca <[EMAIL PROTECTED]> wrote: >> >> >> Hello, >> >> I receive the following error when attempting to run an app with the >> AjaxFallbackDefaultDataTable in 2.0. Replacing that component with the >> non-Ajax version DefaultDataTable, the same code works perfectly: >> >> WicketMessage: >> jar:file:/x/exploded/WEB-INF/lib/wicket- >> extensions-2.0-SNAPSHOT.jar!/wicket/extensions/ajax/markup/html/repeater/data/sort/AjaxFallbackOrderByBorder.html: >> Markup with path 'label' not found in fragment: null >> >> Root cause: >> >> wicket.markup.MarkupException: >> jar:file:/x/exploded/WEB-INF/lib/wicket- >> extensions-2.0-SNAPSHOT.jar!/wicket/extensions/ajax/markup/html/repeater/data/sort/AjaxFallbackOrderByBorder.html: >> Markup with path 'label' not found in fragment: null >> at >> wicket.markup.MarkupFragment.getChildFragment(MarkupFragment.java:265) >> at >> wicket.markup.MarkupFragment.getChildFragment(MarkupFragment.java:181) >> at wicket.markup.html.border.Border.getMarkupFragment(Border.java >> :229) >> at wicket.Component.getMarkupFragment(Component.java:746) >> at wicket.Component.(Component.java:637) >> at wicket.markup.html.WebComponent.(WebComponent.java:55) >> at wicket.markup.html.basic.Label.(Label.java:111) >> at >> wicket.extensions.markup.html.repeater.data.table.AbstractColumn.getHeader >> (AbstractColumn.java:87) >> at >> >> wicket.extensions.markup.html.repeater.data.table.HeadersToolbar$1.populateItem >> (HeadersToolbar.java:102) >> at >> wicket.markup.repeater.RefreshingView$1.newItem(RefreshingView.java:103) >> at >> wicket.markup.repeater.DefaultItemReuseStrategy$1.next( >> DefaultItemReuseStrategy.java:75) >> at >> wicket.markup.repeater.DefaultItemReuseStrategy$1.next( >> DefaultItemReuseStrategy.java:71) >> at >> wicket.markup.repeater.RefreshingView.addItems(RefreshingView.java:208) >> at >> wicket.markup.repeater.RefreshingView.onAttach(RefreshingView.java:114) >> >> snip -- >> >> Thanks. >> -- >> View this message in context: >> http://www.nabble.com/AjaxFallbackDefaultDataTable---Markup-with-path-%27label%27-not-found-tf2938511.html#a8215485 >> Sent from the Wicket - User mailing list archive at Nabble.com. >> >> >> - >> Take Surveys. Earn Cash. Influence the Future of IT >> Join SourceForge.net's Techsay panel and you'll get the chance to share >> your >> opinions on IT & business topics through brief surveys - and earn cash >> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV >> ___ >> Wicket-user mailing list >> Wicket-user@lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/wicket-user >> > > - > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share > your > opinions on IT & business topics through brief surveys - and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > ___ > Wicket-user mailing list > Wicket-user@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/wicket-user > > -- View this message in context: http://www.nabble.com/AjaxFallbackDefaultDataTable---Markup-with-path-%27label%27-not-found-tf2938511.html#a8310619 Sent from the Wicket - User mailing list archive at Nabble.com. - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys - and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV ___ Wicket-user mailing list Wicket-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-user
[Wicket-user] AjaxFallbackDefaultDataTable - Markup with path 'label' not found
Hello, I receive the following error when attempting to run an app with the AjaxFallbackDefaultDataTable in 2.0. Replacing that component with the non-Ajax version DefaultDataTable, the same code works perfectly: WicketMessage: jar:file:/x/exploded/WEB-INF/lib/wicket-extensions-2.0-SNAPSHOT.jar!/wicket/extensions/ajax/markup/html/repeater/data/sort/AjaxFallbackOrderByBorder.html: Markup with path 'label' not found in fragment: null Root cause: wicket.markup.MarkupException: jar:file:/x/exploded/WEB-INF/lib/wicket-extensions-2.0-SNAPSHOT.jar!/wicket/extensions/ajax/markup/html/repeater/data/sort/AjaxFallbackOrderByBorder.html: Markup with path 'label' not found in fragment: null at wicket.markup.MarkupFragment.getChildFragment(MarkupFragment.java:265) at wicket.markup.MarkupFragment.getChildFragment(MarkupFragment.java:181) at wicket.markup.html.border.Border.getMarkupFragment(Border.java:229) at wicket.Component.getMarkupFragment(Component.java:746) at wicket.Component.(Component.java:637) at wicket.markup.html.WebComponent.(WebComponent.java:55) at wicket.markup.html.basic.Label.(Label.java:111) at wicket.extensions.markup.html.repeater.data.table.AbstractColumn.getHeader(AbstractColumn.java:87) at wicket.extensions.markup.html.repeater.data.table.HeadersToolbar$1.populateItem(HeadersToolbar.java:102) at wicket.markup.repeater.RefreshingView$1.newItem(RefreshingView.java:103) at wicket.markup.repeater.DefaultItemReuseStrategy$1.next(DefaultItemReuseStrategy.java:75) at wicket.markup.repeater.DefaultItemReuseStrategy$1.next(DefaultItemReuseStrategy.java:71) at wicket.markup.repeater.RefreshingView.addItems(RefreshingView.java:208) at wicket.markup.repeater.RefreshingView.onAttach(RefreshingView.java:114) snip -- Thanks. -- View this message in context: http://www.nabble.com/AjaxFallbackDefaultDataTable---Markup-with-path-%27label%27-not-found-tf2938511.html#a8215485 Sent from the Wicket - User mailing list archive at Nabble.com. - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys - and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV ___ Wicket-user mailing list Wicket-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-user
[Wicket-user] typo in naming of ConverterLocatorFactory in 2.0?
Hello, I came across what I believe is a typo in the spelling of the implementation of IConverterLocatorFactory. The class in question is "CoverterLocatorFactory", I was wondering if this was meant to have been "ConverterLocatorFactory" instead. De. -- View this message in context: http://www.nabble.com/typo-in-naming-of-ConverterLocatorFactory-in-2.0--tf2937248.html#a8212177 Sent from the Wicket - User mailing list archive at Nabble.com. - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys - and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV ___ Wicket-user mailing list Wicket-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-user
Re: [Wicket-user] IllegalStateException with wizard sample 2.0
Works great guys. I took a chance to migrate to 2.0 before the project became to involved. I am happy and relieved to report that it is complete. :o) Thanks a lot for the quick response. Those fixes were the only showstoppers for me. Looking forward to Wicket In Action. Cheers, De. igor.vaynberg wrote: > > yeah i just found another one. my bad. i pulled up a quick hieararchy > before > i did the refactor to note all the places, but i dont think it went cross > project :( > > -igor > > > On 1/7/07, Eelco Hillenius <[EMAIL PROTECTED]> wrote: >> >> It's fixed. It was due to a component (NextButton) not calling >> super.onAttach. We (/ the people who made the change) check our >> projects whether that occurs in more places. >> >> Eelco >> >> >> On 1/7/07, Igor Vaynberg <[EMAIL PROTECTED]> wrote: >> > we just had a big refactor done in 2.0, so it might be due to that. >> eelco >> > you want to take a look? >> > >> > >> > -igor >> > >> > >> > On 1/7/07, De Soca < [EMAIL PROTECTED]> wrote: >> > > >> > > I have downloaded the latest from trunk. >> > > >> > > In addition I am running it against tomcat 5.5.20. >> > > >> > > Thanks. >> > > >> > > >> > > >> > > igor.vaynberg wrote: >> > > > >> > > > what version? >> > > > >> > > > -igor >> > > > >> > > > On 1/7/07, De Soca < [EMAIL PROTECTED]> wrote: >> > > >> >> > > >> >> > > >> Hello, >> > > >> >> > > >> I am receiving the following error when I attempt to run the >> wizard >> > > >> sample >> > > >> included in wicket-examples, is this a known issue or is there >> > something >> > > >> else wrong. BTW the other samples in the app seem to run fine (the >> > one's >> > > >> I >> > > >> have tried at least): >> > > >> >> > > >> ERROR - WebRequestCycle- Error attaching this >> container >> for >> > > >> rendering: [MarkupContainer [Component id = buttons, page = >> > > >> wicket.examples.wizard.WizardPage, path = >> > > >> 1:wizard:form:buttons.WizardButtonBar, isVisible = true, >> isVersioned = >> > > >> false]] >> > > >> wicket.WicketRuntimeException: Error attaching this container for >> > > >> rendering: >> > > >> [MarkupContainer [Component id = buttons, page = >> > > >> wicket.examples.wizard.WizardPage, path = >> > > >> 1:wizard:form: buttons.WizardButtonBar, isVisible = true, >> isVersioned = >> > > >> false]] >> > > >> at >> > > >> >> > wicket.MarkupContainer.attachChildren(MarkupContainer.java:383) >> > > >> at wicket.Component.attach (Component.java:2807) >> > > >> at >> > > >> >> > wicket.MarkupContainer.attachChildren(MarkupContainer.java:372) >> > > >> at wicket.Component.attach(Component.java:2807) >> > > >> at >> > > >> >> > wicket.MarkupContainer.attachChildren(MarkupContainer.java:372) >> > > >> at wicket.Component.attach(Component.java:2807) >> > > >> at >> > > >> >> > wicket.MarkupContainer.attachChildren(MarkupContainer.java >> > :372) >> > > >> at wicket.Component.attach(Component.java:2807) >> > > >> at wicket.Page.renderPage(Page.java:1082) >> > > >> at >> > > >> >> > wicket.protocol.http.WebRequestCycle.redirectTo(WebRequestCycle.java >> > :171) >> > > >> at >> > > >> >> > wicket.request.target.component.PageRequestTarget.respond( >> > > >> PageRequestTarget.java:61) >> > > >> at >> > > >> >> > wicket.request.compound.DefaultResponseStrategy.respond >> > ( >> > > >> DefaultResponseStrategy.java:53) >> > > >> at >> > > >> >> > wicket.request.compound.AbstractCompoundRequestCycleProcessor.respond( >> > > >> AbstractCompoundRequestCycleProcessor.java:65) &
Re: [Wicket-user] IllegalStateException with wizard sample 2.0
I also receive a similar error with select and selectoptions components. De igor.vaynberg wrote: > > we just had a big refactor done in 2.0, so it might be due to that. eelco > you want to take a look? > > -igor > > > On 1/7/07, De Soca <[EMAIL PROTECTED]> wrote: >> >> >> I have downloaded the latest from trunk. >> >> In addition I am running it against tomcat 5.5.20. >> >> Thanks. >> >> >> >> igor.vaynberg wrote: >> > >> > what version? >> > >> > -igor >> > >> > On 1/7/07, De Soca <[EMAIL PROTECTED]> wrote: >> >> >> >> >> >> Hello, >> >> >> >> I am receiving the following error when I attempt to run the wizard >> >> sample >> >> included in wicket-examples, is this a known issue or is there >> something >> >> else wrong. BTW the other samples in the app seem to run fine (the >> one's >> >> I >> >> have tried at least): >> >> >> >> ERROR - WebRequestCycle- Error attaching this container >> for >> >> rendering: [MarkupContainer [Component id = buttons, page = >> >> wicket.examples.wizard.WizardPage, path = >> >> 1:wizard:form:buttons.WizardButtonBar, isVisible = true, isVersioned = >> >> false]] >> >> wicket.WicketRuntimeException: Error attaching this container for >> >> rendering: >> >> [MarkupContainer [Component id = buttons, page = >> >> wicket.examples.wizard.WizardPage, path = >> >> 1:wizard:form:buttons.WizardButtonBar, isVisible = true, isVersioned = >> >> false]] >> >> at >> >> wicket.MarkupContainer.attachChildren(MarkupContainer.java:383) >> >> at wicket.Component.attach(Component.java:2807) >> >> at >> >> wicket.MarkupContainer.attachChildren(MarkupContainer.java:372) >> >> at wicket.Component.attach(Component.java:2807) >> >> at >> >> wicket.MarkupContainer.attachChildren(MarkupContainer.java:372) >> >> at wicket.Component.attach(Component.java:2807) >> >> at >> >> wicket.MarkupContainer.attachChildren(MarkupContainer.java:372) >> >> at wicket.Component.attach(Component.java:2807) >> >> at wicket.Page.renderPage(Page.java:1082) >> >> at >> >> wicket.protocol.http.WebRequestCycle.redirectTo(WebRequestCycle.java >> :171) >> >> at >> >> wicket.request.target.component.PageRequestTarget.respond( >> >> PageRequestTarget.java:61) >> >> at >> >> wicket.request.compound.DefaultResponseStrategy.respond( >> >> DefaultResponseStrategy.java:53) >> >> at >> >> wicket.request.compound.AbstractCompoundRequestCycleProcessor.respond( >> >> AbstractCompoundRequestCycleProcessor.java:65) >> >> at >> >> wicket.RequestCycle.doProcessEventsAndRespond(RequestCycle.java >> >> :944) >> >> at wicket.RequestCycle.processEventsAndRespond( >> RequestCycle.java >> >> :973) >> >> at wicket.RequestCycle.step(RequestCycle.java:1054) >> >> at wicket.RequestCycle.steps(RequestCycle.java:1125) >> >> at wicket.RequestCycle.request(RequestCycle.java:470) >> >> at wicket.protocol.http.WicketFilter.doGet(WicketFilter.java >> :232) >> >> at >> wicket.protocol.http.WicketFilter.doFilter(WicketFilter.java >> >> :122) >> >> at >> >> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter( >> >> ApplicationFilterChain.java:202) >> >> at >> >> org.apache.catalina.core.ApplicationFilterChain.doFilter( >> >> ApplicationFilterChain.java:173) >> >> at >> >> org.apache.catalina.core.StandardWrapperValve.invoke( >> >> StandardWrapperValve.java:213) >> >> at >> >> org.apache.catalina.core.StandardContextValve.invoke( >> >> StandardContextValve.java:178) >> >> at >> >> org.apache.catalina.core.StandardHostValve.invoke( >> StandardHostValve.java >> >> :126) >> >> at >> >> org.apache.catalina.valves.ErrorReportValve.invoke( >> ErrorReportValve.java >> >> :105) >> >> at >> &
Re: [Wicket-user] IllegalStateException with wizard sample 2.0
I have downloaded the latest from trunk. In addition I am running it against tomcat 5.5.20. Thanks. igor.vaynberg wrote: > > what version? > > -igor > > On 1/7/07, De Soca <[EMAIL PROTECTED]> wrote: >> >> >> Hello, >> >> I am receiving the following error when I attempt to run the wizard >> sample >> included in wicket-examples, is this a known issue or is there something >> else wrong. BTW the other samples in the app seem to run fine (the one's >> I >> have tried at least): >> >> ERROR - WebRequestCycle- Error attaching this container for >> rendering: [MarkupContainer [Component id = buttons, page = >> wicket.examples.wizard.WizardPage, path = >> 1:wizard:form:buttons.WizardButtonBar, isVisible = true, isVersioned = >> false]] >> wicket.WicketRuntimeException: Error attaching this container for >> rendering: >> [MarkupContainer [Component id = buttons, page = >> wicket.examples.wizard.WizardPage, path = >> 1:wizard:form:buttons.WizardButtonBar, isVisible = true, isVersioned = >> false]] >> at >> wicket.MarkupContainer.attachChildren(MarkupContainer.java:383) >> at wicket.Component.attach(Component.java:2807) >> at >> wicket.MarkupContainer.attachChildren(MarkupContainer.java:372) >> at wicket.Component.attach(Component.java:2807) >> at >> wicket.MarkupContainer.attachChildren(MarkupContainer.java:372) >> at wicket.Component.attach(Component.java:2807) >> at >> wicket.MarkupContainer.attachChildren(MarkupContainer.java:372) >> at wicket.Component.attach(Component.java:2807) >> at wicket.Page.renderPage(Page.java:1082) >> at >> wicket.protocol.http.WebRequestCycle.redirectTo(WebRequestCycle.java:171) >> at >> wicket.request.target.component.PageRequestTarget.respond( >> PageRequestTarget.java:61) >> at >> wicket.request.compound.DefaultResponseStrategy.respond( >> DefaultResponseStrategy.java:53) >> at >> wicket.request.compound.AbstractCompoundRequestCycleProcessor.respond( >> AbstractCompoundRequestCycleProcessor.java:65) >> at >> wicket.RequestCycle.doProcessEventsAndRespond(RequestCycle.java >> :944) >> at wicket.RequestCycle.processEventsAndRespond(RequestCycle.java >> :973) >> at wicket.RequestCycle.step(RequestCycle.java:1054) >> at wicket.RequestCycle.steps(RequestCycle.java:1125) >> at wicket.RequestCycle.request(RequestCycle.java:470) >> at wicket.protocol.http.WicketFilter.doGet(WicketFilter.java:232) >> at wicket.protocol.http.WicketFilter.doFilter(WicketFilter.java >> :122) >> at >> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter( >> ApplicationFilterChain.java:202) >> at >> org.apache.catalina.core.ApplicationFilterChain.doFilter( >> ApplicationFilterChain.java:173) >> at >> org.apache.catalina.core.StandardWrapperValve.invoke( >> StandardWrapperValve.java:213) >> at >> org.apache.catalina.core.StandardContextValve.invoke( >> StandardContextValve.java:178) >> at >> org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java >> :126) >> at >> org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java >> :105) >> at >> org.apache.catalina.core.StandardEngineValve.invoke( >> StandardEngineValve.java:107) >> at >> org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java >> :148) >> at >> org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869) >> at >> >> org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection >> (Http11BaseProtocol.java:664) >> at >> org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket( >> PoolTcpEndpoint.java:527) >> at >> org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt( >> LeaderFollowerWorkerThread.java:80) >> at >> org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run( >> ThreadPool.java:684) >> at java.lang.Thread.run(Thread.java:613) >> Caused by: java.lang.IllegalStateException: wicket.Component has not been >> properly attached. Something in the hierarchy of >> wicket.extensions.wizard.NextButton has not called super.onAtach() in the >> override of onAttach() method >> at wicket.Component.attach(Component.java:2
[Wicket-user] IllegalStateException with wizard sample 2.0
Hello, I am receiving the following error when I attempt to run the wizard sample included in wicket-examples, is this a known issue or is there something else wrong. BTW the other samples in the app seem to run fine (the one's I have tried at least): ERROR - WebRequestCycle- Error attaching this container for rendering: [MarkupContainer [Component id = buttons, page = wicket.examples.wizard.WizardPage, path = 1:wizard:form:buttons.WizardButtonBar, isVisible = true, isVersioned = false]] wicket.WicketRuntimeException: Error attaching this container for rendering: [MarkupContainer [Component id = buttons, page = wicket.examples.wizard.WizardPage, path = 1:wizard:form:buttons.WizardButtonBar, isVisible = true, isVersioned = false]] at wicket.MarkupContainer.attachChildren(MarkupContainer.java:383) at wicket.Component.attach(Component.java:2807) at wicket.MarkupContainer.attachChildren(MarkupContainer.java:372) at wicket.Component.attach(Component.java:2807) at wicket.MarkupContainer.attachChildren(MarkupContainer.java:372) at wicket.Component.attach(Component.java:2807) at wicket.MarkupContainer.attachChildren(MarkupContainer.java:372) at wicket.Component.attach(Component.java:2807) at wicket.Page.renderPage(Page.java:1082) at wicket.protocol.http.WebRequestCycle.redirectTo(WebRequestCycle.java:171) at wicket.request.target.component.PageRequestTarget.respond(PageRequestTarget.java:61) at wicket.request.compound.DefaultResponseStrategy.respond(DefaultResponseStrategy.java:53) at wicket.request.compound.AbstractCompoundRequestCycleProcessor.respond(AbstractCompoundRequestCycleProcessor.java:65) at wicket.RequestCycle.doProcessEventsAndRespond(RequestCycle.java:944) at wicket.RequestCycle.processEventsAndRespond(RequestCycle.java:973) at wicket.RequestCycle.step(RequestCycle.java:1054) at wicket.RequestCycle.steps(RequestCycle.java:1125) at wicket.RequestCycle.request(RequestCycle.java:470) at wicket.protocol.http.WicketFilter.doGet(WicketFilter.java:232) at wicket.protocol.http.WicketFilter.doFilter(WicketFilter.java:122) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148) at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869) at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664) at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527) at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80) at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684) at java.lang.Thread.run(Thread.java:613) Caused by: java.lang.IllegalStateException: wicket.Component has not been properly attached. Something in the hierarchy of wicket.extensions.wizard.NextButton has not called super.onAtach() in the override of onAttach() method at wicket.Component.attach(Component.java:2799) at wicket.MarkupContainer.attachChildren(MarkupContainer.java:372) ... 33 more snip --- Thanks De. -- View this message in context: http://www.nabble.com/IllegalStateException-with-wizard-sample-2.0-tf2934593.html#a8204579 Sent from the Wicket - User mailing list archive at Nabble.com. - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys - and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV ___ Wicket-user mailing list Wicket-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-user
[Wicket-user] Palette removes values from WizardStep
Hello Happy New Year to all, I have come across a curious problem when using the Palette component. Attached is a quickstart sample of what I am experiencing. I have 2 palettes, one on the input wizardStep and one on the confirmation wizardStep. The values are set properly, and are verified so, in the input wizardStep. When I go to the confirm step the values set in the palette in the previous step are gone. The other form values are still available. Hopefully I am missing something obvious. Thanks for all input. http://www.nabble.com/file/5188/quickstart-palette.zip quickstart-palette.zip -- View this message in context: http://www.nabble.com/Palette-removes-values-from-WizardStep-tf2908589.html#a8125921 Sent from the Wicket - User mailing list archive at Nabble.com. - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys - and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV ___ Wicket-user mailing list Wicket-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-user
Re: [Wicket-user] cannot disable AjaxLink
Okay. Thanks. Erik van Oosten wrote: > > Looking in the code of AjaxLink I see no special code for > enabled/disabled state. > > If it fits what you need, you could try AjaxFallBackLink. > Otherwise try to extend AjaxLink and override the method > renderComponentTag in which you remove the onclick attribute from the > tag. (Don't forget to call super.renderComponentTag.) > > Regards, > Erik. > > De Soca schreef: >> Hello, >> >> just wondering if this a bug or a feature. >> >> Using one of the AjaxLink samples included in the Wicket examples, it >> seems >> that the setEnabled flag is ignored for AjaxLinks. >> >> i.e ajaxLink.setEnabled(false); >> >> Seems to have no effect. >> >> Is this a feature or defect etc? >> >> Thanks. >> > > -- > Erik van Oosten > http://www.day-to-day-stuff.blogspot.com/ > > > - > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share > your > opinions on IT & business topics through brief surveys - and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > ___ > Wicket-user mailing list > Wicket-user@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/wicket-user > > -- View this message in context: http://www.nabble.com/cannot-disable-AjaxLink-tf2722626.html#a7598967 Sent from the Wicket - User mailing list archive at Nabble.com. - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys - and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV ___ Wicket-user mailing list Wicket-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-user
[Wicket-user] cannot disable AjaxLink
Hello, just wondering if this a bug or a feature. Using one of the AjaxLink samples included in the Wicket examples, it seems that the setEnabled flag is ignored for AjaxLinks. i.e ajaxLink.setEnabled(false); Seems to have no effect. Is this a feature or defect etc? Thanks. -- View this message in context: http://www.nabble.com/cannot-disable-AjaxLink-tf2722626.html#a7592877 Sent from the Wicket - User mailing list archive at Nabble.com. - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys - and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV ___ Wicket-user mailing list Wicket-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-user
Re: [Wicket-user] How to reload page from within ajax call
When approx. is 1.2.3 due out? Frank Bille wrote: > > We did add support for it in 1.2.2. Is that the version you use, De Soca? > > Frank > > On 10/16/06, Igor Vaynberg <[EMAIL PROTECTED]> wrote: >> >> what version of wicket are you using? i thought we added support for >> setResponsePage() from an ajax call in 1.2.2, but maybe im wrong and it >> will be in 1.2.3 >> >> -Igor >> >> >> On 10/16/06, De Soca <[EMAIL PROTECTED]> wrote: >> > >> > >> > Hello all, >> > >> > I may be missing something basic, however I have a dirty flag within a >> > page >> > so that if the data has changed, on the next request the page is >> > refreshed. >> > >> > The link clicked is an Ajax link within the AjaxTabbedPanel. Everything >> > else >> > works fine. >> > >> > I have tried the following: >> > >> > 1. setResponsePage() >> > >> > 2. RequestCycle rc = RequestCycle.get(); >> > rc.setResponsePage(ClientMasterPage.class); >> > >> > Neither of which provide the desired result. >> > >> > Any suggestions are welcome. >> > >> > Thanks to all. >> > >> > -- >> > View this message in context: >> http://www.nabble.com/How-to-reload-page-from-within-ajax-call-tf2455071.html#a6842823 >> > >> > Sent from the Wicket - User mailing list archive at Nabble.com. >> > >> > >> > >> > >> - >> > 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=lnk&kid=120709&bid=263057&dat=121642 >> > ___ >> > 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=lnk&kid=120709&bid=263057&dat=121642 >> >> ___ >> 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=lnk&kid=120709&bid=263057&dat=121642 > ___ > Wicket-user mailing list > Wicket-user@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/wicket-user > > -- View this message in context: http://www.nabble.com/How-to-reload-page-from-within-ajax-call-tf2455071.html#a6846996 Sent from the Wicket - User mailing list archive at Nabble.com. - 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=lnk&kid=120709&bid=263057&dat=121642 ___ Wicket-user mailing list Wicket-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-user
Re: [Wicket-user] How to reload page from within ajax call
Sorry, I am using version 1.2.2 igor.vaynberg wrote: > > what version of wicket are you using? i thought we added support for > setResponsePage() from an ajax call in 1.2.2, but maybe im wrong and it > will > be in 1.2.3 > > -Igor > > > On 10/16/06, De Soca <[EMAIL PROTECTED]> wrote: >> >> >> Hello all, >> >> I may be missing something basic, however I have a dirty flag within a >> page >> so that if the data has changed, on the next request the page is >> refreshed. >> >> The link clicked is an Ajax link within the AjaxTabbedPanel. Everything >> else >> works fine. >> >> I have tried the following: >> >> 1. setResponsePage() >> >> 2. RequestCycle rc = RequestCycle.get(); >> rc.setResponsePage(ClientMasterPage.class); >> >> Neither of which provide the desired result. >> >> Any suggestions are welcome. >> >> Thanks to all. >> >> -- >> View this message in context: >> http://www.nabble.com/How-to-reload-page-from-within-ajax-call-tf2455071.html#a6842823 >> Sent from the Wicket - User mailing list archive at Nabble.com. >> >> >> - >> 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=lnk&kid=120709&bid=263057&dat=121642 >> ___ >> 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=lnk&kid=120709&bid=263057&dat=121642 > ___ > Wicket-user mailing list > Wicket-user@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/wicket-user > > -- View this message in context: http://www.nabble.com/How-to-reload-page-from-within-ajax-call-tf2455071.html#a6846807 Sent from the Wicket - User mailing list archive at Nabble.com. - 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=lnk&kid=120709&bid=263057&dat=121642 ___ Wicket-user mailing list Wicket-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-user
[Wicket-user] How to reload page from within ajax call
Hello all, I may be missing something basic, however I have a dirty flag within a page so that if the data has changed, on the next request the page is refreshed. The link clicked is an Ajax link within the AjaxTabbedPanel. Everything else works fine. I have tried the following: 1. setResponsePage() 2. RequestCycle rc = RequestCycle.get(); rc.setResponsePage(ClientMasterPage.class); Neither of which provide the desired result. Any suggestions are welcome. Thanks to all. -- View this message in context: http://www.nabble.com/How-to-reload-page-from-within-ajax-call-tf2455071.html#a6842823 Sent from the Wicket - User mailing list archive at Nabble.com. - 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=lnk&kid=120709&bid=263057&dat=121642 ___ Wicket-user mailing list Wicket-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-user
[Wicket-user] Bug in PopupSettings?
Hello, there appears to be a bug in PopupSettings when rendering in IE. Under normal circumstances it works fine, however if you set the Window name like: popupSettings.setWindowName("Anything!!!"); Then you will find that the window no longer pops up, instead it just navigates to the popup like any other page. To reproduce just add the aforementioned line to the Linkomatic page in Wicket Examples. I have also attached the class to this email. In Safari on the Mac, and Firefox on Windows the popup link works regardless. This seems to be a peculiarity with only IE. I have only tested IE 6.0 sp1. Cheers, DeSoca Home.java Description: Binary data - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys -- and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___ Wicket-user mailing list Wicket-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-user
Re: [Wicket-user] Anyone received complete Pro Wicket ebook?
Thanks for the confirmation folks. Cheers. Eelco Hillenius wrote: > > It is. I just received the hard copy. Thanks Karthik and Apress. I > think you did a great job. It's a good introduction on Wicket, that > imo still covers quite a lot, but most importantly is out for people > to buy now. > > Cheers! > > Eelco > > > On 9/20/06, Gwyn Evans <[EMAIL PROTECTED]> wrote: >> Those 9 chapters /are/ the complete book, I think. Certainly they >> match the "Table of Contents" that's on the site. >> (http://www.apress.com/ApressCorporate/supplement/1/10189/1590597222-3762.pdf). >> >> As far as I can see, the only difference between the earlier beta >> eBook and the current one is the movement of the title page & ToC >> pages to the front. There's no additional content, which would explain >> why there's been no update emailing. >> >> /Gwyn >> >> On 20/09/06, De Soca <[EMAIL PROTECTED]> wrote: >> > >> > Sorry, my celebrations were premature, its the same 9 chapters as the >> beta >> > book. >> > >> > What rotten service. >> > >> > Called and let a message with Apress support still no reply. >> > >> > >> > De Soca wrote: >> > > >> > > Hi Martin, >> > > >> > > thanks, that did it. Strange that they never changed the link. >> > > >> > > Cheers. >> > > >> > > Martin Funk wrote: >> > >> >> > >> download the book even if it still says "(beta)" in the download >> area. >> > >> worked for me. >> > >> >> > >> mf >> > >> >> > >> middledot schrieb: >> > >>> I too bought a beta version of the book, hoping that I would be >> informed >> > >>> of >> > >>> the final release but no such luck. >> > >>> The e-book is still in beta version on their website. >> > >>> I tried to download the code for the book but it's not there >> either. >> > >>> Strange. >> > >>> Les >> > >>> >> > >>> De Soca wrote: >> > >>> >> > >>>> Hello, >> > >>>> >> > >>>> just curious, has anyone has received the complete eBook of Pro >> > >>>> Wicket from Apress? >> > >>>> >> > >>>> I have not received mine as yet even though the hard copy has been >> > >>>> release. I had taken part in the beta ebook program in August. >> > >>>> >> > >>>> I have also tried sending an email to Apress support - no response >> in >> > >>>> over a week! >> > >>>> >> > >>>> Not good. >> > >>>> >> > >>>> Cheers, >> > >>>> DeSoca >> >> >> -- >> Download Wicket 1.2.2 now! - http://wicketframework.org >> >> - >> Take Surveys. Earn Cash. Influence the Future of IT >> Join SourceForge.net's Techsay panel and you'll get the chance to share >> your >> opinions on IT & business topics through brief surveys -- and earn cash >> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV >> ___ >> Wicket-user mailing list >> Wicket-user@lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/wicket-user >> > > - > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share > your > opinions on IT & business topics through brief surveys -- and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > ___ > Wicket-user mailing list > Wicket-user@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/wicket-user > > -- View this message in context: http://www.nabble.com/Anyone-received-complete-Pro-Wicket-ebook--tf2295943.html#a6419276 Sent from the Wicket - User mailing list archive at Nabble.com. - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys -- and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV ___ Wicket-user mailing list Wicket-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-user
Re: [Wicket-user] Anyone received complete Pro Wicket ebook?
Sorry, my celebrations were premature, its the same 9 chapters as the beta book. What rotten service. Called and let a message with Apress support still no reply. De Soca wrote: > > Hi Martin, > > thanks, that did it. Strange that they never changed the link. > > Cheers. > > Martin Funk wrote: >> >> download the book even if it still says "(beta)" in the download area. >> worked for me. >> >> mf >> >> middledot schrieb: >>> I too bought a beta version of the book, hoping that I would be informed >>> of >>> the final release but no such luck. >>> The e-book is still in beta version on their website. >>> I tried to download the code for the book but it's not there either. >>> Strange. >>> Les >>> >>> De Soca wrote: >>> >>>> Hello, >>>> >>>> just curious, has anyone has received the complete eBook of Pro >>>> Wicket from Apress? >>>> >>>> I have not received mine as yet even though the hard copy has been >>>> release. I had taken part in the beta ebook program in August. >>>> >>>> I have also tried sending an email to Apress support - no response in >>>> over a week! >>>> >>>> Not good. >>>> >>>> Cheers, >>>> DeSoca >>>> >>>> >>>> >>>> >>>> - >>>> Take Surveys. Earn Cash. Influence the Future of IT >>>> Join SourceForge.net's Techsay panel and you'll get the chance to share >>>> your >>>> opinions on IT & business topics through brief surveys -- and earn cash >>>> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV >>>> ___ >>>> Wicket-user mailing list >>>> Wicket-user@lists.sourceforge.net >>>> https://lists.sourceforge.net/lists/listinfo/wicket-user >>>> >>>> >>>> >>> >>> >> >> >> - >> Take Surveys. Earn Cash. Influence the Future of IT >> Join SourceForge.net's Techsay panel and you'll get the chance to share >> your >> opinions on IT & business topics through brief surveys -- and earn cash >> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV >> ___ >> Wicket-user mailing list >> Wicket-user@lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/wicket-user >> >> > > -- View this message in context: http://www.nabble.com/Anyone-received-complete-Pro-Wicket-ebook--tf2295943.html#a6399301 Sent from the Wicket - User mailing list archive at Nabble.com. - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys -- and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV ___ Wicket-user mailing list Wicket-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-user
Re: [Wicket-user] Anyone received complete Pro Wicket ebook?
Hi Martin, thanks, that did it. Strange that they never changed the link. Cheers. Martin Funk wrote: > > download the book even if it still says "(beta)" in the download area. > worked for me. > > mf > > middledot schrieb: >> I too bought a beta version of the book, hoping that I would be informed >> of >> the final release but no such luck. >> The e-book is still in beta version on their website. >> I tried to download the code for the book but it's not there either. >> Strange. >> Les >> >> De Soca wrote: >> >>> Hello, >>> >>> just curious, has anyone has received the complete eBook of Pro >>> Wicket from Apress? >>> >>> I have not received mine as yet even though the hard copy has been >>> release. I had taken part in the beta ebook program in August. >>> >>> I have also tried sending an email to Apress support - no response in >>> over a week! >>> >>> Not good. >>> >>> Cheers, >>> DeSoca >>> >>> >>> >>> >>> - >>> Take Surveys. Earn Cash. Influence the Future of IT >>> Join SourceForge.net's Techsay panel and you'll get the chance to share >>> your >>> opinions on IT & business topics through brief surveys -- and earn cash >>> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV >>> ___ >>> Wicket-user mailing list >>> Wicket-user@lists.sourceforge.net >>> https://lists.sourceforge.net/lists/listinfo/wicket-user >>> >>> >>> >> >> > > > - > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share > your > opinions on IT & business topics through brief surveys -- and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > ___ > Wicket-user mailing list > Wicket-user@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/wicket-user > > -- View this message in context: http://www.nabble.com/Anyone-received-complete-Pro-Wicket-ebook--tf2295943.html#a6399223 Sent from the Wicket - User mailing list archive at Nabble.com. - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys -- and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV ___ Wicket-user mailing list Wicket-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-user
[Wicket-user] Anyone received complete Pro Wicket ebook?
Hello, just curious, has anyone has received the complete eBook of Pro Wicket from Apress? I have not received mine as yet even though the hard copy has been release. I had taken part in the beta ebook program in August. I have also tried sending an email to Apress support - no response in over a week! Not good. Cheers, DeSoca - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys -- and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV ___ Wicket-user mailing list Wicket-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-user
Re: [Wicket-user] Add another WizardStep conditionally
Hi Eelco, thanks for your reply. Yes I have seen UserRolesStep, however in that sample you need to know the type and number of WizardSteps to add beforehand. In my use case I will not know how many of a particular item that a user will be adding at runtime. I hope this makes things a bit clearer. Thanks again. Later, DeSoca On 19-Aug-06, at 1:38 PM, [EMAIL PROTECTED] wrote: > Message: 5 - 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=lnk&kid=120709&bid=263057&dat=121642 ___ Wicket-user mailing list Wicket-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-user
[Wicket-user] Add another WizardStep conditionally
Hi all, I have tried adding a WizardStep conditionally at runtime a few different ways with limited success. Can someone recommend the best approach to accomplish this? I have based my approach on the Wizard samples supplied, which is probably one of the best components I have found in any framework to assist with mundane CRUD operations. Thanks in advance. Later, DeSoca - 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=lnk&kid=120709&bid=263057&dat=121642 ___ Wicket-user mailing list Wicket-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-user