I need to read cookies.
In simple Java servlet I can use next code:
protected void doPost(HttpServletRequest req, HttpServletResponse resp)
throws ServletException, IOException {
HttpSession userSession = req.getSession(true);
String currentRootUrl =
(String) userSession
I use GoogleAuth call, that opens my page and add some arguments to page url:
http://localhost:8080/Test?token=CKF50YzIHxCT85KMAg
How (and where in class Test, in constructor, or something else?) I can read
arguments (token=CKF50YzIHxCT85KMAg) ?
--
View this message in context:
http://www.nabb
I use next code:
public Object onSubmitFromTestForm()
{
String testLink;
testLink =
AuthSubUtil.getRequestUrl("http://localhost:8080/Test";,
"http://www.google.com/calendar/feeds/";,
; Em Fri, 20 Jun 2008 09:45:44 -0300, IT.Adviser <[EMAIL PROTECTED]>
> escreveu:
>
> Return an URL object:
>
> public Object onSubmitFromTestForm() {
> return new URL("http://somethingelse.com";);
> }
>
>
--
View this message in context:
http://
I had submit event handler. I need to return external link (external to
site). Example: i work under site mysite.com, and need to change url (load
page into browser) from somethingelse.com.
As I understand I can use next code:
@InjectPage
private TestPage _test;
public O
Is there are any examples with GoogleAPI usage throught Tapestry? Can you
gice me such examples, or link?
--
View this message in context:
http://www.nabble.com/Google-APITapestry-tp17898838p17898838.html
Sent from the Tapestry - User mailing list archive at Nabble.com.
--
I need to call
http://code.google.com/apis/accounts/docs/AuthForWebApps.html#AuthSubRequest
AuthSubRequest throught Tapestry. I has Java examples, that use this
function. But I can't understand how change this code with Tapestry usage.
--
View this message in context:
http://www.nabble.com/Goo