What do you mean with user entry and what kind of XML document you want. A
XML document can be a lot of things. The easiest one to create is a dataset.
I would like to take all of the properties from a AD user cn, email,manager,
etc and pun them into a XML document that can be used as output from a web
service. The exact format isn't important as long as I can use it in managed
code (VB.Net).
Than in my idea you can just create a dataset works fine in a webservice as
well.
Dim ds as new dataset
dim dt as new datatable
ds.tables.add(dt)
dt.columns.add("user",GetType(System.String) 'string is default but to show
dt.columns.add("email")
etc.
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.