The url-pattern tag has no wiki summary.
0
votes
1answer
39 views
writing urlpattern in django for rendering an image
in my django app,I have an index page which lists some summary info which is dynamic(based on some user input data in db) . I have coded it as below
views.py
def ...
0
votes
2answers
57 views
Getting part of request url inside servlet
I have an EmailVerification servlet mapped with /ev/* url-pattern
http://xyz.com/ev/ce52320570
how can i get this ce52320570 part of url in my servlet.
protected void doPost(HttpServletRequest ...
0
votes
1answer
17 views
how to direct default page to an spring controller?
The project(named:'myproject') use Spring MVC framework. the default page will be "index.action", web.xml configed as below:
<servlet>
<servlet-name>springmvc</servlet-name>
...
0
votes
2answers
36 views
Conditional reverse name in Django template URL tag
Is it possible to pass an argument contains reverse name to the Django template URL tag
For example:
note: In this exampleconditional_URLis not a reverse name.
urls.py:
urlpatterns = ...
0
votes
1answer
124 views
Spring-mvc servlet mapping, is it possible to have “/” for servlet 1 and “/server/” for servlet 2?
Currently I have the following web.xml config:
<servlet>
<servlet-name>Website</servlet-name>
...
0
votes
1answer
246 views
Tomcat Web xml URL-Pattern does not accept urls with parameters?
I am trying to secure few pages on tomcat6 for a vended application. I was successful with securing using URL-pattern for the most of the URLs except two (marked with double asterisks in the code ...
0
votes
2answers
196 views
url-pattern not working in spring mvc application
I had made a basic application on spring mvc framework.
when i write the following url pattern on web.xml:
<servlet-mapping>
<servlet-name>springxml</servlet-name>
...
1
vote
1answer
86 views
how to exclude a url in filtermapping
web.xml
<filter>
<filter-name>SessionCheckFilter</filter-name>
<filter-class>filter.SessionCheckFilter</filter-class>
</filter>
<filter-mapping>
...
1
vote
1answer
200 views
Serving all REST requests over GET with Tornado
I have a REST (or almost REST) web api,
I want the API users to be able to use all the api, even if for some reason the can only make GET calls, so the plan is to accept a url parameter (query string) ...
2
votes
1answer
126 views
How do I get the requests for a servlet implementing CometProcessor interface to pass through a filter
I have a servlet implementing CometProcessor and I am trying to get the requests coming to this servlet to pass through a filter. Specifying the servlet in web.xml under does not make the requests ...
3
votes
3answers
136 views
What difference does putting a 'forward slash' at the end, make to a url?
What is the difference between the 2 URL's :
http://localhost:8084/D_Nappster/NewServlet/
and
http://localhost:8084/D_Nappster/NewServlet
The first URL gets me a 404 response,while the second ...
1
vote
1answer
96 views
Requests not being routed to JSF Servlet
I have a JSF webapp which is exhibiting the following behaviour:
http://localhost/myapp/ returns the raw contents of index.xhtml
http://localhost/myapp/web/ returns a blank page
...
1
vote
1answer
289 views
Mapping a specific servlet to be the default servlet in tomcat
I am trying to implement a servlet that gets raw requests, and decide either to process them, or forward them to another backend server. It is similar to a load-balancer, where a received request is ...
1
vote
1answer
717 views
What is url-pattern in web.xml and how to configure servlet
In my web application, at the time of configuring the web.xml one problem has been encountered so that at the time of running the application when the jsp page is executed the servlet mentioned in the ...
0
votes
1answer
696 views
Catch-all (wildcard) servlet url-pattern overrides file extension patterns
I would like to achieve the following:
/webapp-context/Page-1 -> Handled by my custom "ContentServlet"
/webapp-context/Another-Page -> Handled by my custom ...
1
vote
1answer
165 views
Making urls.py file for Flask like in Django
Maybe someone can help/explain me, how to create urls.py file for Flask like in Django?
main.py - main project file. It includes only app runner (app.run()).
urls.py is situated in the same directory ...
1
vote
2answers
143 views
Cannot make REST call with url-pattern other than /*
I'm trying to do a simple REST Web Application using Tomcat 7, Apache Wink, and the Jackson JSON Processor, but seem to be hitting a wall. If I look in my web.xml file, I see:
<!DOCTYPE web-app ...
1
vote
2answers
151 views
Servlet url pattern with wildcard in the middle
I'm working on an HttpServlet and trying to define a url-pattern with a wildcard, but not finding much documentation.
The path I want to capture is "resource/{id}/action"
I've tried my annotation ...
1
vote
1answer
177 views
Java url-pattern all subdomains redirect
is there any possibility in Java's web.xml of redirect all subdomains to one servlet?
For example:
<url-pattern>*.</url-pattern>
1
vote
1answer
967 views
WebFilter urlPatterns ignored
I have read numerous examples though I seem to have an 'exact' copy of them, so I cannot figure out why my filter will execute when I navigate to /login instead of /restricted/*.
I have tried both ...
0
votes
2answers
137 views
In Django, How do you write the url pattern for '/' and other root-based urls
I'm new to django, and one of the things that I'm still learning is url_patterns. I set up a pages app to handle the root path (http://www.mysite.com) as well as some static pages such as the about ...
0
votes
1answer
173 views
web.xml url-pattern - serving both application wide together with more specific
I'm learning Vaadin and Java web development. Vaadin suggests to redirect all the URLs to com.vaadin.server.VaadinServlet via use of <url-pattern>/*</url-pattern> in web.xml.
I also want ...
0
votes
3answers
89 views
Redirection in Django URLs
How do I redirect all URLs starting from a particular pattern to another?
Description:
I want to be able to redirect as follows:
/pattern1/step1/ to /pattern2/step1/
/pattern1/step2/ to ...
0
votes
3answers
475 views
url pattern syntax (java servlet)
I want to do something like this:
localhost:7001/servlet/character?name=zombies
I tried doing this:
<servlet-mapping>
<servlet-name>zombies</servlet-name>
...
1
vote
1answer
286 views
Prefix URL-Mapping in JSF causing FileNotFound-Error
I´m a JSF-Beginner and try to build a small JSF2 webapplication with Spring and Hibernate. My Server of Choice is the JBOSS 7.1 AS.
I´ve encountered an odd Error while trying to map a servlet with a ...
1
vote
1answer
191 views
Appending Django HTTP Proxy URLs
I'm using this django app:
http://httpproxy.yvandermeer.net/
I'm using it to make requests to an external api, and it's working fine, however I'd like to modify the URL pattern and I'm not having ...
0
votes
0answers
126 views
Relative prefix for django urlpatterns?
I tried doing something like
urlpatterns = patterns('.persons.views',
)
in my urls.py file with the directories looking like
main folder
\profile
\person
urls.py <- this is the ...
0
votes
1answer
652 views
@WebServlet Annotation and servlet-mapping differences
In my servlet class, I have annotated the class with:
@WebServlet("/OnlinePostListener/testFromAnnotation")
public class OnlinePostListener extends HttpServlet {
...
}
My web.xml contains the ...
0
votes
2answers
568 views
Using regular expressions for filter-mapping
I know I cannot use regular expressions for the url-pattern of a filter-mapping, but I wanted to know if it is possible somehow to map the filter using something like /foo/.+/*
0
votes
1answer
4k views
How to configure web.xml for multiple url-pattern for sitemesh filter. i believe i'm using servlet api 2.5
i've been struggling to enable multiple ulr-pattern for a web site using Spring mvc 3.0.5 sitemesh 2.4.2.my container is tomcat 6.0.26 my pom looks like this:
<dependency>
...
1
vote
1answer
111 views
url pattern working different behaviour between dev and prod - Django
I'm having a problem with Django urlconf.
Basically I've this pattern:
...
1
vote
1answer
94 views
django dynamic number of named groups in url
I would like to develop a web service with dynamic urls.
A common url pattern with named groups would be something like this:
(r'^articles/(?P<year>\d{4})/(?P<month>\d{2})/$', ...
0
votes
1answer
598 views
Java Servlet Web XML URL Mapping
I've been struggling with this web xml file for Tomcat for a while.
<context-param>
<param-name>name</param-name>
<param-value>Bob</param-value>
...
1
vote
1answer
262 views
Django url patterns - how to get absolute url to the page?
i'm trying to get full path of the requested url in Django. I use a such url pattern:
('^', myawesomeview),
It works good for domain.com/hello, domain.com/hello/sdfsdfsd and even for ...
0
votes
2answers
1k views
RESTful servlet URLs - servlet-mapping in web.xml
I feel like this is a common problem but nothing I've researched has worked yet...
In my web.xml I have a mapping for all REST calls -
<servlet-mapping>
...
0
votes
1answer
163 views
Url Pattern from RouteTable in MVC?
I have my route collection and want to retrieve the url pattern (defined in global.asax) of a given route.
In application:
var route = RouteTable.Routes["UserIndex"];
Global.asax:
...
0
votes
2answers
2k views
Spring MVC url-mapping
I made a simple web application by Spring mvc.
I want to use these URL
/user
/user/{id}
/user/create
/user/edit/{id}
in web.xml
first case
<servlet-mapping>
...
0
votes
1answer
462 views
Tomcat url-pattern problems
I'm trying to secure my webapplication using tomcats security constraint. Therefore i added a folder "prot", I want to secure through the url-pattern in the web.xml. When I change the tag to ...
2
votes
1answer
480 views
differenct between / and /* in servlet url match pattern [duplicate]
Possible Duplicate:
Servlet mapping / vs /*
What is the difference of '/' and '/*' in servlet url mapping?
Since I am reading the book spring in action,and I found these words:
Next we ...
0
votes
2answers
332 views
finding servlet url-pattern
What should be the servlet url-pattern for following URL Paths:
INFO: Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@7bbf68a9: defining beans ...
0
votes
2answers
349 views
Set url pattern to catch all urls like /messages?inbox or /list?orders
i am new to java and i have faced to very strange problem with url mapping...
i have to write a url pattern to catch the urls like:
XX/../list?inbox
../action?SomeAction
.. - means anything.
i ...
0
votes
1answer
118 views
In django how know if a url is part of urlpatterns config?
I build a dynamic breadcumb, and some parts of it are not valid urls (are not in urlpatterns).
I have this templatetag:
@register.filter
def crumbs(url):
"Return breadcrumb trail leading to URL ...
0
votes
2answers
668 views
Can I combine these url-patterns in a servlet-mapping?
I have a requirement to support /{servlet}/history, and have many servlets that need to support this. I'm using Tomcat, FWIW.
The following works, but I'm wondering if there's a way to combine all ...
0
votes
1answer
333 views
UriFragmentUtility causes servlet exception
As i was following this vaadin: https://vaadin.com/book/-/page/advanced.urifu.html tutorial on how to properly uses the UriFragmentUtility, i ended up creating the object and after trying to add this ...
1
vote
1answer
193 views
web.xml exclusive url-pattern
I want to restrict access to the whole application
<url-pattern>/*</url-pattern>
But not to some Servlets. They should be public.
Is there a way to do that easily (I imagine some ...
0
votes
2answers
277 views
Optional number of wildcards in URL patterns in Django
#views.py
def sum(*args):
return reduce((lambda x, y: int(x)+int(y)), args)
Is it possible to write one URL pattern that will handle uniformly such requests as /sum/1/2 (result = 3), /sum/1/2/3 ...
1
vote
1answer
880 views
Servlet URL patterns on Google App Engine
I'm trying to do some simple work with url-pattern that works well on localhost but fails when the application is deployed on the GAE server.
What I want to do is next:
One servlet to serve all ...
0
votes
3answers
574 views
Which simple REST URL pattern is more common / better?
/controller/action/id
or
/controller/id/action
Which is more common? Which is preferable and why?
Are there any pro's / con's of using one or the other?
Edit:
Or, perhaps to think of this ...
2
votes
2answers
720 views
url-pattern Servlet Tomcat 7.0
I'm studying JSP/Servlet by myself. And I'm facing a problem that I'm able to solve.
I'm creating a simple form that will request a servlet. The problem is when I change the url-pattern in the web.xml ...
0
votes
2answers
283 views
Redirection in Struts 2
I am using Struts 2 in my web application.
Normally, the struts filter in my application looks for *.do in URL patterns.
Now there is an additional requirement; when the application types in
...


