Creating Custom Connector Sending Claims with SharePoint 2013 - sharepoint-2013

I need to create custom connector ,so I follow microsoft url https://learn.microsoft.com/en-us/archive/blogs/security_trimming_in_sharepoint_2013/creating-custom-connector-sending-claims-with-sharepoint-2013.
But the source file which this link mentioned, is not working, so I need source file which this microsoft url mentioned. Can anyone provide?
Igot this error when I go with download source code
error image

Related

Google data studio api cannot add scope

I am trying to build a system where I can programmatically give view access to specific emails to my google data studio reports.
I am following the Data studio API documentation. I have enabled google data studio API. But when I try to manually add scope in the second step it shows an error The following scope(s) were not added because they are invalid. Please update or remove these scopes
This issue can be tracked through Issue Tracker Link and also you can ‘STAR’ the issue to receive automatic updates and give it traction by referring this Link

WSO2 Datamapper file resoure link missing

I am new to WSO2. I was trying out with WSO2 datamapper .
From input/output canvas, I clicked on load input option , I got prompted with sub window , but without load file link , load resource from file option is missing .
Please see screen shot below . Can someone let me know is it bug or i am doing something wrong . I am using studio version 7.0.2
Thanks
Brijesh
This is a known issue with WSO2 Integration Studio 7.0.2 for high display resolutions(https://github.com/wso2/devstudio-tooling-ei/issues/851). You can remove the "-Dswt.autoScale=100" entry from the IntegrationStudio.ini file and restart the integration studio. Also, update the Integration Studio(Help->Check for Updates) after removing the entry from the .ini file.

Visual studio 2017 Publish web project to folder fails

The following errors pop in the log when publishing web project to folder.
....
Publishing folder /...
Publishing folder bin...
Publishing folder bin/es...
Publishing folder bin/roslyn...
Unable to add 'bin/roslyn/System.IO.FileSystem.dll' to the Web site. Unable to add file 'bin\roslyn\System.IO.FileSystem.dll'. The process cannot access the file because it is being used by another process.
Unable to add 'bin/roslyn/System.IO.FileSystem.Primitives.dll' to the Web site. Unable to add file 'bin\roslyn\System.IO.FileSystem.Primitives.dll'. The process cannot access the file because it is being used by another process.
Unable to add 'bin/roslyn/System.Reflection.Metadata.dll' to the Web site. Unable to add file 'bin\roslyn\System.Reflection.Metadata.dll'. The process cannot access the file because it is being used by another process.
Unable to add 'bin/roslyn/System.Security.Cryptography.Algorithms.dll' to the Web site. Unable to add file 'bin\roslyn\System.Security.Cryptography.Algorithms.dll'. The process cannot access the file because it is being used by another process.
Unable to add 'bin/roslyn/System.Security.Cryptography.Primitives.dll' to the Web site. Unable to add file 'bin\roslyn\System.Security.Cryptography.Primitives.dll'. The process cannot access the file because it is being used by another process.
Unable to add 'bin/roslyn/System.ValueTuple.dll' to the Web site. Unable to add file 'bin\roslyn\System.ValueTuple.dll'. The process cannot access the file because it is being used by another process.
Unable to add 'bin/roslyn/VBCSCompiler.exe' to the Web site. Unable to add file 'bin\roslyn\VBCSCompiler.exe'. The process cannot access the file because it is being used by another process.
Publishing folder bin/zh...
...
Publishing folder Views/WFDefs...
Publish failed. Target file://machine/d$/PATH.
If i publish using web publish it works, but the real target doesn't support web publishing.
Note: VBCSCompiler is not running.
I had the same problem with my application with Visual Studio community 2017. In my case the solution was simple, I only deleted all the files inside the directory bin (C:\Projects\DotNet\ApplicationName\bin) and after I recompiled the application.
I hope it can help you.
Had this same issue in Visual Studio 2017 Community Edition. As your question came up in Google but no answer, I thought I'd add to it.
I found Process Explorer from Sysinternals helped me a bunch.
Open sysinternals and go to Find -> Find Handle or DLL... or (Ctrl + F) and search the file that's being held open. In my case "System.IO.FileSystem.dll"
The search results showed two instances of MSBuild and one VBCSCompiler was hanging onto the files. Worst case, I just killed the process tree, built the project and all was well again.
Related answer: https://serverfault.com/questions/1966/how-do-you-find-what-process-is-holding-a-file-open-in-windows
If you try to publish asp.net web app in Azure and getting above error then try to UPDATE the Microsoft.CodeDom.Providers.DotNetCompilerPlatform package to V1.0.7 or later. Initially, in your application, there will be Microsoft.CodeDom.Providers.DotNetCompilerPlatform version 1.0.5 then uninstall and then install the latest version V 1.0.7 or later of it. Clean your solution and build. Now you will be able to publish your web app in Azure using Visual Studio 2017.

How to generate .car files from artifact folder in WSO2CEP 4.0.0?

I've read this article https://docs.wso2.com/display/CEP400/Packaging+Artifacts+as+C-App+Archive#PackagingArtifactsasC-AppArchive-CreatingaC-App
There is a structure in there, but there isn't any information on how to build the .car files. Perhaps anyone know? Thank you..
To create a car file, you can use WSO2 Developer Studio v3.8.0 (You can download it from here).
Refer Developer Studio documentation on Creating an Analytics Project.
To Generate a .car file you should have download WSO2 Developer Studio.
How to create a CAR file
check this link:
http://wso2.com/library/articles/2011/09/create-deploy-car-file-standalone-wso2-server-wso2-stratos/

Sharepoint server 2010 Central Administrationa and other settings

I want to read following setting configured on Sharepoint server 2010:
file types blocked" for web
application
Anti-virus setting
configured to scan documents on
upload
Is error report collection
enabled (Central Administration >
Operations > Logging and Reporting >
Error Reports > ) etc.
My question is, where are these setting stored on sharepoint server machine? Are they in any config file or in database?
I know programmatic way to read these settings (Got Sharepoint 2010 SDK sample code in C#), but my application is in C++ (VS 2003 .Net) and all the API/interfaces are available in .Net (managed code). Please let me know if the API/interfaces to access these setting are available in unmanaged code also?
Any help is greatly appreciated.
Regards,
Krishnakant
You cannot directly call sharepoint API in unmanaged code.
The settings are stored in sharepoint configuration database and must be called as you say in the SDK. You will need to create a .NET class library assembly which you will need to call from your managed code as a COM DLL.