VistaDotNetService.DLL
Using VistaDotNetService.DLL for PowerLinks SDK
As a lot of you may have noticed, PowerLinks SDK 2.0 package contains a VistaDotNetService.DLL. This posting will talk about what this DLL does and how it can be used.
Most of the PowerLinks service can be used in Visual Studio .NET projects by importing the WSDL as "Web References". FileManagerservice performs file upload and download via "SOAP with attachment, which is not supported in the .NET framework.
VistaDotNetService.DLL is WebCT's .NET solution for the FileManager service. It provides all functionalities offered by FileManager service and Context service. .NET project using FileManager service should link to this DLL as "References", rather than trying to generate proxy class from the FileManager WSDL.
There are some preconditions for the DLL:
- Microsoft .NET Framework 1.1 is recommended
- Web Service Enhancement 1.0 Service Pack 1 (WSE1.0) should be installed. Its library Microsoft.Web.Services should be referenced in the project to handle DIME support.
Since the DLL provides all Context service methods, there is no need to import the Context service as Web Reference once VistaDotNetService.DLL is added to the .NET project.
You may refer to the javadoc for FileManagerService and ContextService for the list of methods available and method descriptions. Sample codes using the DLL can also be found in the VistaSDKClient package.
 | This article originally authored by JNI on the WebCT DevNet
|