Home > Archive > PowerBuilder > February 2005 > POSTURL response from Webserver getting cut off
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
POSTURL response from Webserver getting cut off
|
|
| chellakudam 2004-12-16, 6:15 pm |
| Response string from a servlet to our powerbuilder application getting cut off.
Application has the following code to send and get the data.
lb_args = blob(as_querystring)
ll_length = Len(lb_args)
ls_headers = "Content-Type: " + &
"application/x-www-form-urlencoded~n" + &
"Content-Length: " + String( ll_length ) + "~n~n"
li_rc = iinet_urlcontext.PostURL(ls_url, lb_args, ls_headers, iuo_cre_internet_result)
It looks like servlet is sending complete data to powerbuilder application.
Any idea ?
Thanks for any help in advance. | |
| Grimjack 2005-02-16, 12:27 pm |
| I am having a similar problem.
I am using PB 10.
Did you find out why this is happening or how to resolve it ?
quote: Originally posted by chellakudam
Response string from a servlet to our powerbuilder application getting cut off.
Application has the following code to send and get the data.
lb_args = blob(as_querystring)
ll_length = Len(lb_args)
ls_headers = "Content-Type: " + &
"application/x-www-form-urlencoded~n" + &
"Content-Length: " + String( ll_length ) + "~n~n"
li_rc = iinet_urlcontext.PostURL(ls_url, lb_args, ls_headers, iuo_cre_internet_result)
It looks like servlet is sending complete data to powerbuilder application.
Any idea ?
Thanks for any help in advance.
|
|
|
|
|