Daniele Teti
Daniele Teti
This change will include unicode bugs IMHO (I don't have XE7 to test it) and should not be needed. Did you check the content-encoding of your request?
Do you still have the problem with the latest version?
`lBuffer := lEncoding.GetBytes(FWebRequest.RawContent);` seems useless (in 10.3 Rio doesn't even compile) Can you test the following? ```delphi {$IFDEF BERLINORBETTER} FWebRequest.ReadTotalContent; // Otherwise ISAPI Raises "Empty BODY" FBody := lEncoding.GetString(FWebRequest.RawContent); {$ELSE}...
Yes, it is in the plans. However, we would to make the wizard a bit more general (eg. should be able to generate json-rpc projects too). We are looking for...
All fixed but the last one and the first one. About the first one, do you have ReqMulti on your disk? In some version EMBT forgot to include that fundamental...
I don't know if this is a good behaviour. This can lead to half-loaded business objects, where the business logic could fail just because the object is not fully loaded....
Nice. Can you propose a PR on the pluggable_mapper branch? (dmvcframework 3.0)
We have the RESTAdapter interface for automatic runtime client proxy generation whithout code generation
However, it is planned a SWAGGER support to allow code generation. I try to avoid home-made solutions when there is a standard one available. As soon as the swagger support...
Currently is not supported. Did you find any solution on this?