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
.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: users-unsubscr

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: Serializing restfb DefaultFacebookclient in a wicket facebook application

2011-05-15 Thread Bas Gooren
-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-unsubscr

Re: Serializing restfb DefaultFacebookclient in a wicket facebook application

2011-05-15 Thread labano10
/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 additional

Re: Serializing restfb DefaultFacebookclient in a wicket facebook application

2011-05-15 Thread Bas Gooren
/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

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

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,