Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

PRB: Query String Truncated


View products that this article applies to.

This article was previously published under Q254786

↑ Back to the top


Symptoms

When you send a long query string from a WinInet application to a Web server, the query string may be truncated.

↑ Back to the top


Cause

This issue occurs because of the length limitation of the URL in WinInet, which is defined in the Wininet.h file as follows:
#define INTERNET_MAX_PATH_LENGTH        2048
#define INTERNET_MAX_SCHEME_LENGTH      32          // longest protocol name length
#define INTERNET_MAX_URL_LENGTH         (INTERNET_MAX_SCHEME_LENGTH + sizeof("://") + INTERNET_MAX_PATH_LENGTH)
				
This behavior is by design.

Note: Because Internet Explorer and Internet Transfer Control also use WinInet, the same issue may occur.

↑ Back to the top


Resolution

To resolve this issue, use the HTTP POST method. For example:

Using Internet Transfer Control on the client side:
Private Sub Command1_Click()
Dim strData As String
strData = "QName=longquerystring+longquerystring+longquerystring+longquerystring"
Inet1.Execute "http://myserver/scripts/post.asp", "POST", strData, "Content-Type: application/x-www-form-urlencoded" & vbCrLf & "Connection: Keep-Alive"
End Sub
				
Using ASP on the server side:
<HTML>
<% cName = Request("QName") %>
<BODY>
Hello, the data you posted is: <br>
<% =CName %>. 
</BODY>
</HTML> 
				
or
<HTML>
<BODY>
Hello, the data you posted is: <br>
<%
Response.Write(Request.Form("QName"))
%>.
</BODY>
</HTML> 
				

↑ Back to the top


More information

Microsoft provides programming examples for illustration only, without warranty either expressed or implied. This includes, but is not limited to, the implied warranties of merchantability or fitness for a particular purpose. This article assumes that you are familiar with the programming language that is being demonstrated and with the tools that are used to create and to debug procedures. Microsoft support engineers can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific requirements.
For additional information on how to properly simulate a Form POST in WinInet, click the article number below to view the article in the Microsoft Knowledge Base:
165298� HOWTO: Simulate a Form POST Request Using WinInet

↑ Back to the top


References

For more information on URL-encoding and the format of a Form POST request, see section 8.2 in RFC 1866.

↑ Back to the top


Keywords: KB254786, kbprb

↑ Back to the top

Article Info
Article ID : 254786
Revision : 4
Created on : 6/24/2005
Published on : 6/24/2005
Exists online : False
Views : 305