Problem How to run my first .net core 2.0 console application in windows10 docker? Background This exercise is for beginners who want to understand Docker fundamental tenets and run their first .net core 2.0 application in windows10 docker. Solution Prerequisites Use the below link to setup docker on your Windows10 laptop/desktop. https://docs.docker.com/docker-for-windows/install/ Steps 1. Create new " Console App (.Net Core) " project using " File >> New >> Project " menu. 2. It creates a new project ( CoreHelloWorld ) with " Program.cs " class with the following lines of code. Execute the project and make sure it works. 😀 3. Make sure docker is running in " Windows Container " mode on your machine. If not, then switch to "Windows Container" 4. Now your application must be packed with its dependencies into a folder for deployment. You may do this with two options. ...
Problem I am using PingFederate as key manager for my API Manager. While requesting authorization code for an existing client and resource owner, it was showing the following error message "Server.log" shows the following message 2016-12-13 11:34:03,363 tid:AOf2aORr5j9_X_PHbCTZu-toxwA DEBUG [org.sourceid.websso.servlet.IntegrationControllerServlet] POST: https: <IP> /as/yVKcc/resume/as/authorization.ping 2016-12-13 11:34:03,363 tid:AOf2aORr5j9_X_PHbCTZu-toxwA INFO [org.sourceid.websso.servlet.IntegrationControllerServlet] org.sourceid.websso.servlet.RenderPageException: Unable to resume processing because saved state was not found for key: BR6msnwXdx33oQX3imDRni_yVKcc - rendering state.not.found.error.page.template.html Background 1. I have following two OAuth clients configured in PingFederate 2. OAuth client "2" was created with the following configuration 3. Using the following url, authorization code was requested ...