[appengine-java] Re: gae.parent-pk doesnt work in list query

2011-08-15 Thread datanucleus
however i have the following issues. 1.I am using the query  Select c from ChatUser c where c.key =:keyList elsewhere and it is working fine. How can it be working? Because Google didn't respect valid JDOQL when they implemented their plugin and allowed nonsense like that query (the syntax is

[appengine-java] Re: gae.parent-pk doesnt work in list query

2011-08-15 Thread lp
On Aug 15, 6:09 pm, datanucleus andy_jeffer...@yahoo.com wrote: however i have the following issues. 1.I am using the query  Select c from ChatUser c where c.key =:keyList elsewhere and it is working fine. How can it be working? Because Google didn't respect valid JDOQL when they

[appengine-java] Re: javax.mail.SendFailedException: Send failure:Unauthorized Sender: Unauthorized sender

2011-08-15 Thread deepfriedbrain
I'm having the same problem. By chance, I stumbled upon this thread. I'm looking for a solution too. Thanks. On Aug 14, 1:22 am, Asmaa EL MOKHTARI elmokhtari.as...@gmail.com wrote: Please someone who has encountered the same problem before and who has a suggestion or a solution. Or maybe

[appengine-java] Re: javax.mail.SendFailedException: Send failure:Unauthorized Sender: Unauthorized sender

2011-08-15 Thread Simon Knott
There is another thread for this issue, on the main GAE forum, which has been answered by a Googler - https://groups.google.com/d/msg/google-appengine/Zx85suFS3zc/o5SeyhH4eSkJ -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To

Re: [appengine-java] Re: javax.mail.SendFailedException: Send failure:Unauthorized Sender: Unauthorized sender

2011-08-15 Thread Asmaa EL MOKHTARI
Hi, Apparently, if your sender email adress contains a dot like ( rr@gmail.com) you will get this error. So to fix this problem you must creat another sender email adress without dots and you should add it in the permition list like a new developer of your app. after that, you should connect

Re: [appengine-java] Re: javax.mail.SendFailedException: Send failure:Unauthorized Sender: Unauthorized sender

2011-08-15 Thread Asmaa EL MOKHTARI
Hi, Apparently, if your sender email adress contains a dots like ( rr@gmail.com) you will get this error. So to fix this problem you must creat another sender email adress without dots and you should add it in the permition list like a new developer of your app. after that, you should connect

[appengine-java] How to increase mapper quota?

2011-08-15 Thread Rob Patel
I am using google app engine Mapper API to delete all rows (approx. 2M) for a particular entity in my GAE datastore. However, even though I have a billed account, I still get - com.google.appengine.tools.mapreduce.MapReduceServlet processMapper: Out of mapper quota. Aborting request until quota

[appengine-java] Errors occurred during the build. Errors running builder 'Profiling Builder' on project ### Unknown local variable 7

2011-08-15 Thread scorpion
Hi Every1, Has any1 seen the above message. I get this while trying to compile. Here is the list of software - WinXP SP3 Eclipse SDK Version: 3.6.2 Google Eclipse plugin for appengine - 1.5.2 GWT - 2.3.0 jdk -1.6.024 This message doesnt seem to appear in any log files etc. Obviously the

[appengine-java] Re: javax.mail.SendFailedException: Send failure:Unauthorized Sender: Unauthorized sender

2011-08-15 Thread Shirley Kao
Any news on this issue? I run into the same problem. Same problem here. Email part of permissions list and owner of application. Any progrenss someone? BR On 13 aug, 00:24, Asmaa EL MOKHTARI elmokhtari.as...@gmail.com wrote: Please can any one help us to solve this problem

Re: [appengine-java] Re: javax.mail.SendFailedException: Send failure:Unauthorized Sender: Unauthorized sender

2011-08-15 Thread Taiga
Hi. I have the same problem. and I got the information for this problem from Japanese Googler on Google-App-Engine-Japan. (http://groups.google.com/group/google-app-engine-japan/browse_thread/thread/e76433f009f77e97) Appengine have taken a new, strict, rule for authorize sender-mail-address.

Re: [appengine-java] Re: javax.mail.SendFailedException: Send failure:Unauthorized Sender: Unauthorized sender

2011-08-15 Thread realdope
I'm having the same problem. I made an extra Gmail account, placed it under as a Owner, and confirmed all confirmations. But I'm still getting javax.mail.SendFailedException: Send failure (javax.mail.MessagingException: Illegal Arguments (java.lang.IllegalArgumentException: Unauthorized Sender:

[appengine-java] Re: javax.mail.SendFailedException: Send failure:Unauthorized Sender: Unauthorized sender

2011-08-15 Thread Taiga
Hi all. I have the same problem. and I got the information about this problem from Japanese Googler on Google-App-Engine-Japan. (http://groups.google.com/group/google-app-engine-japan/browse_thread/ thread/e76433f009f77e97) Appengine have taken a new, strict, rule for authorize sender-mail-

[appengine-java] Re: JDO NucleusObjectNotFoundException Exception: Could not retrieve entity of kind ? with key ?

2011-08-15 Thread jeffrey_t_b
I think that you need a key object first, e.g. Key formatkey = KeyFactory.createKey(Format.class.getSimpleName(), formatId); forma = (Format) pm.getObjectById(Format.class, formatkey ); On Aug 10, 11:19 am, aprendiz acast...@gmail.com wrote: Hello, I have a (owner) one-to-many bidirectional

[appengine-java] send email in eclipse development mode?

2011-08-15 Thread kfer38
How do you test sending out an email when running GAE project in development mode in eclipse? Can you only test smtp online? -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To view this discussion on the web visit

[appengine-java] Deploy button in Eclipse does not prompt for administrator account username

2011-08-15 Thread C De
So I installed Google App Engine for Java using Eclipse and successfully created the sample Guestbook project.I managed to run the project on my machine and also created an app id using the admin console. However when I try and deploy the app on the Google App Engine I do not get any prompt

[appengine-java] Re: Entity modelling

2011-08-15 Thread gk
We should forget about small efficiencies, say about 97% of the time: premature optimization is the root of all evil. On Aug 14, 4:21 pm, MK Z v5s12.msc...@gmail.com wrote: Hi, Thanks for your reply. The category is not related to the group - category holds value like Science/Tech/Music while

[appengine-java] Re: Entity modelling

2011-08-15 Thread J.Ganesan
There does not seem to be any need for a table with forumcategoryid and forumcategoryid. When a user creates a category/group, you have to update the corresponding category table/group table. As you have suggested, since the application is small it is far easier to handle issues, including column

[appengine-java] Re: GPE + Maven?

2011-08-15 Thread nacho
No one is using maven GPE togheter? -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine-java/-/3IYugURzNOAJ. To post to this group, send email

Re: [appengine-java] Push and pull queues

2011-08-15 Thread Ikai Lan (Google)
Task queues are used when you just want work backgrounded. Pull queues are typically used if you want better rate control and will worry about the scaling bit yourself. Pull queues are also accessible outside of App Engine via a REST API, so you could use Pull Queues for things like off site PDF

[appengine-java] Re: secure appengine urls with security constraints

2011-08-15 Thread objectuser
To require https, you can do this: security-constraint web-resource-collection url-pattern/mobile/*/url-pattern /web-resource-collection user-data-constraint transport-guaranteeCONFIDENTIAL/transport-guarantee /user-data-constraint

Re: [appengine-java] Image size is not properly detected by shadowbox.js or clearbox.js

2011-08-15 Thread Ikai Lan (Google)
I don't know the answer off the top of my head, but the way I'd attack this problem is by comparing the output sent by both servlet and static serving. I suspect the answer isn't in the HTTP headers (that's just be too easy, I guess). Might be something in the image's metadata? -- Ikai Lan

[appengine-java] How to HTTP Request a public Google Doc from GAE Java?

2011-08-15 Thread Slaine
Hi all, Does anyone know how a public (web published) Google doc can be requested with HTTP from GAE Java? I used to do this with this very straight forward code but for some reason, it does not work anymore. URL url = new URL(requestUrl.toString()); BufferedReader in = new BufferedReader(new

Re: [appengine-java] datastore statistics vs quota usage (again)

2011-08-15 Thread Ikai Lan (Google)
Are either of the indexed fields List properties? That still wouldn't explain the difference - my guess is it's just out of date. These numbers are calculated asynchronously. There was a recent bug related to this where the display is wrong, but for billing purposes you should still be billed for

Re: [appengine-java] Task queues locking

2011-08-15 Thread Ikai Lan (Google)
No, 8/minute 32/minute are not high rates. This is really strange. Can you tell me anything about the entities? Are they large? Could they have exploding indexes? We need to get to the bottom of why these ops are timing out. Are these timeouts correlated with the latency spikes in master/slave

Re: [appengine-java] java.net.SocketTimeoutException: Timeout while fetching

2011-08-15 Thread Ikai Lan (Google)
Any chance you're using App Engine to do an URLFetch to yourself? That is, you're using HTMLUnit to generate some pages or something? If so, enable concurrent requests: http://code.google.com/appengine/docs/java/config/appconfig.html#Using_Concurrent_Requests -- Ikai Lan Developer Programs

[appengine-java] Re: secure appengine urls with security constraints

2011-08-15 Thread Kesava Neeli
Thanks. I already had https enabled. That was straightforward from GAE docs. What I was trying to do is to prevent anyone from hitting my appengine urls other than customers who use our mobile app on phones. I could use some public/private key on handset and server and control who can access

Re: [appengine-java] Re: secure appengine urls with security constraints

2011-08-15 Thread JT
I don't think there is a way unless you setup your own vpn. Also internet supposed to be shared and public ;) On Aug 15, 2011 3:16 PM, objectuser kevin.k.le...@gmail.com wrote: To require https, you can do this: security-constraint web-resource-collection url-pattern/mobile/*/url-pattern

Re: [appengine-java] Re: javax.mail.SendFailedException: Send failure:Unauthorized Sender: Unauthorized sender

2011-08-15 Thread Greg
I had the same problem - the application broke even though there had been no changes in a month. Changing the sender to a gmail address without the dot solved it, as advertised. It was not encouraging that there was still no fix by Google, and that the workaround was necessary. As someone

Re: [appengine-java] Eclipse GAE with OSX Lion

2011-08-15 Thread Ikai Lan (Google)
What error are you getting? You didn't attach it. Anyone else on Lion doing okay? Having problems? ... as a cautionary tale for other developers, upgrading day 1 usually leads to some kind of craziness. Not to mention Lion is going to mess up your scrollbars. -- Ikai Lan Developer Programs

Re: [appengine-java] How to modify appcfg.cmd

2011-08-15 Thread Ikai Lan (Google)
Is this an appcfg error? The exception seems to indicate you are having a problem compiling JSPs. Can you look into that? -- Ikai Lan Developer Programs Engineer, Google App Engine plus.ikailan.com | twitter.com/ikai On Thu, Aug 11, 2011 at 12:17 AM, asjad asjad1...@gmail.com wrote: Hello

Re: [appengine-java] Eclipse GAE with OSX Lion

2011-08-15 Thread Bruno Fuster
Eclipse+GAE is working fine with Lion for me and some co-workers using it. On Mon, Aug 15, 2011 at 8:15 PM, Ikai Lan (Google) ika...@google.comwrote: What error are you getting? You didn't attach it. Anyone else on Lion doing okay? Having problems? ... as a cautionary tale for other

[appengine-java] Channel API not working on development server

2011-08-15 Thread Sekhar
Channel API isn't working at all for me on development server - is there any setting that isn't default? Everything works fine when I upload. I'm using 1.5.2 Java. -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To view this