vote up 2 vote down star
2

What is the maximum length URL?

This is may be handset dependent; on a desktop, it is definitely browser dependent, as discussed in this question.

I am interested in specifications or references as much as empirical data.

My particular usecase is passing a very long (about 1600 character) URL to a MIDlet.platformRequest(String url), which is failing. The majority of the URL (some 1575 characters) is query.

Are there any other considerations for passing very long URLs about (e.g. mobile proxies and gateways truncating the URL)?

flag

55% accept rate

3 Answers

vote up 0 vote down

Short answer: it depends, but probably long enough.

Long answer, following investigation on SonyEricsson J2ME emulator (WTK 2.2.4), a K610i, and Samsung U700V.


Empirically testing: from the emulator, the platformRequest() passes the URL straight to the desktop browser (Firefox in this case).

http://test.example.com/?q=2048xxxxxxxxxxxxxxxxxxxxxxxxxxxx... xxxxxxxxxxxxxxxxxx2048

Looking at the logs of a test server, we see we can pass through very long URLs from the emulator to the desktop to the server.

On a device (in this case, a SonyEricsson K610i, user agent: "SonyEricssonK610i/R1CB Browser/NetFront/3.3 Profile/MIDP-2.0 Configuration/CLDC-1.1") can handle at least a URL of at least 3072 characters (upper bound c.3800).

On a second device Samsung U700V, user agent: "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.7) Gecko/20060909 Firefox/1.5.0.7 MG(Novarra-Vision/7.3)", the lower bound for URL length was 2048, but upper bound was less than 3072. Note that this could be a problem with Novarra transcoder, which has been known to (at least) re-write user-agent strings.

Without the Novarra transcode (switching networks), the U700V has a user agent "SAMSUNG-SGH-U700-Vodafone/BUGK1 SHP/VPP/R5 NetFront/3.4 Qtv5.3 SMM-MMS/1.2.0 profile/MIDP-2.0 configuration/CLDC-1.1", and has a lower bound of 3072 chars.


This effectively ends my interest in the answer to this question, as this empirical testing invalidates my theory that an upper bound on URL length is causing my problem.

However, for completeness, I will include a potential cause of my problem:

The URL needed to connect has at least two query parameters. The ampersands separating the queries seem to confuse the emulator.

The emulator silently drops the second parameter.

On the Samsung, without a second parameter, the browser connects, but the long parameter is corrupted or missing.

On the K610i when a second parameter is used, the browser does not start properly.

link|flag
vote up 0 vote down

As @Stephen C pointed out, you can only count on the first 255 characters making it through. Can you modify your application to use a POST method instead? There is no limit to the amount of data that can be sent in a POST transaction.

link|flag
Unfortunately, I am not in control of the server, so cannot change the method used to connect. I do not have a choice of service providers either. – jamesh Jul 27 at 14:58
@jamesh: That's unfortunate, because using POST and restricting yourself to small URLs are your only real options, AFAIK. – Stephen C Jul 27 at 23:31
vote up 1 vote down

According to the HTTP spec, you can rely on at least 255 characters, but beyond that it is browser specific. For example, IE limits the path part of the URL to 2048 characters, according to various sources, and Apache apparently complains about URLs > ~4000 characters.

Source: WWW FAQs: What is the maximum length of a URL?

I could not find any references to a URL limits for J2ME browsers.

UPDATE: "In the field of mobile browsing, URL limitation can be much lower. Many handsets still don’t support URLs longer than 128, 256 or 512 characters, in particular WAP devices (as opposed to devices carrying a full blown HTTP browser)."

Source: Maximum URL Length Web Analytics

link|flag
Thanks. I reviewed this link while looking at the question I referenced. It makes no mention of mobile handsets. – jamesh Jul 27 at 14:57
Second link ("Just another weblog") asserts this, without any sources. Unfortunately, this doesn't really answer the question. I appreciate your efforts. – jamesh Jul 27 at 16:04
@jamesh: Honestly, I think there is unlikely to be a definitive answer. There do not appear to be any standards (apart from HTTP), and in the absence of any standard, handset browsers may limit the URL according to whatever the manufacturer thinks is best. – Stephen C Jul 27 at 23:30

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.