[appengine-java] Launch Default Email Client

2010-11-26 Thread Kris
Hi, I am semi-new to software development and to GAE, so please take it easy on me!! I have what is hopefully a simple question. I have developed an app that currently stores a list of customers in the datastore and one of the values of each customer is an email address. I am displaying the

[appengine-java] Re: Launch Default Email Client

2010-11-26 Thread Kris Barnes
Thanks!  That did the trick. -- Kris Barnes On Saturday, November 27, 2010 at 12:13 AM, Didier Durand wrote: Hi,Just using a mailto url in the html of your page (or inserted via aHTML() widget of GWT

[appengine-java] App Engine Code sending emails from Our Domain not from google.com or How to avoid Spoofing

2010-03-02 Thread Kris
Using the Google App Engine settings panel we have registered a new domain (e.g. OurDomain.com).The web of our application is now reachable directly from that domain however emails sent from our App Engine code are coming from Google.com instead of OurDomain.com. This then results in email

[appengine-java] Re: case sensitivity

2009-11-17 Thread Kris
://groups.google.com/group/google-appengine-java/search?group=goo... Kris wrote: I'm more concerned about the proper way to do this generically. I can't realistically store duplicates of every string based field that I may want to search for. On Nov 16, 11:36 am, Rusty Wright rwright.li

[appengine-java] case sensitivity

2009-11-16 Thread Kris
Is there any way to perform a JDO query on google app engine using a case insensitive string comparison? e.g. For example, Query query = pm.newQuery(User.class, userName.toLowerCase() == user password == pass); query.declareParameters(String user, String pass);

[appengine-java] Re: case sensitivity

2009-11-16 Thread Kris
, as an additional field/column, and then do the toLowerCase on the incoming parameter user name when you do the query and use that field/column that was stored in lower case. Kris wrote: Is there any way to perform a JDO query on google app engine using a case insensitive string

[appengine-java] Re: Local server works, Appspot fails with java.lang.StackOverflowError when Spring AOP is enabled

2009-11-04 Thread Kris
Hi Toby, I've just realised that I probably over-wrote the app with a new version yesterday. Did you get what you need? (If not, I can easily re-deploy and resend the ID.) Cheers, Kris On Oct 19, 8:30 pm, Toby Reyelts to...@google.com wrote: Kris, Can you send us your app id (privately

[appengine-java] Re: No handlers matched this URL.

2009-11-02 Thread Kris
This turned out to be a simple problem. On the client, http:// localhost/adminpoll matches the servlet. Once uploaded to GAE however, that URL no longer mathces - but http:// localhost/adminpoll/ does. (Note the trailing slash). On Nov 1, 9:39 am, Kris krismat...@gmail.com wrote: I'm having

[appengine-java] Re: Unable to start embedded HTTP server error

2009-10-20 Thread Kris Carle
The solutions is in this thread: http://groups.google.com/group/google-appengine-java/browse_thread/thread/df660675d21c64f0 SDK 1.2.6 requires the JVM argument -javaagent:sdk_root/lib/agent/ appengine-agent.jar If you are using the Eclipse plugin, the upgrade to 1.2.6 doesn't automatically add

[appengine-java] Re: Eclipse start server error after update to 1.2.6

2009-10-20 Thread Kris Carle
it helps here is the VM argument I used. -javaagent:/Applications/eclipse/plugins/ com.google.appengine.eclipse.sdkbundle_1.2.6.v200910131704/appengine- java-sdk-1.2.6/lib/agent/appengine-agent.jar Thanks, -Kris On Oct 14, 2:13 pm, Keith Platfoot kplatf...@google.com wrote: Hi Peter