Closed
Bug 57146
Opened 25 years ago
Closed 25 years ago
Posts not handled correctly in Mozilla build 18
Categories
(Core :: Networking, defect, P3)
Tracking
()
People
(Reporter: declan_flynn, Assigned: gagan)
Details
I was testing some code with Mozilla and Netscape 6 and discovered that a post
doesnt work
I tried using the following:
<form name="create" onsubmit="return verify(this)"
action="http:/servlet/com.company.product.class" method="POST">
And it failed having tried to connect to a "servlet" machine
However if I put in "localhost:8080", giving
<form name="create" onsubmit="return verify(this)"
action="http://localhost:8080/servlet/com.company.product.class" method="POST">
it works fine.
Both types of post work in Netscape 4.7 and IE5
Thanks
Declan.
Comment 1•25 years ago
|
||
over to networking.
Assignee: asa → gagan
Component: Browser-General → Networking
QA Contact: doronr → tever
Comment 2•25 years ago
|
||
Are you using the same proxy settings in all three browsers?
| Reporter | ||
Comment 3•25 years ago
|
||
Yes. All three are set up using Direct Connection to Internet.
Updated•25 years ago
|
Status: UNCONFIRMED → RESOLVED
Closed: 25 years ago
Resolution: --- → DUPLICATE
Comment 4•25 years ago
|
||
The URL "http:/servlet/com.company.product.class" is illegal. see the
discussion in bug 32966
*** This bug has been marked as a duplicate of 32966 ***
verified dupe of wontfix bug 32966: "http:/ (one slash) treated as http://
rather than /"
see also similar wontfix bug 22251: "Relative URLs with scheme (e.g.,
http:page.html) not loading - treated as absolute"
Status: RESOLVED → VERIFIED
You need to log in
before you can comment on or make changes to this bug.
Description
•