[google-appengine] The Users Service.

2013-08-09 Thread Eric Sepich
I have deployed:
https://developers.google.com/appengine/docs/java/gettingstarted/usingusers

I am greeted by my Gmail username when I visit the page.


package com.clock;

import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.SimpleTimeZone;
import javax.servlet.RequestDispatcher;
import javax.servlet.ServletException;
import javax.servlet.http.*;

import com.google.appengine.api.users.User;
import com.google.appengine.api.users.UserService;
import com.google.appengine.api.users.UserServiceFactory;

@SuppressWarnings("serial")
public class ClockecsServlet extends HttpServlet {
public void doGet(HttpServletRequest req,
  HttpServletResponse resp)
throws IOException, ServletException {
SimpleDateFormat fmt = new SimpleDateFormat("-MM-dd 
hh:mm:ss.SS");
fmt.setTimeZone(new SimpleTimeZone(0, ""));

UserService userService = UserServiceFactory.getUserService();
User user = userService.getCurrentUser();
String loginUrl = userService.createLoginURL("/");
String logoutUrl = userService.createLogoutURL("/");

req.setAttribute("user", user);
req.setAttribute("loginUrl", loginUrl);
req.setAttribute("logoutUrl", logoutUrl);
req.setAttribute("currentTime", fmt.format(new Date()));

resp.setContentType("text/html");

RequestDispatcher jsp = 
req.getRequestDispatcher("/WEB-INF/home.jsp");
jsp.forward(req, resp);
}
}

<%@ taglib uri="http://java.sun.com/jsp/jstl/core"; prefix="c" %>

  
The Time Is...
  
  

  

  Welcome, ${user.email}!
  You can sign out.

  
  

  Welcome!
  Sign in or register to customize.

  

The time is: ${currentTime}
  



In the application above 

c:when test="${user != null}

is not evaluating to anything and I am greeted by *Welcome! Sign in or 
register*. Since I am logged into Gmail it should display *Welcome! You can 
sign out *
*
*
I am wondering if req.setAttribute("user", user); has set anything at all. 
It does not seem like it. I see what looks like a good call to User user = 
userService.getCurrentUser(); in the servlet. I don't see the problem yet. 
Does anyone know what could be wrong with the code?

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/groups/opt_out.




[google-appengine] Re: Users and Google Accounts

2013-08-06 Thread Eric Sepich
I since deployed the application to make sure that perhaps it was not some 
limitation of the eclipse development environment and I still see the 
home.jsp not recognizing the user variable even though the browser is 
logged into gmail.

On Tuesday, August 6, 2013 1:49:29 PM UTC-7, Eric Sepich wrote:
>
> package clock;
>
> import java.io.IOException;
> import java.text.SimpleDateFormat;
> import java.util.Date;
> import java.util.SimpleTimeZone;
> import javax.servlet.RequestDispatcher;
> import javax.servlet.ServletException;
> import javax.servlet.http.*;
>
> import com.google.appengine.api.users.User;
> import com.google.appengine.api.users.UserService;
> import com.google.appengine.api.users.UserServiceFactory;
>
> @SuppressWarnings("serial")
> public class ClockServlet extends HttpServlet {
> public void doGet(HttpServletRequest req,
>   HttpServletResponse resp)
> throws IOException, ServletException {
> SimpleDateFormat fmt = new SimpleDateFormat("-MM-dd 
> hh:mm:ss.SS");
> fmt.setTimeZone(new SimpleTimeZone(0, ""));
>
> UserService userService = UserServiceFactory.getUserService();
> User user = userService.getCurrentUser();
> String loginUrl = userService.createLoginURL("/");
> String logoutUrl = userService.createLogoutURL("/");
>
> req.setAttribute("user", user);
> req.setAttribute("loginUrl", loginUrl);
> req.setAttribute("logoutUrl", logoutUrl);
> req.setAttribute("currentTime", fmt.format(new Date()));
>
> resp.setContentType("text/html");
> 
> RequestDispatcher jsp = 
> req.getRequestDispatcher("/WEB-INF/home.jsp");
> jsp.forward(req, resp);
> }
> }
>
>
> ---
>
> <%@ taglib uri="http://java.sun.com/jsp/jstl/core"; prefix="c" %>
> 
>   
> The Time Is...
>   
>   
> 
>   
> 
>   Welcome, ${user.email}!
>   You can sign out.
> 
>   
>   
> 
>   Welcome!
>   Sign in or register to customize.
> 
>   
> 
> The time is: ${currentTime}
>   
> 
>
> -
>
> Even though I am signed in to my Google Account in Chrome I am still 
> seeing Sign in or register not Welcome as I expected. When I click Sign in 
> I am forwarded to a page with one text field to enter an email and a check 
> box to sign in as administrator. There must be something wrong because I 
> think since I am logged into gmail it should display welcome?
>
> Thanks in advance...
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/groups/opt_out.




[google-appengine] Users and Google Accounts

2013-08-06 Thread Eric Sepich
package clock;

import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.SimpleTimeZone;
import javax.servlet.RequestDispatcher;
import javax.servlet.ServletException;
import javax.servlet.http.*;

import com.google.appengine.api.users.User;
import com.google.appengine.api.users.UserService;
import com.google.appengine.api.users.UserServiceFactory;

@SuppressWarnings("serial")
public class ClockServlet extends HttpServlet {
public void doGet(HttpServletRequest req,
  HttpServletResponse resp)
throws IOException, ServletException {
SimpleDateFormat fmt = new SimpleDateFormat("-MM-dd 
hh:mm:ss.SS");
fmt.setTimeZone(new SimpleTimeZone(0, ""));

UserService userService = UserServiceFactory.getUserService();
User user = userService.getCurrentUser();
String loginUrl = userService.createLoginURL("/");
String logoutUrl = userService.createLogoutURL("/");

req.setAttribute("user", user);
req.setAttribute("loginUrl", loginUrl);
req.setAttribute("logoutUrl", logoutUrl);
req.setAttribute("currentTime", fmt.format(new Date()));

resp.setContentType("text/html");

RequestDispatcher jsp = 
req.getRequestDispatcher("/WEB-INF/home.jsp");
jsp.forward(req, resp);
}
}


---

<%@ taglib uri="http://java.sun.com/jsp/jstl/core"; prefix="c" %>

  
The Time Is...
  
  

  

  Welcome, ${user.email}!
  You can sign out.

  
  

  Welcome!
  Sign in or register to customize.

  

The time is: ${currentTime}
  

-

Even though I am signed in to my Google Account in Chrome I am still seeing 
Sign in or register not Welcome as I expected. When I click Sign in I am 
forwarded to a page with one text field to enter an email and a check box 
to sign in as administrator. There must be something wrong because I think 
since I am logged into gmail it should display welcome?

Thanks in advance...


-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/groups/opt_out.




[google-appengine] Re: CodeLabEx1 in Eclipse Keplar.

2013-08-01 Thread Eric Sepich
Thank you that was most helpful.

On Wednesday, July 31, 2013 7:04:14 PM UTC-7, Eric Sepich wrote:
>
> There seems to be some kind of error when I import CodeLabEx1 into Eclipse 
> Keplar:
>
>
> <https://lh5.googleusercontent.com/-qHMWqzQ775Y/UfnB6PTr_dI/ADc/-kJGkW6pqUw/s1600/Screenshot+%2813%29.png>
>
>
> Does anyone know what might be wrong here? The output when I try to run 
> the application is as follows:
>
>
>
>
>
>
>
> Jul 31, 2013 5:13:35 PM 
> com.google.apphosting.utils.config.AppEngineWebXmlReader readAppEngineWebXml
> INFO: Successfully processed 
> C:\Users\Eric\Desktop\CodeLabEx1-starter\CodeLabEx1-starter\war\WEB-INF/appengine-web.xml
> Jul 31, 2013 5:13:35 PM 
> com.google.apphosting.utils.config.AppEngineWebXmlReader readAppEngineWebXml
> SEVERE: Received exception processing 
> C:\Users\Eric\Desktop\CodeLabEx1-starter\CodeLabEx1-starter\war\WEB-INF/appengine-web.xml
> com.google.apphosting.utils.config.AppEngineConfigException: 
> appengine-web.xml does not contain a  element.
> See 
> http://code.google.com/appengine/docs/java/config/appconfig.html#Using_Concurrent_Requests
>  for more information.
> You probably want to enable concurrent requests.
> at 
> com.google.apphosting.utils.config.AppEngineWebXmlReader.readAppEngineWebXml(AppEngineWebXmlReader.java:85)
> at 
> com.google.apphosting.utils.config.EarHelper.readWebModule(EarHelper.java:166)
> at 
> com.google.appengine.tools.development.ApplicationConfigurationManager$WarModuleConfigurationHandle.readConfiguration(ApplicationConfigurationManager.java:399)
> at 
> com.google.appengine.tools.development.ApplicationConfigurationManager.(ApplicationConfigurationManager.java:146)
> at 
> com.google.appengine.tools.development.ApplicationConfigurationManager.newWarConfigurationManager(ApplicationConfigurationManager.java:88)
> at 
> com.google.appengine.tools.development.DevAppServerImpl.(DevAppServerImpl.java:137)
> at 
> sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
> at 
> sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
> at 
> sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
> at java.lang.reflect.Constructor.newInstance(Unknown Source)
> at 
> com.google.appengine.tools.development.DevAppServerFactory.createDevAppServer(DevAppServerFactory.java:233)
> at 
> com.google.appengine.tools.development.DevAppServerFactory.createDevAppServer(DevAppServerFactory.java:87)
> at 
> com.google.appengine.tools.development.DevAppServerMain$StartAction.apply(DevAppServerMain.java:380)
> at 
> com.google.appengine.tools.util.Parser$ParseResult.applyArgs(Parser.java:48)
> at 
> com.google.appengine.tools.development.DevAppServerMain.(DevAppServerMain.java:334)
> at 
> com.google.appengine.tools.development.DevAppServerMain.main(DevAppServerMain.java:310)
>
> com.google.apphosting.utils.config.AppEngineConfigException: 
> Invalid configuration
> at 
> com.google.appengine.tools.development.DevAppServerImpl.reportDeferredConfigurationException(DevAppServerImpl.java:414)
> at 
> com.google.appengine.tools.development.DevAppServerImpl.start(DevAppServerImpl.java:211)
> at 
> com.google.appengine.tools.development.DevAppServerMain$StartAction.apply(DevAppServerMain.java:399)
> at 
> com.google.appengine.tools.util.Parser$ParseResult.applyArgs(Parser.java:48)
> at 
> com.google.appengine.tools.development.DevAppServerMain.(DevAppServerMain.java:334)
> at 
> com.google.appengine.tools.development.DevAppServerMain.main(DevAppServerMain.java:310)
> Caused by: 
> com.google.apphosting.utils.config.AppEngineConfigException: Invalid 
> appengine-web.xml(C:\Users\Eric\Desktop\CodeLabEx1-starter\CodeLabEx1-starter\war\WEB-INF/appengine-web.xml)
>  - appengine-web.xml does not contain a  element.
> See 
> http://code.google.com/appengine/docs/java/config/appconfig.html#Using_Concurrent_Requests
>  for more information.
> You probably want to enable concurrent requests.
> at 
> com.google.apphosting.utils.config.EarHelper.readWebModule(EarHelper.java:168)
> at 
> com.google.appengine.tools.development.ApplicationConfigurationManager$WarModuleConfigurationHandle.readConfiguration(ApplicationConfigurationMana

[google-appengine] CodeLabEx1-starter missing jar files.

2013-08-01 Thread Eric Sepich
When I import the sample I am seeing some errors regarding missing jar 
files. Is it normal to have to add these jar files to the project manually?

The App Engine SDK JAR geronimo-jta_1.1_spec-1.1.1.jar is missing in the 
WEB-INF/lib directory lib /CodeLabEx1-starter/war/WEB-INF Unknown Google 
App Engine Problem
The App Engine SDK JAR geronimo-jpa_3.0_spec-1.1.1.jar is missing in the 
WEB-INF/lib directory lib /CodeLabEx1-starter/war/WEB-INF Unknown Google 
App Engine Problem
The App Engine SDK JAR jdo2-api-2.3-eb.jar is missing in the WEB-INF/lib 
directory lib /CodeLabEx1-starter/war/WEB-INF Unknown Google App Engine 
Problem
The App Engine SDK JAR appengine-endpoints.jar is missing in the 
WEB-INF/lib directory lib /CodeLabEx1-starter/war/WEB-INF Unknown Google 
App Engine Problem
The App Engine SDK JAR appengine-api-labs.jar is missing in the WEB-INF/lib 
directory lib /CodeLabEx1-starter/war/WEB-INF Unknown Google App Engine 
Problem
The App Engine SDK JAR jsr107cache-1.1.jar is missing in the WEB-INF/lib 
directory lib /CodeLabEx1-starter/war/WEB-INF Unknown Google App Engine 
Problem
The App Engine SDK JAR appengine-jsr107cache-1.8.2.jar is missing in the 
WEB-INF/lib directory lib /CodeLabEx1-starter/war/WEB-INF Unknown Google 
App Engine Problem
The App Engine SDK JAR datanucleus-appengine-1.0.10.final.jar is missing in 
the WEB-INF/lib directory lib /CodeLabEx1-starter/war/WEB-INF Unknown Google 
App Engine Problem
The App Engine SDK JAR appengine-api-1.0-sdk-1.8.2.jar is missing in the 
WEB-INF/lib directory lib /CodeLabEx1-starter/war/WEB-INF Unknown Google 
App Engine Problem
The App Engine SDK JAR datanucleus-jpa-1.1.5.jar is missing in the 
WEB-INF/lib directory lib /CodeLabEx1-starter/war/WEB-INF Unknown Google 
App Engine Problem
The App Engine SDK JAR datanucleus-core-1.1.5.jar is missing in the 
WEB-INF/lib directory lib /CodeLabEx1-starter/war/WEB-INF Unknown Google 
App Engine Problem

Thanks in advance for any replies...

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [google-appengine] CodeLabEx1 in Eclipse Keplar.

2013-07-31 Thread Eric Sepich
Description Resource Path Location Type
The App Engine SDK JAR geronimo-jta_1.1_spec-1.1.1.jar is missing in the 
WEB-INF/lib directory lib /CodeLabEx1-starter/war/WEB-INF Unknown Google 
App Engine Problem
The App Engine SDK JAR geronimo-jpa_3.0_spec-1.1.1.jar is missing in the 
WEB-INF/lib directory lib /CodeLabEx1-starter/war/WEB-INF Unknown Google 
App Engine Problem
The App Engine SDK JAR jdo2-api-2.3-eb.jar is missing in the WEB-INF/lib 
directory lib /CodeLabEx1-starter/war/WEB-INF Unknown Google App Engine 
Problem
The App Engine SDK JAR appengine-endpoints.jar is missing in the 
WEB-INF/lib directory lib /CodeLabEx1-starter/war/WEB-INF Unknown Google 
App Engine Problem
The App Engine SDK JAR appengine-api-labs.jar is missing in the WEB-INF/lib 
directory lib /CodeLabEx1-starter/war/WEB-INF Unknown Google App Engine 
Problem
The App Engine SDK JAR jsr107cache-1.1.jar is missing in the WEB-INF/lib 
directory lib /CodeLabEx1-starter/war/WEB-INF Unknown Google App Engine 
Problem
The App Engine SDK JAR appengine-jsr107cache-1.8.2.jar is missing in the 
WEB-INF/lib directory lib /CodeLabEx1-starter/war/WEB-INF Unknown Google 
App Engine Problem
The App Engine SDK JAR datanucleus-appengine-1.0.10.final.jar is missing in 
the WEB-INF/lib directory lib /CodeLabEx1-starter/war/WEB-INF Unknown Google 
App Engine Problem
The App Engine SDK JAR appengine-api-1.0-sdk-1.8.2.jar is missing in the 
WEB-INF/lib directory lib /CodeLabEx1-starter/war/WEB-INF Unknown Google 
App Engine Problem
The App Engine SDK JAR datanucleus-jpa-1.1.5.jar is missing in the 
WEB-INF/lib directory lib /CodeLabEx1-starter/war/WEB-INF Unknown Google 
App Engine Problem
The App Engine SDK JAR datanucleus-core-1.1.5.jar is missing in the 
WEB-INF/lib directory lib /CodeLabEx1-starter/war/WEB-INF Unknown Google 
App Engine Problem


On Wednesday, July 31, 2013 9:24:34 PM UTC-7, Vinny P wrote:
>
> On Wed, Jul 31, 2013 at 9:33 PM, Eric Sepich 
> 
> > wrote:
>
>> Alright so the application seem to start now however there is still a red 
>> ex next to WAR/WEB-INF/lib for the project.
>>  
>>
>  
>  
> What is the error message from the red X?
>  
> The message will show up in the Problems pane: http://imgur.com/4gSDSQE 
>   
> -
> -Vinny P
> Technology & Media Advisor
> Chicago, IL
>
> App Engine Code Samples: http://www.learntogoogleit.com
>   
>  
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [google-appengine] CodeLabEx1 in Eclipse Keplar.

2013-07-31 Thread Eric Sepich
Alright so the application seem to start now however there is still a red 
ex next to WAR/WEB-INF/lib for the project.

On Wednesday, July 31, 2013 7:25:43 PM UTC-7, Vinny P wrote:
>
> On Wed, Jul 31, 2013 at 9:04 PM, Eric Sepich 
> 
> > wrote:
>
>> Does anyone know what might be wrong here? The output when I try to run 
>> the application is as follows:
>>
>>  
>  
> The exception is complaining about a missing threadsafe XML element in 
> your appengine-web.xml file.
>  
> To fix this, add the following line to the appengine-web.xml file in the 
> /war/WEB-INF/ folder:
>  
> true
>   
>   
> -
> -Vinny P
> Technology & Media Advisor
> Chicago, IL
>
> App Engine Code Samples: http://www.learntogoogleit.com
>   
>  
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/groups/opt_out.




[google-appengine] CodeLabEx1 in Eclipse Keplar.

2013-07-31 Thread Eric Sepich
There seems to be some kind of error when I import CodeLabEx1 into Eclipse 
Keplar:




Does anyone know what might be wrong here? The output when I try to run the 
application is as follows:







Jul 31, 2013 5:13:35 PM 
com.google.apphosting.utils.config.AppEngineWebXmlReader readAppEngineWebXml
INFO: Successfully processed 
C:\Users\Eric\Desktop\CodeLabEx1-starter\CodeLabEx1-starter\war\WEB-INF/appengine-web.xml
Jul 31, 2013 5:13:35 PM 
com.google.apphosting.utils.config.AppEngineWebXmlReader readAppEngineWebXml
SEVERE: Received exception processing 
C:\Users\Eric\Desktop\CodeLabEx1-starter\CodeLabEx1-starter\war\WEB-INF/appengine-web.xml
com.google.apphosting.utils.config.AppEngineConfigException: 
appengine-web.xml does not contain a  element.
See 
http://code.google.com/appengine/docs/java/config/appconfig.html#Using_Concurrent_Requests
 for more information.
You probably want to enable concurrent requests.
at 
com.google.apphosting.utils.config.AppEngineWebXmlReader.readAppEngineWebXml(AppEngineWebXmlReader.java:85)
at 
com.google.apphosting.utils.config.EarHelper.readWebModule(EarHelper.java:166)
at 
com.google.appengine.tools.development.ApplicationConfigurationManager$WarModuleConfigurationHandle.readConfiguration(ApplicationConfigurationManager.java:399)
at 
com.google.appengine.tools.development.ApplicationConfigurationManager.(ApplicationConfigurationManager.java:146)
at 
com.google.appengine.tools.development.ApplicationConfigurationManager.newWarConfigurationManager(ApplicationConfigurationManager.java:88)
at 
com.google.appengine.tools.development.DevAppServerImpl.(DevAppServerImpl.java:137)
at 
sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at 
sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
at 
sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
at java.lang.reflect.Constructor.newInstance(Unknown Source)
at 
com.google.appengine.tools.development.DevAppServerFactory.createDevAppServer(DevAppServerFactory.java:233)
at 
com.google.appengine.tools.development.DevAppServerFactory.createDevAppServer(DevAppServerFactory.java:87)
at 
com.google.appengine.tools.development.DevAppServerMain$StartAction.apply(DevAppServerMain.java:380)
at 
com.google.appengine.tools.util.Parser$ParseResult.applyArgs(Parser.java:48)
at 
com.google.appengine.tools.development.DevAppServerMain.(DevAppServerMain.java:334)
at 
com.google.appengine.tools.development.DevAppServerMain.main(DevAppServerMain.java:310)

com.google.apphosting.utils.config.AppEngineConfigException: 
Invalid configuration
at 
com.google.appengine.tools.development.DevAppServerImpl.reportDeferredConfigurationException(DevAppServerImpl.java:414)
at 
com.google.appengine.tools.development.DevAppServerImpl.start(DevAppServerImpl.java:211)
at 
com.google.appengine.tools.development.DevAppServerMain$StartAction.apply(DevAppServerMain.java:399)
at 
com.google.appengine.tools.util.Parser$ParseResult.applyArgs(Parser.java:48)
at 
com.google.appengine.tools.development.DevAppServerMain.(DevAppServerMain.java:334)
at 
com.google.appengine.tools.development.DevAppServerMain.main(DevAppServerMain.java:310)
Caused by: 
com.google.apphosting.utils.config.AppEngineConfigException: Invalid 
appengine-web.xml(C:\Users\Eric\Desktop\CodeLabEx1-starter\CodeLabEx1-starter\war\WEB-INF/appengine-web.xml)
 - appengine-web.xml does not contain a  element.
See 
http://code.google.com/appengine/docs/java/config/appconfig.html#Using_Concurrent_Requests
 for more information.
You probably want to enable concurrent requests.
at 
com.google.apphosting.utils.config.EarHelper.readWebModule(EarHelper.java:168)
at 
com.google.appengine.tools.development.ApplicationConfigurationManager$WarModuleConfigurationHandle.readConfiguration(ApplicationConfigurationManager.java:399)
at 
com.google.appengine.tools.development.ApplicationConfigurationManager.(ApplicationConfigurationManager.java:146)
at 
com.google.appengine.tools.development.ApplicationConfigurationManager.newWarConfigurationManager(ApplicationConfigurationManager.java:88)
at 
com.google.appengine.tools.development.DevAppServerImpl.(DevAppServerImpl.java:137)
at 
sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at 
sun.reflect.NativeConstru

[google-appengine] Python Development SDK for Windows. Log Viewing.

2013-05-28 Thread Eric Sepich
I am using the log button in the SDK's GUI panel but the log entries seem 
to be out of chronological order. Is there anything I can do about that?

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