skip to Main Content

Javascript – How to use nodejs's zlib to unzip GzipStream from .net?

Im using API gateway from AWS. Data comein is the binary format from somebody's post request. And we know it is created by :https://learn.microsoft.com/en-us/dotnet/api/system.io.compression.gzipstream?view=netframework-4.6 body: `x1F�bx00x00x00x00x00x04x00��]o�0x14���oG��x0Fx02��t�&�x1B"x19�6��I��7'����x10�}vn` +`x1F�bx00x00x00x00x00x04x00��]o�0x14���oG��x0Fx02��t�&�x1B"x19�6��I��7'����x10�}vn` ...., isBase64Encoded: false ... 'Content-Type': 'application/gzip', My current attempt const B = new…

VIEW QUESTION

Amazon web services – Problem to deploy simplest Spring Cloud Function application on AWS Lambda using docker image

I having a problem deploying the simplest Spring Cloud Function application to AWS Lambda using a docker image. @SpringBootApplication public class GraalvmFuncExampleApplication { public static void main(String[] args) { SpringApplication.run(GraalvmFuncExampleApplication.class, args); } @Bean public Function<Mono<MyRequest>, Mono<MyResponse>> transform() { return req…

VIEW QUESTION
Back To Top
Search