[appengine-java] Reading child values

2011-03-15 Thread Ralfeus
Hi
Probably the topic is already discussed and not once but still I can't
find any explanation :-(
So, I have an object, which contains list of another objects. Like
this:

@PersistenceCapable
public class ItemCollection {
@PrimaryKey
@Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
Key key;
@Persistent
String Name;
@Persistent(mappedBy = owner)
ListItem items = new ArrayListItem();
}

and have class Item:

@PersistenceCapable
public class Item {
@PrimaryKey
@Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
Key key;
@Persistent
String name;
@Persistent
ItemCollection owner;
}

Then I try to persist parent object:
Item item = new Item();
item.name = Item 1;
coll = new ItemCollection();
coll.Name = Collection 1;
coll.items.add(item);
PersistenceManager pm = PMF.get().getPersistenceManager();
pm.makePersistent(coll);

And then I try to retrieve it:
PersistenceManager pm = PMF.get().getPersistenceManager();
ExtentItemCollection extent = pm.getExtent(ItemCollection.class);
IteratorItemCollection iterator = extent.iterator();
while (iterator.hasNext())
{
coll = iterator.next();
}


And I see the ItemCollection fields (like Name) are retrieved but
coll.items remains empty (but not null). How can I get child 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 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: Gettin white page when trying to log in - cause of exception.... even after deleting all _ah_SESSION Entities???

2011-03-15 Thread Simon Knott
Have you tried flushing MemCache?  Sessions are serialized in there as well 
as the datastore.

-- 
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.



[appengine-java] Re: Deleted APP, recover app ID

2011-03-15 Thread IvanRdz
Sorry, I ´m unable to recover my app ID and I´m in a hurry!!! Why
Google says you mantain your app ID although it is deleted but later
you cannot register an app with this same ID neither access to the old
app.

Please help help help

On 14 mar, 14:41, IvanRdz ivan.rd...@gmail.com wrote:
 Hello,

 I deleted myapp5 days ago (due to HR datastore migration) and I can
 ´trecoverthisappid. When I try to register newappwith this same
 name in this same account, Google says that thisIdis not available.
 I remember a warning saying that there was no problem about theappID
 if theappis deleted. But I can´t register it.

 Can anyone help me please?

-- 
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.



[appengine-java] Re: Deleted APP, recover app ID

2011-03-15 Thread Simon Knott
It was mentioned on this forum a few weeks ago that App IDs are not freed 
up, even when deleted.  I can't find the message from Ikai at the moment - 
the process to migrate to HR is to create a new app and to get Google to 
create an alias, pointing your old app ID to the new app ID.

-- 
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.



[appengine-java] Re: SHA1 digest error

2011-03-15 Thread john abbott
HI,

Just incase anyone finds this post I fixed this issue by removing the 
MANIFEST file in another .jar - I thought I'd already done this but had 
accidently bundled my Apache library twice.

This thread explains more:
http://groups.google.com/group/google-appengine-java/browse_thread/thread/72113438a6c46c5d


Cheers

John

-- 
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.



[appengine-java] Re: Deleted APP, recover app ID

2011-03-15 Thread Mike Lawrence
http://code.google.com/appengine/kb/general.html

How many applications can I create with Google App Engine?
 You can delete your existing applications via the Admin Console if
you want to create more,
but you will not be able to re-register an application ID.

On Mar 14, 9:41 am, IvanRdz ivan.rd...@gmail.com wrote:
 Hello,

 I deleted my app 5 days ago (due to HR datastore migration) and I can
 ´t recover this app id. When I try to register new app with this same
 name in this same account, Google says that this Id is not available.
 I remember a warning saying that there was no problem about the app ID
 if the app is deleted. But I can´t register it.

 Can anyone help me please?

-- 
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.



[appengine-java] Re: Deleted APP, recover app ID

2011-03-15 Thread IvanRdz
I found this answer on other post.

You can't. You might be able to create a new app, then submit a
request (via billing issues form -- see FAQs) to create an alias from
the old to new app id.

Robert

On 15 mar, 12:08, Simon Knott knott.si...@gmail.com wrote:
 It was mentioned on this forum a few weeks ago that App IDs are not freed
 up, even when deleted.  I can't find the message from Ikai at the moment -
 the process to migrate to HR is to create a new app and to get Google to
 create an alias, pointing your old app ID to the new app ID.

-- 
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.



[appengine-java] Re: Deleted APP, recover app ID

2011-03-15 Thread IvanRdz
ok, I don´t find anything conclusive at forums or Google Appengine
doc.

And I remember something about HR migration, but I though It was only
for datastore migration. I don´t need migration because our app is in
development, I only wont create new app with same ID :..(

I found this at forums:


You can't. You might be able to create a new app, then submit a
request (via billing issues form -- see FAQs) to create an alias from
the old to new app id.

Robert


On 15 mar, 12:08, Simon Knott knott.si...@gmail.com wrote:
 It was mentioned on this forum a few weeks ago that App IDs are not freed
 up, even when deleted.  I can't find the message from Ikai at the moment -
 the process to migrate to HR is to create a new app and to get Google to
 create an alias, pointing your old app ID to the new app ID.

-- 
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.



[appengine-java] Re: Deleted APP, recover app ID

2011-03-15 Thread IvanRdz
And how do I get Google to create an alias?

On 15 mar, 12:08, Simon Knott knott.si...@gmail.com wrote:
 It was mentioned on this forum a few weeks ago that App IDs are not freed
 up, even when deleted.  I can't find the message from Ikai at the moment -
 the process to migrate to HR is to create a new app and to get Google to
 create an alias, pointing your old app ID to the new app ID.

-- 
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.



[appengine-java] Re: Deleted APP, recover app ID

2011-03-15 Thread IvanRdz
Here is the link to the billing issues form
http://code.google.com/support/bin/request.py?contact_type=AppEngineBillingSupport

On 15 mar, 16:37, IvanRdz ivan.rd...@gmail.com wrote:
 I found this answer on other post.

 You can't. You might be able to create a new app, then submit a
 request (via billing issues form -- see FAQs) to create an alias from
 the old to new appid.

 Robert

 On 15 mar, 12:08, Simon Knott knott.si...@gmail.com wrote:

  It was mentioned on this forum a few weeks ago that App IDs are not freed
  up, even when deleted.  I can't find the message from Ikai at the moment -
  the process to migrate to HR is to create a new app and to get Google to
  create an alias, pointing your old appIDto the new appID.

-- 
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.



[appengine-java] Re: suggestions on template engine for GAE-java

2011-03-15 Thread Misiak
Igor is right...I've checked the package
com.google.appengine.tools.appstats inside appengine-api-labs-*.jar.
There are quite a few classes dealing with templating
(TemplateObjectModel and its subclasses, TemplateTool,
TemplateValueHelper, etc.). It seems to me as an effort to create
Django-style templating for Java world. Am I right? Is there something
like this really under the hood? Can anybody provide any further
information about this feature? Is there a way to get source code for
this classes. I think most Java developers will appreciate such
elegant and easy to use templating approach with template inheritance,
powerful template tags and filters.

-- 
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.



[appengine-java] Webservice provider URL blocked, getting I/O error when trying to reach host.

2011-03-15 Thread Marco Muuri
Hi.

I have tried to post an issue that has not resulted in anything so I
am trying this forum to see if anyone here can give me ideas or help.
I am part of a project that has developed an application which fetches
information from other systems.
One of our content providers has a web service interface that we are
using.

We were happily using their production servers for a while and
suddenly they stopped working.
We then changed to their test servers which are located in the same
place geographically and it all worked again.

I am also able to do calls towards them from my machine (getting
replies) both with the developer appengine and with the poster plugin
in firefox.
I have also tried executing a simple get to both of the URL:s using a
form and is ends up with the same message for their production URL.
We tried to solve it short-term by setting up a transparent proxy that
worked for a while but now that also seems blocked by the appengine.

I was hoping for a swift reply or at least some indication on that
this issue is being handled but have heard nothing since the 24:th of
February when the issue owner asked me if this is still occurring

I am reaching for straws here and I am not sure whether it is
something we are doing with our SOAP client that breaks things after a
while (I do not think so since we are still happily using their test-
servers and because a simple HTTP GET does not work either).
Unfortunately this is a make or break for the application on appengine
and I think I have tried most of the options available for us, any
input is appreciated.

Please see the issue for more details
http://code.google.com/p/googleappengine/issues/detail?id=4642

Regards,
Marco

-- 
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.



[appengine-java] Re: App Engine plugin (Java) for Eclipse terminates unexpectedly

2011-03-15 Thread Jay Young
There is an issue with the JVM in Apple's release.  See the thread and issue 
linked below.  I recommend the solution posted in Comment #39 on the issue 
tracker.

Thread:  
https://groups.google.com/forum/#!topic/google-appengine-java/WiImnzVb9Fo
Issue:  http://code.google.com/p/googleappengine/issues/detail?id=4712

-- 
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.



[appengine-java] javax.mail.internet.MimeMultipart is a restricted class

2011-03-15 Thread Alberto Sandoval Sotelo
I get this error only in development engine:

com.google.gwt.user.server.rpc.UnexpectedException: Service method 'public 
abstract java.lang.String 
pruebadocs.client.GreetingService.greetServer(java.lang.String) throws 
java.lang.IllegalArgumentException' threw an unexpected exception: 
java.lang.NoClassDefFoundError: javax.mail.internet.MimeMultipart is a 
restricted class. Please see the Google  App Engine developer's guide for 
more details.

Please help me i dont know what else to do.

I tried adding mail.jar to my lib directory and did't work either.

I have las versions of the SDK's.

-- 
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.



[appengine-java] Re: suggestions on template engine for GAE-java

2011-03-15 Thread Jay Young
http://code.google.com/closure/templates/

Google doesn't push their Closure Tools very hard, but I've had a lot of 
success with their templating engine.  Take a look at the docs.  It's not 
Django/PHP/JSP style templating, so it does take a bit of re-learning.  That 
said, there are a lot of benefits to their approach.

-- 
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.



Re: [appengine-java] javax.mail.internet.MimeMultipart is a restricted class

2011-03-15 Thread Ronmell Fuentes
Hi,
as far as I know, when sending mail using GAE with javamail, you cannot use
attachments,
because this attachments use
Message-Multipar-DataSourceHandler-input/output
and, acording to gae's documentation, you cannot use files in GAE.

the error means that class cannot be used in gae.

cheers,

R. F.

On Tue, Mar 15, 2011 at 10:49 AM, Alberto Sandoval Sotelo 
alberto2...@gmail.com wrote:

 I get this error only in development engine:

 com.google.gwt.user.server.rpc.UnexpectedException: Service method 'public
 abstract java.lang.String
 pruebadocs.client.GreetingService.greetServer(java.lang.String) throws
 java.lang.IllegalArgumentException' threw an unexpected exception:
 java.lang.NoClassDefFoundError: javax.mail.internet.MimeMultipart is a
 restricted class. Please see the Google  App Engine developer's guide for
 more details.

 Please help me i dont know what else to do.

 I tried adding mail.jar to my lib directory and did't work either.

 I have las versions of the SDK's.

 --
 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.




-- 
*-Information Technologies Engineering-*
ausencia de evidencia  ≠  evidencia de ausencia
http://culturainteractiva.blogspot.com/

-- 
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.



[appengine-java] Re: Development AppEngine server quits with no warnings.

2011-03-15 Thread crllvnc
+1... 2 days lost. Arghhh.

-- 
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.



[appengine-java] Re: Weird performance problem last 3 days or so

2011-03-15 Thread WillSpecht
Has anyone tried deploying a different app to the slow appid then
redploying the old app?

On Mar 13, 11:20 am, Michael Green rilkeanm...@gmail.com wrote:
 Thanks for the tip!  I've confirmed the exact same behavior.  I deployed the
 same application to a new appspot domain and it seems to be running much
 faster.    My problem is that I've set up a Google App domain for the
 first.  So before going through the headache to switch to a new domain, i'd
 be interested in investigating what is happening.

-- 
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.



Re: [appengine-java] Unable to connect to repository http://dl.google.com/eclipse/plugin/3.6/content.xml

2011-03-15 Thread Ikai Lan (Google)
I haven't reproduced this, but wget returns weird errors for that .xml URL.
I'm escalating this.

Ikai Lan
Developer Programs Engineer, Google App Engine
Blog: http://googleappengine.blogspot.com
Twitter: http://twitter.com/app_engine
Reddit: http://www.reddit.com/r/appengine



On Mon, Mar 14, 2011 at 5:20 AM, arash arsh7...@gmail.com wrote:

 when I try to install GWT for eclipse through
 http://dl.google.com/eclipse/plugin/3.6
 I see this error:

 Unable to connect to repository
 http://dl.google.com/eclipse/plugin/3.6/content.xml
 Unable to connect to repository
 http://dl.google.com/eclipse/plugin/3.6/content.xml
 Connection timed out: connect

 how can i solve this problem?

 --
 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.



-- 
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.



[appengine-java] Re: Development AppEngine server quits with no warnings.

2011-03-15 Thread Jay Young
http://code.google.com/p/googleappengine/issues/detail?id=4712

http://code.google.com/p/googleappengine/issues/detail?id=4712Check 
comment #39 for a work-around.

On Tuesday, March 15, 2011 2:09:44 PM UTC-4, Cyrille Vincey wrote:

 +1... 2 days lost. Arghhh.

-- 
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.



[appengine-java] Re: Gettin white page when trying to log in - cause of exception.... even after deleting all _ah_SESSION Entities???

2011-03-15 Thread Daniel
Where can I do the flush of the MemCache?

On Mar 15, 11:18 am, Simon Knott knott.si...@gmail.com wrote:
 Have you tried flushing MemCache?  Sessions are serialized in there as well
 as the datastore.

-- 
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.



[appengine-java] Re: javax.mail.internet.MimeMultipart is a restricted class

2011-03-15 Thread Alberto Sandoval Sotelo
I'm getting the same error.

But it works in the cloud GAE.



On Mar 15, 11:13 am, Ronmell Fuentes ringe...@gmail.com wrote:
 Hi,
 as far as I know, when sending mail using GAE with javamail, you cannot use
 attachments,
 because this attachments use
 Message-Multipar-DataSourceHandler-input/output
 and, acording to gae's documentation, you cannot use files in GAE.

 the error means that class cannot be used in gae.

 cheers,

 R. F.

 On Tue, Mar 15, 2011 at 10:49 AM, Alberto Sandoval Sotelo 









 alberto2...@gmail.com wrote:
  I get this error only in development engine:

  com.google.gwt.user.server.rpc.UnexpectedException: Service method 'public
  abstract java.lang.String
  pruebadocs.client.GreetingService.greetServer(java.lang.String) throws
  java.lang.IllegalArgumentException' threw an unexpected exception:
  java.lang.NoClassDefFoundError: javax.mail.internet.MimeMultipart is a
  restricted class. Please see the Google  App Engine developer's guide for
  more details.

  Please help me i dont know what else to do.

  I tried adding mail.jar to my lib directory and did't work either.

  I have las versions of the SDK's.

  --
  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.

 --
 *-Information Technologies Engineering-*
 ausencia de evidencia  ≠  evidencia de 
 ausenciahttp://culturainteractiva.blogspot.com/

-- 
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.



Re: [appengine-java] javax.mail.internet.MimeMultipart is a restricted class

2011-03-15 Thread Alberto Sandoval Sotelo
But when i deploy it to the cloud GAE it works fine.

so?

-- 
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.



Re: [appengine-java] Re: Gettin white page when trying to log in - cause of exception.... even after deleting all _ah_SESSION Entities???

2011-03-15 Thread Fred Pallesen
we added an admin-servlet to call clearAll() on the cache.
note you may have to clear all sessions too, in the appspot Datastore Viewer
... as this will be loaded on next version and may conflict with a next
serialVersionUID

how may this be done programmatically? anyone?

- Fred

-- 
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.



[appengine-java] App Engine Crashing: Here is the log.

2011-03-15 Thread Abhai Chaudhary


POST /mygenie/login HTTP/1.1 500 0 
http://helpgenie.appspot.com/mygenie/FD286EA470EE8C0E9DA69FBC31262946.cache.html;
 Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/5.0; SLCC2; .NET 
CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; 
.NET4.0C; MS-RTC LM 8),gzip(gfe) helpgenie.appspot.com ms=14286 cpu_ms=0 
api_cpu_ms=0 cpm_usd=0.75 pending_ms=3684 exit_code=203

 I 2011-03-15 17:28:23.960 

The process handling this request unexpectedly died. This is likely to cause a 
new process to be used for the next request to your application. (Error code 
203)

-- 
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.



[appengine-java] Error 400 request is invalid for unspecified reasons during deployment.

2011-03-15 Thread Cyrille Vincey
Anyone facing deployment issues today ?
After several attempts, I only got errors 400 request is invalid for
unspecified reasons.
Any clue ?

-- error log: -
com.google.appengine.tools.admin.AdminException: Unable to update app: Error
posting to URL: 
https://appengine.google.com/api/appversion/deploy?app_id=hiddenBecauseIamTo
oShyversion=1

400 Bad Request

Client Error (400)
The request is invalid for an unspecified reason.

at 
com.google.appengine.tools.admin.AppAdminImpl.update(AppAdminImpl.java:62)
at 
com.google.appengine.eclipse.core.proxy.AppEngineBridgeImpl.deploy(AppEngine
BridgeImpl.java:271)
at 
com.google.appengine.eclipse.core.deploy.DeployProjectJob.runInWorkspace(Dep
loyProjectJob.java:146)
at 
org.eclipse.core.internal.resources.InternalWorkspaceJob.run(InternalWorkspa
ceJob.java:38)
at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
Caused by: java.io.IOException: Error posting to URL:
https://appengine.google.com/api/appversion/deploy?app_id=hiddenBecauseIamTo
oShyversion=1
400 Bad Request



-- 
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.



Re: [appengine-java] Re: JDO not storing time information in Date, only stores the day

2011-03-15 Thread Cheng Wei Lee
Turns out to be working fine. The problem was that I used Compass framework
to retrieve the entity but instructed Compass to save date component only in
the index.

Sorry for the noise!

On Tue, Mar 15, 2011 at 2:42 AM, captain captain.bric...@gmail.com wrote:

 Hi Cheng,

 Need to see more code. Can you provide the way you create and watch
 your timestamp?

 Cheers

 On Mar 14, 5:55 pm, Cheng Wei Lee cheng@gmail.com wrote:
  Hi GAE/J gurus,
 
  I am using Google App Engine with Java, JDO for persistence. I have my
  Activity object withtimestamp declared as Persistent and of type
  java.util.Date.
 
  public class Activity ...
  { ...
@Persistent
private Date timestamp;
  ...
 
  }
 
  All Activities stored in the database are seen with correct date but time
  information is always zero. e.g Tue Mar 14 00:00:00.
 
  Is there any know issue? I'm currently using GAE 1.4.0
 
  Many thanks!
 
  Cheng

 --
 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.




-- 
Lee Cheng Wei

-- 
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.



[appengine-java] Re: suggestions on template engine for GAE-java

2011-03-15 Thread Didier Durand
Hi,

see
http://groups.google.com/group/google-appengine-java/browse_thread/thread/ef090c0e6ea4a6d6/649797c2b590f672?lnk=gstq=framework+ikai#649797c2b590f672

tons of suggestions

regards

didier

On Mar 15, 6:07 pm, Jay Young jayyoung9...@gmail.com wrote:
 http://code.google.com/closure/templates/

 Google doesn't push their Closure Tools very hard, but I've had a lot of
 success with their templating engine.  Take a look at the docs.  It's not
 Django/PHP/JSP style templating, so it does take a bit of re-learning.  That
 said, there are a lot of benefits to their approach.

-- 
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.



[appengine-java] Re: javax.mail.internet.MimeMultipart is a restricted class

2011-03-15 Thread captain

Devmode is a subset. The dev version of appengine maybe causing you to
have an error at dev and not when the app is deployed on the real
beast

In fact, mail doesnt work on devmode.

But all the above is pretty much guessing until you send us more of
your code

Cheers
On Mar 15, 3:27 pm, Alberto Sandoval Sotelo alberto2...@gmail.com
wrote:
 But when i deploy it to the cloud GAE it works fine.

 so?

-- 
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.



[appengine-java] running app engine application totally on local environment

2011-03-15 Thread romesh soni
Hi Group,

I am building an application where my clients will be running my app engine
application on their local environments (they can not use internet because
its not stable and available all the times).  So I have two questions:

1.) Is it possible to run an app engine application totally on local (aka
dev) server. If yes, how to start stop the server and deploy the
application. (I am used to of Tomcat)

2.) uploading data from development server to production server as there
will be schedulers in local (aka development ) machines to push data to
production server so that in case of system crash on local serves, my
clients can switch to Production version.

Thanks
TL

-- 
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.