Expand my Community achievements bar.

Learn about Edge Delivery Services in upcoming GEM session

LiveCycle and AD three questions.

Avatar

Former Community Member

I have three Javascript questions. 

1)     How would I go about finding the current domains which user is authenticated to.  What I need to do is have a form that can only be used while in certain domain.

2)     Would also like a way of populating a forms value based on the current logged in user of the system (active directory.)

3)      Am also looking from information on how I could use an existing AD account to sign a form, basically creating a maintaining a digital signature for user that is password synced to their existing AD account.  Allowing them to ‘sign’ the form by entering their AD credentials.    Realizing this is a complex subject I have been searching Adobe Tech support for a place to start and as yet being unsuccessful. 

Thanks!

3 Replies

Avatar

Level 10

i have one solution for your second question.

1. Drag the process fields(from custom library) to the form

2. A field named AWS_ASSIGNED_ID will be in invisible mode.

3. The field will hold the currently loged in users's AD id (the column name is refprincipalid) in the Adobe table

4. use this table to get all details of a user from edcPrincipal table.

If unclear, i'm ready to make it elaborate for you.

Nith

Avatar

Former Community Member

I can get the process forms, but not following steps 3-4. Please

elaborate

$Nith$ <forums@adobe.com>

09/18/2009 17:29

Please respond to

clearspace-348557231-459944-2-2259063@mail.forums.adobe.com

To

Thomas Beaty <tbbeaty@cmsenergy.com>

cc

Subject

LiveCycle and AD three questions.

i have one solution for your second question.

1. Drag the process fields(from custom library) to the form

2. A field named AWS_ASSIGNED_ID will be in invisible mode.

3. The field will hold the currently loged in users's AD id (the column

name is refprincipalid) in the Adobe table

4. use this table to get all details of a user from edcPrincipal table.

If unclear, i'm ready to make it elaborate for you.

Nith

Avatar

Level 10

write a web service with an input variable 'assignedId'

Create few output variables as:

1. CommanName

2. Email

etc

Inside the web service write a call to the DB to fecth the data based on the

AssignedId

Populate the returned values on the form.

Nith