Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
4answers
2k views

In a URL Should spaces be encoded using %20 or +?

In a URL that used to request an image on a page (in this case a tracking image) should I encode the spaces using %20 or +. i.e. www.mydomain.com?type=xbox%20360 or www.mydomain.com?type=xbox+360 ...
10
votes
2answers
11k views

How do you unescape URLs in Java?

When I read the xml through a URL's InputStream, and then cut out everything except the url, I get "http://cliveg.bu.edu/people/sganguly/player/%20Rang%20De%20Basanti%20-%20Tu%20Bin%20Bataye.mp3". ...
8
votes
2answers
4k views

How to URL-encode a String with JSTL?

What is the best way to URL-encode a String with JSTL? <c:url value="/user/${user.name}"/> According to any documentation I find, this should take care of it. But it does not. It encodes ...
7
votes
3answers
126 views

C# Absolute URI removes “..” from URL

I have to upload a file via FTP to ftp://ftp.remoteServer.com My root directory on remoteServer contains an "upload" and a "download" folder. I need to put my file in the "upload" directory. But on ...
7
votes
3answers
4k views

C#/.NET: GETting a URL with an url-encoded slash

I want to send a HTTP GET to http://example.com/%2F. My first guess would be something like this: using (WebClient webClient = new WebClient()) { webClient.DownloadData("http://example.com/%2F"); } ...
6
votes
1answer
2k views

Using GWT History to pass parameters?

I have a page called Orders and a page called OrderDetails. As described in the excellent MVP tutorial I'm working with History (with a central ValueChangeListener) and an "event bus" HandlerManager. ...
5
votes
3answers
286 views

.Net Uri Encoding RFC 2396 vs RFC 3986

First, some quick background... As part of an integration with a third party vendor, I have a C# .Net web application that receives a URL with a bunch of information in the query string. That URL is ...
4
votes
2answers
932 views

MVC3 URL Encoding?

ASP.NET MVC3/Razor. I found that when I create an action link, say, like this: @Html.ActionLink(product.Title, "Detail", "Products", new { id = product.ProductID }, null) The MVC3 engine creates ...
4
votes
1answer
172 views

Using Perl, how do I decode or create those %-encodings on the web?

I need to handle URI (i.e. percent) encoding and decoding in my Perl script. How do I do that? This is a question from the official perlfaq. We're importing the perlfaq to Stack Overflow.
4
votes
1answer
473 views

Rails url helper not encoding ampersands

So I'm trying to use a Rails URL helper (page_url) to create URLs that contain special characters, including ampersands. Most cases work like you'd expect them to: (rdb:1) page_url('foo', :host ...
4
votes
2answers
647 views

JSP 2.0 SEO friendly links encoding

Currently I have something like this in my JSP <c:url value="/teams/${contact.id}/${contact.name}" /> The important part of my URL is the ID, I just put the name on it for SEO purposes (just ...
4
votes
1answer
2k views

Detect the URI encoding automatically in Tomcat

I have an instance of Apache Tomcat 6.x running, and I want it to interpret the character set of incoming URLs a little more intelligent than the default behavior. In particular, I want to achieve the ...
4
votes
1answer
268 views

Request.QueryString[] does not return my desired value

I have the following URL: /Login.aspx?ReturnUrl=Default.aspx#/mydesign Request.QueryString["ReturnUrl"] only returns "Default.aspx". Why doesn't it return "Default.aspx#/mydesign"?
4
votes
4answers
2k views

How to find out if string has already been URL encoded?

How could I check if string has already been encoded? For example, if I encode TEST==, I get TEST%3D%3D. If I again encode last string, I get TEST%253D%253D, I would have to know before doing that ...
3
votes
0answers
97 views

Tomcat, UTF-8, and non-bmp characters

I am running a GWT-based web application on Tomcat 6.0.32. I am having trouble getting URLs that contain non-BMP characters (where these characters live in filenames) to work. Any URLs that ...
3
votes
1answer
25 views

Making requests from Flash for URLs with + signs in them

I am hosting images on Amazon S3 and using them in my Flash application. My application receives signed S3 urls that point to the images in S3. The URL looks something like this (line breaks added for ...
3
votes
1answer
376 views

Should I URL-encode POST data?

I'm POSTing data to an external API (using PHP, if it's relevant). Should I URL-encode the POST variables that I pass? Or do I only need to URL-encode GET data? Thanks! UPDATE: This is my PHP, ...
3
votes
2answers
223 views

How can I encode this query string?

I'm trying to implement a payment processor. In order to validate that the response is legitimate, I have to take the query string and append a validation key, then perform an MD5 hash and match my ...
3
votes
1answer
201 views

Proper way to encode a (relative) URL using PHP

I'm trying to encode the following relative URL using PHP: /tracks/add/5449326 I've tried using rawurlencode and urlencode. Which made it look something like: %2Ftracks%2Fadd%2F5449326 I'm going ...
3
votes
1answer
353 views

encode latin chars using ISO-8859-1 in PHP

I want to encode to ISO-8859-1 a url that contains latin characters like à, using PHP. The encoded string will be used to perform a request to a webservice. So if the request is: ...
3
votes
1answer
330 views

Escape fullstop before slash in URL string

I've found an oddity I'm trying to get around with C# sanitizing / interfering with a specified URL, and giving a 404 as a result. It happens where there's a forward slash after a full-stop - C# and ...
3
votes
1answer
519 views

mod_rewrite NE flag - When is it helpful to encode special chars in the URL?

I've been looking at the [NE] (noescape) flag in mod_rewrite. After some thought I couldn't figure out a situation when I would NOT want to use the flag. Meaning, it seems most helpful to keep the ...
3
votes
4answers
154 views

Is it advisable to have non-ascii characters in the URL?

We are currently working on a I18N project. I am wondering what are the complications of having the non-ascii characters in the URL. If its not advisable, what are the alternatives to deal with this ...
3
votes
4answers
692 views

URL decoding Japanese characters etc. in Java

I have a servlet that receives some POST data. Because this data is x-www-form-urlencoded, a string such as サボテン would be encoded to &#12469;&#12508;&#12486;&#12531;. How would I ...
3
votes
4answers
4k views

jQuery's $.ajax URL Encoding Problems

I'm using jQuery's $.ajax method to send and retrieve data to a REST service. Some of the URL's I'm providing to the $.ajax method requires spaces and other special characters to be encoded. The ...
3
votes
4answers
714 views

NameValueCollection to URL Query?

I know i can do this var nv = HttpUtility.ParseQueryString(req.RawUrl); But is there a way to convert this back to a url? var newUrl = HttpUtility.Something("/page", nv);
3
votes
2answers
208 views

how do I properly encode a URL in JavaScript?

I am working on a browser plugin that takes the URL of the current page or any selected link as a parameter and send it to our server. When characters of the basic latin alphabet are present in the ...
3
votes
4answers
2k views

urlencoded Forward slash is breaking URL

About the system I have URLs of this format in my project:- http://project_name/browse_by_exam/type/tutor_search/keyword/class/new_search/1/search_exam/0/search_subject/0 Where keyword/class pair ...
3
votes
2answers
386 views

MOSS Filter webpart not working with & symbol in the query string

I know this is a fairly common error with URL encoding. The problem I suspect is the MOSS Filter webpart used to filter a dataview webparts results based on the querystring paramter passed to it from ...
3
votes
1answer
369 views

URL encoding yes/or no?

I have a restful webservice which receives some structured data which is put straight into a database. The data is send from an OS using wget. I am just wondering whether I actually need to URL ...
3
votes
2answers
1k views

Help with C# HttpWebRequest URI losing its encoding

Having a problem with HttpWebRequest decoding my encoded URL. var requestUrl = "https://www.google.com/webmasters/tools/feeds/http%3A%2F%2Fwww%2example%2Ecom%2F/crawlissues/"; var request = ...
3
votes
7answers
81k views

Test if string is URL encoded in PHP

Hey guys, I've looked through the PHP Docs and can't see anything to do with this, so how can I test if a string is URL encoded? Is it better to search the string for characters which would be ...
3
votes
8answers
5k views

ASP.NET: Get *real* raw URL

In ASP.NET, is there any way to get the real raw URL? For example, if a user browse to "http://example.com/mypage.aspx/%2F", I would like to be able to get "http://example.com/mypage.aspx/%2F" rather ...
3
votes
4answers
1k views

Ampersands in URLRewriter Query Strings

I have a query string parameter value that contains an ampersand. For example, a valid value for the parameter may be: a & b When I generate the URL that contains the parameter, I'm using ...
2
votes
2answers
55 views

Spaces in URIs in Firefox 7

In Firefox version 7.0.1, URIs with encoded spaces in them are automatically converted to a space in the Location Bar. This does not happen in Internet Explorer. For example, I have a textbox on ...
2
votes
1answer
69 views

Preserving escaped characters when constructing URIs in Java

The documentation for java.net.URI specifies that For any URI u that ... and that does not encode characters except those that must be quoted, the following identities also hold... But what ...
2
votes
5answers
128 views

What other characters beside ampersand (&) should be encoded in HTML href/src attributes?

Is the ampersand the only character that should be encoded in an HTML attribute? It's well known that this won't pass validation: <a ...
2
votes
1answer
40 views

Working with Curl to do get requests

This is one of those strange things that I could not find on the internet as hard as I tried to look. I am working with curl to do some get requests to twitter and google and would like to know if ...
2
votes
2answers
633 views

How can I create a Wicket URL that hides its parameters?

I'm currently creating a set of links with code like this: BookmarkablePageLink<CheeseMain> havarti = new BookmarkablePageLink<CheeseMain>("havarti", CheeseMain.class); ...
2
votes
1answer
164 views

URLEncode return different value in ASP classic and PHP

I'm developing and application which must integrate with PayPal. To do so, it makes some call via API, and in these calls I have to pass some parameters that are URLEncoded. My problem is that I don't ...
2
votes
2answers
188 views

What is the encoding of Chinese characters on Wikipedia?

I was looking at the encoding of Chinese characters on Wikipedia and I'm having trouble figuring out what they are using. For instance "的" is encoded as "%E7%9A%84" (see here). That's three bytes, ...
2
votes
2answers
2k views

Python urlencode string

I am trying to urlencode this string before I submit. queryString = 'eventName=' + evt.fields["eventName"] + '&' + 'eventDescription=' + evt.fields["eventDescription"];
2
votes
2answers
266 views

Firefox url problem

I check the session information when I go to default.aspx if session is null return login.aspx if (Session[SessionMemberKey] == null) { Response.Redirect("http://site.com/Login.aspx"); } ...
2
votes
2answers
567 views

Convert any title to url slug and back from url slug to title

I want to convert any title e.g. of a blog entry to a user friendly url. I used rawurlencode() to do that but it gives me a lot of strange strings like %s. The algorithm should consider german chars ...
2
votes
2answers
42 views

What are the implications of not doing url encoding when passing URLs in GET requests?

I just tried the following URL: http://www.google.com/search?hl=en&q=http://www.yahoo.com/path/to/location on my browser, and it worked! What made it work? And why should one encode URLs other ...
2
votes
3answers
465 views

java.net.URI chokes on special characters in host part

I have a URI string like the following: http://www.christlichepartei%F6sterreichs.at/steiermark/ I'm creating a java.lang.URI instance with this string and it succeeds but when I want to ...
2
votes
3answers
4k views

URL encoding/decoding with Python

I am trying to encode and store, and decode arguments in Python and getting lost somewhere along the way. Here are my steps: 1) I use google toolkit's gtm_stringByEscapingForURLArgument to convert an ...
2
votes
1answer
359 views

Does UrlDecode handle plus (+) correctly?

According to RFC 2396, The plus "+", dollar "$", and comma "," characters have been added to those in the "reserved" set, since they are treated as reserved within the query component. ...
2
votes
4answers
165 views

What kind of text code is %62%69%73%68%6F%70?

On a specific webpage, when I hover over a link, I can see the text as "bishop" but when I copy-and-paste the link to TextPad, it shows up as "%62%69%73%68%6F%70". What kind of code is this, and how ...
2
votes
2answers
573 views

How do I parse an encoded URI in Ruby?

I'm trying to parse a URI that has brackets - [ and ] - in it. I have tried to parse this directly with URI.parse but the brackets cause this to fail. I therefore tried to encode the URI with ...

1 2 3 4 5