473,395 Members | 1,652 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

what is malformed about this url?

http://www.mls.ca/PropertyDetails.as...%26Beds%3d0-0%
26Baths%3d0-0%26f%3d%26ft%3dall%26o%3dA%26of%3d1%26ps%3d10%26a id%3d3490%26Ma
pURL%3d%253fAreaID%253d3476&PropertyID=2127525
Nov 18 '05 #1
6 2691
I give up!

actually it worked for me, maybe this will work for you..
http://tinyurl.com/yu8b2

"sviau" <sv***@crea.ca> wrote in message
news:u2**************@TK2MSFTNGP09.phx.gbl...
http://www.mls.ca/PropertyDetails.as...%26Beds%3d0-0% 26Baths%3d0-0%26f%3d%26ft%3dall%26o%3dA%26of%3d1%26ps%3d10%26a id%3d3490%26Ma pURL%3d%253fAreaID%253d3476&PropertyID=2127525

Nov 18 '05 #2


it works, but were told that some firewalls block it as malformed url
during content filtering.

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 18 '05 #3
Hi Stephane,
Thanks for posting in the community!
From your description, you are somewhat confused on the below malformed url:
http://www.mls.ca/PropertyDetails.as...d0%26Page%3d1%
26vs%3d1%26rlt%3d%26cp%3d%26pt%3d1%26mp%3d0-0-0%26mrt%3d-1-0-0%26Beds%3d0-0%
26Baths%3d0-0%26f%3d%26ft%3dall%26o%3dA%26of%3d1%26ps%3d10%26a id%3d3490%26Ma
pURL%3d%253fAreaID%253d3476&PropertyID=2127525
It didn't work for you?
If there is anything I misunderstood, please feel free to let me know.

I've tried this link and it was able to work on my side. Have you tried it
in any other browser or other different machines?
In addition, as for the malformed you mentioned, this is because some
certain particular characters must be encoded into different style so as to
display in the url, here is the description in MSDN:
-----------------
Special Characters in a URL
In queries executed at the URL, special characters are specified as %xx,
where xx is the hexadecimal value of the character. The following table
lists these special characters and describes their meanings. For more
information, see the RFC1738 specification at
http://www.faqs.org/rfcs/rfc1738.html.
-----------------
And here is the web link of the certain reference in MSDN:
#Special Characters
http://msdn.microsoft.com/library/en...asp?frame=true

also, here is some other tech references on the character encoding in url:
#URL Character Encoding Issues
http://www.freesoft.org/CIE/RFC/1738/4.htm

#HTML URL-encoding Reference
http://www.w3schools.com/html/html_ref_urlencode.asp

Hope they're helpful.
Regards,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

Nov 18 '05 #4
Hi Stephane,
Have you checked out my preceding suggestions or have you got any ideas on
this issue? If you have any questions ,please feel free to post here.

Regards,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

Nov 18 '05 #5
weve isolate d the problem to an interaction with certain firewall, proxies,
etc

usrs are able to visit this http://test.mls.ca with no problem, but cant
accessing the live site http://www.mls.ca

the differerence between the two is that the live site is behind a SQUID
proxy.
users have reported problems using watchguard, winproxy, freedom firewall,
etc proxies/firewalls products.

what we still dont know is what these proxies dont like about the url from
our site? we have no whitespace, no underscores in domain, its
encoded....what is it?!?

also, this is where users get stuck (get the error from proxy); anything
wrong with this code; is there any issues isth postback, redirects,
cookies..interaction between them. is this correct
Response.Redirect("~/PropertyResults.aspx" & Request.Url.Query, True) or
should we be using the full path
Response.Redirect("http://www.mls.ca/PropertyResults.aspx" &
Request.Url.Query, True) ? pls help
Private Sub btnAccept_Click(ByVal sender As Object, ByVal e As
System.EventArgs) Handles lnkAccept.Click

Dim c As New HttpCookie("LegalDisclaimer")

c.Expires = DateTime.Now.AddMonths(1)

c.Value = "1"

Response.Cookies.Add(c)

Response.Redirect("~/PropertyResults.aspx" & Request.Url.Query, True)

End Sub
thanks
stephane
"Steven Cheng[MSFT]" <v-******@online.microsoft.com> wrote in message
news:ZQ*************@cpmsftngxa07.phx.gbl...
Hi Stephane,
Thanks for posting in the community!
From your description, you are somewhat confused on the below malformed url: http://www.mls.ca/PropertyDetails.as...d0%26Page%3d1% 26vs%3d1%26rlt%3d%26cp%3d%26pt%3d1%26mp%3d0-0-0%26mrt%3d-1-0-0%26Beds%3d0-0% 26Baths%3d0-0%26f%3d%26ft%3dall%26o%3dA%26of%3d1%26ps%3d10%26a id%3d3490%26Ma pURL%3d%253fAreaID%253d3476&PropertyID=2127525
It didn't work for you?
If there is anything I misunderstood, please feel free to let me know.

I've tried this link and it was able to work on my side. Have you tried it
in any other browser or other different machines?
In addition, as for the malformed you mentioned, this is because some
certain particular characters must be encoded into different style so as to display in the url, here is the description in MSDN:
-----------------
Special Characters in a URL
In queries executed at the URL, special characters are specified as %xx,
where xx is the hexadecimal value of the character. The following table
lists these special characters and describes their meanings. For more
information, see the RFC1738 specification at
http://www.faqs.org/rfcs/rfc1738.html.
-----------------
And here is the web link of the certain reference in MSDN:
#Special Characters
http://msdn.microsoft.com/library/en...asp?frame=true

also, here is some other tech references on the character encoding in url:
#URL Character Encoding Issues
http://www.freesoft.org/CIE/RFC/1738/4.htm

#HTML URL-encoding Reference
http://www.w3schools.com/html/html_ref_urlencode.asp

Hope they're helpful.
Regards,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

Nov 18 '05 #6
Where does the ~ folder live?

Try using the fully qualified path (e.g.
http://www.mls.ca/propertyresults.aspx) and see if it works for you.

--
Thanks,

Eric Lawrence
Program Manager
Assistance and Worldwide Services

This posting is provided "AS IS" with no warranties, and confers no rights.

"sviau" <sv***@crea.ca> wrote in message
news:ev*************@TK2MSFTNGP12.phx.gbl...
weve isolate d the problem to an interaction with certain firewall, proxies, etc

usrs are able to visit this http://test.mls.ca with no problem, but cant
accessing the live site http://www.mls.ca

the differerence between the two is that the live site is behind a SQUID
proxy.
users have reported problems using watchguard, winproxy, freedom firewall,
etc proxies/firewalls products.

what we still dont know is what these proxies dont like about the url from our site? we have no whitespace, no underscores in domain, its
encoded....what is it?!?

also, this is where users get stuck (get the error from proxy); anything
wrong with this code; is there any issues isth postback, redirects,
cookies..interaction between them. is this correct
Response.Redirect("~/PropertyResults.aspx" & Request.Url.Query, True) or
should we be using the full path
Response.Redirect("http://www.mls.ca/PropertyResults.aspx" &
Request.Url.Query, True) ? pls help
Private Sub btnAccept_Click(ByVal sender As Object, ByVal e As
System.EventArgs) Handles lnkAccept.Click

Dim c As New HttpCookie("LegalDisclaimer")

c.Expires = DateTime.Now.AddMonths(1)

c.Value = "1"

Response.Cookies.Add(c)

Response.Redirect("~/PropertyResults.aspx" & Request.Url.Query, True)

End Sub
thanks
stephane
"Steven Cheng[MSFT]" <v-******@online.microsoft.com> wrote in message
news:ZQ*************@cpmsftngxa07.phx.gbl...
Hi Stephane,
Thanks for posting in the community!
From your description, you are somewhat confused on the below malformed

url:

http://www.mls.ca/PropertyDetails.as...d0%26Page%3d1%

26vs%3d1%26rlt%3d%26cp%3d%26pt%3d1%26mp%3d0-0-0%26mrt%3d-1-0-0%26Beds%3d0-0%

26Baths%3d0-0%26f%3d%26ft%3dall%26o%3dA%26of%3d1%26ps%3d10%26a id%3d3490%26Ma
pURL%3d%253fAreaID%253d3476&PropertyID=2127525
It didn't work for you?
If there is anything I misunderstood, please feel free to let me know.

I've tried this link and it was able to work on my side. Have you tried it in any other browser or other different machines?
In addition, as for the malformed you mentioned, this is because some
certain particular characters must be encoded into different style so as

to
display in the url, here is the description in MSDN:
-----------------
Special Characters in a URL
In queries executed at the URL, special characters are specified as %xx,
where xx is the hexadecimal value of the character. The following table
lists these special characters and describes their meanings. For more
information, see the RFC1738 specification at
http://www.faqs.org/rfcs/rfc1738.html.
-----------------
And here is the web link of the certain reference in MSDN:
#Special Characters
http://msdn.microsoft.com/library/en...asp?frame=true
also, here is some other tech references on the character encoding in url: #URL Character Encoding Issues
http://www.freesoft.org/CIE/RFC/1738/4.htm

#HTML URL-encoding Reference
http://www.w3schools.com/html/html_ref_urlencode.asp

Hope they're helpful.
Regards,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)


Nov 18 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

8
by: KC | last post by:
I have written a parser using htmllib.HTMLParser and it functions fine unless the HTML is malformed. For example, is some instances, the provider of the HTML leaves out the <TR> tags but includes...
0
by: Ryan R. Tharp | last post by:
------=_NextPart_000_08EB_01C34AD3.62428F70 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Using the C API I'm getting this on some of my queries,...
3
by: Gérard Talbot | last post by:
About a month ago, I've reported a crash bug at a wiki webpage where developers of MSIE 7 can read feedback from developers. The strange thing is that a particular malformed webpage can crash MSIE...
3
by: George Durzi | last post by:
If I try to read a CNET.com RSS feed into a DataSet, I get the following exception The same table (category) cannot be the child table in two nested relations. The exception is thrown...
0
by: Alicia Marinache | last post by:
Hello I do have a sudden problem with my Visual Studio (.NET Framework 1.1, Visual Studio 2003 version). All was fine and well until 2 days ago when unexpectedly I started to receive the following...
2
by: Glenn Palomar | last post by:
Hi, I have an xml file that looks like below. It contains a DOCTYPE declaration followed by the data itself. <!DOCTYPE LIB> <LIB version="$Revision: #742 $" date="$DateTime: 2006/10/27...
1
by: Mex | last post by:
Hi How to load malformed XML file and correct it automatically= for example <DOC NUMB=E2007019 NBDOC=5> <DP N=1 IMA=0001.tif BD=1 AB=1 DE=0 CL=0 DR=0 SR=0 AM=0 BP=0 RC=0> </DOC>
8
by: madevo8 | last post by:
Hi All I am getting a 500 internal server error plus the below message in my log file when trying to execute a script. malformed header from script. Bad header=/home/fhlinux159/f/*domain*:...
1
by: Aaron Gray | last post by:
I am looking for an HTML parser that will parser malformed HTML Netscape bookmarks.html files. Ideally it will work with callbacks. Many thanks in advance, Aaron
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.