Working with server types

About server types

Each deployment configuration is associated with a specific type of server. A controller for that type of server provides program logic that performs:

Transformations for Web site targets

When you deploy to ASP, the deployment controller performs these transformations for each page:

When you use the Basic deployment controller, the controller does not modify the pages you deploy.

Transformations for JSP targets

When you deploy a JSP target, the JSP deployment controller adds the following server scripts to the top of each JSP page:

<%@ page import="com.sybase.powerbuilder.jspobject.*" %>
<% 
   // global instance for the page
   PSDocumentClass psDocument = new PSDocumentClass
      (request, response, out, application);
   PSSessionClass psSession = new 
      PSSessionClass(session);
   PSServerClass psServer = new
      PSServerClass(psDocument);
 %>