Genexus 15 build 107258 .NET
I have an offline application that I synchronize with the server manually. I have a Transaction
with an attribute Image
that corresponds to a photo that is taken on the device. That photo must be synchronized like the rest of the attributes of Transaction
. I have already managed to synchronize all the attributes via REST minus the photo. I saw that there is a
document in the wiki and I'm testing it with a Web Panel
that takes the path of the file to upload from the client, or something like:
C: \ images \ image.jpg
and the server gives me the following error:
[HttpException]: A possible Request.Path value was detected dangerous in the client (:). in System.Web.HttpRequest.ValidateInputIfRequiredByConfig () in System.Web.HttpApplication.PipelineStepManager.ValidateHelper (HttpContext context)
How is the file passed to object HttpClient
? Then, when I go to do it in SD, do I have to have some additional consideration?