ADXIESharedMemory constructor gets Win32Exception NERR_Success

Add-in Express™ Support Service
That's what is more important than anything else

ADXIESharedMemory constructor gets Win32Exception NERR_Success
 
Aleksandra Grosset


Guest


namespace TutorialOnlineToolbar
{
[ComVisible(false)]
public class Storage : AddinExpress.IE.ADXIESharedMemory
{
public Storage(string pageName)
: base(pageName)
{
}

public Storage(string pageName, uint sizeInBytes)
: base(pageName, sizeInBytes)
{
}

public Storage(string pageName, uint maxValueSizeInBytes, uint valueCount)
: base(pageName, maxValueSizeInBytes, valueCount)
{
}

}
}

(...)


public static Storage storage
{
get
{
if(auth == null)
{
auth = new Storage("TOauthStorage", 8192, 4);
}
return auth;
}
}
Posted 19 Aug, 2016 08:20:05 Top
Sergey Grischenko


Add-in Express team


Posts: 7233
Joined: 2004-07-05
Hi Aleksandra Grosset,

Please try to reduce the size of the shared values. Do you get the same exception?
Posted 19 Aug, 2016 10:09:56 Top