Questions tagged [lds]
24 questions
7
votes
4 answers
Setting up SSL in Active Directory how-to
I need to set up SSL over Active Directory. I googled a lot but could not found a decent write up about how to do this. Please if you know some good resources about this let me know.
Thanks!

ljorquera
- 1,070
- 1
- 10
- 13
4
votes
1 answer
AD LDS ValidateCredentials at ContextType.ApplicationDirectory can't authenticate
I'm trying to use AD LDS for user authentication in my MVC app. I've managed to write some code that allows me to create/edit/delete users and groups, but i can't seem to authenticate them. Here is my sample code:
using( var context = new…

Szymon Seliga
- 784
- 5
- 23
2
votes
0 answers
Removing expired certificates from LDS (new ver of ADAM)
This is my situation:
We are in the process of replacing a certificate store currently hosted on Sun's iPlanet with Microsoft's Lightweight Directory Services (new version of ADAM with Server 2008).
These certificates have been imported into LDS…

user286774
- 21
- 2
2
votes
1 answer
USACO - Dynamic Programming - Maximum Decreasing Subsequence
I've confused with the code that is written in the TEXT Dynamic Programming section of USACO Training about a classical problem (Finding Maximum Decreasing Subsequence). This is Article Link. Please help me to get it!
Here's the code:
1 #include…

mrzrm
- 926
- 7
- 19
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
Option to create new record from lookup in lightning component - using recordeditform
I am using a lightning:recordEditForm to show some fields on UI. In that there are lookup of Account , contact and opportunity which i am populating using some backend logic using fieldsets. How can i provide a "New Contact" option when a user…

SFDCBug
- 11
- 1
1
vote
1 answer
AD LDS Context password Intermittently resetting
Using the DirectoryServices.AccountManagement library in C#, I am establishing a PrincipalContext, then using that context to validate users.
It seems that the username with which I am establishing the context is being intermittently corrupted/reset…

Matt M
- 11
- 1
1
vote
1 answer
Longest bitonic subsequence in O(n*logn) complexity
A subsequence is bitonic if it monotonically increases and then monotonically de- creases, or if it can be circularly shifted to monotonically increase and then monotonically decrease.
Given a sequence, how can I determine the longest bitonic…

HazirBot
- 323
- 2
- 14
1
vote
0 answers
how a BIOS program load 2nd stage loader to Internal RAM
I have a conceptual doubt of boot process
known boot sequence
1stage BL > 2ndStage BL > u-boot > kernel
1stage BL : BIOS program, which is meant for minimum initializations and loading the 2ndStage BL to the Internal RAM of the SOC
2ndStage BL : it…

kakeh
- 403
- 3
- 17
1
vote
1 answer
Relocating functions during run time - gcc
I'm working with 2 memories on my device, DDR and SRAM. The device is running a pre-OS code written in C and ARM.
I would like to conduct a DDR calibration, for that I need to copy a few functions to the SRAM, jump to it, run the calibration code,…

dear_tzvi
- 745
- 6
- 19
0
votes
0 answers
RISC-V toolchain: lds file may make some irrelevant instructions
I want to use risc-v toolchain to compile a simple c code to test my processor. And I refer to PicoRV32's firmware file for my own test.lds :
SECTIONS {
.memory : {
. = 0x000000;
*(.init);
*(.text);
*(*);
…

邓青雨
- 1
0
votes
0 answers
Compile LDS2 project with g++ on Mac
I am trying to setup a C++ project using LDS2. I am having some problems with the compiler. I am working on a M1 Mac and I have installed LDS2 using brew (install location /opt/homebrew/Cellar/sdl2). The project folder structure is as follows:
.
├──…

ggiuli
- 55
- 9
0
votes
1 answer
How to compile 32bit x86 application in x86_64-w64-mingw32 gcc-8.1.0 with my *.lds file in VSCODE
I have some attribute((used, section ... )) codes, so I need modify the main.lds file.
run ld --verbose >> main.lds to generate the default main.lds file. It's 64 bits version, I need 32 bits version.
modify main.lds
OUTPUT_FORMAT(pei-i386)
.bss…

qinxg
- 1
0
votes
1 answer
What does ‘$@’ mean when it isn't in a rule of a Makefile?
# Linker scripts preprocessor (.lds.S -> .lds)
# ---------------------------------------------------------------------------
quiet_cmd_cpp_lds_S = LDS $@
cmd_cpp_lds_S = $(CPP) $(cpp_flags) -P -U$(ARCH) \
…

Yanel
- 79
- 3
0
votes
1 answer
AD LDS (ADAM) ChangePassword over SSL
I have been searching the internet for days trying to solve this problem.
I am working on a project where I have a requirement of allowing the user to change their password using an ASP.NET web application.
I must use "ChangePassword" and not…

Matt Goodrich
- 143
- 1
- 9