UP!!!

On Oct 12, 11:30 pm, cecelthejavaman <cecelthejava...@gmail.com>
wrote:
> Good night!
>
> I'm following the example of the GETTING START for Appengine with Java
> and I meet a problem:
> This jsp don't compile:
> ________________________
> <%@ page contentType="text/html;charset=UTF-8" language="java" %>
> <%@ page import="com.google.appengine.api.users.User" %>
> <%@ page import="com.google.appengine.api.users.UserService" %>
> <%@ page import="com.google.appengine.api.users.UserServiceFactory" %>
>
> <html>
>   <body>
>
> <%
>     UserService userService = UserServiceFactory.getUserService();
>     User user = userService.getCurrentUser();
>     if (user != null) {
> %>
> <p>Hello, <%= user.getNickname() %>! (You can
> <a href="<%= userService.createLogoutURL(request.getRequestURI())
> %>">sign out</a>.)</p>
> <%
>     } else {
> %>
> <p>Hello!
> <a href="<%= userService.createLoginURL(request.getRequestURI())
> %>">Sign in</a>
> to include your name with greetings you post.</p>
> <%
>     }
> %>
>
>   </body>
> </html>
> ___________________________
>
> What I can making mistake?
> Until here I'm compile all right, but when I put the jsp for load, it
> don't compile.
> Regards!!
>
> MARCELO ANTONIO PEREIRA+55 12 8144 
> 6111begin_of_the_skype_highlighting              +55 12 8144 
> 6111      end_of_the_skype_highlighting+55 12 8837 
> 3855begin_of_the_skype_highlighting              +55 12 8837 
> 3855      end_of_the_skype_highlighting

-- 
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.

Reply via email to