[appengine-java] Re: Jax-ws webservices on AppEngine

2009-10-24 Thread Iqbal Yusuf Dipu
@Lance Is StAX in white list? Thanks. --~--~-~--~~~---~--~~ 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 fro

[appengine-java] Re: Bulk delete behind RPC

2009-10-24 Thread Yasuo Higa
Hi Eric, > I'm trying to delete some unwanted data from my datastore and found > some code using the DatastoreService that I modified to delete as many > entries as possible in 10 seconds: > > DatastoreService datastore = > DatastoreServiceFactory.getDatastoreService(); > Query query = new Query(

[appengine-java] Re: Exception while trying to run app

2009-10-24 Thread Shawn Brown
see http://tinyurl.com/yzhwl6p It's a known issue with upgrading. Look at the top result. --~--~-~--~~~---~--~~ 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 goo

[appengine-java] Re: Exception while trying to run app

2009-10-24 Thread Iqbal Yusuf Dipu
Solution to my problem was found here... http://groups.google.com/group/google-appengine-java/browse_thread/thread/df660675d21c64f0/0ec957ca22ffc877?lnk=gst&q=Unable+to+locate+the+App+Engine+agent.#0ec957ca22ffc877 Thanks. Iqbal Yusuf Dipu --~--~-~--~~~---~--~~ Y

[appengine-java] Re: Exception while trying to run app

2009-10-24 Thread Iqbal Yusuf Dipu
I just updated my sdk to 1.2.6 and having the same problem as described in above mail. I'm using Eclipse Galileo. The project that I'm working on was working just fine till day before yesterday. Thanks. Iqbal Yusuf Dipu Unable to start embedded HTTP server java.lang.RuntimeException: Unable to

[appengine-java] Authentication - So close.... getCurrentUser() still null

2009-10-24 Thread Bourke Floyd IV
This has been a pain from the beginning, but I'm so close I can smell it! First, I tried sending normal Authentication header to my app, but it was being striped off and not used. Then I found in documentation that I need to reference the Auth token I get from the ClientLogin for each of my servic

[appengine-java] Re: Gadget Hosting on App Engine

2009-10-24 Thread Brian Dorry
I will do that, thanks. On Oct 24, 12:00 pm, Roy Smith wrote: > I think this is more likely to be a gadget issue than an appengine issue. > Check the gadgets discussion group as a few other people are experiencing > the same issue > > On Sat, Oct 24, 2009 at 3:24 PM, Brian Dorry wrote: > > > I

[appengine-java] Re: Time zones implementation is broken in Java AppEngine

2009-10-24 Thread Alexander Kolesnikov
Well, I don't know exactly how you implement your application. In my case, the users select their location by country/city and that location has a time zone ID associated with it. The ID is standard as defined in Java, say Asia/Jakarta is the time zone for Jakarta, Indonesia. As soon as they select

[appengine-java] Re: Time zones implementation is broken in Java AppEngine

2009-10-24 Thread Rusty Wright
Alex, if I'm in California, USA, and I'm deploying my web application to a server in Greece, and someone in Japan uses my application, which time zone should the web application use, and how should the web server determine which time zone to use? Alexander Kolesnikov wrote: > I have just fou

[appengine-java] Re: SimpleDS: an alternative for Datastore persistence

2009-10-24 Thread Nacho Coloma
> i.e DataNucleus and JDO *does* support that, and the google-provided > plugin doesn't. > I didn't pretend to mean that it was a limitation in datanucleus, but specifically for the GAE plugin. Thanks for pointing out the difference. > > FWIW 1. a more accepted way of referring to such relations

[appengine-java] Re: SimpleDS: an alternative for Datastore persistence

2009-10-24 Thread datanucleus
> If instead you're talking about GAE/J specifics, as per the link that > you provided, then that is a different issue ... dependent on Googles > plugin for DataNucleus. Only they can comment on that. or as per the doc you linked to "The App Engine implementation of JDO does not yet implement thi

[appengine-java] Re: A matter in local time

2009-10-24 Thread Alexander Kolesnikov
The problem might be in the fact that AppEngine doesn't implement most of the time zones properly. Here I am outputting a number of attributes for different time zones. This code works fine locally but look what happens when I am running it on a deployed site. LOCAL: Asia/Seoul9false0

[appengine-java] Time zones implementation is broken in Java AppEngine

2009-10-24 Thread Alexander Kolesnikov
I have just found that, while everything works fine locally, the real AppEngine returns GMT for most time zones. I wonder if this is going to be fixed. Below see the local output and then the one I am having after uploading the app. Thanks, Alex LOCAL: Asia/Aden3false0Arabia Sta

[appengine-java] Re: SimpleDS: an alternative for Datastore persistence

2009-10-24 Thread datanucleus
> With JPA+RDBMS a relationship between two objects (say, "Invoice" and > "Customer") could be implemented by a "customer" attribute inside the > "Invoice" class. In the RDBMS, this is translated to a CUSTOMER_ID column in > the INVOICE table. Datanucleus does not support this (the relationship mu

[appengine-java] AccessControlException when using Spring Security with OpenID

2009-10-24 Thread ralph.kretz...@googlemail.com
Hello, I try to implement Spring Security with OpenID but I am getting a 'java.security.AccessControlException: access denied' for the RequestURI /j_spring_openid_security_chec It is working fine if I use '-D--enable_all_permissions=true' as VM Argument. Any ideas? Thanks, Ralph --~--~--

[appengine-java] Re: Runtime Exceptions

2009-10-24 Thread Nacho Coloma
How about jar -tvf appengine-api-1.0-sdk-1.2.1.jar | grep Exception At least, that should give you a list of Exceptions to support. If you find out more, please share :) On Oct 24, 6:46 am, Roy wrote: > I read a lot about failures and timeouts from the datastore, but I > can't find any documen

[appengine-java] Re: SimpleDS: an alternative for Datastore persistence

2009-10-24 Thread Nacho Coloma
Sorry, I should have been more explicit. Just for the record, we are talking about this: http://code.google.com/appengine/docs/java/datastore/relationships.html#Unowned_Relationships With JPA+RDBMS a relationship between two objects (say, "Invoice" and "Customer") could be implemented by a "custo

[appengine-java] Re: Gadget Hosting on App Engine

2009-10-24 Thread Roy Smith
I think this is more likely to be a gadget issue than an appengine issue. Check the gadgets discussion group as a few other people are experiencing the same issue On Sat, Oct 24, 2009 at 3:24 PM, Brian Dorry wrote: > > I have recently been tasked with working on creating a gadget for a > projec

[appengine-java] Gadget Hosting on App Engine

2009-10-24 Thread Brian Dorry
I have recently been tasked with working on creating a gadget for a project that is hosted on app engine. I am also hosting the gadget specification on app engine. The gadget specification is generated on the server side as it refers back to the application id that the gadget is hosted on (this p

[appengine-java] Re: Incoming Email Service

2009-10-24 Thread vs
I am facing the same issue. Basically the getContent() method returns ByteArrayInputStream instead of Multipart... Can someone please help? On Oct 23, 11:50 am, Kyle Roche wrote: > Hi, > > I was able to put together an incoming email servlet that can read the > subject and the metadata. Howeve

[appengine-java] Bulk delete behind RPC

2009-10-24 Thread Eric
Hi, I'm trying to delete some unwanted data from my datastore and found some code using the DatastoreService that I modified to delete as many entries as possible in 10 seconds: DatastoreService datastore = DatastoreServiceFactory.getDatastoreService(); Query query = new Query("PostalCodes"); lo

[appengine-java] Re: Spring MVC + Sitemesh problem

2009-10-24 Thread Marcel Overdijk
I'm successfully using Spring 3.0.0 RC1 with Sitemesh 2.4.2. I'm currently developing the app, but after I red this post I tried on GAE infra with simple decorator. Works well for m. On 23 okt, 19:00, "Jason (Google)" wrote: > Yes, please try changing the log levels to .INFO or .FINEST -- it's p

[appengine-java] inbound mail encoding problem

2009-10-24 Thread Prashant
Hi, i want to get mail sender's name so i tried *message.getFrom()[0].toString() *(followed by trimming out email id), it generally works but for some ids i get a weird string like *=?UTF-8?B?QvKYiGd1cyAFeGNlcHRp4pi8bg==?=* i know this is some encoding issue but i don't know how to fix this. if an

[appengine-java] Re: Servlet widgets - an alternative to GWT or servlet dispatch jsp paradigm

2009-10-24 Thread Roy Smith
Have a look at Apache Click On Fri, Oct 23, 2009 at 1:01 PM, Tor wrote: > > I'm very pleased with the Google Web Toolkit (GWT) and it would very > nice to adopt the same way of building html code user interfaces in > servlets in GAE - as an alternative to the servlet dispatching jsp > paradigm.

[appengine-java] Re: Datanucleus site/resources

2009-10-24 Thread datanucleus
> Is there any particular reason for the Datanucleus site not being > visible in some Southeastern Europe countries (e.g. Romania) ? Probably because that country has more than its fair share of spammers, so we needed to block some IP address ranges since the owner of those domains refused to res

[appengine-java] Datanucleus site/resources

2009-10-24 Thread Dorel Vaida
Sorry I send this here folks, but I've been trying to solve this in every other possible way and couldn't manage to access any of the Datanucleus guys. This question is for anyone that could answer on behalf of them: Is there any particular reason for the Datanucleus site not being visible in

[appengine-java] Re: SimpleDS: an alternative for Datastore persistence

2009-10-24 Thread datanucleus
> Now that we are discussing it, I am curious: why does datanucleus only > support owned relationships? There is not that much difference between the > typical Foreign Key field and a GAE Key property. JDO and JPA support **object** relationships, being Java standards for O-O persistence. Having

[appengine-java] Re: 1.2.5 memcache error

2009-10-24 Thread Gambrinus
I have the same problem. I'm trying search in google, but i don't found anything information over this topic. My class cache is: /** * */ package org.montequinto.util.cache; import java.util.Map; import javax.cache.Cache; import javax.cache.CacheException; import javax.cache.CacheFactory; im