Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8823725
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T06:25:48+00:00 2026-06-14T06:25:48+00:00

I got the web.xml : <?xml version=1.0 encoding=utf-8 standalone=no?><web-app xmlns=http://java.sun.com/xml/ns/javaee xmlns:web=http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance version=2.5 xsi:schemaLocation=http://java.sun.com/xml/ns/javaee

  • 0

I got the web.xml :

    <?xml version="1.0" encoding="utf-8" standalone="no"?><web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.5" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">

        <servlet>
    <servlet-name>SellVideo</servlet-name>
    <jsp-file>WEB-INF/jsp/sell-video.jsp</jsp-file>
</servlet>

    <servlet-mapping>
        <servlet-name>SellVideo</servlet-name>
        <url-pattern>/sell-video</url-pattern>
    </servlet-mapping>

    <servlet>
        <servlet-name>Edit</servlet-name>
        <servlet-class>vidaao.EditServlet</servlet-class>
    </servlet>

    <servlet>
        <servlet-name>Request</servlet-name>
        <servlet-class>vidaao.RequestServlet</servlet-class>
    </servlet>

    <servlet>
        <servlet-name>Upload</servlet-name>
        <servlet-class>vidaao.UploadServlet</servlet-class>
    </servlet>

    <servlet>
        <servlet-name>Serve</servlet-name>
        <servlet-class>vidaao.ServeServlet</servlet-class>
    </servlet>

    <servlet>
        <servlet-name>Guestbook</servlet-name>
        <servlet-class>vidaao.GuestbookServlet</servlet-class>
    </servlet>

    <servlet>
        <servlet-name>Profile</servlet-name>
        <servlet-class>vidaao.ProfileServlet</servlet-class>
    </servlet>

    <servlet>
        <servlet-name>Register</servlet-name>
        <servlet-class>vidaao.RegisterServlet</servlet-class>
    </servlet>

    <servlet>
        <servlet-name>Vidaao</servlet-name>
        <servlet-class>vidaao.VidaaoServlet</servlet-class>
    </servlet>

    <servlet>
        <servlet-name>Connect</servlet-name>
        <servlet-class>vidaao.ConnectServlet</servlet-class>
    </servlet>

    <servlet>
        <servlet-name>Ajax</servlet-name>
        <servlet-class>vidaao.AjaxServlet</servlet-class>
    </servlet>

    <servlet-mapping>
        <servlet-name>Ajax</servlet-name>
        <url-pattern>/ajax</url-pattern>
    </servlet-mapping>

    <servlet-mapping>
        <servlet-name>Connect</servlet-name>
        <url-pattern>/connect</url-pattern>
    </servlet-mapping>

    <servlet-mapping>
        <servlet-name>Edit</servlet-name>
        <url-pattern>/edit</url-pattern>
    </servlet-mapping>

    <servlet-mapping>
        <servlet-name>Register</servlet-name>
        <url-pattern>/register</url-pattern>
    </servlet-mapping>

    <servlet-mapping>
        <servlet-name>Request</servlet-name>
        <url-pattern>/request</url-pattern>
    </servlet-mapping>

    <servlet-mapping>
        <servlet-name>Upload</servlet-name>
        <url-pattern>/upload</url-pattern>
    </servlet-mapping>

    <servlet-mapping>
        <servlet-name>Serve</servlet-name>
        <url-pattern>/serve</url-pattern>
    </servlet-mapping>

    <servlet-mapping>
        <servlet-name>Guestbook</servlet-name>
        <url-pattern>/guestbook</url-pattern>
    </servlet-mapping>

    <servlet-mapping>
        <servlet-name>Profile</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>

    <welcome-file-list>
        <welcome-file>WEB-INF/jsp/home.jsp</welcome-file>
    </welcome-file-list>

 <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>
</web-app>

The sevlet Profile should math all url like this wwww.xxx.com/* if a url mapping wasn’t match before.

The profile is that offine it is working fine but when i try to deploy everything is going into the profile servlet directly. For example sell-video or even sell-video.jsp is redirect to the profile servlet.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T06:25:49+00:00Added an answer on June 14, 2026 at 6:25 am

    I fixed it,

    I have to add a slash in front of WEB-INF,

    like this : <jsp-file>/WEB-INF/jsp/sell-video.jsp</jsp-file>

    Still weird that the problem only append online and not on the dev side, make it harder to debug.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've got the following xml file: <?xml version=1.0 encoding=utf-8?> <Project ToolsVersion=4.0 DefaultTargets=DeployPrototype xmlns=http://schemas.microsoft.com/developer/msbuild/2003> <PropertyGroup>
Inside my web.config file I've got code like this: <?xml version=1.0 encoding=utf-8?> <configuration> <configSections>
I've got an ant file which looks like this: <?xml version=1.0 encoding=UTF-8?> <project name=p
I've got an app that consumes a .NET web service which returns an XML
I have got one more error in web xml -Cannot resolve the name 'javaee:web-appType'
Say I've got a web app. I add some features to it, and those
I just got my free web hosting set up (trigoblocks.comuf.com), I connected via FileZilla
I've got a web app with Spring set up to create my hibernate session
I've got a little c# windows service that periodically pulls xml from a web
I have this response from a Java web service: HTTP/1.1 200 OK Date: Mon,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.