[appengine-java] Eclipse Plugin not showing 1.4.3

2011-03-31 Thread Alan Williamson
Good morning fellow Google'ers ... I noticed the Eclipse plugin site is 
still giving out 1.4.2 and has not yet been upgraded to 1.4.3.

Small oversight?

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine for Java group.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



Re: [appengine-java] Unable to start embedded HTTP server, AccessControlException

2011-02-20 Thread Alan Williamson
I am receiving the exact same problem.

The directory in question is indeed writable ... it creates the .policy file 
okay, but doesn't seem to delete it.

If i run it inside of Eclipse it works; if i run it outside of Eclipse i get 
this issue.

java.security.AccessControlException: access denied (java.io.FilePermission 
C:\Users\alan\AppData\Local\Temp\test2372885730606789235.policy delete)

Any hints as to what is going on here?

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine for Java group.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[appengine-java] java.lang.NoClassDefFoundError: javax/mail/Message

2011-01-14 Thread Alan Williamson
Good evening all,

I am deploying my GAE app (1.4.0) and all is fine in the local development 
mode.

However when I deploy it to Google, i received the error below.  I am not 
including any mail.jar file in my uploaded WEB-INF/lib/ jar list as per the 
instruction.  What is going wrong here?   

Thanks for any input
--
  http://alan.is/

Uncaught exception from servlet
java.lang.NoClassDefFoundError: javax/mail/Message


-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine for Java group.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[appengine-java] Re: java.lang.NoClassDefFoundError: javax/mail/Message

2011-01-14 Thread Alan Williamson
Allow me to answer my own question!  Always the way, as soon as you give up 
hope, ask a question on a forum, you stumble on the answer.

I had neglected to copy over the necessary jar files.

*Your app must include appengine-api-*.jar (where * represents a version 
number of the API and SDK), a JAR included with the SDK, in the directory
war/WEB-INF/lib/. App Engine checks for classes from this JAR to determine 
which version of the API your app is using. If your application uses the JDO 
or JPA interfaces to the App Engine datastore, the app must include the 
JDO/JPA implementation in war/WEB-INF/lib*

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine for Java group.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.