NiceLabel WebSDK Programming Guide
|
|
|
- Madison Austin
- 9 years ago
- Views:
Transcription
1 NiceLabel WebSDK Programming Guide Version Euro Plus d.o.o. All rights reserved. Head Office Euro Plus d.o.o. Poslovna cona A 2 SI-4208 Šenčur, Slovenia tel.: fax: [email protected]
2 Table of Contents 1 Introduction Welcome to the NiceLabel WebSDK User's Guide Inside the NiceLabel WebSDK Documentation Accelerated Introduction Conventions Used In This Guide Product Support WebSDK Overview Why web printing? Components of WebSDK Architectural Overview Technical Structure Server functionality Client functionality Installation System Requirements Installation of NiceLabel WebSDK Installable Components Deployment setup Developer Setup License Certificate Configuration Files Web.config Settings NPSWinServer.config Settings Programming Reference Exception handling PrintServer Web Service NPSService Class FileLocation Class StorageServer Web Service StorageService Class NLWAX Web Browser ActiveX and Java Control NLWAXForm Class NiceLabel WebSDK Sample Application NPSSampleApplication SourceCode Explanation of Sample Application Integration of NLWAX.ocx Server-Side Code Explanation Additional JavaScript files
3 6 Contacts...51 Disclaimer Euro Plus d.o.o. & Niceware International, LLC reserve the right to make changes in specifications and other information contained in this document without prior notice, and the reader should in all cases consult Euro Plus d.o.o. & Niceware International, LLC to determine whether any such changes have been made. The information in this publication does not represent a commitment on the part of Euro Plus d.o.o. or Niceware International, LLC. Euro Plus d.o.o. & Niceware International, LLC shall not be liable for technical or editorial errors or omissions contained herein; nor for incidental or consequential damages resulting from the furnishing, performance, or use of this material. This document contains proprietary information that is protected by copyright. All rights are reserved. No part of this document may be photocopied, reproduced, or translated into another language without the prior written consent of Euro Plus d.o.o. & Niceware International, LLC. Web Addresses: Trademarks NiceLabel, NiceLabel Pro, NiceLabel WebSDK, NiceLabel SDK, and NiceDriver are trademarks or registered trademarks of Euro Plus d.o.o in the U.S.A. and other countries. Niceware is a registered trademark of Niceware International, LLC. Microsoft, Visual Studio, Visual C#, Visual Basic, Windows, and the Windows logo are trademarks or registered trademarks of Microsoft Corporation. Other brands and their products are trademarks or registered trademarks of their respective holders and should be noted as such. 3
4 1 Introduction 1.1 Welcome to the NiceLabel WebSDK User's Guide NiceLabel WebSDK provides all of the tools necessary to integrate label printing with web based applications. These developer tools include Web Services, NiceLabel Print Engine, browser ActiveX and Java control, sample Web applications, and associated documentation. NiceLabel WebSDK allows developers to programmatically access NiceLabel on the server and send print jobs to visitors printers. NiceLabel WebSDK also provides an ActiveX or Java component which will be executed on the client computer (automatically downloaded by the Web browser). This component will transfer the print streams generated on the server to the local ports of the client computer. 1.2 Inside the NiceLabel WebSDK Documentation The following is a brief overview of what to expect in each section of this document. Introduction - Section 1 Familiarizes you with the fundamentals of the NiceLabel WebSDK and the contents of this documentation. This section also includes the following topics: Accelerated Introduction Steps to get up to speed as quickly as possible. Conventions Used in this Guide - Describes conventions used throughout this document. Product Support - How to obtain additional assistance. WebSDK Overview - Section 2 Contains diagrams and explanations of how NiceLabel WebSDK is architected and deployed. Installation - Section 3 Reviews System Requirements and Installation procedures for NiceLabel WebSDK. Reference - Section 4 Supplies syntax, code examples, and related information for each class contained in the NiceLabel WebSDK, including the following main sections: PrintServer Web Service StorageServer Web Service NLWAX Web Browser ActiveX and Java Control Samples - Section 5 4
5 The Samples Section provides brief descriptions of sample web applications included in the NiceLabel WebSDK. 1.3 Accelerated Introduction For an accelerated introduction to NiceLabel WebSDK, follow these steps in sequence: Scan the WebSDK Overview section to gain a solid understanding of how the different tools inter-relate. Review the Installation section. Become familiar with the Programming Reference section. Load the Sample application for a hands-on view of coding practices. As you begin to develop your applications, continue to use the NiceLabel WebSDK documentation as a primary source of information. Utilize the various Support options if you encounter issues not covered in the User's Guide. 1.4 Conventions Used In This Guide Every attempt has been made to ensure that this document is easy to use and understandable for all users. To ensure adequate coverage while being as concise as possible a number of conventions have been utilized throughout this document. This page describes these conventions. Web Service Namespaces When establishing web references to the PrintServer and StorageServer web services, the user is required to create web reference names. These names are used within the project as the base namespaces for the web reference classes. Since these namespaces are defined by the user, but occasionally referenced by name within this document, the following naming conventions have been established: Web Service PrintServer StorageServer Namespace PrintService NiceStorageService For situations where an actual namespace is required (e.g. code examples), the above namespaces will be used. Code Example Conventions Many pages in the Reference section contain an Example section. Many examples use objects based on the NPSService, FileLocation, and StorageService classes and showing their instantiation in each example will only detract from the intent of that example. The following shows the instantiation of each class which should be assumed in all examples. Use of the NicePrintService object Dim NicePrintService As New PrintService.NPSService 5
6 PrintService.NPSService NicePrintService = new PrintService.NPSService; Use of the LabelFile object Dim LabelFile As New PrintService.FileLocation PrintService.FileLocation LabelFile = new PrintService.FileLocation; Use of the LabelStore object Dim LabelStore As New NiceStorageService.StorageService StorageService.StorageService LabelStore = new NiceStorageService.StorageService; A Note on Code Examples Most Examples demonstrate usage of a member as it could exist in an actual application. They are intended solely as examples of proper usage. They are not intended to be a part of any actual application. 1.5 Product Support This section provides information on product support options and how to provide feedback about the NiceLabel WebSDK. NiceLabel Forums For technical questions about the NiceLabel WebSDK, use our NiceLabel Forums at NiceLabel Tutorials For self-guided lessons covering all aspects of label design and using the NiceLabel family of products, utilize our Tutorials at Getting Help from NiceLabel Technical Support Services For current information regarding technical support for the NiceLabel WebSDK, visit 6
7 2 WebSDK Overview 2.1 Why web printing? No manual software installations on workstations Use Web Browser as the main tool Easier maintenance - software updates are performed on server only no need to update workstations Opening a new business model provide (label) printing as service Standard label printing process: 1. Label design (periodically): Label formats are designed in standard label designers (NiceLabel Express, NiceLabel Pro) and stored on a web server. Typical users involved: label designers, system administrators required: NiceLabel label design knowledge; web server access 2. Integration and setting up a label printing solution (one time): All software components are installed and set up properly (to a server and optionally clients), label printing engine is integrated in a 3 rd party app (using web technologies like ASP.NET, web services, etc.). Typical users involved: system administrators, web application programmers required: web app programming knowledge to integrate label printing in HTML, ASP, ASP.NET; NiceLabel programming knowledge; (IIS) web server management control 3. Label printing (daily): From a web application; typical users involved: standard web application users daily required: no special knowledge or user rights; right for (automatic) web component installation (optionally) 2.2 Components of WebSDK NicePrintServer Web Service which is used by the custom Web Application. NiceEngine Used to process label data and generate preview images on the server. NiceDrivers Used to create print streams on the server. NLWAX (NiceLabel Web ActiveX and Java Component) Client side ActiveX and Java component for transferring the print streams to the client physical ports. 7
8 2.3 Architectural Overview 8
9 2.4 Technical Structure 2.5 Server functionality NiceLabel WebSDK is designed primarily to be used by ASP.NET applications, running on Windows operating system under IIS. NiceLabel WebSDK can be installed on the same web server 9
10 (running within IIS) as the web application, but is not required. Web application can use web service interfaces to communicate with NiceLabel WebSDK. The following functionality is provided by the web services: Get List of available printers. StorageServer web service will check the system and return list of all printers installed on the server (where NiceLabel WebSDK is running) Get list of available labels. NPSService web service will return a list of labels (LBL files), that are available on the server and can be used for web printing. Labels can be grouped into hierarchical structure. This structure is part of the web service functionality. Get list of label variables. When the user selects a label to be used, NPSService will return a dataset of variables and their properties that are available for that label. Create Label Preview. When the web application has gathered the variable data from the user, it can make requests to generate the label preview (using the current variable data) Create Print Stream. When the web application has gathered the variable data from the user, it can make request to generate the print stream. In this step, NiceEngine and a Windows printer driver will be used to generate the print stream. The web application is required to pass the following data to NPSService: Label name, Variable data, Printer name, and Quantity. Preview Images and Print streams are stored in a temporary location on the web server (where NiceLabel WebSDK is running). NPSService returns the URLs of these locations to the web application which can then use the files as appropriate. 2.6 Client functionality To enable clients (running only web browser) to print to their local ports (without printer driver being installed), the ActiveX and Java component (NLWAX.ocx) must be installed on the client. The custom web application must create the web page that will automatically install the component on the client computer. To control the NLWAX, the web application must include scripting code in the generated web page. This script will call NLWAX to download the PRN file (provide the URL link) and send it to the local printer. The user can have the option to select which local port will be used for printing. In addition, user will be able to select locally installed printers and print through the printer driver (required for USB printers). Printing without printer drivers on the client computer is possible only to LPT & COM ports (optionally to network ports). For USB printing, a printer driver must be locally installed, and will be used only to pass the generated stream to the printer. 10
11 3 Installation This section provides details for installing NiceLabel WebSDK on deployment web servers as well as development computers. 3.1 System Requirements To ensure adequate performance, NiceLabel WebSDK has the following minimum and recommended system requirements for client and server applications. Please ensure that the target systems meet these requirements before starting installation process. Operating System Requirements The NiceLabel WebSDK is supported on the following platforms. Scenario Operating system Server Microsoft Windows Server 2003 family (or higher) Client Microsoft Windows 98 Second Edition or higher (or higher) Additional Software Requirements Scenario Application Minimum Version Server Internet Information Systems 6.0 Microsoft.NET Framework 2.0 NiceLabel NiceDrivers 4.X Database Engines As required by labels. Client Internet Explorer 5.01 Mozilla based browser 1.7 Hardware Requirements Scenario Required processor Server Pentium 1.6 GHz Client Pentium 90 MHz* Recommended processor Pentium 2.0 GHz or faster Pentium 90 MHz or faster Required RAM *Or the minimum required by the operating system, whichever is higher. Recommended RAM 512 MB* 1.0 GB or higher 32 MB* 96 MB or higher 11
12 3.2 Installation of NiceLabel WebSDK The NiceLabel WebSDK Installation utility is used to install WebSDK on a development computer or on the deployment server. The Setup procedure has two modes of operation to choose from at the beginning of installation: Deployment setup Developer setup * Note: Client Setup is not an installation option as the NLWAX control is the only component that is required on a client ( web site visitor ) computer. This component will automatically be installed by the browser the first time the page is loaded. Both Deployment and Developer installations require the resources of the Microsoft.NET Framework 2.0. If this framework is not currently available it will automatically be installed. Installation will automatically set the ASP.NET version for both virtual directories to Installable Components NicePrintServer Web Services PrintServer web service StorageServer web service Sample Labels NiceEngine Sample Web application Source code for sample application Documentation Deployment setup Deployment setup is the default mode in the wizard which will install the following items to the server: NicePrintServer Web Services (consists of PrintServer and StorageServer web services) NiceEngine User needs to select the target folder for installation. In this folder all the files for both web services will be installed. NiceEngine is installed under the operating system s Shared Files folder (default location is C:\Program Files\Common Files\EuroPlus Shared). 12
13 Several modifications will be made within IIS to enable full functionality of WebSDK. Creation of the NicePrintServer Virtual Directory The NicePrintServer Virtual Directory will be created under the Default Web Site and contains both the PrintServer and StorageServer web services. The installer will set NicePrintServer to use ASP.NET version 2.0. Creation of the NicePrintServerApp Application Pool To allow the PrintServer web services full access to NiceEngine it is required to have NicePrintServer run within a custom Application Pool. The NicePrintServerApp Application Pool is created for this purpose and NicePrintServer is automatically set to use this. Creation of Nice Print Server User Account The NPS_USER user account will be created and automatically added to the IIS_WPG group. The NicePrintServerApp Application Pool will run under this account. When running WebSDK setup in Deployment mode, there will be no programs added to the Start Menu. The only change is in Add/Remove Software where a new entry will be created for NiceLabel WebSDK. Silent setup WebSDK setup can be executed in Silent mode. This can be performed by running the installation program with /s parameter: NiceLabel-WebSDK5.exe /s When running setup in silent mode, no user intervention is required (no windows are opened). The setup will be automatically executed in Deployment mode. This mode of setup can be used for embedding the installation within another web application setup Developer Setup Developer setup mode is intended for installing WebSDK on the Developer s computer. Setup will prompt the user to agree with the license agreement and a readme file will be displayed. 13
14 In addition to the components of the Deployment setup, the following features can optionally be installed: Sample Web Application Source Code for Sample Web Application If the Sample Web Application is selected to be installed it will be created a new Virtual folder is in IIS named NPSSampleApplication. This application can be used to check operation of the web services, to perform web printing, etc. 14
15 3.2.4 License Certificate WebSDK and SDK (PrintEngine) require a license certificate file to operate. Setup utility will check the location of original setup file to find the Certificate.ini file. If this file is not found the following warning screen will be displayed before installation begins: If the Certificate.ini file is found, it will be automatically installed. 3.3 Configuration Files Web.config Settings The web.config file contains the following custom keys whose values are used by the web application. These keys are located under the <configuration><appsettings> section. PrintService.BaseURL <add key="printservice.baseurl" value=" The base URL of the NicePrintServer application. This value is used by NLWAX.ocx to communicate back to the NicePrintServer web service. Localhost must be replaced with the web site name or IP address of the server hosting NicePrintServer. StorageService <add key="storageservice.storageservice" value=" <add key="printservice.npsservice" value=" 15
16 These above two values are used by the web application to locate the NicePrintServer web services. If the web application is hosted on the same server as the webservices then localhost or server name can be used. If these are hosted on different servers then localhost must be replaced with the web site name or IP address of the server hosting NicePrintServer. LabelsPath <add key="labelspath" value="c:\path\to\mylabels> The LabelsPath directive controls the location of the label templates. If you do not want to store your label templates in the NiceLabel-controlled folder, you can override the default location with your own folder. Make sure the NiceLabel WebSDK will have the access permissions to the label files, the labels will be loaded with the same user that is running the NPSService. You can use the syntax containing local disks (e.g. c:\path\to\mylabels) or URL location (e.g. \\server\share\mylabels) NPSWinServer.config Settings The NPSWinServer.config contains settings to configure the print engines. They keys are located under the <configuration><appsettings> section. By default, the.config file is stored in the following folder: "c:\program Files\Common Files\EuroPlus Shared\NPSWinServer.config" PostscriptPrinterName This parameter defines the Postscript printer name that the WebSDK needs to create the PDF file. If you did not specify the Postscript printer name during the installation, you can define it in this.config file. <applicationsettings> <setting name="postscriptprintername" serializeas="string"> <value>linotronic 530 v52.3</value> </setting> </applicationsettings> PrintEngineCount This parameter defines the number of print engines that will initially run. When printing labels in high-throughput and multi-user scenarios, define this option to increase the number of engines. A default number is 1. <applicationsettings> <setting name=" PrintEngineCount" serializeas="string"> <value>10</value> </setting> </applicationsettings> 16
17 4 Programming Reference This section contains reference documentation of the public components that constitute the NiceLabel WebSDK. PrintServer Web Service Documents the public members available in the PrintServer Web Service. StorageServer Web Service Documents the public members available in the StorageServer Web Service. NLWAX Web Browser ActiveX and Java Control Documents the public members exposed by the NLWAX.OCX. 4.1 Exception handling In case of errors during operation of NiceLabel WebSDK Web Services, the exception is thrown to the calling application. The exception caught by the client is always SoapException. Detailed information about the cause of the error is stored in the Details member of the SoapException. This member contains XML document with the following structure: <detail> </detail> <Error xmlns=" <ErrorType>PrintServerException</ErrorType> <ErrorID>1</ErrorID> <ErrorMessage>Message</ErrorMessage> </Error> Application can use the Error detailed attributes for further diagnostics. Exception types Exception type License Exception PrintEngine Exception PrintServer Exception StorageServer Exception Description An error related to the licensing is thrown. Error IDs can be: 1 License not found 2 License not valid 3 License expired There was a problem using the PrintEngine. The ErrorID parameter holds the ErrorID returned from NiceEngine. General error with PrintServer WebService. ErrorID is always -1. General error with StorageServer WebService. ErrorID is always
18 4.2 PrintServer Web Service PrintServer Web Service contains two base classes for handling label printing and storage Classes Class NPSService FileLocation Description NPSService class provides main label printing functionality Provides functionality to manage label files in hierarchical groups NPSService Class NPSService class provides main label printing functionality, including the following key functions: Retrieve the list of available printers on the server Retrieve the list of variables for specific label Create preview image for specific label with variable data Create print stream for specific label with variable data Web Reference NPSService.asmx Signature Public Class NPSService Inherits System.Web.Services.Protocols.SoapHttpClientProtocol public class NPSService : System.Web.Services.Protocols.SoapHttpClientProtocol Example The following example demonstrates instantiating a new object based on the NPSService class. Public NicePrintService As PrintService.NPSService Sub Application_Start(ByVal sender As Object, ByVal e As EventArgs) ' Create new instance of NPSService on application startup NicePrintService = New PrintService.NPSService End Sub PrintService.NPSService NicePrintService; void Application_Start(object sender, EventArgs e) { // Create new instance of NPSService on application startup NicePrintService = new PrintService.NPSService(); } 18
19 NPSService Members Public Constructors Constructors NPSService Constructor Description Initializes a new instance of the NPSService class. Public Sub New() public NPSService() Public Methods Public Methods CleanUpPrintEngine CreatePrintFile CreatePdfFile GetPrinterList GetVariables SetPrintEngineCount TestEngineConnection UpdatePreviewFile Description Releases all instances of PrintEngine running on server. Creates a print stream file for the label. Creates a PDF file for the label Gets all the names of the printers installed on the server. Returns a DataSet which contains all variables for the label Sets up the number of print engines. Tests the connection between PrintServer Web service and PrintEngine. Creates a label preview image for the label CleanUpPrintEngine Method This method releases all instances of PrintEngine running on server. It is recommended to call this method from the Application_End event of the web application. This should be called only when the calling application is the only one using that service. Do not call this method if there are other applications using NPSService Web Service since it can interfere with their use of PrintEngine. Please see SetPrintEngineCount method for information on using multiple instances of PrintEngine. Member of PrintService.NPSService Signature Public Sub CleanUpPrintEngine() public void CleanUpPrintEngine() 19
20 Parameters Parameter Data Type Description none N/A N/A Return Value Data Type Description None/void N/A Exceptions Exception Types PrintServerException Condition Failed cleaning up PrintEngines. Example The following example demonstrates calling the CleanUpPrintEngine method from a web application's Application_End event. (Please review Conventions for notes on the use of the NicePrintService object.) Sub Application_End(ByVal sender As Object, ByVal e As EventArgs) ' Clean up all instances of NiceEngine on application shutdown NicePrintService.CleanUpPrintEngine() End Sub void Application_End(object sender, EventArgs e) { // Clean up all instances of NiceEngine on application shutdown NicePrintService.CleanUpPrintEngine(); } CreatePrintFile Method This Method is creating a print stream file for the label identified by the LabelFile parameter. The print stream is generated for the printer specified in the Printer parameter. The quantity for the print job must be passed in the Quantity parameter. Value for this parameter can include also NiceLabel special values (UNLIMITED, VARIABLE). The name of the print stream file will also include a.prn file. This is used to allow caller application to identify the name of the print stream file uniquely to avoid conflicts when multiple users are using the web service. The Variable data is provided in the parameter dsvariables, which is using the same structure as the return value of the GetVariables method. Member of PrintService.NPSService 20
21 Signature Public Function CreatePrintFile(ByVal Printer As String, _ ByVal LabelFile As PrintService.FileLocation, _ ByVal Quantity As String, _ ByVal PrnFile As String, _ ByVal dsvariables As System.Data.DataSet) As String public string CreatePrintFile(string Printer, PrintServer.FileLocation LabelFile, string Quantity, string PrnFile, System.Data.DataSet dsvariables) Parameters Parameter Data Type Description Printer System.String Name of Printer. LabelFile PrintService.FileLocation Holds label's relative path and file name. Quantity System.String Number of labels to be printed. Also accepts special values (UNLIMITED, VARIABLE). PrnFile System.String Unique name for generated print file. dsvariables System.Data.DataSet Dataset that holds a table of label variables. Return Value Data Type Description System.String Relative path and name of generated print stream file The return value of the method is relative path and name of the generated print stream file. The calling application must use the web service base address (for example ) as the prefix and add the return value. This will point to the location of generated print stream file. Calling application must then take care to download the print stream file and send it to the printer. Exceptions Exception Types PrintServerException Condition An unexpected exception occurs during creation of print file. Provided label file location is not valid. PrintEngineException Engine can not be started. 21
22 Label file can not be opened by the engine. Label file can not be printed. Maximum count of engine s is already opened and in use. Server is busy. Example The following function demonstrates calling the CreatePrintFile method with exception handling. Public Function RetrievePrinterCodeFile(ByVal PrinterName As String, _ ByVal UserFile As PrintService.FileLocation, _ ByVal Quantity As String, _ ByVal FileName As String, _ ByVal Vars As System.Data.DataSet) As String Dim PrinterCode As String Try PrinterCode = NicePrintService.CreatePrintFile(PrinterName, UserFile, Quantity, FileName, Vars) Return PrinterCode Catch ex As Exception PrinterCode = "CreatePrintFile() error: " & ex.message Return PrinterCode End Try End Function public string RetrievePrinterCodeFile(string PrinterName, PrintService.FileLocation UserFile, string Quantity, string FileName, System.Data.DataSet Vars) { string PrinterCode; try { PrinterCode = NicePrintService.CreatePrintFile(PrinterName, UserFile, Quantity, FileName, Vars); return PrinterCode; } catch (Exception ex) { PrinterCode = "CreatePrintFile() error: " + ex.message; return PrinterCode; } } CreatePdfFile Method This Method creates a PDF for the label identified by the LabelFile parameter. The PDF file is created using a PostScript printer driver installed on the server. By default, WebSDK expects the printer driver Apple Color LW 12/660 PS to be installed (this is a standard printer driver that comes with the MS Windows OS). If you wish to use a different printer driver, edit the file "C:\Program Files\Common Files\EuroPlus Shared\NPSWinServer.config". There you will find a node with the name "PostScriptPrinterName", which you should change to reflect the printer that WebSDK will use. If the specified postscript printer is not installed, the CreatePdfFile call will throw an exception. The quantity for the print job must be passed in the Quantity parameter. Value for this parameter can also include special NiceLabel values (UNLIMITED, VARIABLE). 22
23 The Variable data is provided in the parameter dsvariables, which is using the same structure as the return value of the GetVariables method. Member of PrintService.NPSService Signature Public Function CreatePdfFile( ByVal LabelFile As PrintService.FileLocation, _ ByVal Quantity As String, _ ByVal PrnFile As String, _ ByVal dsvariables As System.Data.DataSet) As String public string CreatePdfFile(PrintServer.FileLocation LabelFile, string Quantity, string PrnFile, System.Data.DataSet dsvariables) Parameters Parameter Data Type Description LabelFile PrintService.FileLocation Holds label's relative path and file name. Quantity System.String Number of labels to be printed. Also accepts special values (UNLIMITED, VARIABLE). PrnFile System.String Unique name for generated PDF file. dsvariables System.Data.DataSet Dataset that holds a table of label variables. Return Value Data Type Description System.String Relative path and name of generated print stream file The return value of the method is relative path and name of the generated PDF file. The calling application must use the web service base address (for example ) as the prefix and add the return value. This will point to the location of generated PDF file. Exceptions Exception Types PrintServerException Condition An unexpected exception occurs during creation of print file. Provided label file location is not valid. PostScript printer driver is not installed. 23
24 PrintEngineException Engine can not be started. Label file can not be opened by the engine. Label file can not be printed. Maximum count of engine s is already opened and in use. Server is busy GetPrinterList Method GetPrinterList method returns an array of all the names of the printers installed on the server. Member of PrintService.NPSService Signature Public Function GetPrinterList() As String() public string[] GetPrinterList() Parameters Parameter Data Type Description none N/A N/A Return Value Data Type Description System.String An array of strings containing all printer names. Exceptions Exception Types PrintServerException Condition Printer list can not be retrieved. Note: If the Windows Print Spooler Service is not in Started state this method will not be able to retrieve printer list. Example The following example retrieves the list of printers and binds the returned array to a dropdown list. Note: This example assumes the existence of a DropDownList control named ddlprinterlist. 24
25 Public Sub BindPrinterList() Dim PrinterNames() As String ' Retrieve list of server side printers PrinterNames = NicePrintService.GetPrinterList ' Set array of printer names as the data source for dropdown control ddlprinterlist.datasource = PrinterNames ' Bind data to control ddlprinterlist.databind() End Sub public void BindPrinterList() { PrintService.NPSService NicePrintService = new PrintService.NPSService; string[] PrinterNames; // Retrieve list of server side printers PrinterNames = NicePrintService.GetPrinterList; // Set array of printer names as the data source for dropdown control ddlprinterlist.datasource = PrinterNames; // Bind data to control ddlprinterlist.databind(); } GetVariables Method GetVariables returns a DataSet (.NET Framework DataSet class), which contains all variables for the label, identified by the LabelFile parameters. The dataset contains a single Table with following fields Field Name Name Value Length FixedLength IsMultiline LineLength LineCount FormatID Prompt Field Description Name of the variable. Value of the variable. Maximum length of the variable. Boolean, true when variable requires fixed length data. Boolean, true when variable supports multi-line text. Length of single line, when variable is multi-line Maximum number of lines, when variable is multi-line. Id of the variable format. Check NiceLabel documentation for more info. The prompt text for prompted variable ValueRequired Boolean, true when variable requires a value. Member of PrintService.NPSService Signature 25
26 Public Function GetVariables(ByVal LabelFile As PrintService.FileLocation) As System.Data.DataSet public System.Data.DataSet GetVariables(PrintServer.FileLocation LabelFile) Parameters Parameter Data Type Description LabelFile PrintService.FileLocation Holds label's relative path and file name. Return Value Data Type Description System.Data.DataSet Dataset that holds a table of label variables. Exceptions Exception Types PrintServerException Condition An unexpected exception occurs during variable retrieval. Provided label file location is not valid. PrintEngineException Engine can not be started. Label file can not be opened by the engine. Label file can not be printed. Maximum count of engine s is already opened and in use. Server is busy. Example The following example retrieves the dataset of variables for a specific label. Public Function GetVars(ByVal LabelFile As PrintService.FileLocation) As System.Data.DataSet Dim LabelVars As New System.Data.DataSet ' Retrieve table of variables from label LabelVars = NicePrintService.GetVariables(LabelFile) ' Return retrieved dataset Return LabelVars End Function public System.Data.DataSet GetVars(PrintService.FileLocation LabelFile) 26
27 { System.Data.DataSet LabelVars = new System.Data.DataSet(); // Retrieve table of variables from label LabelVars = NicePrintService.GetVariables(LabelFile); // Return retrieved dataset return LabelVars; } SetPrintEngineCount Method This method is used to set up the number of print engines that will be used by the NPSService for concurrent printing/generation of print streams. It is recommended to call this method in the Application_Start event, in case the application is the only one using the WebSDK. Please see CleanUpPrintEngine method for information on cleaning up PrintEngine instances. Member of PrintService.NPSService Signature Public Sub SetPrintEngineCount(ByVal enginecount As Integer) public void SetPrintEngineCount(int enginecount) Parameters Parameter Data Type Description enginecount System.Int32 Number of simultaneous instances of PrintEngine to allow. Return Value Data Type Description None/void N/A Exceptions Exception Types PrintEngineException Condition An error occurred with PrintEngine. Example The following example demonstrates calling the SetPrintEngineCount method from a web application's Application_Start event. (Please review Conventions for notes on the use of the NicePrintService object.) 27
28 Sub Application_Start(ByVal sender As Object, ByVal e As EventArgs) ' Create new instance of NPSService on application startup NicePrintService = New PrintService.NPSService ' Set number of PrintEngines to 10 NicePrintService.SetPrintEngineCount(10) End Sub void Application_Start(object sender, EventArgs e) { } // Create new instance of NPSService on application startup NicePrintService = new PrintService.NPSService(); // Set number of PrintEngines to 10 NicePrintService.SetPrintEngineCount(10); TestEngineConnection Method This method can be called to test the connection between PrintServer web service and PrintEngine Member of PrintService.NPSService Signature Public Function TestEngineConnection() as String public string TestEngineConnection() Parameters Parameter Data Type Description none N/A N/A Return Value Data Type System.String Description Return "0" if the test is OK, "-1" if the Engine's TestConnection method fails, or a message of the exception that might be thrown during the test. Exceptions Exception Types Condition 28
29 PrintEngineException Failed connecting with PrintEngine UpdatePreviewFile Method This method creates a label preview image for the label, identified by the LabelFile parameter. The name of the preview image will have the TargetPath prepended. This is used to allow caller application to identify the name of the preview image uniquely to avoid conflicts when multiple users are using the web service. The Variable data is provided in the parameter dsvariables, which is using the same structure as the return value of the GetVariables method. PreviewWidth and PreviewHeight define the size of the preview image generated. LabelKind defines the part of the label design which needs to be shown in the generated image. LabelKind values Meaning 1 Main label 2 Header label 3 Tail label LabelSide defines which side of the label to show when double side printing is used. LabelSide values Meaning 0 Front Side 1 Back Side When HasBorder parameter is set to true, the preview image will include a border around the label. If false, border is not generated. Member of PrintService.NPSService Signature Public Function UpdatePreviewFile(ByVal Printer As String, _ ByVal LabelFile As PrintService.FileLocation, _ ByVal TargetPath As String, _ ByVal dsvariables As System.Data.DataSet, _ ByVal PreviewWidth As System.Int32, _ ByVal PreviewHeight As System.Int32, _ ByVal LabelKind As System.Int32, _ ByVal LabelSide As System.Int32, _ ByVal HasBorder As Boolean) As String public string UpdatePreviewFile(string Printer, PrintServer.FileLocation LabelFile, 29
30 string TargetPath, System.Data.DataSet dsvariables, System.Int32 PreviewWidth, System.Int32 PreviewHeight, System.Int32 LabelKind, System.Int32 LabelSide, bool HasBorder) Parameters Parameter Name Data Type Description Printer System.String Name of Printer. LabelFile PrintService.FileLocation Holds label's relative path and file name. TargetPath System.String Unique value added to file name. dsvariables System.Data.DataSet Dataset that holds a table of label variables. PreviewWidth System.Int32 Width of generated preview. PreviewHeight System.Int32 Height of generated preview. LabelKind System.Int32 Main, Header, or Tail Label LabelSide System.Int32 Front or Back HasBorder System.Boolean Determines if a border is added around preview image. Return Value Data Type Description System.String Relative path and name of generated print stream file The return value of the method is relative path and name of the generated preview image. The calling application must use the web Service base address (for example ) as the prefix and add the return value. This will point to the location of generated preview image. Exceptions Exception Types Condition PrintServerException PrintEngineException Provided label file location is not valid. Engine can not be started. Label file can not be opened by the engine. Label preview can not be generated. Maximum count of engine s is already opened and in use. Server is busy. Example 30
31 The following example shows a user function which calls UpdatePreviewFile to generate an image file on the server and then loads the generated image file into an Image control. Note: This Example assumes the existence of an Image control named imgpreview. Public Sub DisplayPreviewImage(ByVal PrinterName As String, _ ByVal LabelFile As FileLocation, _ ByVal SessionName As String, _ ByVal LabelVars As Dataset) As String Dim PreviewFileName As String PreviewFileName = NicePrintService.UpdatePreviewFile(PrinterName, LabelFile, _ SessionName, LabelVars, 400, 600, 1, 0, True) imgpreview.imageurl = "\SampleSession\" & PreviewFileName imgpreview.alternatetext = PreviewFileName End Sub public string DisplayPreviewImage(string PrinterName, PrintService.FileLocation LabelFile, string SessionName, System.Data.DataSet LabelVars) { string PreviewFileName; PreviewFileName = NicePrintService.UpdatePreviewFile(PrinterName, LabelFile, SessionName, LabelVars, 400, 600, 1, 0, true); imgpreview.imageurl = "\\SampleSession\\" + PreviewFileName; imgpreview.alternatetext = PreviewFileName; } FileLocation Class FileLocation is a custom object that manages the current label s LabelGroup and LabelFileName properties. Web Reference NPSService.asmx Signature Public Class FileLocation Inherits System.Object public class FileLocation : System.Object Example The following example demonstrates instantiating a new object based on the NPSService class. Public LabelFile As PrintService.FileLocation Sub Application_Start(ByVal sender As Object, ByVal e As EventArgs) ' Create new instance of FileLocation on application startup LabelFile = New PrintService.FileLocation End Sub 31
32 PrintService.FileLocation LabelFile; void Application_Start(object sender, EventArgs e) { // Create new instance of FileLocation on application startup LabelFile = new PrintService.FileLocation(); } FileLocation Members Public Constructors Constructors FileLocation Constructor Description Initializes a new instance of the FileLocation class. Public Sub New() public FileLocation() Public Properties Property LabelFileName LabelGroup Description Gets or sets the current label file. Gets or sets the current label directory LabelFileName Property LabelFileName sets or returns the name of the current label file. This value does not include the file path (see LabelGroup property for handling that value). Member of PrintService.FileLocation Signature Public Property LabelFileName() As String public string LabelFileName { set; get; } Parameters Parameter Data Type Description none N/A N/A Property Value 32
33 Data Type Description System.String The name of the current label file (no path prefix). Exceptions Exception Type Condition PrintServerException Failed getting/setting label file name. Example The following example demonstrates setting the label file name. (Please review Conventions for notes on the use of the LabelFile object.) LabelFile.LabelFileName = Sample.lbl LabelFile.LabelFileName = Sample.lbl ; LabelGroup Property LabelGroup sets or returns the path of the current label file. This value does not include the file name (see LabelGroup property for handling that value). Member of PrintService.FileLocation Signature Public Property LabelGroup() As String public string LabelGroup { set; get; } Parameters Parameter Data Type Description none N/A N/A Property Value Data Type Description System.String The folder path of the current label. Exceptions Exception Types Condition 33
34 PrintServerException Failed getting/setting label group. Example The following example demonstrates setting the label file path and name. (Please review Conventions for notes on the use of the NicePrintService object.) LabelFile.LabelGroup = LabelFiles\SampleLabels LabelFile.LabelGroup = LabelFiles\\SampleLabels ; 4.3 StorageServer Web Service The StorageServer Web Service contains classes that provide functionality to retrieve information about label files stored on the server. The labels can be organized in hierarchical structure (folders). The service provides methods for: Retrieve the list of label workspaces (folders) Retrieve the list of labels for selected workspace Classes Class Description StorageService Maintains organization of Labels and LabelGroups StorageService Class Labels are grouped in a hierarchical structure on the server. The structure is the same as the file system folder structure. If no label grouping is used, the parameter can be empty. If labels are grouped into multiple groups, the parameter can define groups and subgroups. Example of label storage structure: Group1 SubGroup1 SubGroup2 Group2 SubGroup1 SubGroup2 An empty value can be passed for the LabelGroup parameter when label files do not belong to a group. When passing value "Group1" for LabelGroup, label file names in Group1 are returned. If passing "Group2/SubGroup4", label file names in SubGroup4 of Group2 will be returned. 34
35 Web Reference StorageService.asmx Signature Public Class StorageService Inherits System.Web.Services.Protocols.SoapHttpClientProtocol public class StorageService : System.Web.Services.Protocols.SoapHttpClientProtocol Example The following example demonstrates instantiating a new object based on the StorageService class. Public LabelStore As NiceStorageService.StorageService Sub Application_Start(ByVal sender As Object, ByVal e As EventArgs) ' Create new instance of NiceStorageService on application ' startup LabelStore = New NiceStorageService.StorageService End Sub NiceStorageService.StorageService LabelStore; void Application_Start(object sender, EventArgs e) { // Create new instance of NiceStorageService on application // startup LabelStore = new NiceStorageService.StorageService (); } StorageService Members Public Constructors Constructors StorageService Constructor Description Initializes a new instance of the StorageService class. Public Sub New() public StorageService() Public Methods Method Description 35
36 GetLabelGroups GetLabelList Returns a list of workgroups (structured folders). Returns a list of Labels in a specific workgroup GetLabelGroups Method This method returns an array of relative paths to all workgroups. Each workgroup can contain a collection of The following list exemplifies a collection of possible return values: Shipping Shipping\Retailers Shipping\Retailers\North America Shipping\Retailers\Europe Shipping\Distribution Centers Shipping\Distribution Centers\North America Shipping\Distribution Centers\Europe Shipping\Others Products Products\Product ABC Product s\product XYZ Member of NiceStorageService.StorageService Signature Public Function GetLabelGroups() As String() public string[] GetLabelGroups() Parameters Parameter Data Type Description none N/A N/A Return Value Data Type Description System.String String array of relative paths of workspaces. Exceptions Exception Types Condition StorageServerException Failed to retrieve workspaces. 36
37 Example The following example demonstrates retrieving the collection of workspaces. Dim NiceLabelGroups as String() NiceLabelGroups = NiceStorageService.GetLabelGroups String[] NiceLabelGroups; NiceLabelGroups = NiceStorageService.GetLabelGroups(); GetLabelList Method The GetLabelList method returns an array of label files in the current workgroup. Member of NiceStorageService.StorageService Signature Public Function GetLabelList(ByVal labelgroup As String, ByVal browsesubgroups As Boolean) As String() public string[] GetLabelList(string labelgroup, bool browsesubgroups) Parameters Parameter Data Type Description labelgroup String/string The name of the workspace to retrieve label list from. browsesubgroup Boolean/bool True/False value determining whether of not labels from sub-groups should be returned. Return Value Data Type Description System.String String array of label file names in specified of workspace. Exceptions Exception Types Condition 37
38 StorageServerException Failed retrieving label list. Example The following example demonstrates retrieving the label files from a specified workspace. Dim NiceLabelLists as String() NiceLabelList = NiceStorageService.GetLabelList( Shipping\Retailers\North America, False) String[] NiceLabelList; NiceLabelList = NiceStorageService.GetLabelList( Shipping\\Retailers\\North America, false); 4.4 NLWAX Web Browser ActiveX and Java Control NiceLabel WebSDK ActiveX and Java component (NLWAX) is used for client side printing. This component is automatically installed by the web browser, and is a required part of the web based printing application. NLWAX handles transferring the print files generated by the NicePrintServer web services to the local printers. It can be incorporated into a visual component on the page, or used as a runtime component called from the web browser. When the page is to be loaded in the browse, the local computer will be checked if NLWAX is already installed. If it is not present, or locally installed version is older than the one required by the page, the component will be installed. NLWAX Component is signed by Euro Plus digital signature; user must set their browser security settings to allow installation of signed ActiveX and Java components. The NLWAX Web Browser ActiveX and Java Control provides accessibility to client-side resources. This control communicates directly with the NicePrintServer web service and the local printer drivers and ports. This control provides the following functionality: Sends print stream to client s printer ports Retrieves list of client s installed printers Retrieves list of printer ports associated with the client s installed printers. Classes Class Description NLWAXForm Required to gain access to client-side printers and ports NLWAXForm Class NLWAXForm class gains access to client-side resources to enable printing on local printers from the server. 38
39 Since all methods of NLWAXForm need access to client resources, they have to be called from client-side scripting. All code examples for NLWAXForm Class will demonstrate using client-side JavaScipt. Reference NLWAX Library Example Markup <object classid="clsid:ecbb0b73-fdf4-4dbd-b7c9-8450c2d9fb66" codebase="./nlwax.ocx#version=1,0,0,34" width="1" height="1" id="nlwaxform" name="nlwaxform"> </object> NLWAXForm Members Public Methods Method GetPortList GetPrinterList SendToPort SendToPrinter Description Retrieves a list of ports on client PC. Retrieves a list of printers on client PC. Sends print stream to local port. Sends print stream to local printer. Public Properties Property BaseURL Description Contains base URL of NicePrintServer GetPortList Method Returns an XML structured string containing an unordered list of all available ports on client PC. The following demonstrates the structure of the return value: <Ports> <Port> <PortName>COM1:</ PortName > </Port> <Portr> <PortName>COM2:</ PortName > </Port> </Ports> Member of NLWAX. NLWAXFormClass 39
40 Signature Function GetPortList() As String public virtual new System.String GetPortList ( ) Parameters Parameter Data Type Description none N/A N/A Return Value Data Type Description System.String XML structured string containing port names Example This example demonstrates calling the GetPortList method. [JavaScript] var WAX = document.getelementbyid('nlwaxform'); var portlist = WAX.GetPortList(); GetPrinterList Method Returns an XML structured string containing an unordered list of all installed printers on the client PC along with its associated port. The following demonstrates the structure of the return value: <Printers> <Printer> <DeviceName>Printer1Name</DeviceName> <Port>LPT1:</Port> </Printer> <Printer> <DeviceName>Printer2Name</Printer> <Port>LPT2:</Port> </Printer> </Printers> Member of NLWAX. NLWAXFormClass Signature Function GetPrinterList() As String public virtual new System.String GetPrinterList ( ) 40
41 Parameters Parameter Data Type Description None N/A N/A Return Value Data Type Description Example System.String XML structured string containing print names and associated ports. The following example demonstrates retrieving the label files from a specified workspace. [JavaScript] var WAX = document.getelementbyid('nlwaxform'); var printerlist = WAX.GetPrinterList(); SendToPort Method SendToPort method is used to send the print stream file specified by the PrintFile parameter to the Port, identified by the PortName parameter. PrintFile is the relative file to the web service base URL, which must be set by the BaseURL property. The NLWAX component will download the print stream file and send it to the port. When IPPort number is greater than 0, the PortName represents a TCP/IP address. In this case TCP/IP connection to the PortName:IPPort is made and print stream is sent to this destination. When NLWAX is sending files to specific port, it first checks the installed printers, if there is any printer already connected to the port. If so, it is using that driver in passthrough mode to transfer file to the printer (ports are locked, when a printer driver is using it). In the printer is installed, the LabelName parameter is used to identify the print job in the print spooler. If there is no printer used on the specified port, NLWAX will send the print file directly to the port. Member of NLWAX. NLWAXFormClass Signature Sub SendToPort(LabelName As String, PrintFile As String, PortName As String, IPPort As Long) public virtual new void SendToPort ( System.String LabelName, System.String PrintFile, System.String PortName, System.Int32 IPPort ) Parameters 41
42 Parameter Data Type Description LabelName String/string File name of label to print. PrintFile String/string Print stream file name previously generated by the NicePrintService.CreatePrintFile method PortName String/string Port name as it appears on client PC. IPort Long/long Port number. Return Value Data Type Description None/void N/A Example The following example demonstrates sending a print file to the LPT1 port. [JavaScript] var WAX = document.getelementbyid('nlwaxform'); WAX.SendToPort( Test.lbl, printouts/123test.prn, LPT1:, 0); SendToPrinter Method The SendToPrinter method is used to send the print stream file, specified by the PrintFile parameter to the printer, identified by the PrinterName parameter. PrintFile is the relative file from the web service base URL, which must be set by the BaseURL property. Component will download the print stream file, and send it to the printer in passthrough mode (directly to the spooler). The LabelName parameter will be used to identify the print job in the print spooler. Member of NLWAX.NLWAXFormClass Signature Sub SendToPrinter(LabelName As String, PrintFile As String, PrinterName As String) public virtual new void SendToPrinter ( System.String LabelName, System.String PrintFile, System.String PrinterName ) Parameters Parameter Data Type Description 42
43 LabelName String/string File name of label to print. PrintFile String/string Print stream file name previously generated by the NicePrintService.CreatePrintFile method PrinterName String/string Printer name as it appears on client PC. Return Value Data Type Description None/void N/A Example The following example demonstrates retrieving the label files from a specified workspace. [JavaScript] var WAX = document.getelementbyid('nlwaxform'); WAX.SendToPrinter( Test.lbl, printouts/123test.prn, ZEBRA LP 2844-Z ); BaseURL Property This property is used to set the base URL for NPSService. NLWAX is using this property later to properly download the print files and to verify the connection with NPSService correctly. Member of NLWAX. NLWAXFormClass Signature Property BaseURL As String public virtual new string BaseURL [ get, set ] Parameters Parameter Data Type Description none N/A N/A Property Value Data Type Description System.String Gets or sets the BaseURL value. 43
44 Example The following example demonstrates passing the base URL of your installation of NiceLabel WebSDK to NLWAX. [JavaScript] var WAX = document.getelementbyid('nlwaxform'); WAX.BaseURL = ; Example of NLWAX Web Browser Control <script type="text/javascript"> if (BrowserDetect.browser == 'Explorer') { //<!-- NLWAX ActiveX control --> document.write( "<object classid=\"clsid:ecbb0b73-fdf4-4dbd-b7c9-8450c2d9fb66\"" +"codebase=\"./nlwax.ocx#version=1,0,0,34\"" +"width=\"1\"" +"height=\"1\"" +"id=\"nlwaxform\"" +"name=\"nlwaxform\">" +"</object>"); }else{ document.write( "<applet name=\"nlwaxform\"" +"code=\"nlwax.userinterface\"" +"WIDTH=0 HEIGHT=0 " +"ARCHIVE=\"./nlwax.jar\">" +"</applet>"); } </script> 44
45 5 NiceLabel WebSDK Sample Application NiceLabel WebSDK provides a sample application which demonstrates how to perform various common tasks. This sample includes solution, project files and complete source code. By default, this application is installed in the <Program Files>\Euro Plus\NiceLabel WebSDK\SampleApplication\ folder. It will also be installed as a web application under the Default Web Site in IIS. You can access it using this link: NPSSampleApplication A Visual Studio 2005 web application that demonstrates using web service calls, ASP.NET server controls, HTML elements, and client-side JavaScript to achieve client-side printing SourceCode Contains complete source code for the WebSDKSampleApp solution. 5.2 Explanation of Sample Application Integration of NLWAX.ocx The NLWAX ActiveX and Java Control is implemented in the NLWAX.ascx Web User Control. It is not required to incorporate NLWAX.ocx in this way, but is implemented as such based on the design consideration of compartmentalizing the needed controls, server-side methods, and clientside methods in one object. Whether NLWAX.ocx is implemented as part of a User Control or is used directly on the web page the following HTML Object tag is required: <object classid="clsid:ecbb0b73-fdf4-4dbd-b7c9-8450c2d9fb66" codebase="./nlwax.ocx#version=1,0,0,34" width="1" height="1" id="nlwaxform" name="nlwaxform"> </object> The classid and codebase properties must maintain the values as shown above. The width, height, id, and name properties can be modified as needed Usage of Controls in NLWAX.ascx Web User Control <asp:hiddenfield> - A number of ASP.Net HiddenField controls are utilized to pass user data between server-side and client-side code. <Object> As explained in the Integration of NLWAX.ocx section, this control is a required component that handles client-side printing. <Script> This control includes the NLWAXfunctions.js external JavaScript file. 45
46 Explanation of NLWAXFunctions.js NLWAXFunctions.js is an external JavaScript file that contains client-side scripts which call NLWAX.ocx to retrieve client information (e.g. lists of installed printers and available ports on the client s machine) as well as passing the print stream to the client s printer. The main method performs four functions: LoadPrinterList This calls NLWAX.ocx s GetPrinterList method. The return value is then stored in the hdfprinterlist HiddenField making it accessible from server-side code. LoadPortList - This calls NLWAX.ocx s GetPortList method. The return value is then stored in the hdfportlist HiddenField making it accessible from server-side code. Sets NLWAX.ocx s BaseUrl property This must be set for the component to successfully verify web service connection and get the full URL name to the print file. The server-side code retrieves this value from the Web.Config file and populates hdfbaseurl. This script then takes that value and passes it to NLWAX.ocx. Check if printing has been requested When the value of hdfisprinting is true When the user clicks on the Print button (<asp:button id= btnprint > in default.aspx) a series of events occur: The btnprint.click event passes the print quantity to the public Print function in NLWAX.ascx. NLWAX.ascx calls the CreatePrintFile method of NLWAX.ocx passing the appropriate. NLWAX.ocx generates the print stream, writes it to a temporary file on the server, and returns the location and name of this file. NLWAX.ascx stores the returned file name in a HiddenField and sets the value of hdfisprinting to true At this point the JavaScript recognizes the hdfisprinting is true and calls either the SendToPrinter or SendToPort method of NLWAX.ocx. SendToPrinter utilizes the installed driver on the client PC and sends the data to the associated port. SendToPort sends the print data to the port Server-Side Code Explanation Default.aspx.vb Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) If Not Page.IsPostBack Then NLWAX1.BaseURL = ConfigurationManager.AppSettings("PrintService.BaseURL") Passes the BaseURL value from web.config to NLWAX.ascx. This value is used by NLWAX.ocx for retrieving preview image and printer code files from the server. NLWAX1.SessionName = Now.Ticks.ToString Generates a unique SessionName and passes that to NLWAX.ascx. This value is used to differentiate between multiple concurrent sessions. PopulateLabelTree(NLWAX1.LabelGroups) Populates a TreeView control with label groups and labels retrieved from the StorageService web service. 46
47 End If End Sub PopulateDriversTree(NLWAX1.Printers) Populates a TreeView control with a list of Drivers available on the server. This list is retreived from the NicePrintService web service. Protected Sub btnprint_click(byval sender As Object, ByVal e As System.EventArgs) NLWAX1.Print(CInt(txtQuant.Text)) Initiates printing sequence. Please see Explanation of NLWAXFunctions.js above for a detailed explanation of this process. End Sub btnreprint.visible = True Enables the option of reprinting. Protected Sub btnreprint_click(byval sender As Object, ByVal e As System.EventArgs) NLWAX1.Print(txtQuant.Text, True) Initiates printing sequence flagging that this is a reprint request. A reprint simply resends a previously generated print stream to the printer. End Sub Protected Sub trvlabels_selectednodechanged(byval sender As Object, _ ByVal e As System.EventArgs) NLWAX1.LabelGroup = FolderPath NLWAX1.Label = trvlabels.selectednode.text These two statements persist the selected label name and location in session variables for later use. End Sub Protected Sub grvvars_rowupdating(byval sender As Object, _ ByVal e As System.Web.UI.WebControls.GridViewUpdateEventArgs) Dim ds As Data.DataSet = NLWAX1.Variables ds.tables(0).rows(e.rowindex).item(1) = _ CType(grvVars.Rows(e.RowIndex).FindControl("txtEditVal"), TextBox).Text ds.acceptchanges() NLWAX1.Variables = ds This routine retreives the variables (as a dataset) from the label, updates the changes, and returns the dataset to update the label. End Sub Private Sub GetPreview() Dim url As String = "" url = NLWAX1.GetPreviewUrl(imgPreview.Width.Value, _ imgpreview.height.value, NLWAX.LabelKind.MainLabel, NLWAX.LabelSide.Front) This calls NicePrintService s GetPreviewUrl which generates an image of the label and returns the URL of the file. Dim ErrorMsg As String = url.substring(url.lastindexof("/") + 1) If the web service encounters an error generating the image it will return an error description in place of the file name. The error message will always start with an asterick (*). If ErrorMsg.StartsWith("*") Then imgpreview.alternatetext = ErrorMsg lbllabel.text = ErrorMsg Displays error message on page. Else imgpreview.imageurl = url 47
48 End Sub NLWAX.ascx.vb imgpreview.alternatetext = NLWAX1.Label lbllabel.text = NLWAX1.Label Updates image control and label on web page to reflect new image. End If #Region "Public Enums" Public Enum PrintType Public Enum LabelKind Public Enum LabelSide These are convenience Enums used as parameters by some of the methods in this class. #Region "Public Properties" Public ReadOnly Property IsConnected() As String Get Return NicePrintService.TestEngineConnection Returns the result of NicePrintService testing its connection with the Print Engine. End Get End Property Public Property BaseURL() As String Get Return Session("BaseURL") Gets or the BaseURL from a session variable End Get Set(ByVal value As String) hdfbaseurl.value = value Session("BaseURL") = value Saves the BaseURL in a HiddenField for later use by client-side script and holds the value in a session variable. End Set End Property Public Property SessionName() As String Get Return Session("SessionName") Gets the SessionName held in a session variable End Get Set(ByVal value As String) Session("SessionName") = value Holds the SessionName in a session variable End Set End Property Public ReadOnly Property LabelGroups() As Object Get Return NPSLabelStorage.GetLabelGroups Returns the collection of label groups retrieved from the LabelStorage web service End Get End Property Public Property LabelGroup() As String Get Return Session("LabelGroup") Gets the current Label Group from a session variable End Get Set(ByVal value As String) Session("LabelGroup") = value Holds the current Label Group in a session variable End Set End Property 48
49 Public ReadOnly Property Labels(ByVal LabelGroup As String, _ ByVal Recursive As Boolean) Get Return NPSLabelStorage.GetLabelList(LabelGroup, Recursive) Returns a list of labels contained in the current LabelGroup from LabelStorage End Get End Property Public Property Label() As String Get Return hdflabel.value Returns name of current label held in a HiddenField End Get Set(ByVal value As String) hdflabel.value = value Saves the value in a HiddenField Session("dsVars") = Nothing Session("PreviewUrl") = Nothing Clear out any previous label data End Set End Property Private ReadOnly Property FileLocation() As PrintService.FileLocation Get FileLocation.LabelFileName = Label FileLocation.LabelGroup = LabelGroup Return FileLocation Returns current label and location as a FileLocation object End Get End Property Public ReadOnly Property Printers() As String() Get Dim obj() As String obj = NicePrintService.GetPrinterList Array.Sort(obj) Return obj Retrieves a collection of printers from NicePrintService web service. End Get End Property Public Property Printer() As String Private Get Return hdfprinter.value Retreives the name of the current printer from a HiddenField End Get Set(ByVal value As String) hdfprinter.value = value Stores the name of the current printer in a HiddenField End Set End Property Public Property Variables() As DataSet Get If Session("dsVars") Is Nothing Then Session("dsVars") = NicePrintService.GetVariables(FileLocation) End If Return Session("dsVars") Returns dataset of variables. If it is not currently stored in a session variable the web service is called to retrieve the dataset. End Get Set(ByVal value As DataSet) Session("dsVars") = value Session("PreviewUrl") = Nothing Stores current variables dataset in a session variable and clears out any previous preview image. End Set End Property 49
50 #End Region #Region "Public Functions" Public Function GetPreviewUrl(ByVal Width As Int32, ByVal Height As Int32, _ ByVal Kind As LabelKind, ByVal Side As LabelSide) As String If Session("PreviewUrl") Is Nothing Then Dim s As String s = BaseURL & NicePrintService.UpdatePreviewFile(Printer, FileLocation, _ SessionName, Variables, Width, Height, Kind, Side, True) Session("PreviewUrl") = s End If Return Session("PreviewUrl") Returns URL of preview image. If it is not currently stored in a session variable the web service is called to generate a new image and return the URL. End Function Public Function GetVarFormatName(ByVal ID As Long) As String Select Case ID Case 0 Return "All" Case 1 Return "Numeric" End Select This function returns the variable s format name based on provided ID End Function Public Function Print(ByVal Quantity As Int32, _ Optional ByVal IsReprint As Boolean = False) As Boolean If Not IsReprint Then hdffile.value = CreatePrintFile(Quantity) If this is not a reprint the CreatePrintFile method is called to generate a new print steam. End If hdfisprinting.value = "true" The hdfisprinting HiddenField is set to true. This will trigger the JavaScript to send the print stream to the printer. Return True End Function Private Function CreatePrintFile(ByVal Quantity As String) As String Dim sfile As String sfile = NicePrintService.CreatePrintFile(Printer, FileLocation, Quantity, SessionName, Variables) Return sfile Calls NicePrintService s CreatePrintFile method which generates a new print stream and returns its location. End Function #End Region Additional JavaScript files Global.js, printer.js, and port.js contain a variety of client-side methods. These are largely used for manipulating the user interface and storing user specific data in HiddenFields for later use. 50
51 6 Contacts Head Office Euro Plus d.o.o. Poslovna cona A 2 SI-4208 Šenčur Slovenia Tel: Fax: [email protected] North American Office Niceware International, LLC 200 South Executive Drive, Suite 200 Brookfield, Wisconsin USA Telephone: (888) 894-NICE (6423) Fax: (262) [email protected] German Office NiceLabel Germany GMBH Liebknechtstr Obertshausen Tel:+49 (0) [email protected] China Office 中 国 51
52 GARDEN BUSINESS CENTER Julu Rd. 889, Building 23, Office 8311 Shanghai , PR China 电 话 : 传 真 : [email protected]
NiceLabel Quick Start Guide
NiceLabel Software NiceLabel Quick Start Guide Euro Plus d.o.o. Niceware International, LLC English Edition Rev-0903 www.nicelabel.com COPYRIGHTS Copyright 1995-2009 Euro Plus d.o.o. All rights reserved.
NiceLabel Software for Microsoft Windows Terminal Services and Citrix MetaFrame
www.nicelabel.com [email protected] NiceLabel Software for Microsoft Windows Terminal Services and Citrix MetaFrame White Paper Version 20072711-08 2007 Euro Plus & Niceware International. All rights
NiceLabel Solution Architect User Guide
NiceLabel Solution Architect User Guide English Edition Rev-1305 2013 Euro Plus d.o.o. All rights reserved. Euro Plus d.o.o. Poslovna cona A 2 SI-4208 Šenčur, Slovenia tel.: +386 4 280 50 00 fax: +386
Important. Please read this User s Manual carefully to familiarize yourself with safe and effective usage.
Important Please read this User s Manual carefully to familiarize yourself with safe and effective usage. About This Manual This manual describes how to install and configure RadiNET Pro Gateway and RadiCS
MGC WebCommander Web Server Manager
MGC WebCommander Web Server Manager Installation and Configuration Guide Version 8.0 Copyright 2006 Polycom, Inc. All Rights Reserved Catalog No. DOC2138B Version 8.0 Proprietary and Confidential The information
Version 3.8. Installation Guide
Version 3.8 Installation Guide Copyright 2007 Jetro Platforms, Ltd. All rights reserved. This document is being furnished by Jetro Platforms for information purposes only to licensed users of the Jetro
InventoryControl for use with QuoteWerks Quick Start Guide
InventoryControl for use with QuoteWerks Quick Start Guide Copyright 2013 Wasp Barcode Technologies 1400 10 th St. Plano, TX 75074 All Rights Reserved STATEMENTS IN THIS DOCUMENT REGARDING THIRD PARTY
Installation and Deployment
Installation and Deployment Help Documentation This document was auto-created from web content and is subject to change at any time. Copyright (c) 2016 SmarterTools Inc. Installation and Deployment SmarterStats
Sentinel Installation Guide
Installation Guide All rights reserved. Neither this documentation nor any part of it may be reproduced, stored in a retrieval system, translated into another language, or transmitted in any form or by
Silect Software s MP Author
Silect MP Author for Microsoft System Center Operations Manager Silect Software s MP Author User Guide September 2, 2015 Disclaimer The information in this document is furnished for informational use only,
IKEA ULL Manager Administration Guide
www.nicelabel.com [email protected] IKEA ULL Manager Administration Guide Version 20150623-01 2012-2015 Euro Plus. All rights reserved. www.nicelabel.com Head Office Euro Plus d.o.o. Poslovna cona A2
TIBCO Hawk SNMP Adapter Installation
TIBCO Hawk SNMP Adapter Installation Software Release 4.9.0 November 2012 Two-Second Advantage Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR
Preparing Your Network for an MDsuite Installation
Preparing Your Network for an MDsuite Installation Professional Data Services 1632 East 23 rd Avenue Hutchinson, KS 67502 Toll-free: 800.875.0480 Fax: 858.486.5493 www.mdsuite.com Introduction This document
Asta Powerproject Enterprise
Asta Powerproject Enterprise Overview and System Requirements Guide Asta Development plc Kingston House Goodsons Mews Wellington Street Thame Oxfordshire OX9 3BX United Kingdom Tel: +44 (0)1844 261700
Interworks. Interworks Cloud Platform Installation Guide
Interworks Interworks Cloud Platform Installation Guide Published: March, 2014 This document contains information proprietary to Interworks and its receipt or possession does not convey any rights to reproduce,
Issue Tracking Anywhere Installation Guide
TM Issue Tracking Anywhere Installation Guide The leading developer of version control and issue tracking software Table of Contents Introduction...3 Installation Guide...3 Installation Prerequisites...3
INSTALLING MICROSOFT SQL SERVER AND CONFIGURING REPORTING SERVICES
INSTALLING MICROSOFT SQL SERVER AND CONFIGURING REPORTING SERVICES TECHNICAL ARTICLE November 2012. Legal Notice The information in this publication is furnished for information use only, and does not
TANDBERG MANAGEMENT SUITE 10.0
TANDBERG MANAGEMENT SUITE 10.0 Installation Manual Getting Started D12786 Rev.16 This document is not to be reproduced in whole or in part without permission in writing from: Contents INTRODUCTION 3 REQUIREMENTS
Installation Guide for Pulse on Windows Server 2012
MadCap Software Installation Guide for Pulse on Windows Server 2012 Pulse Copyright 2014 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software
Archive Attender Version 3.5
Archive Attender Version 3.5 Getting Started Guide Sherpa Software (800) 255-5155 www.sherpasoftware.com Page 1 Under the copyright laws, neither the documentation nor the software can be copied, photocopied,
VERITAS Backup Exec TM 10.0 for Windows Servers
VERITAS Backup Exec TM 10.0 for Windows Servers Quick Installation Guide N134418 July 2004 Disclaimer The information contained in this publication is subject to change without notice. VERITAS Software
About This Guide... 4. Signature Manager Outlook Edition Overview... 5
Contents About This Guide... 4 Signature Manager Outlook Edition Overview... 5 How does it work?... 5 But That's Not All...... 6 And There's More...... 6 Licensing... 7 Licensing Information... 7 System
GUARD1 PLUS SE Administrator's Manual
GUARD1 PLUS SE Administrator's Manual Version 4.4 30700 Bainbridge Road Solon, Ohio 44139 Phone 216-595-0890 Fax 216-595-0991 [email protected] www.guard1.com i 2010 TimeKeeping Systems, Inc. GUARD1 PLUS
Centran Version 4 Getting Started Guide KABA MAS. Table Of Contents
Page 1 Centran Version 4 Getting Started Guide KABA MAS Kaba Mas Welcome Kaba Mas, part of the world-wide Kaba group, is the world's leading manufacturer and supplier of high security, electronic safe
TIBCO ActiveMatrix BPM Integration with Content Management Systems Software Release 2.2.0 September 2013
TIBCO ActiveMatrix BPM Integration with Content Management Systems Software Release 2.2.0 September 2013 Two-Second Advantage Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE.
NetWrix USB Blocker. Version 3.6 Administrator Guide
NetWrix USB Blocker Version 3.6 Administrator Guide Table of Contents 1. Introduction...3 1.1. What is NetWrix USB Blocker?...3 1.2. Product Architecture...3 2. Licensing...4 3. Operation Guide...5 3.1.
SC-T35/SC-T45/SC-T46/SC-T47 ViewSonic Device Manager User Guide
SC-T35/SC-T45/SC-T46/SC-T47 ViewSonic Device Manager User Guide Copyright and Trademark Statements 2014 ViewSonic Computer Corp. All rights reserved. This document contains proprietary information that
Trend Micro Incorporated reserves the right to make changes to this document and to the products described herein without notice.
Trend Micro Incorporated reserves the right to make changes to this document and to the products described herein without notice. Before installing and using the software, please review the readme files,
Getting Started Guide
Getting Started Guide www.exclaimer.com Contents About This Guide... 2 Signature Manager Overview... 3 How does it Work?... 3 But That s Not All... 4 And There s More... 4 Licensing... 5 Licensing Information...
QAD Enterprise Applications. Training Guide Demand Management 6.1 Technical Training
QAD Enterprise Applications Training Guide Demand Management 6.1 Technical Training 70-3248-6.1 QAD Enterprise Applications February 2012 This document contains proprietary information that is protected
CA Nimsoft Monitor. Probe Guide for Active Directory Server. ad_server v1.4 series
CA Nimsoft Monitor Probe Guide for Active Directory Server ad_server v1.4 series Legal Notices Copyright 2013, CA. All rights reserved. Warranty The material contained in this document is provided "as
Standalone Trial Guide
Standalone Trial Guide Important Notice General Disclaimer The contents of this document are subject to change without notice; therefore, the information presented herein shall not be construed as a commitment
metaengine DataConnect For SharePoint 2007 Configuration Guide
metaengine DataConnect For SharePoint 2007 Configuration Guide metaengine DataConnect for SharePoint 2007 Configuration Guide (2.4) Page 1 Contents Introduction... 5 Installation and deployment... 6 Installation...
CONFIGURING MICROSOFT SQL SERVER REPORTING SERVICES
CONFIGURING MICROSOFT SQL SERVER REPORTING SERVICES TECHNICAL ARTICLE November/2011. Legal Notice The information in this publication is furnished for information use only, and does not constitute a commitment
TROY Secure Print Enterprise Lite Users Guide
TROY Secure Print Enterprise Lite Users Guide 50-06451-001 Rev A TROY Group Inc. Page 1 of 25 TABLE OF CONTENTS Preface... 3 Notice... 3 Document History... 4 Trademark Credits... 5 Section 1 Introduction...
Attix5 Pro Storage Platform
Attix5 Pro Storage Platform V6.0 User Manual Cover for Microsoft Windows Your guide to configuring the Attix5 Pro Storage Platform. SERVER EDITION V6.0 for MICROSOFT WINDOWS Copyright Notice and Proprietary
Installation Guide for Pulse on Windows Server 2008R2
MadCap Software Installation Guide for Pulse on Windows Server 2008R2 Pulse Copyright 2014 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software
Symantec Backup Exec TM 11d for Windows Servers. Quick Installation Guide
Symantec Backup Exec TM 11d for Windows Servers Quick Installation Guide September 2006 Symantec Legal Notice Copyright 2006 Symantec Corporation. All rights reserved. Symantec, Backup Exec, and the Symantec
HP Business Availability Center
HP Business Availability Center for the Windows and Solaris operating systems Software Version: 8.05 Business Process Monitor Administration Document Release Date:September 2010 Software Release Date:
WhatsUp Gold v16.2 Installation and Configuration Guide
WhatsUp Gold v16.2 Installation and Configuration Guide Contents Installing and Configuring Ipswitch WhatsUp Gold v16.2 using WhatsUp Setup Installing WhatsUp Gold using WhatsUp Setup... 1 Security guidelines
LifeSize Control Installation Guide
LifeSize Control Installation Guide April 2005 Part Number 132-00001-001, Version 1.0 Copyright Notice Copyright 2005 LifeSize Communications. All rights reserved. LifeSize Communications has made every
FileMaker Server 7. Administrator s Guide. For Windows and Mac OS
FileMaker Server 7 Administrator s Guide For Windows and Mac OS 1994-2004, FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker is a trademark
Crystal Reports Installation Guide
Crystal Reports Installation Guide Version XI Infor Global Solutions, Inc. Copyright 2006 Infor IP Holdings C.V. and/or its affiliates or licensors. All rights reserved. The Infor word and design marks
ScanJour PDF 2014 R8. Configuration Guide
Configuration Guide Contents 1. Configuration Guide for ScanJour PDF 2014 R8 3 2. What's new 4 3. Installing ScanJour PDF WebService 5 4. Features 10 5. Connecting with WorkZone Content Server 14 6. The
Archive One Policy V4.2 Quick Start Guide October 2005
Archive One Policy V4.2 Quick Start Guide October 2005 Archive One Policy Quick Start Guide V4.2 Page 1 of 33 CONTENTS Introduction... 3 Components...3 Before You Start...4 System Requirements...5 Prerequisites...7
VERITAS Backup Exec 9.1 for Windows Servers Quick Installation Guide
VERITAS Backup Exec 9.1 for Windows Servers Quick Installation Guide N109548 Disclaimer The information contained in this publication is subject to change without notice. VERITAS Software Corporation makes
User Guide. Web Chat for IIS. Release 5.0
User Guide Web Chat for IIS Release 5.0 2010 Avaya Inc. All Rights Reserved. Notice While reasonable efforts were made to ensure that the information in this document was complete and accurate at the time
Upgrading Your Web Server from ClientBase Browser Version 2.0 or Above to Version 2.1.1
Upgrading Your Web Server from ClientBase Browser Version 2.0 or Above to Version 2.1.1 Introduction Successful ClientBase Browser usage depends on proper hardware, setup and installation. This section
Imaging License Server User Guide
IMAGING LICENSE SERVER USER GUIDE Imaging License Server User Guide PerkinElmer Viscount Centre II, University of Warwick Science Park, Millburn Hill Road, Coventry, CV4 7HS T +44 (0) 24 7669 2229 F +44
Hardware/Software Specifications for Self-Hosted Systems (Multi-Server)
Hardware/Software Specifications for Self-Hosted Systems (Multi-Server) EBIX, INC. 1 Ebix Way, Johns Creek, GA 30097 Rev. 07/2015 2015 Ebix, Inc. and its subsidiaries. All Rights Reserved. This software
StarWind Virtual SAN Installation and Configuration of Hyper-Converged 2 Nodes with Hyper-V Cluster
#1 HyperConverged Appliance for SMB and ROBO StarWind Virtual SAN Installation and Configuration of Hyper-Converged 2 Nodes with MARCH 2015 TECHNICAL PAPER Trademarks StarWind, StarWind Software and the
HYPERION SYSTEM 9 N-TIER INSTALLATION GUIDE MASTER DATA MANAGEMENT RELEASE 9.2
HYPERION SYSTEM 9 MASTER DATA MANAGEMENT RELEASE 9.2 N-TIER INSTALLATION GUIDE P/N: DM90192000 Copyright 2005-2006 Hyperion Solutions Corporation. All rights reserved. Hyperion, the Hyperion logo, and
Kaspersky Security Center 10 Getting Started
Kaspersky Security Center 10 Getting Started A P P L I C A T I O N V E R S I O N : 1 0 M A I N T E N A N C E R E L E A S E 1 Dear User, Thank you for choosing our product. We hope that this document will
Citrix Systems, Inc.
Citrix Systems, Inc. Notice The information in this publication is subject to change without notice. THIS PUBLICATION IS PROVIDED AS IS WITHOUT WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING ANY
Metalogix SharePoint Backup. Advanced Installation Guide. Publication Date: August 24, 2015
Metalogix SharePoint Backup Publication Date: August 24, 2015 All Rights Reserved. This software is protected by copyright law and international treaties. Unauthorized reproduction or distribution of this
Universal Management Service 2015
Universal Management Service 2015 UMS 2015 Help All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including photocopying, recording,
RealPresence Platform Director
RealPresence CloudAXIS Suite Administrators Guide Software 1.3.1 GETTING STARTED GUIDE Software 2.0 June 2015 3725-66012-001B RealPresence Platform Director Polycom, Inc. 1 RealPresence Platform Director
Bitrix Site Manager ASP.NET. Installation Guide
Bitrix Site Manager ASP.NET Installation Guide Contents Introduction... 4 Chapter 1. Checking for IIS Installation... 5 Chapter 2. Using An Archive File to Install Bitrix Site Manager ASP.NET... 7 Preliminary
Installing The SysAidTM Server Locally
Installing The SysAidTM Server Locally Document Updated: 17 October 2010 Introduction SysAid is available in two editions: a fully on-demand ASP solution and an installed, in-house solution for your server.
Symantec Backup Exec 2010 R2. Quick Installation Guide
Symantec Backup Exec 2010 R2 Quick Installation Guide 20047221 The software described in this book is furnished under a license agreement and may be used only in accordance with the terms of the agreement.
Analyzer 2.0. Installation Guide. Contents
Analyzer 2.0 Analyzer 2.0 is a comprehensive suite of tools designed to help you analyze complex aqueous and multisolvent electrolyte solution chemistry, thermophysical properties, phase behavior and corrosion
USER GUIDE WEB-BASED SYSTEM CONTROL APPLICATION. www.pesa.com August 2014 Phone: 256.726.9200. Publication: 81-9059-0703-0, Rev. C
USER GUIDE WEB-BASED SYSTEM CONTROL APPLICATION Publication: 81-9059-0703-0, Rev. C www.pesa.com Phone: 256.726.9200 Thank You for Choosing PESA!! We appreciate your confidence in our products. PESA produces
Web VTS Installation Guide. Copyright 2006-2010 SiiTech Inc. All rights reserved.
Web VTS Installation Guide Copyright 2006-2010 SiiTech Inc. All rights reserved. Table of Contents Overview of Web VTS... 1 System Requirements... 2 Installation Sequence... 3 Installing Web VTS... 6 ii
Getting Started Guide for Symantec On-Demand Protection for Outlook Web Access 3.0
Getting Started Guide for Symantec On-Demand Protection for Outlook Web Access 3.0 PN: 12199694 Getting Started Guide for Symantec On-Demand Protection for Outlook Web Access 3.0 The software described
Microsoft Dynamics GP. Workflow Installation Guide Release 10.0
Microsoft Dynamics GP Workflow Installation Guide Release 10.0 Copyright Copyright 2008 Microsoft Corporation. All rights reserved. Complying with all applicable copyright laws is the responsibility of
System Administration Training Guide. S100 Installation and Site Management
System Administration Training Guide S100 Installation and Site Management Table of contents System Requirements for Acumatica ERP 4.2... 5 Learning Objects:... 5 Web Browser... 5 Server Software... 5
Ansur Test Executive. Users Manual
Ansur Test Executive Users Manual April 2008 2008 Fluke Corporation, All rights reserved. All product names are trademarks of their respective companies Table of Contents 1 Introducing Ansur... 4 1.1 About
ResPAK Internet Module
ResPAK Internet Module This document provides an overview of the ResPAK Internet Module which consists of the RNI Web Services application and the optional ASP.NET Reservations web site. The RNI Application
HSLAB Print Logger 5 Installation Guide
HSLAB Print Logger 5 Installation Guide NOTE: Information and screen shots in this document are related to the Print Logger EE edition. In different editions some features may be not available. See editions
Windows Azure Pack Installation and Initial Configuration
Windows Azure Pack Installation and Initial Configuration Windows Server 2012 R2 Hands-on lab In this lab, you will learn how to install and configure the components of the Windows Azure Pack. To complete
Studio 5.0 User s Guide
Studio 5.0 User s Guide wls-ug-administrator-20060728-05 Revised 8/8/06 ii Copyright 2006 by Wavelink Corporation All rights reserved. Wavelink Corporation 6985 South Union Park Avenue, Suite 335 Midvale,
AccXES Client Tools 10.0 User Guide 701P41529 May 2004
AccXES Client Tools 10.0 User Guide 701P41529 May 2004 Trademark Acknowledgments XEROX, AccXES, The Document Company, and the identifying product names and numbers herein are trademarks of XEROX CORPORATION.
Administration Quick Start
www.novell.com/documentation Administration Quick Start ZENworks 11 Support Pack 3 February 2014 Legal Notices Novell, Inc., makes no representations or warranties with respect to the contents or use of
Server Installation Guide ZENworks Patch Management 6.4 SP2
Server Installation Guide ZENworks Patch Management 6.4 SP2 02_016N 6.4SP2 Server Installation Guide - 2 - Notices Version Information ZENworks Patch Management Server Installation Guide - ZENworks Patch
VB.NET - WEB PROGRAMMING
VB.NET - WEB PROGRAMMING http://www.tutorialspoint.com/vb.net/vb.net_web_programming.htm Copyright tutorialspoint.com A dynamic web application consists of either or both of the following two types of
Upgrading from Call Center Reporting to Reporting for Contact Center. BCM Contact Center
Upgrading from Call Center Reporting to Reporting for Contact Center BCM Contact Center Document Number: NN40010-400 Document Status: Standard Document Version: 02.00 Date: June 2006 Copyright Nortel Networks
INSTALL AND CONFIGURATION GUIDE. Atlas 5.1 for Microsoft Dynamics AX
INSTALL AND CONFIGURATION GUIDE Atlas 5.1 for Microsoft Dynamics AX COPYRIGHT NOTICE Copyright 2012, Globe Software Pty Ltd, All rights reserved. Trademarks Dynamics AX, IntelliMorph, and X++ have been
XenDesktop Implementation Guide
Consulting Solutions WHITE PAPER Citrix XenDesktop XenDesktop Implementation Guide Pooled Desktops (Local and Remote) www.citrix.com Contents Contents... 2 Overview... 4 Initial Architecture... 5 Installation
Professional Services. Plant Applications SDK Guidelines GE FANUC AUTOMATION. Prepared by. Donna Lui Professional Services
GE FANUC AUTOMATION Professional Services Plant Applications SDK Guidelines Prepared by Donna Lui Professional Services GE Fanuc Automation SDK Guidelines Page 1 of 22 All rights reserved. No part of this
[The BSD License] Copyright (c) 2004-2011 Jaroslaw Kowalski [email protected]
Software used by portions of this application require the following license statement: [The BSD License] Copyright (c) 2004-2011 Jaroslaw Kowalski [email protected] All rights reserved. Redistribution
Install SQL Server 2014 Express Edition
How To Install SQL Server 2014 Express Edition Updated: 2/4/2016 2016 Shelby Systems, Inc. All Rights Reserved Other brand and product names are trademarks or registered trademarks of the respective holders.
System Requirements for Microsoft Dynamics NAV 2013 R2
System Requirements for Microsoft Dynamics NAV 2013 R2 February 2014 Contents 3 System Requirements for the Microsoft Dynamics NAV Windows Client 3 Web Client 4 System Requirements for Microsoft Dynamics
Replicon Web TimeSheet
TimeAttend TimeCost TimeBill TimeOff WebExpense Replicon Web TimeSheet INSTALLATION GUIDE Notices 2008-2012 Replicon, Inc. All rights reserved. All parts of this document are the property of Replicon,
Installation of Medcin Student Edition Version 2 Software
Instructions for students Installation of Medcin Student Edition Version 2 Software Overview This document will guide you through installation of the Medcin Student Edition software on your personal computer.
Installation Notes for Outpost Network Security (ONS) version 3.2
Outpost Network Security Installation Notes version 3.2 Page 1 Installation Notes for Outpost Network Security (ONS) version 3.2 Contents Installation Notes for Outpost Network Security (ONS) version 3.2...
Installation Guide. Release Management for Visual Studio 2013
1 Installation Guide Release Management for Visual Studio 2013 This document is provided as-is. Information and views expressed in this document, including URL and other Internet Web site references, may
Using SQL Reporting Services with Amicus
Using SQL Reporting Services with Amicus Applies to: Amicus Attorney Premium Edition 2011 SP1 Amicus Premium Billing 2011 Contents About SQL Server Reporting Services...2 What you need 2 Setting up SQL
Introduction and Overview
Inmagic Content Server Workgroup 10.00 Microsoft SQL Server 2005 Express Edition Installation Notes Introduction and Overview These installation notes are intended for the following scenarios: 1) New installations
Sage Timberline Enterprise Installation and Maintenance Guide
Sage Timberline Enterprise Installation and Maintenance Guide NOTICE This document and the Sage Timberline Enterprise software may be used only in accordance with the accompanying Sage Timberline Enterprise
User Guide. DocAve Lotus Notes Migrator for Microsoft Exchange 1.1. Using the DocAve Notes Migrator for Exchange to Perform a Basic Migration
User Guide DocAve Lotus Notes Migrator for Microsoft Exchange 1.1 Using the DocAve Notes Migrator for Exchange to Perform a Basic Migration This document is intended for anyone wishing to familiarize themselves
FedEx Ship Manager Software. Installation Guide
FedEx Ship Manager Software Installation Guide Before you start Check here to see that your PC has what it needs to run FedEx Ship Manager Software: Minimum System and Hardware Requirements Intel Pentium
Core Protection for Virtual Machines 1
Core Protection for Virtual Machines 1 Comprehensive Threat Protection for Virtual Environments. Installation Guide e Endpoint Security Trend Micro Incorporated reserves the right to make changes to this
SMS Database System Quick Start. [Version 1.0.3]
SMS Database System Quick Start [Version 1.0.3] Warning ICP DAS Inc., LTD. assumes no liability for damages consequent to the use of this product. ICP DAS Inc., LTD. reserves the right to change this manual
http://docs.trendmicro.com
Trend Micro Incorporated reserves the right to make changes to this document and to the products described herein without notice. Before installing and using the product, please review the readme files,
hp digital home networking wireless USB network adapter hn210w quick start guide
hp digital home networking wireless USB network adapter hn210w quick start guide Revision #: 15 Page: 1 of 11 Printed: 08/15/01 04:44 PM The Hewlett-Packard Company makes no warranty of any kind with regard
CA Nimsoft Service Desk
CA Nimsoft Service Desk Configure Outbound Web Services 7.13.7 Legal Notices Copyright 2013, CA. All rights reserved. Warranty The material contained in this document is provided "as is," and is subject
Citrix EdgeSight for Load Testing Installation Guide. Citrix EdgeSight for Load Testing 3.8
Citrix EdgeSight for Load Testing Installation Guide Citrix EdgeSight for Load Testing 3.8 Copyright Use of the product documented in this guide is subject to your prior acceptance of the End User License
Omgeo OASYS Workstation Installation Guide. Version 6.4 December 13, 2011
Omgeo OASYS Workstation Installation Guide Version 6.4 December 13, 2011 Copyright 2011 Omgeo LLC. All rights reserved. This publication (including, without limitation, any text, image, logo, compilation,
Proteome Discoverer Version 1.4
Xcalibur Proteome Discoverer Version 1.4 Installation Guide XCALI-97507 Revision A December 2012 2012 Thermo Fisher Scientific Inc. All rights reserved. Xcalibur is a registered trademark of Thermo Fisher
System Planning, Deployment, and Best Practices Guide
www.novell.com/documentation System Planning, Deployment, and Best Practices Guide ZENworks Application Virtualization 9.0 February 22, 2012 Legal Notices Novell, Inc., makes no representations or warranties
