Re: Adding css resource available to all component in the application using wicket 9.x

2021-09-09 Thread Arunachalam Sibisakkaravarthi
I've found some problems (loading js at page level) in loading js resources in our web application. It might be the cause of loading js in the header section, we have to verify it in our app I'll create a mini application if needed. Thanks guys *Thanks And RegardsSibi.ArunachalammCruncher* On

Re: Adding css resource available to all component in the application using wicket 9.x

2021-09-08 Thread Martin Grigorov
Please create a mini application demonstrating the issue and share it at GitHub. On Thu, Sep 9, 2021, 05:56 Arunachalam Sibisakkaravarthi < arunacha...@mcruncher.com> wrote: > Yes somehow It worked in 7.x > Based on the suggestions from you all, In 9.x, I use custom > IHeaderResponseDecorator >

Re: Adding css resource available to all component in the application using wicket 9.x

2021-09-08 Thread Arunachalam Sibisakkaravarthi
Yes somehow It worked in 7.x Based on the suggestions from you all, In 9.x, I use custom IHeaderResponseDecorator for Css resources to load into the header section, it works. And JavaScriptFilteredIntoFooterHeaderResponse is used with a wicket-container bucket for JS resources to load into the foo

Re: Adding css resource available to all component in the application using wicket 9.x

2021-09-08 Thread Martin Grigorov
On Wed, Sep 8, 2021 at 12:04 PM Arunachalam Sibisakkaravarthi < arunacha...@mcruncher.com> wrote: > Thanks guys for your feedback > Implementing custom IHeaderResponseDecorator for css resources works for > me. > Then I noticed that both css and js resources are loaded in the header. Is > that exp

Re: Adding css resource available to all component in the application using wicket 9.x

2021-09-08 Thread Arunachalam Sibisakkaravarthi
Thanks guys for your feedback Implementing custom IHeaderResponseDecorator for css resources works for me. Then I noticed that both css and js resources are loaded in the header. Is that expected behaviour in Wicket 9.x? because in my previous implementation in Wicket 7.x JS loaded in the footer wh

Re: Adding css resource available to all component in the application using wicket 9.x

2021-09-07 Thread Martin Grigorov
Hi, Instead of dealing with response decorators you could use org.apache.wicket.markup.html.IHeaderContributor getHeaderContributorListeners().add( return response -> { response.render(CssHeaderItem.forReference(css1)); response.render(CssHeaderItem.forReference(css2)); }) IHeade

Re: Adding css resource available to all component in the application using wicket 9.x

2021-09-07 Thread Francois Meillet
Hi Arunachalam, Migration From Wicket 7 to 8 setHeaderResponseDecorator(new JavaScriptToBodyCustomResponseDecorator("footer")); Wicket 8 setHeaderResponseDecorator(response -> { return new ResourceAggregator(new JavaScriptFilteredIntoFooterHeaderResponse(response, "footer")); }); Wicke

Adding css resource available to all component in the application using wicket 9.x

2021-09-07 Thread Arunachalam Sibisakkaravarthi
Hi guys, I am doing Wicket migration from 7.x to 9.x In Wicket7.x I add css resource as below, it was working getHeaderResponseDecorators().add(getHeaderResponseDecorator()); private IHeaderResponseDecorator getHeaderResponseDecorator() { return response -> { response.render(CssHeader

Re: Using Wicket to generate E-Mails.

2019-03-12 Thread Thorsten Schöning
Guten Tag Martin Grigorov, am Dienstag, 12. März 2019 um 17:12 schrieben Sie: > To render more complex markup you need to use ComponentRenderer. > You can render whole Pages or just Components (like Panels). Great, I'll have a look at that. > I do not understand what you mean with `adding newlin

Re: Using Wicket to generate E-Mails.

2019-03-12 Thread Martin Grigorov
Guten Tag, On Tue, Mar 12, 2019 at 5:57 PM Thorsten Schöning wrote: > Guten Tag Martin Grigorov, > am Dienstag, 12. März 2019 um 15:18 schrieben Sie: > > > There is an example how to do this in wicket-examples: > > - http://examples8x.wicket.apache.org/mailtemplate/ > > - > https://github.com/ap

Re: Using Wicket to generate E-Mails.

2019-03-12 Thread Thorsten Schöning
Guten Tag Martin Grigorov, am Dienstag, 12. März 2019 um 15:18 schrieben Sie: > There is an example how to do this in wicket-examples: > - http://examples8x.wicket.apache.org/mailtemplate/ > - > https://github.com/apache/wicket/tree/master/wicket-examples/src/main/java/org/apache/wicket/examples/

Re: Using Wicket to generate E-Mails.

2019-03-12 Thread Martin Grigorov
all, > > I'm using Wicket for some frontend of some web app and pretty much > like it because it allows me to clearly separate skins, language > files, templates and to not mix too much view and business logic. My > current requirements are to send mails in some web service backend a

Using Wicket to generate E-Mails.

2019-03-12 Thread Thorsten Schöning
Hi all, I'm using Wicket for some frontend of some web app and pretty much like it because it allows me to clearly separate skins, language files, templates and to not mix too much view and business logic. My current requirements are to send mails in some web service backend and I want t

Re: Bean not properly injected into another bean when using Wicket stateless page

2017-04-05 Thread Tomasz Dziurko
Ok, thank you Martin for detailed explanation. I understand your rationale, to avoid future problems I have added check to our tests that makes sure that all classes annotated with @SpringBean must have no-args constructor :) On 5 April 2017 at 09:52, Martin Grigorov wrote: > On Tue, Apr 4, 2017

Re: Bean not properly injected into another bean when using Wicket stateless page

2017-04-05 Thread Martin Grigorov
On Tue, Apr 4, 2017 at 9:40 PM, Tomasz Dziurko wrote: > Hi Martin > > Two questions: > 1. Which class? HomePageHandler ? > Yes, HomePageHandler. The problem is the following: @SpringBean tell Wicket to inject a proxy in the Wicket components. If the class is an interface then Wicket uses java.l

Re: Bean not properly injected into another bean when using Wicket stateless page

2017-04-04 Thread Tomasz Dziurko
Hi Martin Two questions: 1. Which class? HomePageHandler ? 2. I have digged deeper and in fact there is a check whether to use CGLib or Objenesis (if there is no-args constructor Objenesis is chosen) but is it an expected behaviour? Or maybe this case could be a trigger to discuss proper way to de

Re: Bean not properly injected into another bean when using Wicket stateless page

2017-04-04 Thread Martin Grigorov
Hi, On Apr 4, 2017 7:38 PM, "Tomasz Dziurko" wrote: Hello I have a problem with wicket-spring-boot <-> wicket integration. Bean annotated with @Serviceis not properly injected into a backing bean that is injected into a stateless Page using @SpringBean annotation. Generally: @StatelessCompone

Bean not properly injected into another bean when using Wicket stateless page

2017-04-04 Thread Tomasz Dziurko
Hello I have a problem with wicket-spring-boot <-> wicket integration. Bean annotated with @Serviceis not properly injected into a backing bean that is injected into a stateless Page using @SpringBean annotation. Generally: @StatelessComponent @MountPath("home-page") public class HomePage extend

Re: Issue using Wicket Bootstap Less

2016-10-11 Thread Erik Strid
gt; > >>>>>>>> LessCacheManager. A cleared cache will trigger a recompile in > >> > >>>>>>>> LessCacheManager.getCss(URLSource) on a cached URLSource, in > >> > >> this > >> > >>>>> case >

Re: Issue using Wicket Bootstap Less

2016-10-08 Thread Martin Grigorov
;>>>>>> the compiler add the imported files to the importedSources >> list, >> > >>>>>> returned >> > >>>>>>>> by AbstractHierarchicalSource.getImportedSources(), once more. >> > >>>> And >> &

Re: Issue using Wicket Bootstap Less

2016-10-06 Thread Martin Grigorov
calSource.getImportedSources(), once more. > > >>>> And > > >>>>> the > > >>>>>>>> importedSources list will grow with imported files after each > > >>>> call to > > >>>>>>>> clearC

Re: Issue using Wicket Bootstap Less

2016-10-05 Thread Erik Strid
> >>>>>>>> condition in AbstractHierarchicalSource. > >>>>> addImportedSource(LessSource) > >>>>>>>> (importedSources isn't thread safe). > >>>>>>>> > >>>>>>>> Furthermo

Re: Issue using Wicket Bootstap Less

2016-10-04 Thread Tobias Soloschenko
Furthermore I think there is an issue with the >>>>>>>> LessCacheManager.getCss(URLSource). For the first file that is >>>>>> compiled >>>>>>>> will the list of imported sources for lessSource be empty. The >>>>>>>> lastM

Re: Issue using Wicket Bootstap Less

2016-10-04 Thread Erik Strid
he first time. > >> > > > > > >> > > > > You should be able to see these two issues in this commit > >> > > > > https://github.com/strido/wicket-bootstrap/commit/ > >> > > > > 2be0d8d4294162bd103e63c74198d90457e6069e &

Re: Issue using Wicket Bootstap Less

2016-09-28 Thread Martin Grigorov
t; > You should be able to see these two issues in this commit >> > > > > https://github.com/strido/wicket-bootstrap/commit/ >> > > > > 2be0d8d4294162bd103e63c74198d90457e6069e >> > > > > >> > > > > Should I report t

Re: Issue using Wicket Bootstap Less

2016-09-28 Thread Martin Grigorov
cket-bootstrap/issues)? > > > > > > > > > > Regards > > > > > Erik Strid > > > > > > > > > > On Tue, Sep 6, 2016 at 10:49 AM, Martin Grigorov < > > mgrigo...@apache.org > > > > > > > > > wrote

Re: Issue using Wicket Bootstap Less

2016-09-28 Thread Erik Strid
; > > > > Regards > > > > Erik Strid > > > > > > > > On Tue, Sep 6, 2016 at 10:49 AM, Martin Grigorov < > mgrigo...@apache.org > > > > > > > wrote: > > > > > > > > > Hi, > > > > > > > >

Re: Issue using Wicket Bootstap Less

2016-09-22 Thread Martin Grigorov
ed sources contains "null" then you should ask > at > > > > https://github.com/SomMeri/less4j/issues. > > > > > > > > What I can do in Wicket-Bootstrap-Less is to add protection against > > this > > > > NullPointerException by ignoring al

Re: Issue using Wicket Bootstap Less

2016-09-22 Thread Erik Strid
t; this > > > NullPointerException by ignoring all "null"s. But this may lead to > broken > > > UI! > > > Please file an issue at > > > https://github.com/l0rdn1kk0n/wicket-bootstrap/issues if you think > this > > > could help. > > >

Re: Issue using Wicket Bootstap Less

2016-09-20 Thread Martin Grigorov
l0rdn1kk0n/wicket-bootstrap/issues if you think this > > could help. > > > > Martin Grigorov > > Wicket Training and Consulting > > https://twitter.com/mtgrigorov > > > > On Tue, Sep 6, 2016 at 10:39 AM, Erik Strid > wrote: > > > > > Hi. &

Re: Issue using Wicket Bootstap Less

2016-09-20 Thread Erik Strid
;null"s. But this may lead to broken > UI! > Please file an issue at > https://github.com/l0rdn1kk0n/wicket-bootstrap/issues if you think this > could help. > > Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov > > On Tue, Sep 6

Re: Issue using Wicket Bootstap Less

2016-09-06 Thread Martin Grigorov
ase file an issue at https://github.com/l0rdn1kk0n/wicket-bootstrap/issues if you think this could help. Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Tue, Sep 6, 2016 at 10:39 AM, Erik Strid wrote: > Hi. > > We are using Wicket Bootstap Less in our proje

Issue using Wicket Bootstap Less

2016-09-06 Thread Erik Strid
Hi. We are using Wicket Bootstap Less in our project and have an issue with the Less compilation. >From time to time the compilation fails for some of the Less files in our project, usually we see this in our Selenium Grid but it have happened locally as well. When the compilation fails we

Re: Using Wicket with Adobe Forms (FDF)

2016-01-25 Thread arronlee
Did you have any idea about text extraction from pdf files <http://www.pqscan.com/extract-text/> ? - Best Regards, Arron Next Tomorrow is Another Day. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Using-Wicket-with-Adobe-Forms-FDF-tp4446987p467343

Re: Using Wicket 6.20 give following error

2015-07-22 Thread Serban.Balamaci
revious version than 6.x). I guess it's this one https://code.google.com/p/jqwicket/ -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Using-Wicket-6-20-give-following-error-tp4671619p4671648.html Sent from the Users forum mailing list a

Re: Google Map using Wicket

2015-07-02 Thread Martin Grigorov
4.nabble.com/Google-Map-using-Wicket-tp4671468p4671476.html > Sent from the Users forum mailing list archive at Nabble.com. > > - > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > >

Re: Google Map using Wicket

2015-07-02 Thread Shengche Hsiao
-wicket.1842946.n4.nabble.com/Google-Map-using-Wicket-tp4671468p4671476.html > Sent from the Users forum mailing list archive at Nabble.com. > > - > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For add

Re: Google Map using Wicket

2015-07-02 Thread nazeem
Thank you for pointing. I found so many other projects which are good ones. But no way to reach these links from wicket site ? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Google-Map-using-Wicket-tp4671468p4671476.html Sent from the Users forum mailing list

Re: Google Map using Wicket

2015-07-02 Thread Martin Grigorov
gle maps on wicket application. > > Regards > Nazeem > > > -- > View this message in context: > http://apache-wicket.1842946.n4.nabble.com/Google-Map-using-Wicket-tp4671468.html > Sent from the Users forum mailing list archive at Nabble.com. > > ---

Google Map using Wicket

2015-07-02 Thread nazeem
. Regards Nazeem -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Google-Map-using-Wicket-tp4671468.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr

Re: Running a local process using Wicket

2015-03-23 Thread Christoph Läubrich
Depending on your enviourment you can either use: - Signed Java Applet - ActiveX Control - Browser Plugin - Any other "active" technology As mentioned earlier that is nothing specific to Wicket. And you should consider why you want to switch to a WebApp if you have requirements to start local

Re: Running a local process using Wicket

2015-03-23 Thread Sebastien
application. > > Wicket is one of the technology options we are considering. > > Our question: Is it possible, and if so, how, to run a local process on > the > > users machine (normally run from the command line) from Wicket. > > Thanks > > > > -- > > View

Re: Running a local process using Wicket

2015-03-23 Thread Richter, Marvin
cket.1842946.n4.nabble.com/Running-a-local-process-using-Wicket-tp4670070.html > Sent from the Users forum mailing list archive at Nabble.com. > > - > To unsubscribe, e-mail: users-unsubscr...@wicket.apach

Running a local process using Wicket

2015-03-23 Thread drf
-- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Running-a-local-process-using-Wicket-tp4670070.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: users

RE: Can I process a POST with simple non-Json parameters using wicket-restannotations

2014-08-06 Thread Bruce Lombardi
38 AM To: users@wicket.apache.org Subject: Re: Can I process a POST with simple non-Json parameters using wicket-restannotations I think you might be looking for the query parameters of the http://ci.apache.org/projects/wicket/apidocs/6.0.x/org/apache/wicket/request /Request.html class. See Chap

Re: Can I process a POST with simple non-Json parameters using wicket-restannotations

2014-08-05 Thread Paul Bors
I think you might be looking for the query parameters of the http://ci.apache.org/projects/wicket/apidocs/6.0.x/org/apache/wicket/request/Request.html class. See Chapter 9 of the Wicket Guide: http://wicket.apache.org/guide/guide/single.html#requestProcessing You can get to the Request from any

Can I process a POST with simple non-Json parameters using wicket-restannotations

2014-08-05 Thread Bruce Lombardi
Hi, I have successfully setup a restful service using Wicketstuff wicket-restannotation that accepts Json parameters. But I need to write something in Wicket that will accepts a post of an order confirmation from another source that does not use Json. Is there a simple way of doing that with wi

Re: Using Wicket and Hibernate

2013-11-21 Thread Dan Alvizu
Here's an example of wicket spring and hibernate all working together, with an h2 database: https://github.com/dalvizu/wicket-spring-hibernate-template -Dan On Thu, Nov 21, 2013 at 8:30 AM, Gerrit Wassink wrote: > Hello, > I am reading "Wicket in Action" the part over wicket, spring and > hib

Using Wicket and Hibernate

2013-11-21 Thread Gerrit Wassink
Hello, I am reading "Wicket in Action" the part over wicket, spring and hibernate.Since i am new to concepts like wicket, spring and hibernate i want to learn about them.But also learning three new tools together is a bit much. Is it therefore a good idea to forget about Spring and make the mvc w

Re: Using Wicket and Hibernate

2013-11-21 Thread Gerrit Wassink
Thanks! Dan Alvizu , 21-11-2013 14:59: Here's an example of wicket spring and hibernate all working together, with an h2 database: https://github.com/dalvizu/wicket-spring-hibernate-template -Dan On Thu, Nov 21, 2013 at 8:30 AM, Gerrit Wassink wrote: > Hello, > I am reading "W

Re: How to pre-populate a file in FileUpload field using wicket 6.9

2013-08-26 Thread Peter Henderson
I think you will find this is prevented by the browser for security reasons. A naughty web app could fill in the upload with say "/etc/passwd" which would be bad. Peter. On 25 August 2013 12:12, eeshan.laddha wrote: > How to per-populate a file in FileUpload field usi

How to pre-populate a file in FileUpload field using wicket 6.9

2013-08-25 Thread eeshan.laddha
How to per-populate a file in FileUpload field using wicket 6.9? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/How-to-pre-populate-a-file-in-FileUpload-field-using-wicket-6-9-tp4661067.html Sent from the Users forum mailing list archive at Nabble.com

Re: Dynamic Context Menu using wicket-jquery-ui

2013-06-17 Thread Sebastien
Hi Colin, Thank you! :) Yes, I confirm you that the issue raised in the previous mail has been solved... Best regards, Sebastien. On Mon, Jun 17, 2013 at 3:54 AM, Colin Rogers < colin.rog...@objectconsulting.com.au> wrote: > Sebestien, > > I did get the chance to look at your first suggestion.

RE: Dynamic Context Menu using wicket-jquery-ui

2013-06-16 Thread Colin Rogers
: 16 June 2013 03:32 To: users@wicket.apache.org Subject: Re: Dynamic Context Menu using wicket-jquery-ui Hi Colin, By trying to help you on this topic, I finally end up with a working ContextMenu implementation (so, I add it in wicket-jquery-ui-6.8.2-SNAPSHOT...) You can either use it or have a look at th

Re: Dynamic Context Menu using wicket-jquery-ui

2013-06-15 Thread Sebastien
Hi Colin, By trying to help you on this topic, I finally end up with a working ContextMenu implementation (so, I add it in wicket-jquery-ui-6.8.2-SNAPSHOT...) You can either use it or have a look at the code to complete your own if this one does not full-fit your needs... ContextMenu: https://git

Re: Dynamic Context Menu using wicket-jquery-ui

2013-06-13 Thread Sebastien
Hi Colin, Nice try :) It's not perfect for now but its interesting! (actually bronius is also using wicket-jquery-ui, but not the Menu; he's trying to integrate a context-menu plugin...) So, for the short time I had today, here is my current feedback: First, I am not yet convinced

Dynamic Context Menu using wicket-jquery-ui

2013-06-12 Thread Colin Rogers
Wicketeers, I'm attempting to develop a reusable context menu component. I'm nearly there, but having a few issues, and thought I might share in the hope I might get some help. I realise that another person (bronius) is also having a go at this, but his implementation isn't usin

Re: New Open Source application using Wicket : artifact-listener.org

2013-05-31 Thread Martijn Dashorst
Nice service. Sounds like a good idea! Martijn On Fri, May 31, 2013 at 10:13 AM, Guillaume Smet wrote: > Hi, > > We wanted to present you our first Open Source application powered by > Wicket. We use Wicket since 1.3 but it's the first application we can > release as an Open Source project. > >

New Open Source application using Wicket : artifact-listener.org

2013-05-31 Thread Guillaume Smet
Hi, We wanted to present you our first Open Source application powered by Wicket. We use Wicket since 1.3 but it's the first application we can release as an Open Source project. It's a Maven Central notification service built on Wicket 6.8.0. Reason why we thought it might be interesting to pos

CheckBox Column random behaviour when using wicket Bootstrap 0.8

2013-04-12 Thread David Beer
protected void onComponentTag(ComponentTag tag) { tag.put("onClick", js); } @Override public void onRequest() { } }); return panel; } private class CheckPanel extends Panel { public CheckPanel(String

Re: Using Wicket-autocomplete.js in own custom textfield

2013-04-04 Thread Martin Grigorov
'll have to take a better look at > it. > > Thanks for the answer! > > > > > > -- > View this message in context: > http://apache-wicket.1842946.n4.nabble.com/Using-Wicket-autocomplete-js-in-own-custom-textfield-tp4657702p4657712.html > Sent fro

Re: Using Wicket-autocomplete.js in own custom textfield

2013-04-03 Thread Merlijn
Yes, I have looked at Select2 but don't know if it also supports generic Wicket Components instead of Strings. I'll have to take a better look at it. Thanks for the answer! -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Using-Wicket-autocomplete

Re: Using Wicket-autocomplete.js in own custom textfield

2013-04-03 Thread Dan Retzlaff
lijn > > > > -- > View this message in context: > http://apache-wicket.1842946.n4.nabble.com/Using-Wicket-autocomplete-js-in-own-custom-textfield-tp4657702.html > Sent from the Users forum mailing list archive at Nabble.com. > > -

Using Wicket-autocomplete.js in own custom textfield

2013-04-03 Thread Merlijn
use the default js file from Wicket or if not if there is a library that makes this task a little easier. Kind regards, Merlijn -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Using-Wicket-autocomplete-js-in-own-custom-textfield-tp4657702.html Sent from the Users

Re: Anyone using Wicket-Stuff Facebook

2013-02-21 Thread Stephen Walsh
This was the code that I implemented to get the access Token. Obviously it isn't finished yet because I need to implement some error handling, actual saving and of the user, etc., but it's a framework that hopefully can help someone else that wants to use OAuth in the Scribe package. Note: I'm al

Re: Anyone using Wicket-Stuff Facebook

2013-02-20 Thread Stephen Walsh
I got this figure out. I'll post my solution tomorrow when I have a few minutes. Basically, I wasn't understanding that the code was coming back in a page parameter. Once I understood that it was fairly easy to implement. On Monday, February 18, 2013, Stephen Walsh wrote: > That's where I'm head

Errors using wicket-cdi with WAS 8

2013-02-19 Thread Edwin Bosveld
Hi Guys, I'm attempting to use Wicket 6.5 with Websphere AS 8. This works fine, but the problems occur when I add CDI into the mix. To do this I'm using the wicket-cdi library. Even with a basic class injection I get the following errors: [19-2-13 16:29:54:405 CET] 002e AnnotatedType W Annot

Re: Anyone using Wicket-Stuff Facebook

2013-02-18 Thread Stephen Walsh
That's where I'm headed right now. I had a signin page with PageParameters that picked it up by accident... I think I'm headed in the right direction now. I'll post my solution when I get it finished. I'd still be interested to see your solution also. Thanks again. ___

RE: Anyone using Wicket-Stuff Facebook

2013-02-18 Thread Michael Chandler
> The browser gets a token back that makes perfect sense and the example is > completed. > How do I "consume" the token? I'll play around with it a bit and let you > know what > I come up with. Thanks for the help. Based on the path I was taking, the redirect URI is the key. Facebook redirec

Re: Anyone using Wicket-Stuff Facebook

2013-02-18 Thread Stephen Walsh
On Mon, Feb 18, 2013 at 5:27 PM, Michael Chandler < michael.chand...@onassignment.com> wrote: > Facebook should post the access token to your OAuth Accept Redirect URL > which you can consume and set to a Token instance. The browser gets a token back that makes perfect sense and the example is c

RE: Anyone using Wicket-Stuff Facebook

2013-02-18 Thread Michael Chandler
token in the query string if memory serves. When I have something working, I'll gladly share it with you to provide clarification. Mike -Original Message- From: Stephen Walsh [mailto:step...@connectwithawalsh.com] Sent: Monday, February 18, 2013 12:26 PM To: users@wicket.apache.org S

Re: Anyone using Wicket-Stuff Facebook

2013-02-18 Thread Stephen Walsh
On Mon, Feb 18, 2013 at 1:59 PM, Michael Chandler < michael.chand...@onassignment.com> wrote: > you should be able to define a return URL when a user successfully > authenticates that you host This is the part that I don't understand. I guess I create a separate OAuth class page that launches w

RE: Anyone using Wicket-Stuff Facebook

2013-02-18 Thread Michael Chandler
integration so hopefully I am not over simplifying. Mike -Original Message- From: Stephen Walsh [mailto:step...@connectwithawalsh.com] Sent: Monday, February 18, 2013 10:47 AM To: users@wicket.apache.org Subject: Re: Anyone using Wicket-Stuff Facebook I'm also using Scribe, Martin.

Re: Anyone using Wicket-Stuff Facebook

2013-02-18 Thread Stephen Walsh
I'm also using Scribe, Martin. I'm following up with the developer to figure out how to use it. He has a copy and paste in his example which obviously won't work for an actual user. https://github.com/fernandezpablo85/scribe-java/blob/master/src/test/java/org/scribe/examples/FacebookExample.java

Re: Anyone using Wicket-Stuff Facebook

2013-02-17 Thread Martin Grigorov
Hi, If you need to implement OAuth authentication then I can recommend you https://github.com/fernandezpablo85/scribe-java It is easy to implement both OAuth v.1 and v.2 with it On Mon, Feb 18, 2013 at 5:28 AM, Stephen Walsh < step...@connectwithawalsh.com> wrote: > https://github.com/wicketstu

Re: Anyone using Wicket-Stuff Facebook

2013-02-17 Thread Ernesto Reinaldo Barreiro
Hi Stephen. I don't know the answer to your question... I want just to point out that a few months ago I tried to use the API and I was hit by this bug on facebook API https://developers.facebook.com/bugs/391962640871463 Hope it has been fixed in the mean time? On Mon, Feb 18, 2013 at 4:28 AM,

Anyone using Wicket-Stuff Facebook

2013-02-17 Thread Stephen Walsh
https://github.com/wicketstuff/core/wiki/Facebook Anyone using this that can point me in the right direction on how to use the behaviors? I followed the example on getting a login button and it seems like that works well, but I have no idea to tell if the user has validated and how to capture tha

Re: How to create the achor in wicket java class without using wicket id

2012-09-03 Thread Martin Grigorov
xecuted).. > > but i am unable to create the link in the message. > > > > > > > -- > View this message in context: > http://apache-wicket.1842946.n4.nabble.com/How-to-create-the-achor-in-wicket-java-class-without-using-wicket-id-tp4651707p46

Re: How to create the achor in wicket java class without using wicket id

2012-09-03 Thread chaitanya b
other page. (onclick functionality will be executed).. but i am unable to create the link in the message. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/How-to-create-the-achor-in-wicket-java-class-without-using-wicket-id-tp4651707p4651712.html Sent from the Users for

Re: How to create the achor in wicket java class without using wicket id

2012-09-03 Thread chaitanya b
-the-achor-in-wicket-java-class-without-using-wicket-id-tp4651707p4651711.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e

Re: How to create the achor in wicket java class without using wicket id

2012-09-03 Thread Martin Grigorov
I want the hyperlink only for the contact administration in the above >> > message? >> > how can i do that? can any one of you please help me. >> > >> > >> > >> > Thanks >> > chaitanya >> > >> > >> > >> &g

Re: How to create the achor in wicket java class without using wicket id

2012-09-03 Thread chaitanya b
on."); > > > > I want the hyperlink only for the contact administration in the above > > message? > > how can i do that? can any one of you please help me. > > > > > > > > Thanks > > chaitanya > > > > > > > > -- >

Re: How to create the achor in wicket java class without using wicket id

2012-09-03 Thread Martin Grigorov
message in context: > http://apache-wicket.1842946.n4.nabble.com/How-to-create-the-achor-in-wicket-java-class-without-using-wicket-id-tp4651707.html > Sent from the Users forum mailing list archive at Nabble.com. > > -

Re: 404 error using Wicket 1.5.4 and Websphere 6.1

2012-07-05 Thread rawe
terisk=true - com.ibm.ws.webcontainer.removetrailingservletpathslash=true - com.ibm.ws.webcontainer.invokeFiltersCompatibility=true Before I was running Wicket 1.4.18 with servlet configuration on WS 6.1 ! -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/404-error-u

Streaming Files back to client with using Wicket Pages

2012-06-06 Thread MattyDE
irectly. Everything works fine. But when i stream the file back to client wicket throws this error (which is comprehensible). But how can i say to wicket: "Hey I've sended the response before, dont care about!' ? Iam using wicket 1.4.19 Thanks in Advance for any help. And ex

Re: How do I keep component paths constant across unit tests when using Wicket Tester

2012-04-21 Thread Martin Makundi
r > > Does anyone know how I can force the index generation to be more > deterministic / repeatable. Alternatively, is there a way of wild-carding or > otherwise generalising the path, so as to make them immune to

RE: Using Wicket 1.5 with Oracle Application Server

2012-04-11 Thread Thomas.Norton
That was the problem. Thanks! -Original Message- From: Martin Grigorov [mailto:mgrigo...@apache.org] Sent: Wednesday, April 11, 2012 9:48 AM To: users@wicket.apache.org Subject: Re: Using Wicket 1.5 with Oracle Application Server Any reason to have wicket-jmx.jar in the classpath ? If

Re: 404 error using Wicket 1.5.4 and Websphere 6.1

2012-04-11 Thread rawe
Yes, I think the problem could be the servlet-api version. WAS 6.1 is running with servlet-api 2.4, so I won't install a wicket 1.5 application on it! Thanks for your help! Ralph -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/404-error-using-Wicket-1-5-

Re: 404 error using Wicket 1.5.4 and Websphere 6.1

2012-04-11 Thread Martin Grigorov
2 >> >> -- >> View this message in context: >> http://apache-wicket.1842946.n4.nabble.com/404-error-using-Wicket-1-5-4-and-Websphere-6-1-tp4548356p4548678.html >> Sent from the Users forum mailing list archive at Nabble.com. >> >> --

Re: 404 error using Wicket 1.5.4 and Websphere 6.1

2012-04-11 Thread Andrew Geery
CKET-2732 > https://issues.apache.org/jira/browse/WICKET-2732 > > -- > View this message in context: > http://apache-wicket.1842946.n4.nabble.com/404-error-using-Wicket-1-5-4-and-Websphere-6-1-tp4548356p4548678.html > Sent from the Users forum

Re: Using Wicket 1.5 with Oracle Application Server

2012-04-11 Thread Martin Grigorov
 at > com.evermind.server.ApplicationServerLauncher.run(ApplicationServerLauncher.java:131) >                at java.lang.Thread.run(Thread.java:595) > > Does anyone have any ideas on what could cause this? > > From: Norton, Thomas [External/Top Echelon] > Sent: Tuesday, April

RE: Using Wicket 1.5 with Oracle Application Server

2012-04-11 Thread Thomas.Norton
(Thread.java:595) Does anyone have any ideas on what could cause this? From: Norton, Thomas [External/Top Echelon] Sent: Tuesday, April 10, 2012 10:57 AM To: 'users@wicket.apache.org' Subject: Using Wicket 1.5 with Oracle Application Server We use WebLogic 11g as our development environment and OA

Re: 404 error using Wicket 1.5.4 and Websphere 6.1

2012-04-11 Thread rawe
.1842946.n4.nabble.com/404-error-using-Wicket-1-5-4-and-Websphere-6-1-tp4548356p4548678.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional

Re: 404 error using Wicket 1.5.4 and Websphere 6.1

2012-04-11 Thread Martin Grigorov
-- > View this message in context: > http://apache-wicket.1842946.n4.nabble.com/404-error-using-Wicket-1-5-4-and-Websphere-6-1-tp4548356p4548554.html > Sent from the Users forum mailing list archive at Nabble.com. > > -

Re: 404 error using Wicket 1.5.4 and Websphere 6.1

2012-04-11 Thread rawe
emporarily Ralph -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/404-error-using-Wicket-1-5-4-and-Websphere-6-1-tp4548356p4548554.html Sent from the Users forum mailing list archive at Nabble.com. --

Re: 404 error using Wicket 1.5.4 and Websphere 6.1

2012-04-11 Thread Martin Grigorov
le the request. > > Thanks in advance > > Ralph > > -- > View this message in context: > http://apache-wicket.1842946.n4.nabble.com/404-error-using-Wicket-1-5-4-and-Websphere-6-1-tp4548356p4548356.html > Sent from the Users forum mailing list archive at Nabble.com. &

404 error using Wicket 1.5.4 and Websphere 6.1

2012-04-11 Thread rawe
der Wicket 1.4.18 on Websphere 6.1 and Tomcat5 and also under Wicket 1.5.4 on Tomcat6. But not with Wicket 1.5.4 and Websphere 6.1 Do you have any hints? Thanks in advance Ralph -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/404-error-using-Wicket-1-5

RE: Using Wicket 1.5 with Oracle Application Server

2012-04-10 Thread Thomas.Norton
To: users@wicket.apache.org Subject: Re: Using Wicket 1.5 with Oracle Application Server Hi, On Tue, Apr 10, 2012 at 5:56 PM, wrote: > We use WebLogic 11g as our development environment and OAS 10.1.3.1 for > everything else.  Our wicket pages work fine in WebLogic but generate 500 > status c

Re: Using Wicket 1.5 with Oracle Application Server

2012-04-10 Thread Martin Grigorov
Hi, On Tue, Apr 10, 2012 at 5:56 PM, wrote: > We use WebLogic 11g as our development environment and OAS 10.1.3.1 for > everything else.  Our wicket pages work fine in WebLogic but generate 500 > status codes in OAS.  After looking around on online for a little bit, I > found some suggestions

Using Wicket 1.5 with Oracle Application Server

2012-04-10 Thread Thomas.Norton
We use WebLogic 11g as our development environment and OAS 10.1.3.1 for everything else. Our wicket pages work fine in WebLogic but generate 500 status codes in OAS. After looking around on online for a little bit, I found some suggestions that I should use the WicketServlet instead of the Wi

  1   2   3   4   >