VBprogrammeur
Programmer
Hi,
Few VB programs on a PC have been accessing our company website to take backups and retrieve online orders since January 2001.
Suddenly all html pages, cgis sent by all domains hosted on the same webserver get truncated after 1250 bytes. Since approximately August 5.
Programs are using the standard Inet1.OpenURL(URL) method.
Same programs access the Yahoo homepage and receive a 40K page, which is normal, and not the then now usual 1250 bytes.
Nothing changed here but length returned is now 1250 regardless of the length of the file sent.
We are using VB 6.0
We have used the NT network, then bypassed it for the Cisco routeur only, then a simple modem connection - plugged into the wall - same result. Only 1250 bytes
Any suggestion where to look for?
URL of our webserver might be given to individuals with interest in helping finding a solution.
Here is the test script we have used to show length of message received and the message itself.
Thanks in advance.
===============================================
Private Sub Command1_Click()
Text1.Text = " "
Text2.Text = "In Progress..."
Dim Data_String1
Dim strinPut As String
strinPut = Text3.Text
Dim URL_String1 As String
URL_String1 = strinPut
Data_String1 = Internet.OpenURL(URL_String1)
Text1.Text = "Length = " + Str(Len(Data_String1))
Text2.Text = Data_String1
End Sub
Private Sub Form_Load()
Text1.Text = ""
Text2.Text = ""
Text3.Text = "End Sub
===============================================
Few VB programs on a PC have been accessing our company website to take backups and retrieve online orders since January 2001.
Suddenly all html pages, cgis sent by all domains hosted on the same webserver get truncated after 1250 bytes. Since approximately August 5.
Programs are using the standard Inet1.OpenURL(URL) method.
Same programs access the Yahoo homepage and receive a 40K page, which is normal, and not the then now usual 1250 bytes.
Nothing changed here but length returned is now 1250 regardless of the length of the file sent.
We are using VB 6.0
We have used the NT network, then bypassed it for the Cisco routeur only, then a simple modem connection - plugged into the wall - same result. Only 1250 bytes
Any suggestion where to look for?
URL of our webserver might be given to individuals with interest in helping finding a solution.
Here is the test script we have used to show length of message received and the message itself.
Thanks in advance.
===============================================
Private Sub Command1_Click()
Text1.Text = " "
Text2.Text = "In Progress..."
Dim Data_String1
Dim strinPut As String
strinPut = Text3.Text
Dim URL_String1 As String
URL_String1 = strinPut
Data_String1 = Internet.OpenURL(URL_String1)
Text1.Text = "Length = " + Str(Len(Data_String1))
Text2.Text = Data_String1
End Sub
Private Sub Form_Load()
Text1.Text = ""
Text2.Text = ""
Text3.Text = "End Sub
===============================================