Re: [appengine-java] Re: hijacked domain

2009-12-23 Thread atomi
Yes, I disabled the Google Sites App and removed my App Engine App. After
about an hour I added the App Engine App again and mapped it to my domain.
The App Engine app works on my domain just fine now.

On Wed, Dec 23, 2009 at 8:53 PM, Vik  wrote:

> Did disabling worked for u?
>
> For me it still redirects me to google sites... and i am unable to resolve
> it.
>
> Thankx and Regards
>
> Vik
> Founder
> www.sakshum.com
> www.sakshum.blogspot.com
>
>
>
> On Thu, Dec 24, 2009 at 6:40 AM, atomi  wrote:
>
>> Apologies, please disregard my previous message.
>> For posterity's sake, it seems if you have an appengine application
>> mapped to a domain and "Google Sites" is activated, your domain will
>> redirect to the Google Sites application and not your appengine
>> application.
>> This was something I wasn't aware of, thanks.
>>
>> On Dec 23, 4:31 pm, atomi  wrote:
>> > Hi could someone from Google contact me off list in regards to a
>> > serious security issue?
>> > Or direct me to someone I can speak to (privately of course) ?
>>
>> --
>>
>> 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-j...@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-j...@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-j...@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] VerifyError Stack size too large on deployed method

2009-12-23 Thread Fady Moussallam
On 23/12/2009 20:43, Don Schwarz wrote:
> I can't seem to reproduce this.  Please file a bug in our issue tracker and
> include the actual .class file that is failing to verify.
>
> http://code.google.com/p/googleappengine/issues/list
>
> Thanks,
> Don
>
> On Tue, Dec 22, 2009 at 2:52 AM, Fady  wrote:
>
>
>> Hi,
>>
>> I have an application (http://legstar-cob2xsd.appspot.com/) that works
>> fine in simulated mode but fails when deployed with the following
>> exception:
>>
>> java.lang.VerifyError: (class: com/legstar/cobol/CobolStructureLexer,
>> method: mNULL_CONSTANT signature: ()V) Stack size too large
>>
>> The failing method looks like this:
>>
>> // $ANTLR start "NULL_CONSTANT"
>> public final void mNULL_CONSTANT() throws RecognitionException {
>> try {
>> // com\\legstar\\cobol\\CobolStructureLexer.g:486:36: ()
>> // com\\legstar\\cobol\\CobolStructureLexer.g:486:37:
>> {
>> }
>>
>> }
>> finally {
>> }
>> }
>> As you can see, there is no actual code in there but I can't act on it
>> because this is generated by a parser generator (ANTLR).
>>
>> Is it possible this might be an instrumentation issue on GAE?
>>
>> 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-j...@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-j...@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.
>
>
>
>
I have filed a bug report at 
http://code.google.com/p/googleappengine/issues/detail?id=2558.

Thank you.

--

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-j...@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: Handling HardDeadlineExceededError

2009-12-23 Thread Lior Harsat
Hi Don,

thanx for your quick reply.
I am pretty sure I am not catching DeadlineExceededException anywhere
in the code (but I'll check again...).
I've seen some posts in the past and some bugs submitted to google
code that there is an inconsistent behavior with regard to the
deadline error/exception.

Thanx,Lior


On Dec 23, 10:36 pm, Don Schwarz  wrote:
> You cannot catch HardDeadlineExceededError.  DeadlineExceededException
> should be thrown first.
>
> Perhaps some code you are using is silently catching and ignoring it?
>
>
>
> On Wed, Dec 23, 2009 at 4:08 AM, Lior Harsat  wrote:
> > Hi,
>
> > I am trying to build some mechanism for handling
> > HardDeadlineExceededError (and other timeouts as well).
> > I wish to catch this Error and wrap up my work so I can send my own
> > response instead of the default error (500) message that GAE produces.
> > Here's the problem. I cant catch this Error for some reason.I've made
> > sure my catch clause is in the right place (from the error provided
> > stack trace). I even catch a Throwable to make sure I don't miss the
> > Error.
> > Sadly I don't reach the catch clause.
>
> > Has anyone had some experience with this?
> > Do you have some other innovative ideas on how to handle such
> > timeouts ?
>
> > B.T.W
> > I would have expected that a DeadlineExceededException would be thrown
> > instead , dont you?
>
> > Thanx, Lior
>
> > --
>
> > 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-j...@googlegroups.com.
> > To unsubscribe from this group, send email to
> > google-appengine-java+unsubscr...@googlegroups.com > 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-j...@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] So I found out I can't simulate "post" in a cron job and pass parameters after "?" in URL

2009-12-23 Thread Tb
I know it kinda looks ugly since I had to add a doGet method to my
servlet to call doPost with the request and response objects... but
it was going to get the job done! Or so I thought...
I'm getting a
"com.google.apphosting.utils.config.AppEngineConfigException: XML
error validating" exception when GAE tries to match my cron.xml to the
xsd file. The url looks something like this "/doCall?
user=test&rank=1".

Am I missing something or there's no way to set-up a "real" cron job
with command-line arguments and that kind of stuff? We can just do a
dumb get to a servlet?
Like I said, I may be missing something...

--

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-j...@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: need comment on using @transactional on service layer

2009-12-23 Thread cw teoh
@Rusty

I tried read your codes,

1. you already defined pointcuit for transaction in jdo-gae-context.xml  but
will still define @transaction.. inside service layer?  that is duplicate
work right?

2. why do you define "transient" of logger in service layer?  i do
understand transient is not serializable, but what it serves in your context
...

3. in your jdoconfig.xml u set






that mean we are not usnig transaction right?

--

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-j...@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: best prastice on persistence transactional settings

2009-12-23 Thread asianCoolz
also, why use transactions-optional ?   optional means? is there other
parameter we can use?

--

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-j...@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] best prastice on persistence transactional settings

2009-12-23 Thread asianCoolz

 
org.datanucleus.store.appengine.jpa.DatastorePersistenceProvider








this is the default example came with GAE,   are you all using the
same setting? from my understanding

setting datanucleus.NontransactionalRead and
datanucleus.NontransactionalWrite to true in other words mean not
using transaction at all. Should i use similar setting?


in spring, normally i will do below
 PROPAGATION_REQUIRED
PROPAGATION_REQUIRED
PROPAGATION_REQUIRED
PROPAGATION_REQUIRED
PROPAGATION_SUPPORTS,readOnly


looking for feedback from you all

--

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-j...@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] problem in retrieving arraylist from database

2009-12-23 Thread sahil mahajan
 I have "SomeClass" which I store in database. Code for the class is
/***/

@PersistenceCapable(identityType = IdentityType.APPLICATION)

public class SomeClass implements Serializable

{

  @PrimaryKey

  @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)

  private Long id;

   @Persistent

String val;

   @Persistent

ArrayList listval= new ArrayList();

 public void addlistval(String _val)

{

 listval.add(_val);

   }

 public String getlistval(int _index)

{

return (String)listval.get(_index);

}

 public void setval(String val)

{

this.val=val;

}

 public String getname()

{

return val;

}

 public int getCount()

{

return listval.size();

}

}

 /*/

I have two functions

/*/

void getSomeClassFromDatabase(String name)

{

SomeClass returnVal=null;



PersistenceManager pm = PMF.get().getPersistenceManager();

Transaction tx = pm.currentTransaction();



try

{

tx.begin();

String query = "select from " + SomeClass.class.getName();

List databaseSomeClass = (List)
pm.newQuery(query).execute();



for (SomeClass element: databaseSomeClass)

{

 if (name.equals(element.getname()))

 {

 returnVal=element;

 System.out.println("found");

 break;

 }

}



tx.commit();

}

finally

{

  if (tx.isActive())

  {

  tx.rollback();

  }

  pm.close();

}



System.out.println("returnVal.getval()="+returnVal.getname());


System.out.println("returnVal.getCount()="+returnVal.getCount());

for(int k=0;khttp://groups.google.com/group/google-appengine-java?hl=en.




Re: [appengine-java] Re: hijacked domain

2009-12-23 Thread Vik
Did disabling worked for u?

For me it still redirects me to google sites... and i am unable to resolve
it.

Thankx and Regards

Vik
Founder
www.sakshum.com
www.sakshum.blogspot.com


On Thu, Dec 24, 2009 at 6:40 AM, atomi  wrote:

> Apologies, please disregard my previous message.
> For posterity's sake, it seems if you have an appengine application
> mapped to a domain and "Google Sites" is activated, your domain will
> redirect to the Google Sites application and not your appengine
> application.
> This was something I wasn't aware of, thanks.
>
> On Dec 23, 4:31 pm, atomi  wrote:
> > Hi could someone from Google contact me off list in regards to a
> > serious security issue?
> > Or direct me to someone I can speak to (privately of course) ?
>
> --
>
> 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-j...@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-j...@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] Scope of datastores -- accessible across multiple GAE applications?

2009-12-23 Thread Riyad
What is the defined scope of a datastore as used by your JDO/JPA code
in a Java application deployed on GAE? Can you only insert/retrieve
data for a pre-defined datastore associated with your running app, or
can you connect to another application's datastore and insert/retrieve
data from that data store as well?

Example:

Consider a very large data-mining application written and deployed on
GAE as separate applications:

1. Harvester -- application scrubs the web all day long looking for
information and inserting it into it's data store. Lots of the new
experiemntal Task API used here.

2. Website -- website used by customers to search the compiled data,
create accounts, and do other compelling things with it -- like rank
it. This would be reading/updating data from App #1's datastore.

3. Admin -- website used by admins to manually modify the information
in the system -- again, manipulating the data from App #1's datastore.


Is this possible? Or would I just have to model this entire
application as a single huge GAE application in order to allow all
those pieces to share access to the datastore that the Harvester
creates and maintains?

Thanks for the assist guys.

Best,
Riyad

--

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-j...@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: bulk download error 403

2009-12-23 Thread Matthew Blain
(Note that the log in page is only needed to test interactive login.)

On Dec 23, 6:53 pm, Matthew Blain  wrote:
> You need to log in to the application, not just the Google control
> panel--do you have a login page you can visit 
> onhttp://remote.latest.myprogram.appspot.com/remote_api?
> What do the logs look like in the admin console for your app?
>
> On Dec 19, 2:36 am, lembas  wrote:
>
>
>
> > First I visithttps://www.google.com/a/cpanel/mydomain.com
> > then login as ad...@mydomain.com
> > and then I visithttp://remote.latest.myprogram.appspot.com/remote_api, 
> > which has
> > remoteapi definition in web.xml as stated 
> > inhttp://groups.google.com/group/google-appengine-java/browse_thread/th...,
> > it says
> > Error: Forbidden
> > Your client does not have permission to get URL /remote_api from this
> > server.
>
> > but if i visithttp://myprogram.appspot.com/remote_api, which is the
> > current version without any remoteapi definition in web.xml, it says
> > Error: Not Found
> > The requested URL /remote_api was not found on this server.
>
> > what should I do now?
>
> > On Dec 19, 2:24 am, Matthew Blain  wrote:
>
> > > A quick test is if you can visit yourapp/remote_api in the web
> > > browser--it should work if you log in as an admin, well it should say
> > > "This request did not contain a necessary header" but not any other
> > > errors.
>
> > > On Dec 16, 2:52 pm, lembas  wrote:
>
> > > > I get exactly the same error when I try to bulkupload with this
> > > > command:
> > > > appcfg.py upload_data --auth_domain=mydomain.com --db_filename=skip --
> > > > url=http://remote.latest.myprogram.appspot.com/remote_api--no_cookies
> > > > --has_header --config_file=loader.py --filename=kind.csv --kind=Kind
> > > > myprogram
>
> > > > On Dec 17, 12:37 am, lembas  wrote:
>
> > > > > Hi,
>
> > > > > I have a java app on myprogram.appspot.com.
> > > > > I use google eclipse plugin to deploy it.(Eclipse 3.5, App Engine SDK
> > > > > 1.3.0, GWT SDK 2.0.0)
> > > > > I set the version to bulkload and deployed it.
> > > > > Now I have bulkload.latest.myprogram.appspot.com as I can see 
> > > > > onhttps://appengine.google.com/deployment?app_id=myprogram
>
> > > > > I try to bulkdownload data to my app but cannot succeed.
>
> > > > > I use:
> > > > >bulkloader.py --dump --batch_size=5 --kind=Kind --
> > > > > auth_domain=mydomain.com --url=http://
> > > > > bulkload.latest.myprogram.appspot.com/remote_api --filename=dump.sql3
> > > > > myprogram
>
> > > > > when I execute this command it asks my an email and a password. I
> > > > > enter ad...@mydomain.com and its password but the result is:
> > > > > [ERROR   ] Exception during authentication
> > > > > Traceback (most recent call last):
> > > > >   File "C:\Program 
> > > > > Files\Google\google_appengine\google\appengine\tools
> > > > > \bulkload
> > > > > er.py", line 2985, in Run
> > > > >     request_manager.Authenticate()
> > > > >   File "C:\Program 
> > > > > Files\Google\google_appengine\google\appengine\tools
> > > > > \bulkload
> > > > > er.py", line 1152, in Authenticate
> > > > >     remote_api_stub.MaybeInvokeAuthentication()
> > > > >   File "C:\Program Files\Google\google_appengine\google\appengine\ext
> > > > > \remote_api
> > > > > \remote_api_stub.py", line 494, in MaybeInvokeAuthentication
> > > > >     datastore_stub._server.Send(datastore_stub._path, payload=None)
> > > > >   File "C:\Program 
> > > > > Files\Google\google_appengine\google\appengine\tools
> > > > > \appengin
> > > > > e_rpc.py", line 344, in Send
> > > > >     f = self.opener.open(req)
> > > > >   File "C:\Python26\lib\urllib2.py", line 389, in open
> > > > >     response = meth(req, response)
> > > > >   File "C:\Python26\lib\urllib2.py", line 502, in http_response
> > > > >     'http', request, response, code, msg, hdrs)
> > > > >   File "C:\Python26\lib\urllib2.py", line 427, in error
> > > > >     return self._call_chain(*args)
> > > > >   File "C:\Python26\lib\urllib2.py", line 361, in _call_chain
> > > > >     result = func(*args)
> > > > >   File "C:\Python26\lib\urllib2.py", line 510, in http_error_default
> > > > >     raise HTTPError(req.get_full_url(), code, msg, hdrs, fp)
> > > > > HTTPError: HTTP Error403: Forbidden
> > > > > [INFO    ] Authentication Failed
>
> > > > > I got exactly the same error above when I tried downloading with this
> > > > > command:
> > > > > appcfg.py download_data --auth_domain=mydomain.com --url=http://
> > > > > bulkload.latest.myprogram.appspot.com/remote_api --
> > > > > config_file=exporter.py --filename=kind_data_archive.csv --kind=Kind
> > > > > myprogram
>
> > > > > If I enter my gmail.com account and password, which I use to deploy
> > > > > the app in google eclipse plugin, the error is:
> > > > > Invalid username or password.
> > > > > Please enter login credentials for
> > > > > bukload.latest.myprogram.appspot.com
>
> > > > > My app.yaml in myprogram folder is:
> > > > > application: myprogram
> > > > > version: bulk

[appengine-java] Re: bulk download error 403

2009-12-23 Thread Matthew Blain
You need to log in to the application, not just the Google control
panel--do you have a login page you can visit on
http://remote.latest.myprogram.appspot.com/remote_api ?
What do the logs look like in the admin console for your app?

On Dec 19, 2:36 am, lembas  wrote:
> First I visithttps://www.google.com/a/cpanel/mydomain.com
> then login as ad...@mydomain.com
> and then I visithttp://remote.latest.myprogram.appspot.com/remote_api, which 
> has
> remoteapi definition in web.xml as stated 
> inhttp://groups.google.com/group/google-appengine-java/browse_thread/th...,
> it says
> Error: Forbidden
> Your client does not have permission to get URL /remote_api from this
> server.
>
> but if i visithttp://myprogram.appspot.com/remote_api, which is the
> current version without any remoteapi definition in web.xml, it says
> Error: Not Found
> The requested URL /remote_api was not found on this server.
>
> what should I do now?
>
> On Dec 19, 2:24 am, Matthew Blain  wrote:
>
>
>
> > A quick test is if you can visit yourapp/remote_api in the web
> > browser--it should work if you log in as an admin, well it should say
> > "This request did not contain a necessary header" but not any other
> > errors.
>
> > On Dec 16, 2:52 pm, lembas  wrote:
>
> > > I get exactly the same error when I try to bulkupload with this
> > > command:
> > > appcfg.py upload_data --auth_domain=mydomain.com --db_filename=skip --
> > > url=http://remote.latest.myprogram.appspot.com/remote_api--no_cookies
> > > --has_header --config_file=loader.py --filename=kind.csv --kind=Kind
> > > myprogram
>
> > > On Dec 17, 12:37 am, lembas  wrote:
>
> > > > Hi,
>
> > > > I have a java app on myprogram.appspot.com.
> > > > I use google eclipse plugin to deploy it.(Eclipse 3.5, App Engine SDK
> > > > 1.3.0, GWT SDK 2.0.0)
> > > > I set the version to bulkload and deployed it.
> > > > Now I have bulkload.latest.myprogram.appspot.com as I can see 
> > > > onhttps://appengine.google.com/deployment?app_id=myprogram
>
> > > > I try to bulkdownload data to my app but cannot succeed.
>
> > > > I use:
> > > >bulkloader.py --dump --batch_size=5 --kind=Kind --
> > > > auth_domain=mydomain.com --url=http://
> > > > bulkload.latest.myprogram.appspot.com/remote_api --filename=dump.sql3
> > > > myprogram
>
> > > > when I execute this command it asks my an email and a password. I
> > > > enter ad...@mydomain.com and its password but the result is:
> > > > [ERROR   ] Exception during authentication
> > > > Traceback (most recent call last):
> > > >   File "C:\Program Files\Google\google_appengine\google\appengine\tools
> > > > \bulkload
> > > > er.py", line 2985, in Run
> > > >     request_manager.Authenticate()
> > > >   File "C:\Program Files\Google\google_appengine\google\appengine\tools
> > > > \bulkload
> > > > er.py", line 1152, in Authenticate
> > > >     remote_api_stub.MaybeInvokeAuthentication()
> > > >   File "C:\Program Files\Google\google_appengine\google\appengine\ext
> > > > \remote_api
> > > > \remote_api_stub.py", line 494, in MaybeInvokeAuthentication
> > > >     datastore_stub._server.Send(datastore_stub._path, payload=None)
> > > >   File "C:\Program Files\Google\google_appengine\google\appengine\tools
> > > > \appengin
> > > > e_rpc.py", line 344, in Send
> > > >     f = self.opener.open(req)
> > > >   File "C:\Python26\lib\urllib2.py", line 389, in open
> > > >     response = meth(req, response)
> > > >   File "C:\Python26\lib\urllib2.py", line 502, in http_response
> > > >     'http', request, response, code, msg, hdrs)
> > > >   File "C:\Python26\lib\urllib2.py", line 427, in error
> > > >     return self._call_chain(*args)
> > > >   File "C:\Python26\lib\urllib2.py", line 361, in _call_chain
> > > >     result = func(*args)
> > > >   File "C:\Python26\lib\urllib2.py", line 510, in http_error_default
> > > >     raise HTTPError(req.get_full_url(), code, msg, hdrs, fp)
> > > > HTTPError: HTTP Error403: Forbidden
> > > > [INFO    ] Authentication Failed
>
> > > > I got exactly the same error above when I tried downloading with this
> > > > command:
> > > > appcfg.py download_data --auth_domain=mydomain.com --url=http://
> > > > bulkload.latest.myprogram.appspot.com/remote_api --
> > > > config_file=exporter.py --filename=kind_data_archive.csv --kind=Kind
> > > > myprogram
>
> > > > If I enter my gmail.com account and password, which I use to deploy
> > > > the app in google eclipse plugin, the error is:
> > > > Invalid username or password.
> > > > Please enter login credentials for
> > > > bukload.latest.myprogram.appspot.com
>
> > > > My app.yaml in myprogram folder is:
> > > > application: myprogram
> > > > version: bulkload
> > > > runtime: python
> > > > api_version: 1
>
> > > > handlers:
> > > > - url: /remote_api
> > > >   script: $PYTHON_LIB/google/appengine/ext/remote_api/handler.py
> > > >   login: admin
>
> > > > Any help? Or should I ask it on google-appengine-python group or
> > > > google-appengine group?
>
> > > > Thanks.

--

You rec

[appengine-java] Re: hijacked domain

2009-12-23 Thread atomi
Apologies, please disregard my previous message.
For posterity's sake, it seems if you have an appengine application
mapped to a domain and "Google Sites" is activated, your domain will
redirect to the Google Sites application and not your appengine
application.
This was something I wasn't aware of, thanks.

On Dec 23, 4:31 pm, atomi  wrote:
> Hi could someone from Google contact me off list in regards to a
> serious security issue?
> Or direct me to someone I can speak to (privately of course) ?

--

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-j...@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: What Java MVC framework do you use on AppEngine?

2009-12-23 Thread niraj
I use GWT with GXT has the layer above it
http://www.extjs.com/products/gxt/

On Dec 23, 9:56 am, itsnotvalid  wrote:
> I tried Django the other day and find that its feature set needs some
> polishing (especially in the forms, or newforms if you have been a
> long user of Django)
>
> The situation for ORM mappings is kind of the same for both systems.
> One of the reason that django could be much faster because of the code
> loading (is it lazy loading?) which we know are very different for
> Python and JRE.
>
> On Dec 23, 6:04 am, trung  wrote:
>
>
>
> > Agree, Django is wicked fast to spin up, you can hardly tell that it
> > was a cold boot. This is my last resort if I cannot find an equivalent
> > framework in Java.
>
> > How fast does Spring MVC spin up?
>
> > On Dec 22, 12:47 pm, "Ikai L (Google)"  wrote:
>
> > > I am a fan of what the guys working on Play Framework are doing, but there
> > > are still some things they need to work out for deployment to work in App
> > > Engine. I'd look into addressing the issues myself if I had a 
> > > chance:http://www.playframework.com.
>
> > > Grails is probably the closest to Ruby on Rails, but we are still working 
> > > on
> > > Groovy startup time - it's a different face of the same problem we have 
> > > with
> > > JRuby.
>
> > > If you're looking at new languages altogether (framework independent), I
> > > really like the Scala programming language. It's not as free form as 
> > > dynamic
> > > languages like JRuby or Groovy, but you get a lot from type safety 
> > > without a
> > > lot of the type clunkiness that Java forces upon you.
>
> > > Then - there's also the Python option for App Engine. Django usually spins
> > > up pretty quick (on the order of 50-200ms, from what I remember).
>
> > > On Tue, Dec 22, 2009 at 12:40 PM, Guillaume Laforge 
> > > wrote:
>
> > > > As you're mentioning Groovy and Grails, have you looked at Gaelyk, the
> > > > lightweight Groovy toolkit?
> > > >http://gaelyk.appspot.com/
>
> > > > On Tue, Dec 22, 2009 at 19:41, Trung Pham  wrote:
> > > > > Coming from Ruby on Rails background, I have tried to run Rails on
> > > > > Jruby on AppEngine. While it works, but it has ridiculous startup
> > > > > time. Well over 20 seconds to spin up an instance, and sometimes it
> > > > > even hits the 30 seconds limit.
>
> > > > > Anyway, out of curiosity, what is the equivalent MVC framework in the
> > > > > Java world that works like Rails? Preferable native Java, not
> > > > > something like Grails on Groovy. Is it even possible to have a MVC
> > > > > framework on AppEngine that takes no more than 1 second to spin up?
>
> > > > > 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-j...@googlegroups.com.
> > > > > To unsubscribe from this group, send email to
> > > > google-appengine-java+unsubscr...@googlegroups.com > > >  unsubscr...@googlegroups.com>
> > > > .
> > > > > For more options, visit this group at
> > > >http://groups.google.com/group/google-appengine-java?hl=en.
>
> > > > --
> > > > Guillaume Laforge
> > > > Groovy Project Manager
> > > > Head of Groovy Development at SpringSource
> > > >http://www.springsource.com/g2one
>
> > > > --
>
> > > > 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-j...@googlegroups.com.
> > > > To unsubscribe from this group, send email to
> > > > google-appengine-java+unsubscr...@googlegroups.com > > >  unsubscr...@googlegroups.com>
> > > > .
> > > > For more options, visit this group at
> > > >http://groups.google.com/group/google-appengine-java?hl=en.
>
> > > --
> > > Ikai Lan
> > > Developer Programs Engineer, Google App Engine

--

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-j...@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] hijacked domain

2009-12-23 Thread atomi
Hi could someone from Google contact me off list in regards to a
serious security issue?
Or direct me to someone I can speak to (privately of course) ?

--

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-j...@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] JDO Mapping issue : A parent cannot be established or changed once an object has been persisted.

2009-12-23 Thread niraj
I have three classes

Album{
  Artist albumArtist;
@Persistent(mappedBy = "parent")
@Element(dependent = "true")
   List songs;
}

Song{
  Artist singer;
  Album parent;
}

Artist{
  String name;
}


If I use the Artist instance I create for Album for Song(singer) - I
get an error

javax.jdo.JDOFatalUserException: Detected attempt to establish Album
(1) as the parent of Album(1)/Song(2)/Artist(3) but the entity
identified by Album(1)/Song(2)/Artist(3) is already a child of Album
(1)/Song(2).  A parent cannot be established or changed once an object
has been persisted.

CODE -  THIS throws the above error

Artist artist = new Artist("First", "LastN", "First Last");
Album album = new Album("Ahat and album", artist, 1978);
Song song = new Song("Som song", album, artist);
album.addSong(song);
dao.makePersistantAndCommit(album);


CODE: This works

Artist artist = new Artist("First", "LastN", "First Last");
Artist artist2 = new Artist("Second", "LastN", "Second Last");
Album album = new Album("Ahat and album", artist, 1978);
Song song = new Song("Som song", album, artist2);
album.addSong(song);
dao.makePersistantAndCommit(album);

>From my app requirements standpoint - I can have an Artist who is the
albumArtist and who is also the singer. And hence I have a need to use
the Artist instance.

Inputs

--

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-j...@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] StackOverFlowError on JPA Remove() with @OneToMany and abstract base classes.

2009-12-23 Thread Max Ross (Google)
Workaround posted to the bug.  Thanks!

On Sun, Dec 20, 2009 at 6:22 AM, David Fuelling  wrote:

> I'm pretty sure my issue is a bug, but upon further reflection I
> figured I'd bring it to light here in the discussion groups just to be
> sure.
>
> Here's the issue, with test code:
> http://code.google.com/p/googleappengine/issues/detail?id=2541
>
> Basically, I'm trying to model a User entity that has more than 5,000
> "tags" (Strings).  Since the GAE datastore can't store more
> than 5,000 strings in a List attribute, I'm following the design
> pattern outlined in this Google Tech Talk (basically, have the
> User entity hold a List of Entity's, each of which hold a
> List.  The 5000+1 string gets put into the 2nd
> TagReferenceEntity in the User):
>
> http://sites.google.com/site/io/building-scalable-web-applications-with-google-app-engine
>
> I'm using JPA to implement this setup, and everything works except for
> delete operations.  The google-code issue contains a stack-trace and
> an attached .zip file with code to reproduce the problem (main error
> is java.lang.StackOverflowError).
>
> Thanks!
>
> david
>
> --
>
> 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-j...@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-j...@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] Handling HardDeadlineExceededError

2009-12-23 Thread Don Schwarz
You cannot catch HardDeadlineExceededError.  DeadlineExceededException
should be thrown first.

Perhaps some code you are using is silently catching and ignoring it?

On Wed, Dec 23, 2009 at 4:08 AM, Lior Harsat  wrote:

> Hi,
>
> I am trying to build some mechanism for handling
> HardDeadlineExceededError (and other timeouts as well).
> I wish to catch this Error and wrap up my work so I can send my own
> response instead of the default error (500) message that GAE produces.
> Here's the problem. I cant catch this Error for some reason.I've made
> sure my catch clause is in the right place (from the error provided
> stack trace). I even catch a Throwable to make sure I don't miss the
> Error.
> Sadly I don't reach the catch clause.
>
> Has anyone had some experience with this?
> Do you have some other innovative ideas on how to handle such
> timeouts ?
>
> B.T.W
> I would have expected that a DeadlineExceededException would be thrown
> instead , dont you?
>
> Thanx, Lior
>
> --
>
> 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-j...@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-j...@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] Handling HardDeadlineExceededError

2009-12-23 Thread Lior Harsat
Hi,

I am trying to build some mechanism for handling
HardDeadlineExceededError (and other timeouts as well).
I wish to catch this Error and wrap up my work so I can send my own
response instead of the default error (500) message that GAE produces.
Here's the problem. I cant catch this Error for some reason.I've made
sure my catch clause is in the right place (from the error provided
stack trace). I even catch a Throwable to make sure I don't miss the
Error.
Sadly I don't reach the catch clause.

Has anyone had some experience with this?
Do you have some other innovative ideas on how to handle such
timeouts ?

B.T.W
I would have expected that a DeadlineExceededException would be thrown
instead , dont you?

Thanx, Lior

--

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-j...@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: What Java MVC framework do you use on AppEngine?

2009-12-23 Thread itsnotvalid
I tried Django the other day and find that its feature set needs some
polishing (especially in the forms, or newforms if you have been a
long user of Django)

The situation for ORM mappings is kind of the same for both systems.
One of the reason that django could be much faster because of the code
loading (is it lazy loading?) which we know are very different for
Python and JRE.

On Dec 23, 6:04 am, trung  wrote:
> Agree, Django is wicked fast to spin up, you can hardly tell that it
> was a cold boot. This is my last resort if I cannot find an equivalent
> framework in Java.
>
> How fast does Spring MVC spin up?
>
> On Dec 22, 12:47 pm, "Ikai L (Google)"  wrote:
>
> > I am a fan of what the guys working on Play Framework are doing, but there
> > are still some things they need to work out for deployment to work in App
> > Engine. I'd look into addressing the issues myself if I had a 
> > chance:http://www.playframework.com.
>
> > Grails is probably the closest to Ruby on Rails, but we are still working on
> > Groovy startup time - it's a different face of the same problem we have with
> > JRuby.
>
> > If you're looking at new languages altogether (framework independent), I
> > really like the Scala programming language. It's not as free form as dynamic
> > languages like JRuby or Groovy, but you get a lot from type safety without a
> > lot of the type clunkiness that Java forces upon you.
>
> > Then - there's also the Python option for App Engine. Django usually spins
> > up pretty quick (on the order of 50-200ms, from what I remember).
>
> > On Tue, Dec 22, 2009 at 12:40 PM, Guillaume Laforge 
> > wrote:
>
> > > As you're mentioning Groovy and Grails, have you looked at Gaelyk, the
> > > lightweight Groovy toolkit?
> > >http://gaelyk.appspot.com/
>
> > > On Tue, Dec 22, 2009 at 19:41, Trung Pham  wrote:
> > > > Coming from Ruby on Rails background, I have tried to run Rails on
> > > > Jruby on AppEngine. While it works, but it has ridiculous startup
> > > > time. Well over 20 seconds to spin up an instance, and sometimes it
> > > > even hits the 30 seconds limit.
>
> > > > Anyway, out of curiosity, what is the equivalent MVC framework in the
> > > > Java world that works like Rails? Preferable native Java, not
> > > > something like Grails on Groovy. Is it even possible to have a MVC
> > > > framework on AppEngine that takes no more than 1 second to spin up?
>
> > > > 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-j...@googlegroups.com.
> > > > To unsubscribe from this group, send email to
> > > google-appengine-java+unsubscr...@googlegroups.com > >  unsubscr...@googlegroups.com>
> > > .
> > > > For more options, visit this group at
> > >http://groups.google.com/group/google-appengine-java?hl=en.
>
> > > --
> > > Guillaume Laforge
> > > Groovy Project Manager
> > > Head of Groovy Development at SpringSource
> > >http://www.springsource.com/g2one
>
> > > --
>
> > > 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-j...@googlegroups.com.
> > > To unsubscribe from this group, send email to
> > > google-appengine-java+unsubscr...@googlegroups.com > >  unsubscr...@googlegroups.com>
> > > .
> > > For more options, visit this group at
> > >http://groups.google.com/group/google-appengine-java?hl=en.
>
> > --
> > Ikai Lan
> > Developer Programs Engineer, Google App Engine

--

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-j...@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: Question about request from one app to another one through ajax

2009-12-23 Thread Oren Hacohen
I am having the exact same problem.

I am Using $.post jquery to send my POST request to the servlet
residing on my app-engine application,
and I get the exact same error.

Is there any solution\workaround for this issue ?

On Dec 11, 5:57 pm, Allen Cheng  wrote:
> I created two apps, one app provides a restful web service( such as
> abc001.appspot.com), and I want to make use of that web service in
> another app page (such as abc002,appspot.com) through ajax. Through
> setting the [ document.domain = "appspot.com"; ] in javascript, the
> browser could allow the ajax request from abc002 to abc001, but the
> request finally failed, from the log of abc001, I got the following
> message:
>
> java.security.AccessControlException:accessdenied
> (java.lang.RuntimePermission accessDeclaredMembers)
>         at java.security.AccessControlContext.checkPermission
> (AccessControlContext.java:355)
>         at java.security.AccessController.checkPermission
> (AccessController.java:567)
>         at java.lang.SecurityManager.checkPermission(Unknown Source)
>         at
> com.google.apphosting.runtime.security.CustomSecurityManager.checkPermissio n
> (CustomSecurityManager.java:45)
> ...
>
> Does anybody know the reason why the request failed? Google app engine
> does not allow such 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-j...@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] How to use Swing Code

2009-12-23 Thread Dileep
Hi All,
   I am very new to GWT .I wanted to know , whether can we use
Existing swing code in GWT ?.

--

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-j...@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: how do i use "Admins Emailed" quota?

2009-12-23 Thread hu
means the email counts that be sent to admin-account?

On Dec 3, 10:19 pm, Don Schwarz  wrote:
> http://code.google.com/appengine/docs/java/mail/usingjavamail.html#Fe...
>
> On Thu, Dec 3, 2009 at 8:00 AM, Prashant  wrote:
> > anyone???
>
> > --
> > 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-j...@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-j...@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] VerifyError Stack size too large on deployed method

2009-12-23 Thread Don Schwarz
I can't seem to reproduce this.  Please file a bug in our issue tracker and
include the actual .class file that is failing to verify.

http://code.google.com/p/googleappengine/issues/list

Thanks,
Don

On Tue, Dec 22, 2009 at 2:52 AM, Fady  wrote:

> Hi,
>
> I have an application (http://legstar-cob2xsd.appspot.com/) that works
> fine in simulated mode but fails when deployed with the following
> exception:
>
> java.lang.VerifyError: (class: com/legstar/cobol/CobolStructureLexer,
> method: mNULL_CONSTANT signature: ()V) Stack size too large
>
> The failing method looks like this:
>
>// $ANTLR start "NULL_CONSTANT"
>public final void mNULL_CONSTANT() throws RecognitionException {
>try {
>// com\\legstar\\cobol\\CobolStructureLexer.g:486:36: ()
>// com\\legstar\\cobol\\CobolStructureLexer.g:486:37:
>{
>}
>
>}
>finally {
>}
>}
> As you can see, there is no actual code in there but I can't act on it
> because this is generated by a parser generator (ANTLR).
>
> Is it possible this might be an instrumentation issue on GAE?
>
> 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-j...@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-j...@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: Unindexed property

2009-12-23 Thread Peter Ondruska
Thanks Max, you are right, I did not pay attention with Eclipse's
import autocomplete :-) After switching to import
javax.jdo.annotations.Extension it works with no exceptions.

On Dec 23, 7:05 pm, "Max Ross (Google)" 
wrote:
> Looks like you're using the JPA Extension annotation.  If you're using JDO,
> use javax.jdo.annotations.Extension.
>
> On Wed, Dec 23, 2009 at 8:50 AM, Peter Ondruska 
> wrote:
>
>
>
> > I have set few properties unindexed like this:
>
> >       �...@persistent
> >       �...@extension(vendorName = "datanucleus", key = "gae.unindexed", 
> > value
> > =
> > "true")
> >        private Float amount = 1.0f;
>
> > But I get this exception:
>
> > org.datanucleus.jdo.metadata.JDOAnnotationReader
> > processMemberAnnotations: Class/Field "amount" has an annotation
> > "org.datanucleus.jpa.annotations.Extension" which was not processed.
>
> > Is it OK and shall I adjust logging:
>
> > DataNucleus.jdo.metadata.JDOAnnotationReader.level=OFF
>
> > Or is there any other/better way? Am I not going to miss other
> > exceptions in JDOAnnotationReader?
>
> > Peter
>
> > --
>
> > 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-j...@googlegroups.com.
> > To unsubscribe from this group, send email to
> > google-appengine-java+unsubscr...@googlegroups.com > 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-j...@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] Servlet init method is invoked at intervals

2009-12-23 Thread Ronin
hi,

I can see init() method of the Servlet being invoked at intervals. I'm
not sure whts causing this ?
Should'nt init method be called only once after I deploy a new build
or after 1st request ?

Thanks in advance.

--

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-j...@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] Unindexed property

2009-12-23 Thread Max Ross (Google)
Looks like you're using the JPA Extension annotation.  If you're using JDO,
use javax.jdo.annotations.Extension.

On Wed, Dec 23, 2009 at 8:50 AM, Peter Ondruska wrote:

> I have set few properties unindexed like this:
>
>@Persistent
>@Extension(vendorName = "datanucleus", key = "gae.unindexed", value
> =
> "true")
>private Float amount = 1.0f;
>
> But I get this exception:
>
> org.datanucleus.jdo.metadata.JDOAnnotationReader
> processMemberAnnotations: Class/Field "amount" has an annotation
> "org.datanucleus.jpa.annotations.Extension" which was not processed.
>
> Is it OK and shall I adjust logging:
>
> DataNucleus.jdo.metadata.JDOAnnotationReader.level=OFF
>
> Or is there any other/better way? Am I not going to miss other
> exceptions in JDOAnnotationReader?
>
> Peter
>
> --
>
> 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-j...@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-j...@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: wrong redirection to google sites

2009-12-23 Thread Don Schwarz
I've forwarded this on to another team internally.

In the mean time, you might try reading through and/or posting to the Google
Apps support forum:

http://www.google.com/support/forum/p/Google+Apps/label?lid=71f36fd9ea184f05&hl=en

This issue in particular looks useful:

http://www.google.com/support/forum/p/Google+Apps/thread?tid=48924e49e080fe77&hl=en

On Wed, Dec 23, 2009 at 11:45 AM, spaceman  wrote:

> I'm having the same problem.
>
> This was working till 1-2 days ago.
> Here's my site: www.paint-smart.biz
> now its redirecting me to : http://sites.google.com/a/paint-smart.biz/www/
>
> what is going on?
>
> --
>
> 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-j...@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-j...@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: wrong redirection to google sites

2009-12-23 Thread Vik
i posted at:
http://www.google.com/support/forum/p/Google+Apps/thread?tid=22a420fff4ca0da0&hl=en
to hope if someone help


Thankx and Regards

Vik
Founder
www.sakshum.com
www.sakshum.blogspot.com


On Wed, Dec 23, 2009 at 11:15 PM, spaceman  wrote:

> I'm having the same problem.
>
> This was working till 1-2 days ago.
> Here's my site: www.paint-smart.biz
> now its redirecting me to : http://sites.google.com/a/paint-smart.biz/www/
>
> what is going on?
>
> --
>
> 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-j...@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-j...@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: wrong redirection to google sites

2009-12-23 Thread spaceman
I'm having the same problem.

This was working till 1-2 days ago.
Here's my site: www.paint-smart.biz
now its redirecting me to : http://sites.google.com/a/paint-smart.biz/www/

what is going on?

--

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-j...@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: wrong redirection to google sites

2009-12-23 Thread Vik
Hie

Your index.html file contains this:
http://www.sakshum.com/ui/page/index.html";>

is correct but
" www.sakshum.com is evidently mapped to Google Sites in your Google Apps
management console.  Is that correct?"

is false... I mapped it to my app engine domain.. and all this was working
fine for last 3-4 months.. all of a sudden it started redirecting me to
google sites. Please advise how should i resolve it now,


Thankx and Regards

Vik
Founder
www.sakshum.com
www.sakshum.blogspot.com


On Wed, Dec 23, 2009 at 9:58 PM, Don Schwarz  wrote:

> Your index.html file contains this:
>
> http://www.sakshum.com/ui/page/index.html";>
>
> and www.sakshum.com is evidently mapped to Google Sites in your Google
> Apps management console.  Is that correct?
>
> On Wed, Dec 23, 2009 at 9:36 AM, Vik  wrote:
>
>>
>> hie any help on this plz? I am stuck and my app is down now due to this
>>> redirection. Kindly help on this
>>>
>>> Thankx and Regards
>>>
>>> Vik
>>> Founder
>>> www.sakshum.com
>>> www.sakshum.blogspot.com
>>>
>>>
>>> On Mon, Dec 21, 2009 at 6:00 PM, Vik  wrote:
>>>
 Hie

 I have a deployed version of my app as:
 http://1.latest.sakshumweb.appspot.com
 but when i click on it: it takes me to somewhere else like:
 http://sites.google.com/a/sakshum.com/www/ui/page/index.html

 Any idea why? I am hoping to see my site instead.

 This was working fine few days back and all of a sudden it started
 happening. I haven't made any changes on my side. Please help


 Thankx and Regards

 Vik
 Founder
 www.sakshum.com
 www.sakshum.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-j...@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-j...@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-j...@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: GAE roadmap for 2010

2009-12-23 Thread Muz
Thanks Ikai. Sounds Agile! So does this mean that any feature requests
coming in today (for example) won't get evaluated for at least 6
months?

Issue #2555 submitted.

Murray

On Dec 22, 3:23 pm, "Ikai L (Google)"  wrote:
> The roadmap that is up right now represents our six month 
> goals:http://code.google.com/appengine/docs/roadmap.html
>
> Beyond that, we do not even have much visibility ourselves into what we are
> going to work on, but as soon as we have set high level objectives, we'll
> communicate them with our developers. This is one of the reasons we ask
> everybody to create and star 
> issues:http://code.google.com/p/googleappengine/issues/list
>
>
>
> On Tue, Dec 22, 2009 at 8:32 AM, Muz  wrote:
> > I second this request for 2010 roadmap visibility.
>
> > I'm especially curious if there will be any definite plan to support
> > multi-tenancy on GAE (beyond the current odd workaround/exception
> > mechanisms). We have requirements for several of these to get started
> > in Q2. Google seems to be the only cloud player to not have a long-
> > term model for this yet.
>
> > M
>
> > On 20 Dec, 02:54, Antoine Sabot-durand 
> > wrote:
> > > Hi,
>
> > > I found the roadmap for 2009 but is there one for 2010 ? I'd like to
> > > propose my company to start developement on GAE but the lack of
> > > visibility on the platform is an issue. Will you support some of the
> > > JEE6 new standard (JSF 2, CDI, JPA 2, EJB 3.1 ?). Is the imageio issue
> > > with the JSF richfaces library will be corrected ?
> > > I saw a lot of question in the forum but few answer (or wasn't able to
> > > find them).
> > > Thanks for your answers.
>
> > > Antoine
>
> > --
>
> > 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-j...@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.
>
> --
> Ikai Lan
> Developer Programs Engineer, Google App Engine

--

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-j...@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] Unindexed property

2009-12-23 Thread Peter Ondruska
I have set few properties unindexed like this:

@Persistent
@Extension(vendorName = "datanucleus", key = "gae.unindexed", value =
"true")
private Float amount = 1.0f;

But I get this exception:

org.datanucleus.jdo.metadata.JDOAnnotationReader
processMemberAnnotations: Class/Field "amount" has an annotation
"org.datanucleus.jpa.annotations.Extension" which was not processed.

Is it OK and shall I adjust logging:

DataNucleus.jdo.metadata.JDOAnnotationReader.level=OFF

Or is there any other/better way? Am I not going to miss other
exceptions in JDOAnnotationReader?

Peter

--

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-j...@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: Joins and Persistence - How?

2009-12-23 Thread David Chandler
This may help with #2: 
http://gae-java-persistence.blogspot.com/2009/10/executing-batch-gets.html

However, I think your #3 is actually the tough part, as retrieving
Data for each Person in a list of Persons requires multiple queries or
an IN clause, but the latter gets executed as separate fetches under
the covers in GAE.

/dmc
http://turbomanage.wordpress.com/

On Dec 22, 3:48 am, Søren Kyndi-Wiuff  wrote:
> Greetings
>
> I am trying to figure out a best-practice for avoiding the use of
> joins. So far, it isn't going too well so here I am asking if anyone
> is up for sharing their experience or linking to the reference I
> failed to find. :)
>
> An example of my requirement is this:
>
> We have two classes:
>
> Person
> ---
> + listData
> + listPerson
>
> Data
> 
> + person
>
> The domain model is not set in stone, but merely to illustrate that a
> Person somehow have a list of "Friends" in his listPerson attribute
> and that he somehow have a list of his own data in the listData.
>
> Now, getting the Data for a single Person is trivial.
>
> But, getting the Data for a Persons friends is not.
>
> I cannot get around somehow having to:
>
> 1) Fetch the Person (1 query)
> 2) Fetch all Person in listPerson (n queries per friend)
> 3) Fetch all Data by the list provided in 2) by combining all the
> friends listData fields (1 query)
>
> The problem is the (n queries) in step 2, which I belive would be a
> killer and eventually be a deadend when people have more than 30
> friends.
>
> Any hints? :)

--

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-j...@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: ZipException in my jsp page

2009-12-23 Thread Don Schwarz
Interesting.  Thanks for the report.

On Tue, Dec 22, 2009 at 7:02 PM, Abe Parvand  wrote:

> Yeah, appengine's fault:
>
> https://code.google.com/p/googleappengine/issues/detail?id=2255
>
>
>
> On Dec 22, 4:39 pm, Abe Parvand  wrote:
> > Anyone have any idea why this is happening? Why is there an unzipping
> > happening at all? Is this my bad or appengine???
> >
> > On Dec 22, 1:55 pm, Abe Parvand  wrote:
> >
> >
> >
> > > I hit a simple jsp page which was previously working and suddenly the
> > > error logs now spew out:
> >
> > > Failed startup of context
> > > com.google.apphosting.utils.jetty.runtimeappenginewebappcont...@1302b69
> > > {/,/base/data/home/apps/todoroodev/8.338636345514717470}
> > > java.util.zip.ZipException: error in opening zip file
> > > at java.util.zip.ZipFile.open(Native Method)
> > > at java.util.zip.ZipFile.(ZipFile.java:143)
> > > at java.util.jar.JarFile.(Unknown Source)
> > > at java.util.jar.JarFile.(Unknown Source)
> > > at org.mortbay.jetty.webapp.TagLibConfiguration.configureWebApp
> > > (TagLibConfiguration.java:171)
> > > at org.mortbay.jetty.webapp.WebAppContext.startContext
> > > (WebAppContext.java:1215)
> > > at org.mortbay.jetty.handler.ContextHandler.doStart
> > > (ContextHandler.java:500)
> > > at
> org.mortbay.jetty.webapp.WebAppContext.doStart(WebAppContext.java:
> > > 448)
> > > at org.mortbay.component.AbstractLifeCycle.start
> > > (AbstractLifeCycle.java:40)
> > > at
> > > com.google.apphosting.runtime.jetty.AppVersionHandlerMap.createHandler
> > > (AppVersionHandlerMap.java:191)
> > > at
> com.google.apphosting.runtime.jetty.AppVersionHandlerMap.getHandler
> > > (AppVersionHandlerMap.java:168)
> > > at
> > >
> com.google.apphosting.runtime.jetty.JettyServletEngineAdapter.serviceReques
> t
> > > (JettyServletEngineAdapter.java:123)
> > > at com.google.apphosting.runtime.JavaRuntime.handleRequest
> > > (JavaRuntime.java:235)
> > > at com.google.apphosting.base.RuntimePb$EvaluationRuntime
> > > $6.handleBlockingRequest(RuntimePb.java:5235)
> > > at com.google.apphosting.base.RuntimePb$EvaluationRuntime
> > > $6.handleBlockingRequest(RuntimePb.java:5233)
> > > at
> com.google.net.rpc.impl.BlockingApplicationHandler.handleRequest
> > > (BlockingApplicationHandler.java:24)
> > > at
> com.google.net.rpc.impl.RpcUtil.runRpcInApplication(RpcUtil.java:
> > > 363)
> > > at com.google.net.rpc.impl.Server$2.run(Server.java:838)
> > > at com.google.tracing.LocalTraceSpanRunnable.run
> > > (LocalTraceSpanRunnable.java:56)
> > > at
> com.google.tracing.LocalTraceSpanBuilder.internalContinueSpan
> > > (LocalTraceSpanBuilder.java:536)
> > > at com.google.net.rpc.impl.Server.startRpc(Server.java:793)
> > > at
> com.google.net.rpc.impl.Server.processRequest(Server.java:368)
> > > at com.google.net.rpc.impl.ServerConnection.messageReceived
> > > (ServerConnection.java:448)
> > > at com.google.net.rpc.impl.RpcConnection.parseMessages
> > > (RpcConnection.java:319)
> > > at com.google.net.rpc.impl.RpcConnection.dataReceived
> > > (RpcConnection.java:290)
> > > at
> com.google.net.async.Connection.handleReadEvent(Connection.java:
> > > 466)
> > > at com.google.net.async.EventDispatcher.processNetworkEvents
> > > (EventDispatcher.java:759)
> > > at com.google.net.async.EventDispatcher.internalLoop
> > > (EventDispatcher.java:205)
> > > at
> com.google.net.async.EventDispatcher.loop(EventDispatcher.java:
> > > 101)
> > > at com.google.net.rpc.RpcService.runUntilServerShutdown
> > > (RpcService.java:251)
> > > at com.google.apphosting.runtime.JavaRuntime$RpcRunnable.run
> > > (JavaRuntime.java:394)
> > > at java.lang.Thread.run(Unknown Source)
> > > C 12-22 01:52PM 21.118
> > > Uncaught exception from servlet
> > > javax.servlet.UnavailableException: Initialization failed.
> > > at
> > > com.google.apphosting.runtime.jetty.AppVersionHandlerMap.createHandler
> > > (AppVersionHandlerMap.java:200)
> > > at
> com.google.apphosting.runtime.jetty.AppVersionHandlerMap.getHandler
> > > (AppVersionHandlerMap.java:168)
> > > at
> > >
> com.google.apphosting.runtime.jetty.JettyServletEngineAdapter.serviceReques
> t
> > > (JettyServletEngineAdapter.java:123)
> > > at com.google.apphosting.runtime.JavaRuntime.handleRequest
> > > (JavaRuntime.java:235)
> > > at com.google.apphosting.base.RuntimePb$EvaluationRuntime
> > > $6.handleBlockingRequest(RuntimePb.java:5235)
> > > at com.google.apphosting.base.RuntimePb$EvaluationRuntime
> > > $6.handleBlockingRequest(RuntimePb.java:5233)
> > > at
> com.google.net.rpc.impl.BlockingApplicationHandler.handleRequest
> > > (BlockingApplicationHandler.java:24)
> > > at
> com.google.net.rpc.impl.RpcUtil.runRpcInApplication(RpcUtil.java:
> > > 363)

Re: [appengine-java] Re: What Java MVC framework do you use on AppEngine?

2009-12-23 Thread aswath satrasala
I started to do some small project using struts2, JSP, JDO.
What is startup time?

When I login into my app, I get the first response back in 9-10 secs.

How about any data for wicket applications?

-Aswath



On Wed, Dec 23, 2009 at 5:25 AM, Larry Cable  wrote:

> I am using Spring 2.5.6/3.0, JSP and JDO.
>
> On Dec 22, 10:41 am, Trung Pham  wrote:
> > Coming from Ruby on Rails background, I have tried to run Rails on
> > Jruby on AppEngine. While it works, but it has ridiculous startup
> > time. Well over 20 seconds to spin up an instance, and sometimes it
> > even hits the 30 seconds limit.
> >
> > Anyway, out of curiosity, what is the equivalent MVC framework in the
> > Java world that works like Rails? Preferable native Java, not
> > something like Grails on Groovy. Is it even possible to have a MVC
> > framework on AppEngine that takes no more than 1 second to spin up?
> >
> > 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-j...@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-j...@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: JDO Query for properties with null values

2009-12-23 Thread dantuluri
I am new GAE and I need some help. Is it possible to query for
entities with a property value null using GAE JDO query?

I want something like

   "Get me all the Files that don't have a parent"

In regular relational DBs, it can be queried some thing like this:
"select * from File where parentKey is null"

I have a class something like this:

public class File {
  @Persistent
  @PrimaryKey
  private Key id;

  @Persistent
  String name;

   @Persistent
   private Key parentKey;
}

When I am querying for Files that have null parentKey, query returns
all Files including those with non-null parentKey value. Is this
possible to do with GAE?

Thanks!

On Dec 22, 1:33 pm, dantuluri  wrote:
> Hi,
>
>     I have an entity that has the following structure:
>
> File  which has Key as primary key and ParentKey that refers to
> another File which is parent of this File. Example data for this
> structure looks like this:
>
> Key: File(2)
> Name: Inbox
> parentKey: File(1)
>
> It is possible that File may not have a parentKey.
>
> I want to query the DataStore for Files that don't have parent file
> (parentKey == null). But when I am querying with parentKey == null, I
> am still getting all Files including those with parentsKeys. How can
> we do this with JDO query with App Store? I must be missing something
> basic here.
>
> Similarly I would like to get the child folders of a given folder
> (parentKey == File(1)).
>
> Any help would be appreciated!
>
> 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-j...@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: wrong redirection to google sites

2009-12-23 Thread Don Schwarz
Your index.html file contains this:

http://www.sakshum.com/ui/page/index.html";>

and www.sakshum.com is evidently mapped to Google Sites in your Google Apps
management console.  Is that correct?

On Wed, Dec 23, 2009 at 9:36 AM, Vik  wrote:

>
> hie any help on this plz? I am stuck and my app is down now due to this
>> redirection. Kindly help on this
>>
>> Thankx and Regards
>>
>> Vik
>> Founder
>> www.sakshum.com
>> www.sakshum.blogspot.com
>>
>>
>> On Mon, Dec 21, 2009 at 6:00 PM, Vik  wrote:
>>
>>> Hie
>>>
>>> I have a deployed version of my app as:
>>> http://1.latest.sakshumweb.appspot.com
>>> but when i click on it: it takes me to somewhere else like:
>>> http://sites.google.com/a/sakshum.com/www/ui/page/index.html
>>>
>>> Any idea why? I am hoping to see my site instead.
>>>
>>> This was working fine few days back and all of a sudden it started
>>> happening. I haven't made any changes on my side. Please help
>>>
>>>
>>> Thankx and Regards
>>>
>>> Vik
>>> Founder
>>> www.sakshum.com
>>> www.sakshum.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-j...@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-j...@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: wrong redirection to google sites

2009-12-23 Thread Vik
> hie any help on this plz? I am stuck and my app is down now due to this
> redirection. Kindly help on this
>
> Thankx and Regards
>
> Vik
> Founder
> www.sakshum.com
> www.sakshum.blogspot.com
>
>
> On Mon, Dec 21, 2009 at 6:00 PM, Vik  wrote:
>
>> Hie
>>
>> I have a deployed version of my app as:
>> http://1.latest.sakshumweb.appspot.com
>> but when i click on it: it takes me to somewhere else like:
>> http://sites.google.com/a/sakshum.com/www/ui/page/index.html
>>
>> Any idea why? I am hoping to see my site instead.
>>
>> This was working fine few days back and all of a sudden it started
>> happening. I haven't made any changes on my side. Please help
>>
>>
>> Thankx and Regards
>>
>> Vik
>> Founder
>> www.sakshum.com
>> www.sakshum.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-j...@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: blobstore & lucene search index

2009-12-23 Thread jacek.ambroziak
I have been using a search engine of my own design.
I had first to adapt it to GAE by generalizing the index
storage mechanism so that it can be *implemented*
using files (originally the only way) or with Datastore.
It was a good couple of days of work but it is not hard.


On Dec 22, 6:33 pm, Toby  wrote:
> Hello,
>
> I think a sophisticated search api is what a lot of us are missing. I
> use currently the compass-lucene project but I am not completely
> satisfied with the performance. I think there is also the GAELucene
> project that uses a similar aproach.
> I guess the main issue was so far that you could not write the index
> files to a "regular" file system. I wonder if the new blob-store API
> could solve that issue and if anyone has done some experimentation
> with it.
>
> Cheers,
> Tobi

--

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-j...@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: Querying sub objects with JDOQL in GAE/J

2009-12-23 Thread java
I face same requirement and store  sub-object is working fine but
retrieve with filter ob subject is not working. showing error. what I
should do ?

On Nov 11, 11:40 am, enthusiast  wrote:
> I have a very basic question about JDOQL with GAE/J. Hope someone can
> shine light on this:
>
> I have modeled two persistent objects Employee and ContactInfo such
> that Employee contains an instance of ContactInfo, as follows:
>
> ContactInfo.java
>
> import com.google.appengine.api.datastore.Key;
> // ... imports ...
>
> @PersistenceCapable(identityType = IdentityType.APPLICATION)
> public class ContactInfo {
>     @PrimaryKey
>     @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
>     private Key key;
>
>     @Persistent
>     private String city;
>
>     // ...
>
> }
>
> Employee.java
>
> import ContactInfo;
> // ... imports ...
>
> @PersistenceCapable(identityType = IdentityType.APPLICATION)
> public class Employee {
>     @PrimaryKey
>     @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
>     private Key key;
>
>     @Persistent
>     private Integer salary;
>
>     @Persistent
>     private ContactInfo contactInfo;
>
>     Integer getSalary() {
>         return salary;
>     }
>
>     void setSalary(Integer salary) {
>         this.salary = salary;
>     }
>
>     ContactInfo getContactInfo() {
>         return contactInfo;
>     }
>
>     void setContactInfo(ContactInfo contactInfo) {
>         this.contactInfo = contactInfo;
>     }
>
>     // ...
>
> }
>
> I am able to create instances of Employee with relevant ContactInfo
> objects. However, I am not able to query for Employee which uses a
> field on the ContactInfo object. E.g. If I want to retrieve only those
> employees whose salary > 1 AND ContactInfo.city == "New York", how
> do I construct such a query?
>
> If I just want to query on the field in the Employee object, I get the
> results, but when I use a field in the sub-object of Employee (i.e.
> ContactInfo) I get an error.
>
> Any help???

--

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-j...@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] Set the Timezone

2009-12-23 Thread George Moschovitis
Is there a way to set the timezone for my application?

I tried with the following setup in appengine-web.xml:






but it doesn't seem to work (the time is 2 hours behind).

Is there an alternative?

This is an *important* problem, any help will be really appreciated!

regards,
George.

--
http://www.appenginejs.org

--

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-j...@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] Set the

2009-12-23 Thread George Moschovitis





--

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-j...@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: List of embedded class objects in default fetch group

2009-12-23 Thread andreas_b
Hi.

I'm using 1.3.0, but further investigations shows that this might not
be related to lazy loading after all.
I don't seem to be able to save/retrieve lists of embedded objects at
all...

I wrote some test examples to show my problem. I probably do something
wrong here, but I really can't figure out what...

@PersistenceCapable(identityType = IdentityType.APPLICATION)
public class Test {

@PrimaryKey
@Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
@Extension(vendorName="datanucleus", key="gae.encoded-pk",
value="true")
private String iEncodedKey;

@Persistent(defaultFetchGroup = "true")
private List innerTests;

@PersistenceCapable
@EmbeddedOnly
public static class InnerTest{

@Persistent
private String whatever;

public InnerTest(){
whatever = "whatever";
}
}

public Test(){ }

public void addSomeInnerTests(){
innerTests = new ArrayList();

for(int i = 0; i < 5; ++i)
innerTests.add(new InnerTest());
}

public List getInnerTests(){
return innerTests;
}
}


and then I use the following testcode to save and retrieve the objects

// For saving
Test test = new Test();
test.addSomeInnerTests();

Test saved = pm.makePersistent(test);
System.out.println("persisted Test innerTests size = " +
saved.getInnerTests().size());
System.out.println("Saved Test key = " + saved.getKey());

// For retrieving
Query query = pm.newQuery(Test.class);
List list = (List)query.execute();
System.out.println("Tests = " + list.size());

for(Test test : list){
System.out.println("Retrieved Test key = " + test.getKey());
List innerTests = test.getInnerTests();
System.out.println("innerTests size = " + innerTests.size());
}

and this provides the following output

persisted Test innerTests size = 5
Saved Test key = agtib2xsdHJvbGxlbnIMCxIEVGVzdBjbsAEM
Tests = 1
Retrieved Test key = agtib2xsdHJvbGxlbnIMCxIEVGVzdBjbsAEM
innerTests size = 0


So, why is the List in the retrieved Test empty? I have tried
retrieving an object directly as well, but this naturally leads to an
IndexOutOfBounds.
In my real code, all the other variables are saved and retrieved
properly. I have Lists of Strings and such as well, and they work just
fine, so its definitely related to children/embedded objects.

Any help is appreciated.

Thanks / Andreas



On 23 Dec, 07:32, "Ikai L (Google)"  wrote:
> Embedded objects should be eager loaded with any SDK version 1.2.8+ and
> above. Is this the version you are on? It's only child objects that are not
> eager loaded now.
>
> On Tue, Dec 22, 2009 at 3:15 PM, andreas_b wrote:
>
>
>
> > Hi all.
>
> > I'm struggling a bit with default fetch groups in one of my entities
> > here..
>
> > Basically I have something that looks like this
>
> > @PersistenceCapable(identityType = IdentityType.APPLICATION,
> > detachable="true")
> > public class A {
>
> > �...@persistent(defaultFetchGroup = "true")
> >  private List embeddedObjects;
>
> > �...@persistencecapable(detachable="true")
> > �...@embeddedonly
> >  public static class B {
> >  
> >  }
> > }
>
> > I want the list of my B objects to be fetched automatically when I
> > retrieve A from the datastore. This does not work however. It still
> > seems to do lazy loading and I get the following warning:
>
> > 2009-dec-22 23:57:52 org.datanucleus.store.appengine.MetaDataValidator
> > warn
> > WARNING: Meta-data warning for A.embeddedObjects: The datastore does
> > not support joins and therefore cannot honor requests to place child
> > objects in the default fetch group.  The field will be fetched lazily
> > on first access..."
>
> > The above works fine if I change it to just: private B object, so the
> > problem seems related to List or collections in general. I have been
> > trying to find some explanation on this both in datanucleus docs and
> > here, but have been unable to find it.
>
> > Oh, and I can't use the "touch" technique since I use generic object
> > retrieval and that code has no knowledge of what the class contains,
> > and I want to keep it that way.
>
> > Could someone explain how this works (or point me to someplace) and
> > how I can solve it?
>
> > Thanks in advance.
>
> > BR, Andreas
>
> > --
>
> > 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-j...@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.
>
> --
> Ikai Lan
> Developer Programs Engineer, Google App Engine

--

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-j...@googlegroups.com.
To unsubscribe 

[appengine-java] Re: maven-gae-plugin 0.4.2

2009-12-23 Thread drone
maven-gae-plugin now has it's own Google Group, so any news regarding
it will be posted there:
http://groups.google.com/group/maven-gae-plugin

Anybody is welcome to join the mailing-list and provide any feedback
on plugin.

On Dec 18, 6:17 pm, drone  wrote:
> maven-gae-plugin0.4.2 has just been released (http://code.google.com/
> p/maven-gae-plugin)
>
> The main features are upgraded/cleaned dependencies, also there are
> couple of small bug fixes.
> You can check the GWT example project (uses GAE 1.3.0 and GWT 1.7.1).
>
> Running hosted mode frommavenshould be possible after gwt-maven-plugin's1.2 
> version is released (http://jira.codehaus.org/browse/
> MGWT-112) (or you can try building it's 1.2-SNAPSHOT yourself).
>
> Combiningmaven-gae-pluginwith GoogleEclipseplug-in might be
> possible, if you put war directory in your project root, but I haven't
> tested this yet. (See following 
> thread:http://groups.google.com/group/google-appengine-java/browse_thread/th...)

--

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-j...@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: eclipse plugin and maven?

2009-12-23 Thread drone
maven-gae-plugin now has it's own mailing list, so all my further
messages regarding this and other maven related issues will be posted
there:

I tried setup mentioned above and failed - details are posted here:
http://groups.google.com/group/maven-gae-plugin/browse_thread/thread/497e2dd1ee252650

On Dec 18, 6:06 pm, drone  wrote:
> 1. It appears, that it is possible to specify SDK location (at least
> in latest) GoogleEclipseplugin. So you could makemavento download
> the whole SDK zip to it's repository and configureEclipsepluginto
> use it from there.
> 3. This might not be true - it seems that gwt has finally made it to
> the official repository:http://repo2.maven.org/maven2/com/google/gwt/
>
> the 2. point however is still true and this is the main problem with
> GoogleEclipseplugin.
> however it should be possible to configuremavento work with war
> directory in root.. (which is awful, i know..)
>
> I haven't tried this configuration yet, but it seems to me, that this
> should work. I will try to come up with an example project, where this
> is done.
>
> On Dec 15, 8:16 pm, Miguel Méndez  wrote:
>
> > Here are somethings, that I'm aware of, that make it hard to usemavenand
> > the GooglePluginforEclipsetogether:
>
> >   1. Require users to use an SDK (classpath container ineclipse) instead
> >   of regular jars
> >   2. Force the "war" directory to be named war and appear at the project
> >   root
> >   3. No official GWT artifactmavenrepository
>
> > On Mon, Dec 14, 2009 at 4:35 AM, drone  wrote:
> > > Regardingmaven-gae-plugin- for now, the best way to adopt your
> > > application is to copy/paste pom parts from one of the example
> > > projects (plain jsp or gwt). It's not trivial, but not impossible.
> > > Also I tried to document every piece of pom.xml there.
>
> > > However it is true, that thispluginhas become a bit stale.. on my
> > > part it's mostly because newer google appengine artifacts did not
> > > appear in
> > > google-maven-repository.
>
> > > I see now, that they can be found inhttp://www.mvnsearch.org/maven2/
> > > repository, so I will try updatingmaven-gae-pluginas soon as I have
> > > some free time.
> > > Also - gwt example is to be updated to use codehausplugin
> > > (mojo.codehaus.org/gwt-maven-plugin) instead of gwt-maven
> > > (code.google.com/p/gwt-maven/).
>
> > > On Dec 13, 6:48 am, Yoichi  wrote:
> > > > Google App Engine has aMavenPluginproject.
>
> > > >http://code.google.com/p/maven-gae-plugin/
>
> > > > Unfortunately there is no manual and I can't figure out how to use it,
> > > > what else may be necessary, how to configure them, what's the
> > > > relationship with ApacheEclipseMavenplugins.
>
> > > > There are sample Project trees from the Web site. However, that is not
> > > > enough.
>
> > > > E.g. I can't see any new menu option to create and manage GAEMaven
> > > > project, etc. For example, the GAEMavenPluginshould add a new
> > > > Archtype in theMavenPlugin'sPrlject creation menu. It seems this is
> > > > not the case.
>
> > > > Yoichi
>
> > > --
>
> > > 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-j...@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.
>
> > --
> > Miguel

--

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-j...@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: --enable_jar_splitting

2009-12-23 Thread Marcel Overdijk
For reference: I've created issue 2552.
http://code.google.com/p/googleappengine/issues/detail?id=2552&sort=-id&colspec=ID%20Type%20Status%20Priority%20Stars%20Owner%20Summary%20Log%20Component

On 22 dec, 23:15, Don Schwarz  wrote:
> It doesn't look like the Eclipse plugin currently supports this.  Feel free
> to file an issue in our issue tracker.
>
> On Tue, Dec 22, 2009 at 2:47 PM, Marcel Overdijk
> wrote:
>
>
>
> > Hi Don,
>
> > The jar contains a lot of images so it doesn't matter that files need
> > to be in the same - splitted - jar.
> > In fact the --enable_jar_splitting sounds perfect for me as I don't
> > have to do the work myself: just maintain one single jar with the
> > images, and let gae deployment split them up if necessarily.
>
> > How can I enable --enable_jar_splitting for my app? I'm deploying my
> > app using the eclipse plugin.
>
> > On Dec 22, 6:17 pm, Don Schwarz  wrote:
> > > I would recommend that you simply split it into arbitrary pieces
> > yourself.
> > >  --enable_jar_splitting is a workaround to have the deployment tool do
> > this
> > > itself, but this can cause problems with some libraries (e.g. if it
> > expects
> > > to find a resource file and a class file in the exact same jar) so I
> > would
> > > recommend trying it manually yourself.
>
> > > On Tue, Dec 22, 2009 at 10:01 AM, Marcel Overdijk
> > > wrote:
>
> > > > I have a jar file which is to big so I got this message while
> > > > uploading my app:
>
> > > > Unable to update app: Found a jar file too large to upload: "D:\Users
> > > > \MOVERD~1\AppData\Local\Temp\appcfg5433596470093952667.tmp\WEB-INF\lib
> > > > \footdex-resources.jar".  Consider using --enable_jar_splitting.
>
> > > > See the deployment console for more details
> > > > Unable to update app: Found a jar file too large to upload: "D:\Users
> > > > \MOVERD~1\AppData\Local\Temp\appcfg5433596470093952667.tmp\WEB-INF\lib
> > > > \footdex-resources.jar".  Consider using --enable_jar_splitting.
>
> > > > GAE hint to use something like --enable_jar_splitting (command line
> > > > argument?), but I can nowhere find any documentation about this.
>
> > > > Can I also use this from Eclipse plugin?
>
> > > > --
>
> > > > 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-j...@googlegroups.com.
> > > > To unsubscribe from this group, send email to
> > > > google-appengine-java+unsubscr...@googlegroups.com > > >  unsubscr...@googlegroups.com> > 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-j...@googlegroups.com.
> > To unsubscribe from this group, send email to
> > google-appengine-java+unsubscr...@googlegroups.com > 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-j...@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: Blobstore vs Datastore Blob

2009-12-23 Thread Peter Ondruska
Thank you Ikai.

On Dec 22, 11:19 pm, "Ikai L (Google)"  wrote:
> No, there shouldn't be a difference. Blobs aren't indexed, and neither are
> Blobstores. Blobs obviously have the size limit issue and are a bit more
> flexible than Blobstores in terms of how you access and manipulate them, but
> otherwise, they're using the same mechanisms at a very low level to persist
> data.
>
> On Mon, Dec 21, 2009 at 9:13 AM, Peter Ondruska 
> wrote:
>
>
>
>
>
> > Is there any difference apart from API, billing restriction and max
> > size between using Blobstore and Blob in Datastore? For example is it
> > more efficient to store Blobs in Blobstore due to non-existing indexes
> > for properties which would otherwise be present in Blob in Blobstore?
> > Thanks, Peter
>
> > --
>
> > 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-j...@googlegroups.com.
> > To unsubscribe from this group, send email to
> > google-appengine-java+unsubscr...@googlegroups.com > unsubscr...@googlegroups.com>
> > .
> > For more options, visit this group at
> >http://groups.google.com/group/google-appengine-java?hl=en.
>
> --
> Ikai Lan
> Developer Programs Engineer, Google App Engine

--

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-j...@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: What type of field declaration is best for collections with duplicates?

2009-12-23 Thread datanucleus
JDO and JPA follow the handling capabilities of the collection type
(java.util)

> I know that I can create a List field marked @Basic (for simple element 
> types) or @OneToMany,

How can you have a "Basic" List ? makes no sense. Its a 1-N relation,
or Collection.

> which naturally points towards Set as an alternative.

Given the handling that Set provides, regarding dups.

You choose your type based on what you want it to be, the persistence
solution simply follows that

--

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-j...@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] "500 Server Error" adding records to Datastore

2009-12-23 Thread antonio




Michael Chan wrote:

  Would be useful if you could post the stack trace here

  

log is below, the app locally works but deployed in GAE no

thanks,
antonio


  

  
12-22 11:49PM 40.650
/banche
500
29098ms
52072cpu_ms
39608api_cpu_ms
0kb
Mozilla/5.0 (X11; U;
Linux i686; en-US; rv:1.9.0.8) Gecko/2009033100 Ubuntu/9.04 (jaunty)
Firefox/3.0.8,gzip(gfe)

  
  

I
12-22 11:49PM 42.828

org.datanucleus.plugin.NonManagedPluginRegistry resolveConstraints: Bundle "org.datanucleus.jpa" has an optional dependency to "org.datanucleus.enhancer" but it cannot be resolved

  
  

I
12-22 11:49PM 42.833

org.datanucleus.plugin.NonManagedPluginRegistry resolveConstraints: Bundle "org.datanucleus" has an optional dependency to "org.eclipse.equinox.registry" but it cannot be resolved

  
  

I
12-22 11:49PM 42.833

org.datanucleus.plugin.NonManagedPluginRegistry resolveConstraints: Bundle "org.datanucleus" has an optional dependency to "org.eclipse.core.runtime" but it cannot be resolved

  
  

I
12-22 11:49PM 43.365

org.datanucleus.PersistenceConfiguration setProperty: Property datanucleus.rdbms.sql.allowAllSQLStatements unknown - will be ignored

  
  

I
12-22 11:49PM 43.370

org.datanucleus.PersistenceConfiguration setProperty: Property datanucleus.rdbms.stringDefaultLength unknown - will be ignored

  
  

I
12-22 11:49PM 43.534

org.datanucleus.PersistenceConfiguration setProperty: Property datanucleus.appengine.autoCreateDatastoreTxns unknown - will be ignored

  
  

I
12-22 11:49PM 43.539

org.datanucleus.ObjectManagerFactoryImpl logConfiguration: = Persistence Configuration ===

  
  

I
12-22 11:49PM 43.544

org.datanucleus.ObjectManagerFactoryImpl logConfiguration: DataNucleus Persistence Factory - Vendor: "DataNucleus"  Version: "1.1.5"

  
  

I
12-22 11:49PM 43.544

org.datanucleus.ObjectManagerFactoryImpl logConfiguration: DataNucleus Persistence Factory initialised for datastore URL="" driver="" userName=""

  
  

I
12-22 11:49PM 43.544

org.datanucleus.ObjectManagerFactoryImpl logConfiguration: ===

  
  

I
12-22 11:49PM 43.786

org.datanucleus.PersistenceConfiguration setProperty: Property datanucleus.query.cached unknown - will be ignored

  
  

I
12-22 11:49PM 44.411

org.datanucleus.jdo.metadata.JDOMetaDataManager : Registering listener for metadata initialisation

  
  

I
12-22 11:49PM 44.437

org.datanucleus.jdo.metadata.JDOMetaDataManager$MetaDataRegisterClassListener registerClass: Listener found initialisation for persistable class calcoloiban.Banche

  
  

I
12-22 11:49PM 44.649

org.datanucleus.jdo.metadata.JDOAnnotationReader processClassAnnotations: Class "calcoloiban.Banche" has been specified with JDO annotations so using those.

  
  

I
12-22 11:49PM 44.840

org.datanucleus.store.appengine.MetaDataValidator validate: Performing appengine-specific metadata validation for calcoloiban.Banche

  
  

I
12-22 11:49PM 44.841

org.datanucleus.store.appengine.MetaDataValidator validate: Finished performing appengine-specific metadata validation for calcoloiban.Banche

  
  

I
12-22 11:49PM 44.984

org.datanucleus.store.StoreDataManager registerStoreData: Managing Persistence of Class : calcoloiban.Banche [Table : 









, InheritanceStrategy : new-table]

  
  

I
12-22 11:49PM 45.069

org.datanucleus.store.StoreDataManager registerStoreData: Managing Persistence of Class : calcoloiban.Banche [Table : 









, InheritanceStrategy : new-table]

  
  

I
12-22 11:49PM 45.227

com.google.appengine.repackaged.com.google.common.base.FinalizableReferenceQueue$SystemLoader loadFinalizer: Not allowed to access system class loader.

  
  

I
12-22 11:49PM 45.241

com.google.appengine.repackaged.com.google.common.base.internal.Finalizer getInheritableThreadLocalsField: Couldn't access Thread.inheritableThreadLocals. Reference finalizer threads will inherit thread local values.