Re: [appengine-java] Re: Security restrictions may not be entirely emulated errors in Dev mode with Spring 3.0 on 1.3.4

2010-06-03 Thread Bill Milligan
. Is this just the way it is, or are we missing something? Regards, Andrew. On Jun 3, 10:32 am, Bill Milligan bill.milli...@gmail.com wrote: If you've gotten past point 2, I'd love to see it. Redeploying every time I make a change is driving me batty. On Wed, Jun 2, 2010 at 7:38 PM

Re: [appengine-java] Re: Security restrictions may not be entirely emulated errors in Dev mode with Spring 3.0 on 1.3.4

2010-06-03 Thread Bill Milligan
Let me clarify: I get a 404 error reported on /WEB-INF/views/hello/hello.jsp when I try this. I've tried moving the views directory elsewhere, outside of WEB-INF but still cannot find it. On Thu, Jun 3, 2010 at 9:43 AM, Bill Milligan bill.milli...@gmail.comwrote: Actually, that sounds

Re: [appengine-java] Hi anybody pls help me

2010-06-03 Thread Bill Milligan
That's rather very vague. Can you be a lot more specific? On Thu, Jun 3, 2010 at 9:22 AM, Goodwin weizhao1...@gmail.com wrote: im new for GAE. I read gae doc and develop a blog useing jsp. but when i run it in my pc it shows only the page index.jsp. others like wirtearticle.jsp,

Re: [appengine-java] Re: Question about security of my data on AppEngine and Guarentee.

2010-06-03 Thread Bill Milligan
Hi Christian, For that kind of control on physical security, you really need dedicated servers that you can physically touch in a data center. This is really very not cheap. Some kinds of applications require this security, such as banking, investment, or credit tracking software, where you are

Re: [appengine-java] Beginner help

2010-06-03 Thread Bill Milligan
Is this what you're looking for? http://code.google.com/appengine/docs/java/javadoc/index.html http://code.google.com/appengine/docs/java/javadoc/index.htmlYou may want to google for answers to simple questions like this. I'd also suggest you look for google app engine hello world to see many

Re: [appengine-java] Restoring backup

2010-06-03 Thread Bill Milligan
One of the ideas of google app engine is that you don't have to manage this sort of thing. Google does it for you. If you need a more fine-grained level of control, if you *want* to be answering pagers in the middle of the night when everything breaks (and believe me, they do) then perhaps

Re: [appengine-java] Security restrictions may not be entirely emulated errors in Dev mode with Spring 3.0 on 1.3.4

2010-06-02 Thread Bill Milligan
Originally, I'd thought something along the same lines, but this isn't the case. In my running server there's no asm running in my application classpath, environment, or lib/ext. It's only in GAE and my application. On Wed, Jun 2, 2010 at 12:04 PM, Toby Reyelts to...@google.com wrote: It

Re: [appengine-java] simple relation

2010-06-02 Thread Bill Milligan
Are you trying one-to-many or many-to-many? By using a third table it sounds like you're trying to do many-to-many, not one-to-many. As best I can determine, the only real way to do this in GAE is to have a User class with a collection of string properties, containing the list of all Work ids.

Re: [appengine-java] simple relation

2010-06-02 Thread Bill Milligan
at 10:35 PM, Bill Milligan bill.milli...@gmail.comwrote: Are you trying one-to-many or many-to-many? By using a third table it sounds like you're trying to do many-to-many, not one-to-many. As best I can determine, the only real way to do this in GAE is to have a User class with a collection

Re: [appengine-java] Re: Security restrictions may not be entirely emulated errors in Dev mode with Spring 3.0 on 1.3.4

2010-06-02 Thread Bill Milligan
If you've gotten past point 2, I'd love to see it. Redeploying every time I make a change is driving me batty. On Wed, Jun 2, 2010 at 7:38 PM, Andrew am2...@gmail.com wrote: Thank you very much Bill. The suggestion in point 1 worked a treat. To answer your other questions, I am using asm