Note that there are some explanatory texts on larger screens.

plurals
  1. POHTTP Error 503 (SERVICE_UNAVAILABLE) using GWT
    primarykey
    data
    text
    <p>When I run the project I see in my browser a page with "HTTP ERROR: 503 / Problem accessing /WhereIsMatch.html. Reason: SERVICE_UNAVAILABLE"</p> <p>This is my web.xml file:</p> <pre><code>&lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"&gt; &lt;!-- Servlets --&gt; &lt;welcome-file-list&gt; &lt;welcome-file&gt;WhereIsMatch.html&lt;/welcome-file&gt; &lt;/welcome-file-list&gt; &lt;servlet&gt; &lt;servlet-name&gt;matchServlet&lt;/servlet-name&gt; &lt;servlet-class&gt;com.kernapps.whereismatch.server.rpc.MatchServiceImpl&lt;/servlet-class&gt; &lt;/servlet&gt; &lt;servlet-mapping&gt; &lt;servlet-name&gt;matchServlet&lt;/servlet-name&gt; &lt;url-pattern&gt;/whereismatch/match&lt;/url-pattern&gt; &lt;/servlet-mapping&gt; &lt;!-- Default page to serve --&gt; &lt;/web-app&gt; </code></pre> <p>And I put the corresponding java annotation on the class MatchService:</p> <pre><code>package com.kernapps.whereismatch.client.rpc; import com.google.gwt.user.client.rpc.RemoteService; import com.google.gwt.user.client.rpc.RemoteServiceRelativePath; import com.kernapps.whereismatch.shared.domain.Match; import com.kernapps.whereismatch.shared.domain.Matches; @RemoteServiceRelativePath("match") public interface MatchService extends RemoteService { public Match getMatch(int id); public Matches getMatchesCurrentRound(); } </code></pre> <p>Console puts: </p> <pre><code>Initializing App Engine server 19-jul-2013 19:29:10 com.google.apphosting.utils.config.AppEngineWebXmlReader readAppEngineWebXml INFO: Successfully processed D:\Desarrollo\AISS\WhereIsMatch\war\WEB-INF/appengine-web.xml 19-jul-2013 19:29:10 com.google.apphosting.utils.config.AbstractConfigXmlReader readConfigXml INFO: Successfully processed D:\Desarrollo\AISS\WhereIsMatch\war\WEB-INF/web.xml 19-jul-2013 19:29:10 com.google.appengine.tools.development.SystemPropertiesManager setSystemProperties INFO: Overwriting system property key 'java.util.logging.config.file', value 'D:\Aplicaciones\eclipse Kepler\plugins\com.google.appengine.eclipse.sdkbundle_1.8.1.1\appengine-java-sdk-1.8.1.1\config\sdk\logging.properties' with value 'WEB-INF/logging.properties' from 'D:\Desarrollo\AISS\WhereIsMatch\war\WEB-INF\appengine-web.xml' 19-jul-2013 19:29:11 com.google.apphosting.utils.jetty.JettyLogger info INFO: Logging to JettyLogger(null) via com.google.apphosting.utils.jetty.JettyLogger 19-jul-2013 19:29:13 com.google.apphosting.utils.jetty.JettyLogger info INFO: jetty-6.1.x 19-jul-2013 19:29:35 com.google.apphosting.utils.jetty.JettyLogger info INFO: Started SelectChannelConnector@0.0.0.0:8888 19-jul-2013 19:29:35 com.google.appengine.tools.development.AbstractServer startup INFO: Server default is running at http://localhost:8888/ 19-jul-2013 19:29:35 com.google.appengine.tools.development.AbstractServer startup INFO: The admin console is running at http://localhost:8888/_ah/admin 19-jul-2013 19:29:35 com.google.appengine.tools.development.DevAppServerImpl start INFO: Dev App Server is now running </code></pre> <p>How can I solve it?</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload