Uncategorized




Nice way to store Connection strings for external databases in Secure Store SharePoint 2019

SharePoint 2016 Logo

How to store credentials? It’s always a question because nobody wants to demonstrate the passwords, neither for the databases, nor for web services or anything else. SharePoint has a built-in tool to store a sensitive data – technical user accounts, databases or any data like this.  Here is how to create variables in the secure store.

(read more...)

Fishing a-la 'Deutsche Post' in Germany from Canada

Paper mail is very popular in Germany. People send the letters if they need to do it or even if they don’t need one. To send the letter costs from 0,85 € cents to 2.75€ and it depends on the size of the letter.

Today I’ve got the sms «Ihr Paket DE14127482 wird im Zollzentrum aufbewahrt. Bitte aktualisieren Sie Ihre Informationen : germany-delivery-post.com».

(read more...)

Allow CORS in Net Core application

It's not for production, but for developer environments

Add the block below to Program.cs. I talk about Net Core 5 or Net Core 6 application.

 // global cors policy
            app.UseCors(x => x
                .AllowAnyMethod()
                .AllowAnyHeader()
                .SetIsOriginAllowed(origin => true) // allow any origin
                .AllowCredentials()); // allow credentials

MarkiMarta.com. Notes of web-specialist
Since 2009
18+