Example Code - EnterWorks_Process_Exchange_(EPX) - 10.6

EnterWorks EPX Programmers Reference

Product type
Software
Portfolio
Verify
Product family
EnterWorks
Product
Precisely EnterWorks > EnterWorks Process Exchange (EPX)
Version
10.6
Language
English
Product name
Precisely EnterWorks
Title
EnterWorks EPX Programmers Reference
First publish date
2007
Last updated
2023-07-28
Published on
2023-09-20T04:07:07.148709

public LoginExample()

{

securityFacade_ = (SecurityFacade)

FacadeFactory.getInstance().getFacadeInstance

( FacadeFactory.FACADE_SECURITY );

try

{

bundle_ =

ResourceBundle.getBundle

("examples",Locale.getDefault());

}

catch ( MissingResourceException e )

{

System.err.println

("Exception reading messages.properties:" + e );

}

}

public LoginExample(String serverUID, String user,

String password)

{

this();

serverUID_ = serverUID;

user_ = user;

password_ = password;

}

}