Ned
Ned

Reputation: 1207

How to consume WSDL provided by Active Directory Certificate Services (CEP server)?

Is there documentation about how to consume WSDL provided by AD CS. A tutorial or code samples for this? This web service is provided by AD CS but there seems to be no guidance about how to use it.

I know that there are IX509Enrollment2 and ICertRequest interfaces to perform certificate operations but I am wondering if we can use the web service via WSDL file.

Sample WSDL:

enter image description here

Upvotes: 0

Views: 270

Answers (1)

Crypt32
Crypt32

Reputation: 13974

Although, no code samples, but there are complete protocol specifications:

  • [MS-XCEP] -- this protocol is used to load policies, certificate templates and enrollment services with [MS-WSTEP] support.
  • [MS-WSTEP] -- this protocol is used to perform certificate enrollment, request submission, issued certificate retrieval.

in appendixes you will find sample messages.

Upvotes: 1

Related Questions