Questions tagged [waffle]

WAFFLE is a Windows authentication framework for Java and C#.

WAFFLE is a native Windows Authentication Framework consisting of two C# and Java libraries that perform functions related to Windows authentication, supporting , and . Waffle also includes libraries that enable drop-in Windows Single Sign On for popular Java web servers, when running on Windows.

118 questions
2
votes
1 answer

Waffle Not working on Https

We are using waffle 1.7.3 on tomcat 8 on windows to authenticate users (sso). We are using waffle NegotiateSecurityFilter in order to get the domain\user via getUserPrincipal(). Everything is working as accepted over http, but when using https The…
user2046810
  • 393
  • 1
  • 8
  • 21
2
votes
0 answers

Weblogic 10 :- Waffle authentication JNA error

I am trying to implement waffle authentication technique. In that I am using following jars :- jna-platform-4.0.0 jna-4.0.0 guava-16.0.1 slf4j-api-1.7.12 slf4j-simple-1.7.12 waffle-jna-1.7.3 Its working fine on local host. But as soon as I deploy…
2
votes
3 answers

How to use WAFFLE for SSO using stand alone java client

We are trying to use WAFFLE for SSO using a standalone java client with JAAS. We've mentioned waffle.jaas.WindowsLoginModule in our jaas.conf but it is prompting for user name, password which we believe is not an ideal solution for SSO. Can any one…
MyFist
  • 413
  • 7
  • 19
2
votes
2 answers

Waffle Authorization Without Any Kind Of Login

I have a web application in the intranet and the client which is already in the intranet and has been successfully login on his/her windows computer does not want to enter any login credentials again. I have met with Waffle. As I tried its samples,…
MartK
  • 614
  • 2
  • 8
  • 21
2
votes
0 answers

Extend authentication logic in a Spring Security + Waffle application

I'm using Waffle to implement ActiveDirectory single sign-on in a Spring Web application. I'm also using Spring Security and I followed this tutorial to integrate these libraries. Now I need to customize authentication behaviour like I've done and…
davioooh
  • 23,742
  • 39
  • 159
  • 250
2
votes
1 answer

Waffle as a module in Jboss 7.1

We are trying to migrate from tomcat to Jboss AS 7.1, but we have a problem with Waffle library we use for SSO. we read that in order to use Waffle in jboss AS 7.1 we needed to create a module in Jboss with the following dependencies:
pjuanmg
  • 41
  • 4
2
votes
1 answer

Why windows 8 sends different authorization header after login into MS account

What we have? Client : win8, ie11, logged in into system using domain credentials. Server : 3 tomcat7 nodes run beyond apache 2.2.22. application uses waffle library to authenticate windows users who are logged in into domain in sso manner.…
avalyaev
  • 33
  • 6
2
votes
1 answer

Spring Security Role Hierarchy issues

I am trying to enable role hierarchy voting in Spring Security when authenticating using Waffle NTML but having some unknown issues in that the inherited roles do not appear as authorities on the principal as expected preventing hasRole expressions…
cdavid15
  • 413
  • 7
  • 14
1
vote
0 answers

Using gganimate, ggplot and a waffle chart

Code below produces a waffle chart of a packet of skittles. I want to simulate a packet of skittles being eaten, with each skittle being chosen at random. Therefore I want to create an animated plot using gganimate of the number of circles reducing…
luciano
  • 13,158
  • 36
  • 90
  • 130
1
vote
1 answer

CreateProcessAsUser is not working in Incognito/private window

Creating a new process from Java web application using createProcessAsUser and waffle SSO impersonation. Everything works fine in chrome and any other browsers normal window, when I try to access the web application using incognito/private window,…
Chandru
  • 81
  • 1
  • 9
1
vote
1 answer

How to reduce (white) margin of a waffle chart?

I' d like to ask some help on how to reduce the amount of white space in a waffle chart using the waffle package in R. Here's the code: waffle(table(dat$Age.Group), rows=5, title="Demographic Age Groups") Then it shows this: When I…
AyunaYanna
  • 25
  • 4
1
vote
1 answer

What is hToken (com.sun.jna.platform.win32.WinNT.HANDLE) in CreateProcessAsUser method. How to retrieve it using windowsIdentity Object

[Reference] [1]: Create process as different user with Java and Kerberos As mentioned in the code, we need to pass hToken in the below snippets: Advapi32.INSTANCE.ImpersonateLoggedOnUser(/* provide the security context token */) In the below code…
Chandru
  • 81
  • 1
  • 9
1
vote
2 answers

How to choose the levels order of the fill variable with waffle::geom_waffle()

I don't understand how I can change the levels order of the fill variable in R waffle::geom_waffle(). It seems that sorting the variable is ineffective since it's always sorted by the number of observations. # First example db_graph <-…
1
vote
0 answers

Is it possible to reuse a deployment from a Mocha Hardhat test script into another one?

When testing contracts on Hardhat Mocha stack, every single test js file requires to deploy a set of contracts. Many times this set is exactly the same between different js files. I would like to find a way to deploy them just once for all, and set…
1
vote
1 answer

Error: call revert exception on Hardhat with Mocha,Chai,Waffle Testing when calling a getter with Contract.connect(Signer)

While testing some code on hardhat, I found an unexplained exception that was being thrown. I couldn't find any solution both on the discord channels, as well as in the etherjs docs. This is my test suite: import {ethers} from "hardhat"; import…
Edward Casanova
  • 726
  • 7
  • 19