Asim Robinson
Asim Robinson

Reputation: 61

Production deployment issue on Google App engine

I am using Google App engine and deployed web application. I tried to deploy code on local using App engine then it is working fine but when I deployed on Production server then it caused error.

Request : POST 20180909t164211-dot-spry-autumn-140509.appspot.com/_ah/spi/BackendService.getApiConfigs 

(View request) Status : 500 Internal Server Error, Updated Screen shots for error and web.xml configration.

Web.xml configration: 
     <servlet>
            <servlet-name>SystemServiceServlet</servlet-name>
            <servlet-class>com.google.api.server.spi.SystemServiceServlet</servlet-class>
            <init-param>
                <param-name>services</param-name>
                <param-value />
            </init-param>
        </servlet>
        <servlet-mapping>
            <servlet-name>SystemServiceServlet</servlet-name>
            <url-pattern>/_ah/spi/*</url-pattern>
        </servlet-mapping>

Production error :

Image shows exception occurs on production server.

Please suggest me some solutions for same.

Upvotes: 1

Views: 112

Answers (1)

saiyr
saiyr

Reputation: 2595

Endpoints v1 has been shut down. You must migrate your application to Endpoints v2. See migration instructions.

Upvotes: 1

Related Questions