[google-appengine] How to bill a user for an appengine application?

2012-10-06 Thread moissinac
Hello I'm searching some advices to enable the capability to bill my users. I will propose a service which send email alerts to my registered users. I won't really gain a lot of money, but I won't spend a lot to send the emails and the free limit of 100 emails with GAE in not enough. So I have

[google-appengine] Problem with 'HOW TO: Build a SOAP Server and a SOAP Client on Google App Engine'

2011-06-06 Thread moissinac
I'm trying to follow the page http://code.google.com/intl/fr-FR/appengine/articles/soap.html In the step 9, I get errors on the code like for the line MimeHeaders headers = getHeaders(req); the error is javax.xml.soap.MimeHeaders is not supported by Google App Engine's Java runtime

Re: [appengine-java] Good wurfl example for mobile detection on app engine?

2010-10-05 Thread Jean-Claude Moissinac
It works I have an application which uses WURFL I have to put a guide online But, in the meantime, I can confirm a fact: WURFL is a good way to do mobile detection in GAE -- Jean-Claude Moissinac On Tue, Oct 5, 2010 at 6:52 AM, Gal Dolber gal.dol...@gmail.com wrote: Hi, I used it long time

[appengine-java] Re: can we use Web-services in Gooogle app engine

2010-09-03 Thread moissinac
No true/false response possible. 1) Response time: if a GAE application calls web services, each call must be ended in the limited response time offered by Google; so if there is some delay in the response of the called web service, you need to manage this finely; it could be a bit complex 2)

[google-appengine] Re: Detect Mobile Phone

2010-08-23 Thread moissinac
I've made some tests with WURFL (from sourceforge) It works very well on my development platform But it fails on GAE due to the size limit: WURFL uses a huge XML file and GAE fails to open the compressed version of the file For now, I have no time to resolve this issue until end of september On

[appengine-java] Re: ehcache and GAE

2010-06-21 Thread moissinac
Previous tests from several users shown that the memcache was bugged when used with an expiration delay. For example, my own alert http://groups.google.com/group/google-appengine-java/browse_thread/thread/52fcfec1ddfd08aa/250a5efd49b7e8c4?q=moissinac+java+api+gae#250a5efd49b7e8c4 Is the problem

[appengine-java] Re: Necessity for Java graphics

2010-06-21 Thread moissinac
On 21 juin, 11:17, dflorey daniel.flo...@gmail.com wrote: I've been using server side graphics using libs that don't require AWT image. This works fine for me (including server side svg generation etc.) and you can take advantage of the app engine image transforms. Which ones? For SVG, I

[appengine-java] Re: Java Mail Service

2010-04-07 Thread moissinac
send() and sendToAdmins() methods, Can you try using sendToAdmins() ? Regards, KarthikR On Apr 1, 7:17 am, moissinac jcmoissi...@gmail.com wrote: Hello I have servlet with a code copied from the documentation for sending an email with the mail service Each time I call the service, I

[appengine-java] Re: Java Mail Service

2010-04-07 Thread moissinac
with a warning saying 'This request used a high amount of CPU and may soon exceed is quota' I don't see where my code use a such amount of CPU On 7 avr, 13:26, moissinac jcmoissi...@gmail.com wrote: Tried the following code MailService ms = MailServiceFactory.getMailService

[appengine-java] Java Mail Service

2010-04-01 Thread moissinac
Hello I have servlet with a code copied from the documentation for sending an email with the mail service Each time I call the service, I see the trace in the quota count like this: Mail Mail API Calls 0% 0% 5 of 7000 Okay Recipients Emailed 0% 0% 5 of 2000

[appengine-java] Re: Wiki on GAE

2010-03-31 Thread moissinac
J'ai trouvé peu de choses Surtout des solutions qui dépendent soit d'un système de fichiers, soit d'une base SQL et donc ne sont pas rapidement transposables sur GAE Juste un projet en cours pour GAE qui se déclare lui-même très préliminaire http://jamwiki.org/wiki/en/User:axelclk

[appengine-java] Wiki on GAE

2010-03-30 Thread moissinac
Hello I would like to run a wiki on GAE, something like Mediawiki. All wiki solution that I know are runing with a Mysql base in the background; so, there are not easily portable on GAE Do you know some wiki solution runing on GAE? -- You received this message because you are subscribed to the

[appengine-java] Re: cache expiration

2010-03-25 Thread moissinac
Yes, it's the same bug. But the proposed workaround seems to be irrelevant. And, the bug is coted 'Priority-Medium' I think that such a bug on the caching mechanism in a web infrastructure is a major bug: be unable to manage the expiration delay of cached objects is a critical problem -- You

[appengine-java] Re: cache expiration

2010-03-24 Thread moissinac
No one can help about expiration delay of the cache? On 19 mar, 16:51, moissinac jcmoissi...@gmail.com wrote: By replacing the line        cache.put(key, foo, exp,  MemcacheService.SetPolicy.SET_ALWAYS); by        cache.put(key, foo); Thecacheworks, but I loose the 'expirationdelay

[appengine-java] cache expiration

2010-03-19 Thread moissinac
In my application, I get values from captors Each value has a 5 minute validity. Each read from a captor cost a lot, so I've tried to put it in the GAE cache My code (JCache or low level api) is working with the cache as long as I don't use the exoiration delay. When I use the expiration delay,

[appengine-java] Re: SVG data in a jsp file

2010-02-16 Thread moissinac
On 14 fév, 19:35, Martin Trögner troegner_mar...@web.de wrote: My application shall create SVG  data which will be integrated in a jsp. For svg data you normally can use     object data=f.svg type=image/svg+xml width=200 height=200 / I think that you could have something like this object

[appengine-java] Re: JAI working in JAE?

2009-12-06 Thread moissinac
After a first try: - JAI has several flavour; one generic and a lot of specific binaries, each optimized for a specific target; so, with GAE, the only one which can be used is the generic non optimized version, because we must ignore what is the target In GAE - a simple sample from the

[appengine-java] Re: can image aspect ratio

2009-12-02 Thread moissinac
The Overview about the Image service Resize says You can resize the image while maintaining the same aspect ratio. It seems that it's a feature not a bug! -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group, send

[appengine-java] Re: can image aspect ratio

2009-12-02 Thread moissinac
I've plan for testing external library, but surely not before next week. You could try JAI, but I don't know if it is supported by GJava (Google Java) -- 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

[appengine-java] Re: XSLT Version

2009-11-03 Thread moissinac
See http://groups.google.com/group/google-appengine-java/browse_thread/thread/9c9fb88e1b175395/f8f9a9adcfeb044f?lnk=gstq=xslt#f8f9a9adcfeb044f and you see that saxon works with App Engine And Saxon support XSLT 2 So, with Saxon, App Engine supports XSLT 2

[appengine-java] XSLT Version

2009-11-01 Thread moissinac
XSLT is supported, but which? Is XSLT supported? Directly? With help of an external library? --~--~-~--~~~---~--~~ 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