<(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
Hello, I have problems adding post-data to the URL typed (or saved as a
bookmark) in MSIE.
This URL typed or opened from bookmarks in firefox works ok, but not in
MSIE:
https://login.gulesider.no/gsi/login...&pw=mypassword
It's the redirect "value" that becomes wrong.
username and password are submitted, and then you are redirected to:
https://login.gulesider.no/gsi/sms.do?spraak=
-----------------------------------------------------------------------
As I say, it works fine in firefox, but not in MSIE. I have also tried
adding "" to the redirect, but no..
Best regards,
Øystein Bakke Larsen
--- REPLY SEPARATOR ---
(only needed due to OP using quoted-printable which is NOT recommended for
Usenet posts)
Read RFC 1738 "Uniform Resource Locators", section 3.3 "HTTP", that defines
the URL syntax for the HTTP protocol. You are allowed ONE "?" delimiter
separator to denote the parameters portion (after the path portion). You
have TWO parameter delimiter characters in your URL so parsing is unknown
and undefined. There is no syntax defined for having recursive
<searchpart>'s within the URL for HTTP (i.e., you cannot have a <searchpart>
inside another <searchpart> because the "?" delimiter is a reserved
character that the first <searchpart> uses for parsing).
ftp://ftp.rfc-editor.org/in-notes/rfc1738.txt
RFC 3986 updates RFC 1738 but it also denotes the use of only a single "?"
delimiter character to differentiate between the path and query portions of
the URL; see section 3 "Syntax Components".
ftp://ftp.rfc-editor.org/in-notes/rfc3986.txt
You are using illegal URL syntax. If Firefox support it then they do so at
their own discretion and are not RFC compliant. As Andy suggests, the
redirect is a parameter so maybe escaped-encoding the "?" character (as %3F)
in the value for this parameter would eliminate the parsing problem. You
can test to see if percent-encoding works.
--
__________________________________________________
Post replies to the newsgroup - Share with others.
E-mail: Remove "NIX" and append "#VC811" to Subject.
__________________________________________________