![]() |
|
Release Bulletin PowerBuilder® Application Server Plug-In 1.0 for Windows
Document ID: DC30121-01-0100-01 Last revised: December 8, 2006 Accessing current release bulletin informationA more recent version of this release bulletin may be available on the Web. To check for critical product or document information added after the product release, use the Sybase Product Manuals Web site. Accessing release bulletins at the Sybase Product Manuals Web site
Product summaryEnclosed is Sybase PowerBuilder™ Application Server Plug-In version 1.0, which is compatible with the following platform and operating system configurations:
Version contentsPowerBuilder Application Server Plug-In version 1.0 uses a streamlined installation program, and includes PowerBuilder version 10.5.1 support, which is optimized for JDK 1.4. Supported application serversPowerBuilder Application Server Plug-In version 1.0 runs in the following application servers:
Product documentationSee the User’s Guide for installation instructions and information about product features. You can view this book on the Sybase Product Manuals Web site. Browse to the PowerBuilder Application Server Plug-In 1.0 collection, then select this title. This manual is also available on the SyBooks™ CD included with your product. Known issuesRunning the silent installer(CR #449342) If you install the PowerBuilder Application Server Plug-In by running the silent installer, you must set the administrative password in SilentInstall.bat. Workaround: Before you run the silent installer, edit SilentInstall.bat, and add this line to set the administrative password: set JVM_ARG=%JVM_ARG% -Deas.password=password See the User’s Guide for more information about running the silent installer. Generating a license key is not required(CR #449594) A license key ships with the product; therefore, you can skip the license server screen in the installer, the purpose of which is to generate a license key. Reinstalling the server plug-inIf you attempt to reinstall the PowerBuilder Application Server Plug-In on a machine with an existing installation, the reinstallation may fail. Workaround: Delete the C:\Program Files\Common Files\InstallShield\Universal\PBASP\Gen1 directory, then run the installer again. Proxy server IIOPS listeners may not start(CR #449081) Some proxy server IIOPS listeners do not start. See the following subsections for details. Client Edition proxy server IIOPS listenersClient Edition proxy server IIOPS listeners do not start. This problem exists for all of the supported application servers. Workaround:
Server Edition proxy server IIOPS listenersIf a Server Edition proxy server is configured for a WebSphere application server, the IIOPS listeners do not start. Workaround:
Deploying to a WebSphere application server(CR #448354) In a WebSphere application server, deployment may fail if global security is enabled. Note:The following workaround negates the server’s deployment security. Workaround: Add the user name and password of a user that has deployment privileges on the server (for example, the administrative user) to the soap.client.props file:
Documentation updates and clarificationsThis section contains updates and clarifications for the PowerBuilder Application Server Plug-In User’s Guide. Chapter 2, “Creating Embedded Installations”The instructions in this chapter for setting the administrative password in SilentInstall.txt are incorrect. See “Running the silent installer” in this release bulletin. Chapter 4, “Developing PowerBuilder Clients”The section “Enabling PowerBuilder clients to communicate with EJBs” describes how to generate proxy classes for the EJBs deployed in an application server, and how to code a PowerBuilder client application to communicate with a proxy server. You can also set up IIOPS listeners for secure connections between PowerBuilder clients and proxy servers, which is documented below. Setting up IIOPS listeners for the Client Edition proxy server
Sample PowerBuilder clientThis sample PowerBuilder client sets up an IIOPS listener and uses the secure connection to invoke the pbtest/n_pbadd component, which is deployed in the application server.
SSLServiceProvider l_ssl
integer li_rc
this.getContextService("SSLServiceProvider", l_ssl)
// Set the SSL properties
li_rc = l_ssl.setglobalproperty( "qop", "sybpks_domestic_mutual_auth" )
if li_rc <> 0 then
MessageBox("Error Setting SSL Parameters", "Error " + String(li_rc) +
" when setting QOP")
return
end if
li_rc = l_ssl.setglobalproperty( "pin", "sybase" )
if li_rc <> 0 then
MessageBox("Error Setting SSL Parameters", "Error " + String(li_rc) +
" when setting PIN")
return
end if
li_rc = l_ssl.setglobalproperty( "certificateLabel", "Sample1 Test ID" )
if li_rc <> 0 then
MessageBox("Error Setting SSL Parameters", "Error " + String(li_rc) +
" when setting certificate label")
return
end if
//Invoke component Powerscript
long ll_rc
connection ln_connect
n_pbadd ln_mycomp
ln_connect = CREATE connection
ln_connect.userid = "admin@system"
ln_connect.password = "sybase123"
ln_connect.driver = "jaguar"
ln_connect.options = "ORBLogIIOP='true', ORBLogFile='c:\orb.log'"
ln_connect.location = "iiops://my-pc:2002"
ln_connect.options = ln_connect.options + ",ORBForceSSL='true'"
ll_rc = ln_connect.ConnectToServer()
if ll_rc = 0 then
ll_rc = ln_connect.CreateInstance(ln_myComp, "pbtest/n_pbadd")
if ll_rc = 0 then
MessageBox("Add Returned", ln_myComp.add(3,5) )
else
MessageBox("Create Instance Failed", "Error: " + string(ll_rc) + + " " +
ln_connect.errText, StopSign!)
end if
else
MessageBox("Connect to Server Failed", "Error: " + string(ll_rc) + + " "
+ ln_connect.errText, StopSign!)
end if
ln_connect.disconnectServer()
Sample certificateTo create a sample certificate, you can run the following Ant script, which calls the genkey task to generate a public/private key pair, then calls keytool.exe to export the public key to an X509 certificate in printable encoding format (Base64). This example assumes familiarity with the keytool and certificate architecture used by Sun Microsystems. For more information, see the keytool documentation. <!-- Generate a keypair --> <target name="gen-key-pair"> <genkey alias="duke" keypass="keypass" keystore="keystore.jks" storepass="storepass" verbose="true"> <dname> <param name="CN" value="Duke User Name"/> <param name="OU" value="Engineering"/> <param name="O" value="Sun Microsystems"/> <param name="L" value="Cupertino"/> <param name="ST" value="CA"/> <param name="C" value="US"/> </dname> </genkey> </target> <!-- Export the public key for duke --> <target name="export-pub-key"> <exec executable="keytool.exe"> <arg value="-export"/> <arg value="-rfc"/> <arg value="-keystore"/> <arg path="keystore.jks"/> <arg value="-storepass"/> <arg value="storepass"/> <arg value="-keypass"/> <arg value="keypass"/> <arg value="-alias"/> <arg value="sample"/> <arg value="-file"/> <arg path="sample.crt"/> </exec> </target> Technical supportEach Sybase installation that has purchased a support contract has one or more designated people who are authorized to contact Sybase Technical Support. If you have any questions about this installation or if you need assistance during the installation process, ask the designated person to contact Sybase Technical Support or the Sybase subsidiary in your area. Other sources of informationUse the Sybase Getting Started CD, the SyBooks CD, and the Sybase Product Manuals Web site to learn more about your product:
Sybase certifications on the WebTechnical documentation at the Sybase Web site is updated frequently. Finding the latest information on product certifications
Set up a MySybase profile. MySybase is a free service that allows you to create a personalized view of Sybase Web pages.
Sybase EBFs and software maintenanceFinding the latest information on EBFs and software maintenance
Accessibility featuresThis document is available in an HTML version that is specialized for accessibility. You can navigate the HTML with an adaptive technology such as a screen reader, or view it with a screen enlarger. PowerBuilder Application Server Plug-In 1.0 and the HTML documentation have been tested for compliance with U.S. government Section 508 Accessibility requirements. Documents that comply with Section 508 generally also meet non-U.S. accessibility guidelines, such as the World Wide Web Consortium (W3C) guidelines for Web sites. The online help for this product is also provided in HTML, which you can navigate using a screen reader. Note:You might need to configure your accessibility tool for optimal use. Some screen readers pronounce text based on its case; for example, they pronounce ALL UPPERCASE TEXT as initials, and MixedCase Text as words. You might find it helpful to configure your tool to announce syntax conventions. Consult the documentation for your tool. For information about how Sybase supports accessibility, see Sybase Accessibility. The Sybase Accessibility site includes links to information on Section 508 and W3C standards.
|
|||||||||||