0

I need to write a middleware micro service API from another website which is SSL secured; I need to load the certificate and wait for any post calls on that url and catch the data in my end. I have the certificate but they are .cer and .pk files. Any ideas how to make this?

I've tried mapPost that only references on my local project.

6
  • "make middleware microservice api from another website" This sounds like you are proxying requests to another service. If so, this isn't really appropriate for ASP.NET Core middleware which is intended to modify or intercept requests as part of the request pipeline. Commented Mar 27, 2024 at 12:20
  • Well they requested that they don't want to call our microservice and we sent them multiple emails that they need to implement our post method to actually work. I have no more ideas this is my last chance. Commented Mar 27, 2024 at 12:29
  • They requested that they don't want to call your API/micro service but it sounds like you're trying to write code for their website that would do this instead. I'm a little confused about what you're hoping to achieve. Commented Mar 27, 2024 at 12:57
  • Well, yes, I am. That is what confuses all of us because they provided certificates to establish the connection between the two applications. After three emails of saying they need to implement a POST method to call our side, they didn't. So, I guess they want a microservice API to listen for POST calls if it is possible. Commented Mar 27, 2024 at 13:02
  • If they are providing certificates then it sounds like they are expecting your service to call their website 😕 Commented Mar 27, 2024 at 13:05

0

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.