Android Question Large URL or large parameters

Noelkman

Member
Licensed User
Longtime User
Hi there,
maybe this question is bit off topic but my current project is with B4A so I'm posting it here.
My question is as follows: Is there any limitation known in size for URLs or Parameters with HttpUtils (JOB.Download or JOB.Poststring) ?

Fact: I'm sending a URL that is about 700bytes with parameters and is letting the page die. Below 700 it is working. The page is a PHP page and I'm not sure if PHP itself has limitations with $_GET (512bytes)
Some people say yes others say no - crazy.

So maybe someone can answer this with just a snap from experience or suggesting a different way (ASP).

I don't want to connect to the DB directly even in DMZ but I would have to open a port - No.

How are you guys feeding your Web Databases?


Very respectfuly,

Noelkman
 

DonManfred

Expert
Licensed User
Longtime User
GET Parameters (url) are limited. Less than 1000bytes

Use POST Values. Here you have not this limit.

Job.Post*
 
Upvote 0

Noelkman

Member
Licensed User
Longtime User
GET Parameters (url) are limited. Less than 1000bytes

Use POST Values. Here you have not this limit.

Job.Post*

DonManfred,
you took me to the right path, thanks a big bunch!!!

Actually it was a combination of miscoding of my own. :(
and I'm using Post now.


Cheers,
Noelkman
 
Upvote 0
Top