Kevin Thompson
Kevin Thompson
The more complicated fix would to extract the logic from `OnPaintEmptyTableText()` to know when the NoItemsText needs to be painted, then use that logic in both `OnPaintEmptyTableText()` and `OnHoritizontalScroll()`'s invalidation...
I was able to mitigate this by changing the implementation of vScrollBar_ValueChanged: ``` private void vScrollBar_ValueChanged( object sender, EventArgs e ) { // Work around for https://github.com/schoetbi/XPTable/issues/39 // Instead of...
I'm a little out of my element, because I have no idea how Microsoft built authentication in Azure, but I'm seeing some bits that suggest Azure doesn't work with SSPI....
The SSPI API exposes this through the authentication cycle. Keep in mind that SSPI is supposed to be provider agnostic - the calling code doesn't need to know whether it's...
Please let me know if the above comment answers your question, and if so, I'll close this issue.
Does it implement GSSAPI? In that case, you can use the SSPI API to perform authentication, which means with some modifications you would be able to use Nsspi to implement...
Yeah, that sounds like it should work, so long as Microsoft's claim to be GSSAPI compatible is true. Note, when you go digging through the nsspi code, you're going to...
I'm not sure how much I'm going to be able to help here. My only advice would be to read the [Win32 SSPI documentation](https://msdn.microsoft.com/en-us/library/windows/desktop/aa374731%28v=vs.85%29.aspx) thoroughly, dig into what the errors...
It probably means that the client doesn't recognize the servers principle name (SPN). If I recall that documentation correctly, you need to perform translation of some of the received tokens...
That's really good news, I'm glad you were able to get it to work. SSPI can be a right pain in the neck sometimes. Would you be willing to contribute...