Re: wicket facebook application

2012-04-10 Thread mnadeem
Look into this one https://reachmnadeem.wordpress.com/2012/04/09/wicket-facebook/ -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/wicket-facebook-application-tp3490139p4546617.html Sent from the Users forum mailing list archive at Nabble.com

Re: Serializing restfb DefaultFacebookclient in a wicket facebook application

2011-05-16 Thread labano10
che-wicket.1842946.n4.nabble.com/Serializing-restfb-DefaultFacebookclient-in-a-wicket-facebook-application-tp3524700p3525647.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: user

Re: Serializing restfb DefaultFacebookclient in a wicket facebook application

2011-05-15 Thread Bas Gooren
nabble.com/Serializing-restfb-DefaultFacebookclient-in-a-wicket-facebook-application-tp3524700p3524749.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@wicket.apac

Re: Serializing restfb DefaultFacebookclient in a wicket facebook application

2011-05-15 Thread labano10
e.com/Serializing-restfb-DefaultFacebookclient-in-a-wicket-facebook-application-tp3524700p3524749.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For addit

Re: Serializing restfb DefaultFacebookclient in a wicket facebook application

2011-05-15 Thread Bas Gooren
pache-wicket.1842946.n4.nabble.com/Serializing-restfb-DefaultFacebookclient-in-a-wicket-facebook-application-tp3524707p3524707.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-uns

Serializing restfb DefaultFacebookclient in a wicket facebook application

2011-05-15 Thread labano10
com.mycompany.myApp.page.AppPage I know all model objects need to implement serializable, but DefaultFacebookClient is from restfb. How should I handle this? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Serializing-restfb-DefaultFacebookclient-in-a-wicket-facebook-application

Serializing restfb DefaultFacebookclient in a wicket facebook application

2011-05-15 Thread labano10
com.mycompany.myApp.page.AppPage I know all model objects need to implement serializable, but DefaultFacebookClient is from restfb. How should I handle this? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Serializing-restfb-DefaultFacebookclient-in-a-wicket-facebook-application

Re: wicket facebook application

2011-05-02 Thread Josh Kamau
Thanks Peter. I hadnt thought about that. I will do it that way. Josh. On Mon, May 2, 2011 at 7:10 PM, Peter Karich wrote: > Why not doing this directly the wicket-way with PageParameters and your > own Session? > > FBPage(PageParameters params) { > // do something with: params.getString("x

Re: wicket facebook application

2011-05-02 Thread Peter Karich
Why not doing this directly the wicket-way with PageParameters and your own Session? FBPage(PageParameters params) { // do something with: params.getString("xy"); // construct a new MySession object within the WicketApp.init method: // @Override Session newSession(Request request, Respo

wicket facebook application

2011-05-02 Thread Josh Kamau
I am doing a facebook application in wicket. To get facebook authentication token, I have written a wicket filter as below: package com.mycompany.myapp.config; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.InputStream; import java.net.URL; import javax.servle