[appengine-java] Re: SMS Already Verifies

2010-11-06 Thread Patou
It's a Pb with google app account !

Try to logging with the public interface :
http://appengine.google.com/

or by the google app interface

http://appengine.google.com/a/creativelift.net

There are two account, and just one is active !

Regards

Patrice

On Nov 5, 11:27 pm, citizen t...@creativelift.net wrote:
 Hi! When I try to create a new application, it asks me for SMS
 verification - but I have already been verified! Now it wont let me
 enter my phone number again because it says it has been used already
 but thats for this same account!

 My account is t...@creativelift.net and I am logging in 
 athttp://appengine.google.com/a/creativelift.net

 Thank you,

 Ted

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine for Java group.
To post to this group, send email to google-appengine-j...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[appengine-java] Re: Single Sign on between applications

2010-04-27 Thread Patou
With a Google Apps Domain (login with user in the domain), it's
possible, but for all public application (with google account) the
user must sign in for all application.

On Apr 26, 11:42 pm, nearm...@gmail.com wrote:
 You may be able to accomplish this by using sub-domains. For example:
 my-sso-app.appspot.com
 blog.my-sso-app.appspot.com
 forum.my-sso-app.appspot.com
 I'm not 100% sure but I believe you can share data, and authentication 
 between apps in the same domain.

 Sent via BlackBerry from T-Mobile-Original Message-
 From: Ikai L (Google) ika...@google.com
 Date: Mon, 26 Apr 2010 11:33:10
 To: google-appengine-java@googlegroups.com
 Subject: Re: [appengine-java] Single Sign on between applications

 Not natively. You may want to look into doing something with OpenID, which
 may make the process a bit less bothersome, but won't remove the need to
 login completely.

 On Sat, Apr 24, 2010 at 11:51 AM, terran terran.le...@gmail.com wrote:

  Was trying to look around for an answer and couldn't find it, but if I
  owned several applications, could i create a single sign on page that
  would log into both applications at the same time? For example, if i
  had a blog type of web site and I wanted to integrate it with a forum
  application I had, could I sign into both with 1 screen?

  --
  You received this message because you are subscribed to the Google Groups
  Google App Engine for Java group.
  To post to this group, send email to
  google-appengine-j...@googlegroups.com.
  To unsubscribe from this group, send email to
  google-appengine-java+unsubscr...@googlegroups.comgoogle-appengine-java%2B 
  unsubscr...@googlegroups.com
  .
  For more options, visit this group at
 http://groups.google.com/group/google-appengine-java?hl=en.

 --
 Ikai Lan
 Developer Relations, Google App Engine
 Twitter:http://twitter.com/ikai
 Delicious:http://delicious.com/ikailan

 
 Google App Engine links:
 Blog:http://googleappengine.blogspot.com
 Twitter:http://twitter.com/app_engine
 Reddit:http://www.reddit.com/r/appengine

 --
 You received this message because you are subscribed to the Google Groups 
 Google App Engine for Java group.
 To post to this group, send email to google-appengine-j...@googlegroups.com.
 To unsubscribe from this group, send email to 
 google-appengine-java+unsubscr...@googlegroups.com.
 For more options, visit this group 
 athttp://groups.google.com/group/google-appengine-java?hl=en.

 --
 You received this message because you are subscribed to the Google Groups 
 Google App Engine for Java group.
 To post to this group, send email to google-appengine-j...@googlegroups.com.
 To unsubscribe from this group, send email to 
 google-appengine-java+unsubscr...@googlegroups.com.
 For more options, visit this group 
 athttp://groups.google.com/group/google-appengine-java?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine for Java group.
To post to this group, send email to google-appengine-j...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[appengine-java] Re: open source pdf engine for GAE

2010-04-20 Thread Patou
Hello

In App Engine, You can't write a file to the file system. Otherwise
the save method can't be used in GAE.
Use this code to send the pdf to the navigator :

pdf.wrap();

String fileName = Example_03.pdf;

resp.setContentType(application/pdf);
resp.setHeader(Content-Disposition, attachment; filename=\ +
fileName + \);
ServletOutputStream outs = resp.getOutputStream();
pdf.getData().writeTo(outs);

Or to save to the datastore :
new Blob(pdf.getData().toByteArray());

Bests Regards

Patrice

On Apr 20, 4:18 am, jeno jeno...@gmail.com wrote:
 Hi François ,

 Thanks for your help. I have used PDFjet (PDFJet.jar  version 2.72)
 PDF class missing save method
 So i cant call pdf.save(d.pdf) method.

 Cheers
 jeno

 On Apr 19, 6:48 pm, François Masurel fm2...@mably.com wrote:





  Hi Jeno,

  You can try the PDFjet Open Source Edition 
  :http://pdfjet.com/os/edition.html

  François

  On 19 avr, 01:55, jeno jeno...@gmail.com wrote:

   Hi Guys,

   Anyone know open source java  pdf engine for GAE.

   Thanks
   Jeno

   --
   You received this message because you are subscribed to the Google Groups 
   Google App Engine for Java group.
   To post to this group, send email to 
   google-appengine-j...@googlegroups.com.
   To unsubscribe from this group, send email to 
   google-appengine-java+unsubscr...@googlegroups.com.
   For more options, visit this group 
   athttp://groups.google.com/group/google-appengine-java?hl=en.

  --
  You received this message because you are subscribed to the Google Groups 
  Google App Engine for Java group.
  To post to this group, send email to google-appengine-j...@googlegroups.com.
  To unsubscribe from this group, send email to 
  google-appengine-java+unsubscr...@googlegroups.com.
  For more options, visit this group 
  athttp://groups.google.com/group/google-appengine-java?hl=en.

 --
 You received this message because you are subscribed to the Google Groups 
 Google App Engine for Java group.
 To post to this group, send email to google-appengine-j...@googlegroups.com.
 To unsubscribe from this group, send email to 
 google-appengine-java+unsubscr...@googlegroups.com.
 For more options, visit this group 
 athttp://groups.google.com/group/google-appengine-java?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine for Java group.
To post to this group, send email to google-appengine-j...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[appengine-java] Cache-Controle Expiration on static files

2009-09-04 Thread Patou

hello,

I test the new sdk, and I see that we now add a expiration attribut in
the include tag in appengine-web.xml to set the expiration cache time.
But it's not seems to work .
My appengine-web.xml :
static-files
include path=/ressource/css/*.css expiration=10d/
include
include path=/ressource/css/img/*.* expiration=10d/
include
exclude path=**/*.gwt.rpc/
/static-files

When I deploy on internet, the header of all css and img file is :
Cache-Control:  max-age=0

Has anybody try to do works it ?
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google App Engine for Java group.
To post to this group, send email to google-appengine-java@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en
-~--~~~~--~~--~--~---