Upgrade from identity server 3 to identity server4 - asp.net-core-mvc

We are planning to upgrade our current implementation of identity server 3 to identity server 4. Is this easily achievable?
IdentityServer is compiled against both netstandard 1.4 and .NET 4.5.2 or above.
Our current project is in MVC and using .net framework 4.5.2. I have downloaded latest code of IS4 and added to my project. And there are separate library created for views/controllers.
For reference I am attaching screen shot of current code structure.
Do we have any step by step procedure available that need to be followed in this up-gradation process?
If I missed to share any information about project .. sorry in advance.
Please help!

They are completely different and there's no direct migration path unfortunately.

Related

YO .net core 2.x demo project with react/redux?

This is a "Veracity Platform" question - which I guess has a fairly small audience.
I'm using the veracity platform's application generator (based on Yeoman) to generate a sample application for .net core 2.x, using node.js.
yo #veracity/veracity:netcore-webapp
This creates a good basic .net core 2.x MVC project. Is there a way to further specify that I want to additionally include the "React/Redux" project template, like I would when creating a project in Visual Studio? That way the client app and the front-end webpack stack get started for me, which is nice.
Thanks in advance for any suggestions.
We do not have these configurations included in the generator yet. Uservoice will be added to Developer.veracity.com soon, but for now you may forward such feature requests also in the github project of the generator. Open an issue, and I will see when we can get it in to the backlog.
https://github.com/veracity/generator-veracity
Brede Børhaug - Manager Veracity for Developers

ASP .NET 5 WEB API creating help page

I just got started working on ASP.NET 5. I want to have a help page for my methods, I have seen few examples for creating help pages but most of them are MVC specific. I have gone through Microsoft.AspNet.WebApi.HelpPage package, it creates an Area for help page but I am not using MVC pattern.
Any suggestions how can I create help page other than this area approach?
I would suggest looking at Swagger and SwaggerUI. Swagger is an open standard, using JSON to document an API, used by the likes of PayPal and Microsoft (check out Logic apps in the azure portal).
There are some open source implementations for .Net (both of which I have used), which will self document your API, just by adding the NuGet packages to your project and a little bit of configuration:
https://github.com/domaindrivendev/Swashbuckle
https://github.com/domaindrivendev/Ahoy
Swashbuckle is the original project and Ahoy is the new version targeting ASPNET5. When downloading the package from NuGet you will still get Swashbuckle, just make sure you tick "include pre-release", and if you need any documentation look at the original GitHub project.
SwaggerUI (which is also included in Swashbuckle) adds an interface which you can use to navigate and test your API, by default this is available from "/swagger/ui" when your project is running.
Here is a sample repo in GitHub I put together showing how it can be used: https://github.com/mattridgway/ASPNET5-SwaggerUI

Upgrading existing applications manually MobileFirst Platform Foundation 7.1

I have followed the the instructions from Upgrading existing application manually
Its says :
If you are using the latest interim fix for IBM MobileFirst Platform
Foundation, link the IBMMobileFirstPlatformFoundation.framework and
"openssl.framework" files
My question is :
I cant find openssl.framework in Xcode 7.1. How to get this? (Does it obtain from this link?)
Why Worklight 7.1 need this?
Our Worklight version is : 7.1.0.00-20151107-1647
I am not sure those instructions are correct; see the instructions in the following tutorial: https://developer.ibm.com/mobilefirstplatform/documentation/getting-started-7-1/foundation/hello-world/configuring-a-native-ios-application-with-the-mfp-sdk/#addingNativeSDK
openssl.framework is not mentioned
I would change from manually setting it up to the new approach of using CocoaPods; going forward that is the only way to add the MFP framework.
It is inside the Framework folder. When i created the projects, the following files are added to Framework folder:
IBMMobileFirstPlatformFoundationHybrid.framework
IBMMobileFirstPlatformFoundationJSONStore.framework
openssl.framework
SQLCipher.framework
You might need to manually drag and drop those files.

Simple Membership needs System.Web.WebPages.Razor ( asp Web Forms)

I've added Simple Membership to my Asp WebForms application and when i run the application it tells me that
Could not load file or assembly 'System.Web.WebPages.Razor,
Version=3.0.0.0
why is that??
can i use Simple Membership with Asp WebForms?
Yes - can use simple membership with webforms, as described in:
http://blog.osbornm.com/2010/07/21/using-simplemembership-with-asp-net-webpages/
and http://www.mono-software.com/blog/post/Mono/226/Adding-ASP-NET-SimpleMembership-to-an-existing-MVC-4-application/
I am using in an Azure Cloud Service that ran fine locally, but ran into problems when publishing to the Cloud. This was resolved by removing references to WebMatrix.Data and WebMatrix.WebData (v2.0.0.0 manually added as per 2nd link above), then adding NuGet Package Microsoft.AspNet.WebHelpers to the project. This added references to v3 of WebMatrix with Copy Local = True. Downside is the NuGet package includes a load of other stuff that I don't actually need.
Hope that helps.

How can i add third party framework to my cocoa project

I want to add third party framework "log4Cocoa" to my cocoa application. I followed the steps to add the framework and created "Copy Files" phase as well. Project is getting build without any error. Problem occurs when i try to run the application i get error saying "Data Formatters temporarily unavailable, will re-try after a 'continue'."
Any help will be appreciated.
Is the framework opensource? I do not think it has to do with you, more with how you are using its services or maybe the framework is broken. Contact the developer he might be able to help you with it.
Edit:
Trouble Using Third Party Framework In Xcode 3.2
There is no standard way to add a framework ( like adding jars in java ) . It depends on the framework .
For example look at 320 instructions
http://github.com/facebook/three20

Resources