A critical vulnerability was discovered in React Server Components (Next.js). Our Systems Remain Fully Protected. Learn More.
AI OnAI Off
A critical vulnerability was discovered in React Server Components (Next.js). Our Systems Remain Fully Protected. Learn More.
Has anyone managed to get this working.
I'm looking at the simple push of documents from SharePoint to EPiServer but encounter the following error.
When testing the connection through the SharePoint EPiServer connection settings I get confirmation that connection is fine but the license file can not be found.
The SharePoiintConnector license in the application forlder on the server.
When I dissasemble the EPiServer libraries the EPiServer.VirtualPathWssProvider assembly is referenced
and it's attribute extracted
private static LicenseSettingsAttribute GetSettings(Assembly caller) { if (caller == null) { return null; } object customAttributes = caller.GetCustomAttributes(typeof(LicenseSettingsAttribute), false); if (customAttributes == null) { throw new LicenseException("Cannot find LicenseSettingsAttribute in assembly"); } LicenseSettingsAttribute[] attributeArray = (LicenseSettingsAttribute[]) customAttributes; if (attributeArray.Length == 0) { throw new LicenseException("Cannot find LicenseSettingsAttribute in assembly"); } if (attributeArray.Length > 1) { throw new LicenseException("A assembly can only defined one instance of LicenseSettingsAttribute"); } return attributeArray[0]; }
Any ideas why this LicenseSettingsAttribute would not get be found as it is an attribute of the assembly.
[assembly: AssemblyVersion("2.1.0.0")] [assembly: AssemblyDescription("")] [assembly: AssemblyCompany("EPiServer AB")] [assembly: AssemblyProduct("EPiServer.VirtualPathWssProvider")] [assembly: AssemblyTitle("EPiServer.VirtualPathWSSProvider")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCopyright("Copyright \x00a9 EPiServer AB 2008")] [assembly: AssemblyTrademark("")] [assembly: ComVisible(false)] [assembly: Guid("70dd6ef9-d0e5-4f48-8256-07aa58e21b6c")] [assembly: AssemblyFileVersion("2.1.0.0")] [assembly: LicenseSettings(FileName="ConnectForSharePointLicense.config", LicenseName="ConnectForSharePoint", PublicKeyResource="EPiServer.VirtualPathWssProvider.LicensePublicKey.xml")] [assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)] [assembly: CompilationRelaxations(8)] [assembly: RuntimeCompatibility(WrapNonExceptionThrows=true)]