Document PlayServiceCall
See original GitHub issuePlayServiceCall
is currently undocumented.
Issue Analytics
- State:
- Created 6 years ago
- Comments:19 (15 by maintainers)
Top Results From Across the Web
PlayServiceCall (Lagom Services API)
Interface PlayServiceCall<Request,Response> ... A service call implementation that allows plugging directly into Play's request handling. Method Summary. All ...
Read more >scala - Making POST query on PlayServiceCall
Hey guys I just found the solution. The query is still needed to be sent in JSON format like this { "query" :...
Read more >Need help to asynchronously handle the request header in ...
Hi, I'm trying to implement a file upload using Lagom 1.3.10 (Java API). As suggested in other topics I used PlayServiceCall and it...
Read more >lagom/lagom
Many use cases where we fallback to PlayServiceCall are related to presentation or HTTP-specific use (I18N, file upload, ...) which indicate: coupling of ......
Read more >mulit-part form data
Here's an (untested) example of using PlayServiceCall to parse multipart/form-data files. This example doesn't buffer the file in memory (like your example ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Given that it is a recommendation to stay away from
PlayServiceCall
and there are scenarios that now (1.6) no longer works with it I think it should be either deprecated or clearly documented to not use it.For the record: there is now a lagom-recipe demonstrating how to handle File Upload side-band in a Lagom service. The approach is slightly different to that suggested by @guizmaii above.
There is another lagom-recipe which uses
PlayServiceCall
to internationalize a Lagom-handled content using Play’s i18N support.