Hello,
We are storing Infopath documents in a WSS 2.0 SharePoint Form Library and and having trouble retrieving the Promoted properties of the infopath document. When publishing the infopath documents using the publication wizard some Form data is used as column data.
We are attempting to access the the infopath form data via the Share point web service - GetListItems() method
Using the Following Code:
wss2.
Lists listService;
listService =
new wss2.Lists();
listService.Credentials =
new NetworkCredential(Username, Password, Domain);
XmlNode
node = listService.GetListItems("CAD Score Card Survey", "{E73D034A-9A99-4B7A-9912-AAF13ACCF63C}", null, null, String.Empty, null);
string
inner = node.InnerXml;
Yields the following results for the Promoted properties only.
ows_ID="2"
ows_Title="Kentwood 23322.xml"
.
.
.
ows_xd__x007b_0490A074_x002d_AF53_x002d_4F53_x002d_BDFE_x002d_30475788315B_x007d_="Kentwood Cat Clinic"
ows_xd__x007b_2B65B6DF_x002d_8BD7_x002d_431E_x002d_8427_x002d_54017995CDE8_x007d_="2008-05-29"
ows_xd__x007b_40964B65_x002d_2041_x002d_4EE1_x002d_887B_x002d_1A3D9B3A79D6_x007d_="0"
ows_xd__x007b_6D3A0163_x002d_7F64_x002d_4CF4_x002d_A4DC_x002d_EB3AEA5C8FC6_x007d_="CAD"
Can anyone explain how to resolve the GUIDs into friendly names? I've noticed that Access is able to resolve the the guids so I know it's possible
Thanks,
Karl