Questions tagged [adam]

Active Directory Application Mode (ADAM) is an LDAP-compliant directory service.

ADAM has a simple install and runs as a service on Windows operating systems. It can be fully customized and distributed as an application component or used as a stand-alone LDAP directory. ADAM uses the same technologies found on Active Directory Domain Controllers (including replication and delegation features) and has its own administration and customization features. It can be run as a Windows server.

ADAM can be installed, as a free distribuable, on Windows XP, 2000, 2003, and 2008 operating systems. An improved version of ADAM is included as part of Windows Server 2003 R2 and Windows Server 2008 under the name Lightweight Directory Service (LDS).

158 questions
2
votes
1 answer

Programmatically administering custom attributes in ADAM

Has everyone ever programatically created a custom attribute? (At the moment I've just used the Scheme snap-in) Ideally I want (admin) users to be able to administer an ADAM instance through a web interface. I'm writing web-services to be able to…
samcooper11
  • 265
  • 2
  • 10
  • 20
1
vote
1 answer

How do I accomplish the following in LDAP?

I would like to accomplish this goal using AD/ADAM The ability to make an email or other attributeClass as part of inetOrgPerson globally unique across entries The ability to attach a regular expression to an attribute for validation purposes The…
McGovernTheory
  • 6,556
  • 4
  • 41
  • 75
1
vote
4 answers

Adding a user to AD LDS (ADAM) with Java and LDAP

EDIT4: Got my application to write the user to the active directory, but the active directory complains when I try to enable the user Previous messages I'm trying to add a user to my local Active Directory (with AD LDS) by using Java (1.4) and…
Andreas
  • 2,007
  • 5
  • 26
  • 37
1
vote
1 answer

access domain user thru adam

I'm using redmine (a rails ticket management) and I'd like users to be able to log with their net user and password. I've followed the ADAM Step by Step Guide from Microsoft and setup an ADAM instance on my local…
opensas
  • 60,462
  • 79
  • 252
  • 386
1
vote
1 answer

Authenticating an ADAM user against ADAM from C# - cannot bind

I have set up an ADAM instance and added some test users. From c# I can bind to ADAM using a windows account but I cannot bind using one of the ADAM users. (I can successfully bind the adam users in ldp) & I have made sure the users are enabled by…
samcooper11
  • 265
  • 2
  • 10
  • 20
1
vote
2 answers

ADFS and ASP.NET

Just looking for clarification on the above topics. There are a number of domains with their own AD The domain where my ASP.NET application is running hosts the ADFS server (the root domain) there are TRUSTs established between each domain and the…
Duncan
  • 10,218
  • 14
  • 64
  • 96
1
vote
1 answer

Looping through IAzApplication IAzRoles collection too slow

I have this simple code which loops through all the apps in Azman and all their roles. It works great when I have no users assigned to the Roles. But the moment I assign users (2 of the roles have like 7000 users), the app hangs in foreach(IAzRole…
StackThis
  • 1,262
  • 1
  • 14
  • 23
1
vote
0 answers

Usage of torch.optim.Adam in pytorch

I am new to python and pytorch. I am struggling to understand the usage of Adam optimizer. Please review the below line of code: opt = torch.optim.Adam([y], lr=0.1) This line is taking a input list. Print the value of y, I get : The value of [y]= …
mchaudh4
  • 65
  • 5
1
vote
2 answers

Best practice to link AD LDS user with AD user

We have an application that uses AD LDS (ADAM) which contains a extended user class ( custom attributes, specific to our application). One of our clients wants our users linked to their domain users (AD). When they create a user in their system, a…
djsubzero
  • 11
  • 1
  • 2
1
vote
1 answer

Use asp.net membership via LDAP

We have an intranet system that uses asp.net with the sql membership provider. We have about 400 users setup in the intranet. These can include employees, contractors, etc. I'm trying to find out if there is a way to expose our existing asp.net…
1
vote
1 answer

ADAM and Azman with ASP.Net forms authentication

Has anyone been able to make ADAM/Azman work with ASP.Net forms authentication. The default ADAM role provider works only with AD Domain users. And every single article I have read says that you need to write a custom role provider for it. I have…
StackThis
  • 1,262
  • 1
  • 14
  • 23
1
vote
0 answers

How to save Adam optimizer parameters in Keras?

Adam algorithm in Keras: Initialize m_0 as 1st-moment vector, Initialize v_0as 2nd-moment vector, The update rule for theta with gradient g: lr_t = learning_rate * sqrt(1 - beta_2^t) / (1 - beta_1^t) m_t = beta_1 * m_{t-1} + (1 - beta_1) * g_t v_t…
JM Zhou
  • 125
  • 2
  • 13
1
vote
2 answers

How to solve the problem with tf.keras.optimizers.Adam(lr=0.001) command not working?

I'm working on Google Colab and when I type model.compile(optimizer=tf.keras.optimizers.Adam(lr=1e-6), loss=tf.keras.losses.BinaryCrossentropy()) it doesn't work and I get the following error message Could not interpret optimizer identifier:…
Isaac Sady
  • 17
  • 1
  • 4
1
vote
1 answer

Is there a way to verify that Kerberos is used?

I am using System.DirectoryServices namespace for communicating with an ADAM instance. Part of the network within our organization Kerberos, while another defaults to NTLM. We also have conflicting domains (aliased the same ABC), that have different…
AlexeiOst
  • 574
  • 4
  • 13
1
vote
0 answers

Is there an implementation of Keras Adam Optimizer to support Float16

I am currently working with deploying tiny-yolov3 on openvino toolkit and for that i need to convert my model to float16. But for that I need an optimizer that supports FP16. I tried modifying SGD to support fp16 but its accuracy is too low. So, I…