Member since
11-13-2020
3
Posts
0
Kudos Received
0
Solutions
11-16-2020
09:31 AM
@manas_mandal786 Thanks for providing template. The next thing I wanted to look at was configs so you read my mind. I was able to import your template, start the context service, and add success/failure routes for each test to an output port (so i can see results are success/fail). With the workflow setup I execute 2 curl calls: curl -L -X POST 'http://localhost:8009/report' -H 'Content-Type: multipart/form-data' -F test=test curl -L -X POST 'http://localhost:8009/report' -H 'Content-Type: multipart/form-data' -H 'ReportType: test' -F test=test And my canvas looks like this: I did not get any warnings. Everything worked as expected. If you are still getting issues, i suspect it is something to do with your environment (windows) not being able to store the metadata for the StandardSSLContext Service. This store will hold the client connection until you send the response. In your case that part does not seem to be working. Look for any errors/warnings in nifi-app.log while testing. You may see warnings in the Controller Services window on the StandardSSLContext. You may need to set each processor to DEBUG in order to find more info in the nifi-app.log.
... View more