Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
5answers
761 views

Does the position of a slug in a URL matter?

FOR SEARCH ENGINE OPTIMIZATION PURPOSES, does the location of the slug within a URL matter? There's no doubt that you could code URL slugs to work properly in any order. I'm more interested to know ...
8
votes
2answers
961 views

How to make some URL mappings depending on the environment?

When getting an HTTP status code 500, I want to display 2 different pages according to the running environment. In development mode, I want to display a stackStrace page (like the default Grails 500 ...
6
votes
6answers
977 views

Django, Rails Routing…Point?

I'm a student of web development (and college), so my apologies if this comes off sounding naive and offensive, I certainly don't mean it that way. My experience has been with PHP and with a smallish ...
3
votes
2answers
240 views

another grails urlmapping question

ok, so i asked, and got an answer on how to make a single controller instance case-insensitive vis-a-vis urls. I can do "/mycontroller/$action?/$id?"(controller: "myController") so when an app ...
3
votes
1answer
1k views

Grails SEO friendly URLs

The standard way of creating URLs in grails is: <a href="${createLink(controller:'news', action: 'show', params: [id: news.id])}">${news.title}</a> which generates the url: ...
2
votes
1answer
387 views

jsf url-mapping security risk

When you use JSF, you'll have the controller servlet javax.faces.webapp.FacesServlet that will be mapped to the following: <servlet-mapping> ... ...
2
votes
1answer
162 views

How to detect Fragment identifiers in Url Mappings?

In a Grails project I'm trying to map a Url based on whether or not a Fragment Identifier is present in the Url. The Fragment Identifiers are important because a Flash library SWFAddress uses them to ...
2
votes
1answer
295 views

Spring 3.0 URL Mapping Issues

I'm testing an upgrade from Spring 2.0 to Spring 3.0.5 on Tomcat and am having an issue where there is different mapping behavior for URLs that have a trailing slash versus an identical URL without ...
2
votes
1answer
954 views

spring BeanCreationException confusion about mapping

trying to integrate hibernate and spring ,I ran into this error SEVERE: Context initialization failed org.springframework.beans.factory.BeanCreationException: Error creating bean with name ...
2
votes
2answers
304 views

Rewriting URL for the default action in controllers

I'm having trouble rewriting URL's in Grails: I've got 2 controllers BlogController and ProjectsController each with a default def index = { } and matching view. Now when I create the following ...
2
votes
1answer
421 views

Can i use Spring's @RequestMapping and BeanNameUrlHandlerMapping in conjuntion with each other to map a URL to method?

What I would like to do is have a common Service class which has various methods such as "search" "retriveByID" etc. Ideally this class would consume the service parameters and populate a request ...
2
votes
2answers
864 views

How do I map my domain URL the root folder of my Grails app?

I have a Grails app called abc, which when I access locally I get at through http://localhost:port/abc I have deployed my app up on Amazon EC2 with an elastic IP address which I can get at directly ...
2
votes
1answer
493 views

Servlet/JSP URLs when forwarding requests

My web app has a servlet called admin which when navigated to checks if the user is logged in and if the are directs to the the admin section, but if they aren't it directs them to a JSP page with a ...
1
vote
1answer
47 views

Trying to give groups the ability to have own URL in Grails. (Similar to how you could browse to facebook.com/{username})

I am developing a group based web application in Grails (1.3.7) and one of the fields I have is groupUrl for my Group domain. The theory behind it is I want to give users the ability to browse to ...
1
vote
1answer
267 views

Grails UrlMappings for unknown number of variables

I'm using url mappings to translate the URL directory structure into categories within a site, currently using: class UrlMappings { static excludes = ['/css/*','/images/*', '/js/*', ...
1
vote
1answer
324 views

url-mapping for all .html URLs, including URLs with query parameters

I'm trying to write a filter that will pick out any request for an HTML page, regardless of whether or not the URL has query parameters. (The aim of this filter is to track visitor actions/stats) ...
1
vote
1answer
769 views

App Engine URL mapping

From http://code.google.com/appengine/docs/python/tools/webapp/running.html Tip: App Engine routes requests to Python scripts based on the URL and mappings specified in the application's ...
1
vote
1answer
183 views

URLMapping works on Local, but not on Server

Hey! I'm using VS2010 and on my local machine, using web.config to map one url to another works fine, using the tag. However, as soon as I upload to the IIS6 server it doesn't work at all! Is there ...
1
vote
2answers
127 views

Servlet Mapping Help - Possible to Avoid Referencing Context Name?

I am working on a Spring application using Tomcat 6 and Spring 2.5. I'm trying to get my URL mapping correct. What I would like to have work is the following: http://localhost:8080/idptest -> ...
1
vote
2answers
665 views

Grails: URL mapping - how to pass file extension?

I have some folder with different files. I want to use something like this: http://myserver.com/foo/bar/test.html I'm using this way to obtain path: "/excursion/$path**" (controller:"excursion", ...
1
vote
3answers
1k views

Spring servlet mapping - no css or jsp!

I read over this post, which is similar to my issue, but had no luck solving the problem: Basically I used to have the following servlet-mapping in my web.xml: <servlet-mapping> ...
1
vote
2answers
2k views

Spring URL mapping question

I am using Java with Spring framework. Given the following url: www.mydomain.com/contentitem/234 I need to map all requests that come to /contentitem/{numeric value} mapped to a given controller ...
1
vote
3answers
567 views

How to write a RESTful URL path regex in GAE/Python for n parameters?

Currently I have three URL paths that map to ServiceHandler. How do I combine the three into one neat regex that can pass n number of arguments to ServiceHandler? (r'/s/([^/]*)', ServiceHandler), ...
0
votes
1answer
43 views

Bi-directional URL mapping and canonicalization using mod_rewrite

I'm pretty sure this is partly the opposite of this question, but it's a two-parter with a few extra intricacies. I recently inherited a site for an organization (we'll call it theorganization.com) ...
0
votes
1answer
35 views

In JSF, can I suppress part of the directory hierarchy of an XHTML file in the URL?

In a JSF application, we have the directory hierarchy: webapp xhtml login.xhtml main.xhtml search.xhtml css main.css extra.css js jquery.js etc. The servlet mapping ...
0
votes
3answers
85 views

Http redirect in Tomcat or web service proxy

I got a web service running on 127.0.0.1:8080/test/mywebservice This web service (port:8080) is created dynamically by another web service (port:80) that is hosted in Tomcat. All web services that ...
0
votes
1answer
72 views

Deleting a Controller does not completely remove the Controller?

I created an entity called Card and its CardController. Since I committed an error when creating them, I deleted both and created the Card entity again. The problem happens when I execute the ...
0
votes
0answers
76 views

servlet filter mapping for url-pattern to target specific path in url

I am using jawr. I want to map only js files which has "bundle" folder in its path (/bundle/*.js ) so that other js files which i have it as tag works fine. currently, if i specify url-mapping as ...
0
votes
1answer
128 views

Problem with URL mapping in Grails: parameters are incorrect

I have a few controller actions that require several different HTTP methods, GET and POST for example. Instead of handling this in the controller action code, I decided (incorrectly) that it would be ...
0
votes
0answers
64 views

How to create logic for all unmapped request URLs in Spring?

I am using Spring 3.0.5. I have some controllers and some request mappings. Lets say on the following urls: "/x" "/y/z" I need to do some logic on all other request mappings ("/**" excluding "/x", ...
0
votes
1answer
160 views

Parse_url equivalent in grails / groovy?

Is there a groovy/grails equivalent to PHP's parse_url ( http://php.net/manual/en/function.parse-url.php ) or python's urlparse ( http://docs.python.org/library/urlparse.html ) that turns a URL ...
0
votes
2answers
139 views

Difficulties with TTURLMap and the navigation items

I'm using the TTURLMap to map to a normal view (map from:toViewController:). I push a given view using TTOpenURL(url), everything works, etc etc, but the 'Back' navigation item (top left bar button) ...
0
votes
1answer
501 views

Dynamic URL REWRITING for QueryStrings

hello please help me for this question i have the following url --> www.sample.com/news.aspx?id=45 i want pass "id" in the query string to news.aspx and show this news, but due to url rewriting the ...
0
votes
0answers
49 views

servlet mapping, legacy method

I've read about mapping via web.xml, done with the servlet element but without the servlet-mapping element (JSP The complete reference, by Hanna Phil). <servlet> ...
0
votes
1answer
139 views

Url mapping to a plugin view

What is the best, or the preferred way to map an url to a view that is within a plugin installed in a grails app? The application has its own views, however, there is a view that is directly ...
0
votes
2answers
269 views

Gerneric url mapping for restful resources in grails

I have configured some restful resources in grails like this "/book/$id?"(resource:"book") "/author/$id?"(resource:"author") But I want to to this more generic like "/$controller/$id?"(resource: ...
0
votes
3answers
130 views

Rails style URL mapping in PHP

Is there any standard library to do Rails style URL mapping in PHP? I am not using any framework, all the code is hand-written. Basically, I am looking for a library that does this ...
0
votes
1answer
234 views

Grails “loses” custom URL mapping when following any links on the page

I have an application where users can browse maps in two ways (like thumbnails and in a list) /map/browse /map/list Now, I would like to restrict these views to just show maps of a specific user, ...
0
votes
2answers
247 views

Why does Tomcat resolve context path differently for certain url-mappings?

So, I'm trying to write a servlet which can handle a url mapping like: domain/context/servlet/resource_id Before, when I was specifying the url pattern, I was just doing: /myServlet But, ...
0
votes
3answers
312 views

How to know from where was thrown error 500 (Grails)

I have the next scenario in my UrlMappings.groovy: "/user/$action?" (controller:"user") "/admin/$action?" (controller:"user") "500"(controller:"error", action:"show") "404"(controller:"error", ...
0
votes
2answers
217 views

UrlMappingsTests - Could not load class in test type 'integration'?

I'm trying to create a UrlMappingsTest for my grails project, and I'm getting the following exception: java.lang.RuntimeException: Could not load class in test type 'integration' at ...
0
votes
3answers
280 views

Getting ASP.NET root path to Flex?

I am working on a project that is primarily ASP.NET based. The main project is meant to be deployed to multiple locations for different clients, so one client might be located at website.com/client1 ...
0
votes
1answer
131 views

how to differentiate grails url mappings

I have the mappings: "/$controller/$action?/$id?"{ constraints { // apply constraints here } } // i used scaffolding and i think this is required by ...
0
votes
2answers
158 views

Accessing a servlet's mapping from Tomcat?

The following code accesses a servlet's name: servletConfig.getServletName(). Can I access a servlet's URL pattern in a similar way? An excerpt from web.xml: <servlet-mapping> ...
0
votes
2answers
243 views

Google App engine Url Mapping using WSGIAppl and regx grouping Help Needed

take this example from google docs class BrowseHandler(webapp.RequestHandler): > def get(self, category, product_id): > # Display product with given ID in the given category. > ...
0
votes
2answers
208 views

REST: Way to map URLs to services/files?

In your humble opinion: what would be a best practice aproach to map REST URLs to services/files within one's architecture (let's assume MVC pattern here)?
0
votes
1answer
138 views

Google Search Result - URL mapping

Searching from google.com, like www.abc.com Search Result Rank the pages like Title..... Description... www.abc.com Title... Description... www.abc.com/Aboutus.aspx Title... Description... ...