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 9115731
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T04:30:04+00:00 2026-06-17T04:30:04+00:00

I have Spring WS which handle all kind of request in spring-ws-servlet.xml context: <servlet-mapping>

  • 0

I have Spring WS which handle all kind of request in spring-ws-servlet.xml context:

    <servlet-mapping>
        <servlet-name>spring-ws</servlet-name>
        <url-pattern>/*</url-pattern>
    </servlet-mapping>

Is there a way to create a policy where specific request will be redirected to address i want? for example when someone request for address localhost:8080/MyProject/someofrequest.asmx my web.xml will redirect this request to localhost:8080/MyProject/HandleMessage ??

  • 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-17T04:30:05+00:00Added an answer on June 17, 2026 at 4:30 am

    A solution would be to create a very simple servlet that will redirect requests with the pattern *.asmx to your /HandleMessage action:

    <servlet>
        <servlet-name>redirect</servlet-name>
        <servlet-class>com.x.RedirectServlet</servlet-class>
    </servlet>
    
    <servlet-mapping>
        <servlet-name>redirect</servlet-name>
        <url-pattern>*.asmx</url-pattern>
    </servlet-mapping>
    

    Servlet code:

    public class RedirectServlet extends HttpServlet{
            public void doGet(HttpServletRequest request, HttpServletResponse response) throws IOException{
                  response.sendRedirect("http://localhost:8080/MyProject/HandleMessage");
            }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a Spring Batch process which has following kind of code. <step id=step1
I have a std::map<std::string, HANDLE> SampleMap which stores HANDLE objects as value. After the
I have a Spring MVC application which uses FreeMarker as View technology (But maybe
I have a spring-hibernate application which is failing to map an object properly: basically
I have developed an utility class for spring which is a singleton which will
Please consider the following: we have a Spring bean B which is advised with
I have a website which uses Spring Security. I have realized that when I
I have Apache2 SSL which is fronting Spring webapp as follows: ProxyPass / http://localhost:8080/
I have a GWT+Hibernate+JPA+Spring configuration file which is OK with Spring 3.0.x + Hibernate
I have a system which contains multiple applications connected together using JMS and Spring

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.