[google-appengine] Can't Find Error Log

2011-08-12 Thread Eric Atkinson
Tried to deploy; it said see error log but I can't find out where this log 
is located even after looking through the directories, the manuals, and this 
forum.

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



[google-appengine] Using A Java Application As Client to App Engine?

2011-07-16 Thread Eric Atkinson
For various reasons, I don't want to use a browser as my client. Why? 
Because, for example, although the Chrome browser can render my rather 
complex GWT client just fine, IE can't render it even if you install 
the Chrome Frame Plug-In, so I simply don't trust browsers as clients (too 
many uncontrollable unknowns). Consequently, instead of using a browser as 
client, I want to use a Java Application as client installed from GAE using 
JNLP (and I've got this part working on GAE after a bit trial and error on 
my part).  My question is: If I use a Java Application as client then the 
GWT (not GAE) documentation seems to be saying that I'll need to use com.
google.gwt.http.client.* to make my calls to the servleta using XML to pass 
data, and then converting the XML into JDO objects for the datastore. Does 
this sound right? I only ask because I don't want to do a lot of work trying 
this if GAE requires the client to be a browser (in which case I have to 
forgo using GAE because I hate browsers as clients).

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



[google-appengine] Re: Java Network Launching Protocol (JNLP) Support on App Engine?

2011-07-14 Thread Eric Atkinson


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



[google-appengine] Re: Java Network Launching Protocol (JNLP) Support on App Engine?

2011-07-14 Thread Eric Atkinson
Forget what I said; somehow a space got added to the front of filename while 
was programming. I don't know how, but this odd error was enitirely of my 
own making -- sorry.

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



Re: [google-appengine] Re: Java Network Launching Protocol (JNLP) Support on App Engine?

2011-07-14 Thread Eric Atkinson
You're right; it's my fault, I'm sorry. I don't know how a space got in 
front of my filename, but it sure drove my nuts for a while before I finally 
noticed it. As for GAE, it's fine, everything I need, well put together, and 
explained well (and explained quickly instead of in eight volumes). It's 
other app servers I've had a problem in the past, but not GAE.  Sorry. 

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



[google-appengine] com.google.appengine.api.datastore.Key can not be found in source packages?!

2011-07-10 Thread Eric Atkinson
I get the follwing compile error -- com.google.appengine.api.datastore.Key 
can not be found in source packages. Check the inheritance chain from your 
module; it may not be inheriting a required module or a module may not be 
adding its source path entries properly -- with the below code snippet.

What's wrong with this code? Why can't the compiler 
see com.google.appengine.api.datastore.Key. I assume by inheritance chain 
it means the build path and that 
includes com.google.appengine.api.datastore.Key in the app eng SDK, so why 
am I getting the above compile error in the following code:

package com.sis.app.shared;

import javax.jdo.annotations.PersistenceCapable;
import javax.jdo.annotations.Persistent;
import javax.jdo.annotations.IdGeneratorStrategy;
import javax.jdo.annotations.PrimaryKey;
import com.google.appengine.api.datastore.Key;


@SuppressWarnings(serial)
@PersistenceCapable
public class ModelMember implements Serializable {
@PrimaryKey
@Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
private Key key;


-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine/-/ORTrGSg-Cj4J.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: com.google.appengine.api.datastore.Key can not be found in source packages?!

2011-07-10 Thread Eric Atkinson
This answer to this -- in the Eclispe IDE -- is to uncheck build 
automatically and then hit build all, and then it can see it. Strange, 
but true.

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



[google-appengine] Java Network Launching Protocol (JNLP) Support on App Engine?

2011-07-03 Thread Eric Atkinson
Does the Google App Engine, and related Web Server, support Java
Network Launching Protocol (JNLP)‎ for launching Java WebStart
Applications from my HTML home page?  GWT just isn't a sufficiently
sophisticated client platform, so I want to use a java application on
the front end to interact with the google app engine, but the app
engine would need to support JNLP to launch such a client. Is this
possible?

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



[google-appengine] Exception to use of Key class by JDO (Can't Find Source)

2011-06-29 Thread Eric Atkinson
The app engine manual extensively discusses the use of the Key class
(import javax.jdo.annotations.Key) for datastore operations, and yet
when I try to persistent data using Key, app engine throws the
exception: Caused by: javax.jdo.JDOUserException: Field
com.sis.app.server.DataModelMember.key is declared as a reference
type (interface/Object) but no implementation classes of
javax.jdo.annotations.Key have been found. Any idea what is
happening here with this no source code exception; otherwise, I have
to create and manage my own keys which is a lot more coding during
queries and updates. Thx!

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



[google-appengine] Re: Datasource Admin Question

2011-06-27 Thread Eric Atkinson
I apologize, the problem was that I can only access the admin console
using my original gmail.com account used to register the app instead
of my app.com account created after registering the app. I was trying
to look at the admin console using the latter (app.com acct) instead
of the former (gmail.com account). Thx!

On Jun 27, 1:46 am, Robert Kluin robert.kl...@gmail.com wrote:
 Have you already registered that app id at appspot.com?  App ids can
 not contain cap letters.

 You might try logging in at:
  https://appengine.google.com/a/strategicinternationalsystems.com

 On Sat, Jun 25, 2011 at 18:09, Eric Atkinson







 eric.atkin...@strategicinternationalsystems.com wrote:
  The docs (athttp://code.google.com/appengine/docs/adminconsole/) say
  that when I gotohttps://appengine.google.com/I can access the admin
  console, and in particular, the data tab. However, when I do, I get
 https://appengine.google.com/startwhich asks me to create an
  application. However, I've already created an application called
  StategicInternationalSystems, which I created using Google Apps For
  Business (a paid service). How do I access the admin console for this
  application running on Google Apps For Business?

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

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



[google-appengine] Datasource Admin Question

2011-06-26 Thread Eric Atkinson
The docs (at http://code.google.com/appengine/docs/adminconsole/) say
that when I goto https://appengine.google.com/ I can access the admin
console, and in particular, the data tab. However, when I do, I get
https://appengine.google.com/start which asks me to create an
application. However, I've already created an application called
StategicInternationalSystems, which I created using Google Apps For
Business (a paid service). How do I access the admin console for this
application running on Google Apps For Business?

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



[appengine-java] Re: Question About Loading HTML into a Frame

2011-01-02 Thread Eric Atkinson
Your question, although not the answer that worked, got me to thinking
about whether the html file itself was properly defined, because
before I used OpenOffice to create the html document and this time I
used Google Docs to create the html document, and that was the
problem. For whatever very strange reason, app engine won't load an
html page if I create on google docs and then download it into the
war. On the other hand, when I created the document again using
OpenOffice, it worked. Thank you for hinting at the definition of the
file itself even if this didn't turn out to be the problem.

On Jan 2, 3:50 am, Didier Durand durand.did...@gmail.com wrote:
 Hi,

 Is you Summary.html properly defined as a static file ? See how-to 
 inhttp://code.google.com/appengine/docs/java/config/appconfig.html#Stat

 If not defined directly (or via a containing directory), GAE won't be
 able to serve it to your application. Hence the 404.

 regards

 didier

 On Jan 1, 5:33 pm, Eric Atkinson atki4...@gmail.com wrote:







  The App Engine Manual says that any file I put in the WAR (or
  subdirectory) is automatically known to the app, so why, when I use
  the following code...

  Frame frame = new Frame(/StrategicInternationalSystems/war/WEB-INF/
  pages/Summary.html);
                  dockLayoutPanel.add(frame);

  ...does it tell me:

  HTTP ERROR 404

  Problem accessing /StrategicInternationalSystems/war/WEB-INF/pages/
  Summary.html. Reason:

      NOT_FOUND

  I think it has something to do with the fact that I started coding the
  app (using a new project) using GWT Designer. Why? Because when it was
  just App Engine and the GWT Toolkit before, it executed this code
  fine.

  I'm at my wit's end; please help understand why this code no longer
  works because of using GWT Designer (I think).

-- 
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] Question About Loading HTML into a Frame

2011-01-01 Thread Eric Atkinson
The App Engine Manual says that any file I put in the WAR (or
subdirectory) is automatically known to the app, so why, when I use
the following code...

Frame frame = new Frame(/StrategicInternationalSystems/war/WEB-INF/
pages/Summary.html);
dockLayoutPanel.add(frame);

...does it tell me:

HTTP ERROR 404

Problem accessing /StrategicInternationalSystems/war/WEB-INF/pages/
Summary.html. Reason:

NOT_FOUND

I think it has something to do with the fact that I started coding the
app (using a new project) using GWT Designer. Why? Because when it was
just App Engine and the GWT Toolkit before, it executed this code
fine.

I'm at my wit's end; please help understand why this code no longer
works because of using GWT Designer (I think).

-- 
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] App Engine 1.2.5 Doesn't Support String, Exception, SAXParser in Java?

2009-09-22 Thread Eric Atkinson

I justed updated to App Engine 1.2.5 and now all my software is full
of compiler errors because it says app engine no longer support
classes like String, Exception, SAXParser in Java.  Should I revert
back to an earlier app engine that did support them or is this really
the new app engine support?
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---