Web Service

Comments

I'm developing a .NET C# interface to TechDoc document manager where I need to make a Web Service call using XML HTTP POST. Where can I find technical documentation to satisfy the technical requirements so I can successfully make the Web Service call in code?

Thank you.

Mon, 08/19/2019 - 16:47

My XML payload:

<?xml version="1.0" encoding="UTF-8"?>
<DmRequest action="upload">
<Authorization type="basic">PASSWORD-WOULD-BE-HERE</Authorization>
<Document>
<DocNumber>WCS-TEST-209810</DocNumber>
<Title>test1565642497984132107284563611657.txt</Title>
<Owner>ndc\jticatic</Owner>
<CabinetOrFolder>/LASSO/jticatic/WOTRACK/Attachments/</CabinetOrFolder>
<DocType>MaximoAttachment</DocType>
<DocCategory>NS</DocCategory>
<Organization>LASSO</Organization>
<PointOfContact>JLJOHNS5</PointOfContact>
<WebSearch>Community</WebSearch>
<FetchAccess>Normal</FetchAccess>
<Overwrite>Yes</Overwrite>
<FileName>test1565642497984132107284563611657.txt</FileName>
<File>VGhpcyBpcyBhIHRlc3QuIC0gSmFpbWU=</File>
<Keywords>
<MaxName>test1565642497984132107284563611657.txt</MaxName>
<MaxDescription>Maximo Attachment</MaxDescription>
<MaxRemarks>none</MaxRemarks>
<MaxKeyTable>WORKORDER</MaxKeyTable>
<MaxKeyValue>64702</MaxKeyValue>
<MaxUserID>JLJOHNS5</MaxUserID>
<MaxOSUserID>JLJOHNS5</MaxOSUserID>
<MaxDocType>Attachments</MaxDocType>
<MaxPrintBatch>Y</MaxPrintBatch>
<MaxCenter>KSC</MaxCenter>
</Keywords>
</Document>
</DmRequest>

Joe Prevo's picture

Tue, 08/20/2019 - 08:49

Hey Jaime,

That particular protocol is known as the BDL (bulk document loader) protocol. It is a little older but it is still viable. We also have a SOAP protocol if you are interested but BDL definitely still works and it is a little faster than SOAP. I will email you the BDL guide and provide you with direct contact info so we can directly support you if need be. Too, we don't hold you up going back and forth on the forums.

Joe

Tue, 08/20/2019 - 10:43

Joe,

Because I'm using .NET C# in Visual Studio (VS) 2017, I'm considering the SOAP protocol also. I've used WSDL and VS has excellent support for SOAP client. Can you please also send the SOAP guied?

Thank you very much for your kind and timely response.
Jame