JunXu Chen

Results 46 comments of JunXu Chen

@Guohao1020 Could you give detailed reproduction steps? It will be more convenient for everyone to communicate with more detailed content. please refer to: https://github.com/apache/apisix-java-plugin-runner/issues/189#issuecomment-1226756930

Hi, please make sure APISIX and java plugin runner listen to the same file, and both have permissions for the file.

`HttpRequest.setHeader` is to set the request header, and `PostRequest.getUpstreamHeaders` gets the response header, and there is no direct connection between them.

maybe you could try to add the header to `requireVars`, like: ``` public List requiredVars() { List vars = new ArrayList(); vars.add("remote_addr"); vars.add("server_port"); vars.add("http_ startTimestamp"); return vars; } ```

hi @Cheol-Soon-Choi Could you provide a minimal usable repro case? Based on the information you have provided so far, it is difficult for me to reproduce, Thanks!

I would also like to participate if don't mind : )

@Yiyiyimu please add some docs about how it works, and how to use it, as we talked before, thanks.

> > hi @totemofwolf, > > I think we also need to add documentation on how to start and stop with service. > > others LGTM. Thanks! > > Add...