Editting the obj.conf of netscape enterprise server 3.6 to map two".so"

I have netscape enterprise server 3.6 (I know.. but cant go another option now)
I already have a application running on this server which is accessed by "www.abc.com/Application" (dummy url).
In the obj.conf file.. it is as below.
Init fn="load-types" mime-types="mime.types"
Init fn="load-modules" funcs="fun1,fun2" shlib="/usr2/abc/home/web/slib/AA.so"
Init fn="fun1" LateInit="yes" ui_url_prefix="Application"
This works fine....Now I have a BB.so which I want to be accessed by "www.abc.com/Application1" (dummy url).
When i edit the config file as below. It doesnt seem to work. Can someone please help.
Init fn="load-types" mime-types="mime.types"
Init fn="load-modules" funcs="fun1,fun2" shlib="/usr2/abc/home/web/slib/AA.so"
Init fn="fun1" LateInit="yes" ui_url_prefix="Application"
Init fn="load-types" mime-types="mime.types"
Init fn="load-modules" funcs="fun1,fun2" shlib="/usr2/abc/home/web/slib/BB.so"
Init fn="fun1" LateInit="yes" ui_url_prefix="Application2"
Both AA.so and BB.so in few functionalites, but otherwise are same. And I want both "www.abc.com/Application1" and "www.abc.com/Application2" to work.
Im new to this.. please excuse my ignorance.

First - You really, REALLY should be upgrading to Web Server 6.1 or Web Server 7.0 (or Open Web Server). Really.
Second - You can have multiple SAFs, but you need to make sure that you code them to avoid conflicts with function names, data structures, etc. Good luck.

Similar Messages

  • How can I get URL forwarding working without touching the obj.conf

    It won't work right after it is set up from the Admin server. I have to manually edit the obj.conf so that the [NameTrans fn="redirect"] lines are ahead of any other lines NameTrans lines. Why the Admin server cannot do this when adding the "redirect" lines to obj.conf, or did I miss anything when I config the URL forwarding?
    SunOne WebServer6.1 SP4

    This is a full copy of the obj.conf file, right after I set up a URL Forwarding. The URL Forwarding is added as the 3rd [NameTrans] line. I have to manually move it as the 1st [AuthTrans] line, else it won't work.
    # You can edit this file, but comments and formatting changes
    # might be lost when the admin server makes changes.
    # Use only forward slashes in pathnames--backslashes can cause
    # problems. See the documentation for more information.
    <Object name="default">
    AuthTrans fn="match-browser" browser="*MSIE*" ssl-unclean-shutdown="true"
    NameTrans fn="ntrans-j2ee" name="j2ee"
    NameTrans fn="pfx2dir" from="/mc-icons" dir="c:/Sun/WebServer6.1/ns-icons" name="es-internal"
    NameTrans fn="redirect" from="/AuxFiles" url-prefix="http://pdiweb.pdi.sci.com:8080/AuxFiles"
    NameTrans fn="document-root" root="$docroot"
    PathCheck fn="nt-uri-clean"
    PathCheck fn="check-acl" acl="default"
    PathCheck fn="find-pathinfo"
    PathCheck fn="find-index" index-names="index.html,home.html,index.jsp"
    PathCheck fn="set-cache-control" control="private"
    ObjectType fn="type-by-extension"
    ObjectType fn="force-type" type="text/plain"
    Service method="(GET|HEAD)" type="magnus-internal/imagemap" fn="imagemap"
    Service method="(GET|HEAD)" type="magnus-internal/directory" fn="index-common"
    Service method="(GET|HEAD|POST)" type="*~magnus-internal/*" fn="send-file"
    Service method="TRACE" fn="service-trace"
    Error fn="error-j2ee"
    AddLog fn="flex-log" name="access"
    </Object>
    <Object name="j2ee">
    Service fn="service-j2ee" method="*"
    </Object>
    <Object name="cgi">
    ObjectType fn="force-type" type="magnus-internal/cgi"
    Service fn="send-cgi"
    </Object>
    <Object name="es-internal">
    PathCheck fn="check-acl" acl="es-internal"
    </Object>
    <Object name="send-compressed">
    PathCheck fn="find-compressed"
    </Object>
    <Object name="compress-on-demand">
    Output fn="insert-filter" filter="http-compression"
    </Object>

  • Server side redirect with 4.5.1 and Netscape Enterprise Server

              Is it possible to have a servlet running under WL 4.5.1 to perform a server
              side redirect ala CGI?
              Here's my config:
              web server: Netscape Enterprise Server 3.6 on solaris, with weblogic
              plugin
              servlet runner: WL 4.5.1 on different host from ES.
              Here's what I want to happen:
              1) HTTP GET from browser to enterprise server
              2) forwarded by plugin to servlet
              3) servlet logs some activity to an application log file, and sends a
              server side redirect to enterprise server
              4) Enterprise server returns the file identified by the rediect directly
              to the client.
              This is possible with enterprise server and CGI, because the ES CGI code
              checks the return stream from the CGI program for "Location: <some url>". If
              it see's that, it tries to locally resolve that URL as the client had asked
              directly for that URL. I think this would only be possible with WL if the WL
              NSAPI plug in supported a server side redirect feature. Anyone know status
              of that? Or might ES support something like this depending on the order of
              the objects in obj.conf?
              Here's what I've tried in the servlet:
              res.setHeader("Location:", location);
              res.setContentType("magnus-internal/redirect");
              res.setStatus(302);
              This just sends an HTTP tempoary new location to the client for a client
              side redirect. Client side redirect is not desirable because it doubles the
              HTTP traffic.
              Another option would be to read the file I want to redirect to from inside
              the servlet and return it from the servlet, but that is not desirable
              because I want to have ES serve the file - thats it's job, it caches, less
              network traffic (between our servers), etc.
              Server side redirect is very useful feature and not that uncommon for web
              applications, so if WL does not support it now, I will probably put in a new
              feature request.
              Thanks for your help
              Mark Johnson.
              

    Why not just use the proxy servlet to redirect to your netscape server? That
              does it on the server side!
              -russell
              Mark Johnson wrote:
              > I belive that sendRedirect performs a client side rediret, not a server
              > side redirect.
              >
              > Guy Tal <[email protected]> wrote in message
              > news:[email protected]...
              > > public void doGet(HttpServletRequest req, HttpServletResponse res) ...
              > > ...
              > > res.sendRedirect("http://destination");
              > > ...
              > >
              > > Guy
              > >
              > > Mark Johnson <[email protected]> wrote:
              > >
              > > > Is it possible to have a servlet running under WL 4.5.1 to perform a
              > server
              > > > side redirect ala CGI?
              > >
              > > > Here's my config:
              > > > web server: Netscape Enterprise Server 3.6 on solaris, with weblogic
              > > > plugin
              > > > servlet runner: WL 4.5.1 on different host from ES.
              > >
              > > > Here's what I want to happen:
              > > > 1) HTTP GET from browser to enterprise server
              > > > 2) forwarded by plugin to servlet
              > > > 3) servlet logs some activity to an application log file, and sends
              > a
              > > > server side redirect to enterprise server
              > > > 4) Enterprise server returns the file identified by the rediect
              > directly
              > > > to the client.
              > >
              > > > This is possible with enterprise server and CGI, because the ES CGI code
              > > > checks the return stream from the CGI program for "Location: <some
              > url>". If
              > > > it see's that, it tries to locally resolve that URL as the client had
              > asked
              > > > directly for that URL. I think this would only be possible with WL if
              > the WL
              > > > NSAPI plug in supported a server side redirect feature. Anyone know
              > status
              > > > of that? Or might ES support something like this depending on the order
              > of
              > > > the objects in obj.conf?
              > >
              > > > Here's what I've tried in the servlet:
              > > > res.setHeader("Location:", location);
              > > > res.setContentType("magnus-internal/redirect");
              > > > res.setStatus(302);
              > >
              > > > This just sends an HTTP tempoary new location to the client for a client
              > > > side redirect. Client side redirect is not desirable because it doubles
              > the
              > > > HTTP traffic.
              > >
              > > > Another option would be to read the file I want to redirect to from
              > inside
              > > > the servlet and return it from the servlet, but that is not desirable
              > > > because I want to have ES serve the file - thats it's job, it caches,
              > less
              > > > network traffic (between our servers), etc.
              > >
              > > > Server side redirect is very useful feature and not that uncommon for
              > web
              > > > applications, so if WL does not support it now, I will probably put in a
              > new
              > > > feature request.
              > >
              > >
              > > > Thanks for your help
              > >
              > > > Mark Johnson.
              > >
              > >
              > >
              > >
              > >
              > >
              > >
              > >
              Russell Castagnaro
              Chief Mentor
              SyncTank Solutions
              http://www.synctank.com
              Earth is the cradle of mankind; one does not remain in the cradle forever
              -Tsiolkovsky
              

  • OAS , Http listener , Netscape Enterprise Server, SSL

    Hi All,
    We are planning to implement SSL 3.0 on OAS Pl/SQL cartridge.
    We will be configuring Netscape Enterprise server as the hhtp
    listener.
    I have a couple of questions.
    1. Can the Netscape Enterprise server(NES) be on a different
    machine and can we configure it to be a listener for the OAS?
    2. When NES is the listener , should we get a digital
    certificate for NES or OAS by using genreq(for SSL
    implementation)? Which certificate should be installed?
    Is it enuf if the NES alone has a certificate?
    Please respond as soon as possible.
    Thanx a lot for any help given
    Radhika
    null

    Hi,
    Please let me know, The below information.
    1. is there any errors? in error log.
    3. let me know the .perf output of your server.
    4. iWS service pack ??
    And please try to increase RqThrottle(magnus.conf) and file descriptors value( at OS side).
    and let see any improvements.
    (http://docs.iplanet.com/docs/manuals/ enterprise/41/scaling/html/estune.htm)
    And to confirm the sceniro iWS becomes
    unresponsive after particular load. I would request you
    to create one more test instance without enableing
    Cylink PrivateWire security software. And test it out
    whether iWS becomes unresponsive after some concurrent users increase.
    Thanks,
    Thanks,
    Dakshin.
    Developer Technical Support
    Sun Microsystems
    http://www.sun.com/developers/support.

  • Problems in transforming XML to HTML using HP-UX with Netscape Enterprise Server 4.0 sp3

    Hi,
    Has anyone ever had any problem using XML in NES 4.0 sp3?
    I'm using the libraries com.sun.xml.parser, com.sun.xml.tree, javax.xml.transform.
    The html is being created but is not being returned.
    (it is not showed in browser)
    This same xml application works well in Solaris with Iplanet Web Server 4.1, but it is not working in HP-UX with Netscape Enterprise Server 4.0 sp3.
    I'm entirely lost. I don't know if there is a bug in this version (NES 4.0) or if I need other xml libraries or it is a problem of JRE version.
    Any comments will be appreciate.
    Thanks

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Norbert Clavaux ([email protected]):
    Hi,
    Last year we built a complete new website, based on XML/XSL.
    We assumed all browsers would cope with XSL by now, but that was far to optimistic.
    Our company planned to launch the new site this december, but XSL is giving us some major problems:
    *** All our customers are obliged to use Internet Explorer 4/5.x. Some don't like that at all: they stick to Netscape.
    *** IE users have to download and install the MS-XSL parser. At our pilotsites this is giving a lot of trouble and frustration.
    I heard that it is possible to do the parsing at the serverside, using XSLT, creating HTML.
    HOW CAN WE INSTALL / IMPLEMENT THIS OPTION IN OUR CONFIGURATION?
    (PL/SQL / IAS 9i / Sun Solaris / Oracle 8.1.2)
    Thanks in advance,
    Norbert Clavaux
    Nederlandse Bibliotheek Dienst
    The Netherlands<HR></BLOCKQUOTE>
    You could use DB Prism / Cocoon CMS.
    This CMS is built on top of Apache Cocoon Framework and DB Prism servlet engine.
    This CMS stores the assets in the DB (CLOB) and applys the stylesheet at runtime.
    If you need more information about this CMS look at is free.
    This CMS builts the DB Prism web site at www.plenix.com/dbprism/
    Best regards, Marcelo.

  • Installing WebLogic 5.1 with Netscape Enterprise Server 3.5.1

    How can I configure Netscape Enterprise Server 3.5.1 to use WebLogic 5.1?

    You need to install the Netscape Proxy plug-in.
    You can find the plug-in at the BEA download site along with the instructions.
    Once downloaded it took about 5 minutes to update a config file and have everything running.
    Good Luck...
    Daniel Astillero <[email protected]> wrote:
    How can I configure Netscape Enterprise Server 3.5.1 to use WebLogic 5.1?

  • JDBC Problem with Netscape Enterprise Server 3.61

    I have created a servlet->JDBC(Thin driver for Oracle 7.3) model to communicate the ORacle Database on an UNIX box by using Netscape Enterprise Server 3.61. I got the following problems and if anyone could help me. Many many thanks.
    java.lang.IllegalAccessError: JdbcDriver at
    WhitePageSearch.doGet(WhitePageSearch.java:75) * at
    javax.servlet.http.HttpServlet.service(HttpServlet.java:252) at
    javax.servlet.http.HttpServlet.service(HttpServlet.java:330) at
    sun.servlet.netscape.NSRunner.run(NSRunner.java:144) at
    netscape.server.applet.ServerApplet.handleRequest(ServerApplet.java:69)
    at netscape.server.applet.HttpApplet.handleRequest(HttpApplet.java:680)
    By the way. This model works fine on the servletrunner on my NT machine and I guess there are some problem on the Nescape Server setting.

    You need to install the Netscape Proxy plug-in.
    You can find the plug-in at the BEA download site along with the instructions.
    Once downloaded it took about 5 minutes to update a config file and have everything running.
    Good Luck...
    Daniel Astillero <[email protected]> wrote:
    How can I configure Netscape Enterprise Server 3.5.1 to use WebLogic 5.1?

  • JSP creating XML, on Solaris 2.6 using Netscape Enterprise Server 4.0

    Hi,
    I have a jsp file which generates a dynamic xml document. Data is
    obtained from Oracle using jdbc and the OracleXSU utils : xmlparser.jar
    and xsu12.jar are used to give an XML string.
    This works fine on NT4.0/Java Web Server 2.0, but when I port to
    Solaris 2.6,Netscape Enterprise Server 4.0, this gives problems.
    I get the following error message which is of no help. Nor there
    is an error message on the Solaris log files.
    The XML page cannot be displayed
    Cannot view XML input using style sheet. Please correct the error and then click the Refresh button, or try again later.
    Unspecified error
    When you do a View Source, it does show the XML returned from the
    server, but it simply doesn't style it on the browser.
    Is there any setting anywhere?
    Please help.
    Thanks,
    Cassian.

    How did you setup the *.xsql mapping to the
    oracle.xml.xsql.XSQLServlet servlet ?
    I don4t know how to do this with Netscape
    Enterprise Server.
    Thanks for your help!
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Julie Zhu ([email protected]):
    We are running //...//oracle.xml.xsql.XSQLServlet/helloworld.xsql on Netscape. Enterprise Server 4.0 SP4 on UNIX and getting the following message
    XSQL-003: Failed to find 'XSQLConnections.xml' file in server CLASSPATH.
    XSQL-004: Could not acquire a database connection named: demo
    XSQL-007: Cannot acquire a database connection to process page.
    We have tried to put XSQLConfig.xml in every where that the Server suppose to find, but returned with the same error message. We don't know what we can do next. Can any of you give us some suggestion? Besides, we also have following questions:
    1. How do you treat XSQLConfig.xml inside of your source code? Which path does it search?
    2. Is the file XSQLConfig.xml all lower case or case mixed inside of your code? Because when we extract downloaded file on UNIX machine, it returns with xsqlconfig.xml, but on WINNT, it was XSQLConfig.xml. Which one is right? However, in UNIX even we chang it to XSQLConfig.xml, it still does work.
    We are really in dead-end, please help.
    Julie Zhu<HR></BLOCKQUOTE>
    null

  • Netscape Enterprise Server/Oracle8.0.6

    Hi Folks,
    We have a wiered problem. We are having a web site running on NES 3.63 that connects to the Oracle 8.0.6 database through the firewall. The connections are established as a pool on the webserver, and if the connecton is idle for some time, the firewall drops these connections and hence the html pages(which use javascript) fails while firing the queries.
    We tried to re-create the connection pool whenever the server returns ora-3113(EOF on communication channel) but it doesn't create the pool and always returns different kinds of errors such as (3114, 12545, 1001...).
    Is there anyone who uses the similar setup and faced the same problem?
    Your response will be greatly appreciated
    Thanks
    Ashish

    How did you setup the *.xsql mapping to the
    oracle.xml.xsql.XSQLServlet servlet ?
    I don4t know how to do this with Netscape
    Enterprise Server.
    Thanks for your help!
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Julie Zhu ([email protected]):
    We are running //...//oracle.xml.xsql.XSQLServlet/helloworld.xsql on Netscape. Enterprise Server 4.0 SP4 on UNIX and getting the following message
    XSQL-003: Failed to find 'XSQLConnections.xml' file in server CLASSPATH.
    XSQL-004: Could not acquire a database connection named: demo
    XSQL-007: Cannot acquire a database connection to process page.
    We have tried to put XSQLConfig.xml in every where that the Server suppose to find, but returned with the same error message. We don't know what we can do next. Can any of you give us some suggestion? Besides, we also have following questions:
    1. How do you treat XSQLConfig.xml inside of your source code? Which path does it search?
    2. Is the file XSQLConfig.xml all lower case or case mixed inside of your code? Because when we extract downloaded file on UNIX machine, it returns with xsqlconfig.xml, but on WINNT, it was XSQLConfig.xml. Which one is right? However, in UNIX even we chang it to XSQLConfig.xml, it still does work.
    We are really in dead-end, please help.
    Julie Zhu<HR></BLOCKQUOTE>
    null

  • Editing the httpd.conf

    Is there a specific point to edit the httpd.conf for virtual paths?

    Hi there,
    Try running the following command from your imageserver directory:
    chmod -R 755
    This does a recursive chmod that gives everybody read and execute permissions, and only the owner write permissions on the imageserver tree.
    For more info on chmod, you can run the following command on your Linux box:
    man chmod
    Hope this helps,
    Brian
    Function1
    http://blog.function1.com

  • Help with Netscape enterprise server 6.1 error get_auth_user_ssl

    background: I'm not a web admin, I'm a perl coder just put into a place to recode some perl that is not up to standards. Any help would be appriciated, and if you can help solve this, I'd buy you your favorite 6 pack :)
    There is this server here Sun5.8 running NES 6.1. All the other servers run apache and aren't having any issues. This one runs NES 6.1 because the data on the server is very restricted to specific groups of people.
    Now, before I post for help with tuning this beast, I'd like to get rid of of these error msgs, as I think this is what's causing the slowness on the system. ( just set MaxProcs to 2. It was running just 1 process before)
    There are 2 virtual servers set up. foo.com and bar.com (I can't cut and paste across the systems, so I have to type everything by hand.
    after a child process admin shuts down, a new process starts up:
    warning (pid) in sytemname virtual server https-foo, urlhost foo.com does not match subject "system name" of certificate Server-Cert.
    bunch of infos: install new configuration, ready to accept...Java classpath...
    all normal
    Then paraphrasing
    Loading IWSSessionManager by default
    IWSSessionManager: max 1000
    {Address ...IOTimeout .. MinCGIStubs...CGIStubsTImeout..MaxCGIStubs  }
    directive ignored
    That's when all these
    security (PID): get_auth_user_ssl: unable to map cert to LDAP entry. Reason: No such object etc....
    The CN it's saying that no such object exists, does exist.
    Once it spits out about 10 of these, the page loads or you get
    catastrophe (PID): Server crash detected.
    At this point, a new session starts up and the user then gets in, or they all start complaining.

    plugins (I'm assuming you mean the Init fn's from magnus.conf.. (I'm a newb to all this. LOL )
    I hope I don't have any spelling errors here, I have to type it all. The PC i'm on to access the internet is on a different network than the server is on, so no copy and paste..
    Init fn="perf-int" enable=true
    Init fn="define-perf-bucket" name="cgi-bucket" description="CGI Stats"
    Init fn="load-types" mime-types="mime.types"
    Init fn="load-modules" shlib="/usr/netscape/servers/bin/https/lib/libNSServletPlugin.so" funcs="NSServletEarlyInit,NSServletLateInit,NSServletNameTrans,NSServletService" shlibs_flags="(global|now)"
    Init fn="NSServletEarlyInit" EarlyInit="yes"
    Init fn="NSServletLateInit" LateInit="yes"
    Init funcs="shtml_init,shtml_send" shlib="/usr/netscape/servers/bin/https/lib/libShtml.so" NativeThread="no" fn="load-modules"
    Init LateInit="yes" fn="shtml_init"
    Init fn="flex-init" access="$accesslog" format.access="%Ses->client.ip% etc, etc, etc lots more to type... I can type it all if you need it.
    Init fn="stats-init" profiling="on"
    No core file(s)
    ./start -version
    Netscape Communications
    Netscape-Enterprise/6.1SP4 B07/07/2003 02:38

  • Netscape Enterprise Server 6.1 and JSF

    Anyone gotten JSF working on NES 6.1? About to tackle it....just scrounging for tips...

    plugins (I'm assuming you mean the Init fn's from magnus.conf.. (I'm a newb to all this. LOL )
    I hope I don't have any spelling errors here, I have to type it all. The PC i'm on to access the internet is on a different network than the server is on, so no copy and paste..
    Init fn="perf-int" enable=true
    Init fn="define-perf-bucket" name="cgi-bucket" description="CGI Stats"
    Init fn="load-types" mime-types="mime.types"
    Init fn="load-modules" shlib="/usr/netscape/servers/bin/https/lib/libNSServletPlugin.so" funcs="NSServletEarlyInit,NSServletLateInit,NSServletNameTrans,NSServletService" shlibs_flags="(global|now)"
    Init fn="NSServletEarlyInit" EarlyInit="yes"
    Init fn="NSServletLateInit" LateInit="yes"
    Init funcs="shtml_init,shtml_send" shlib="/usr/netscape/servers/bin/https/lib/libShtml.so" NativeThread="no" fn="load-modules"
    Init LateInit="yes" fn="shtml_init"
    Init fn="flex-init" access="$accesslog" format.access="%Ses->client.ip% etc, etc, etc lots more to type... I can type it all if you need it.
    Init fn="stats-init" profiling="on"
    No core file(s)
    ./start -version
    Netscape Communications
    Netscape-Enterprise/6.1SP4 B07/07/2003 02:38

  • Netscape Enterprise Server 3.6 - Legacy System

    Please can some one help. I have a webserver instance running on a machine with multiple server instances on it. When this instance started running out of control and taking up too much CPU, I stopped it with an eye to restarting it, however, it refuses to restart. The error I get in the errors log file is as follows:
    [22/Mar/2004:14:10:21] info (10595): successful server startup
    [22/Mar/2004:14:10:21] info (10595): Netscape-Enterprise/3.6 B98.311.1807
    [22/Mar/2004:14:10:21] verbose (10595): livewireInit reports: Starting Server-Side JavaScript build: 98.301.0409
    [22/Mar/2004:14:10:21] verbose (10595): ContentMgrInit reports: Initializing Content Manager Version 001
    [22/Mar/2004:14:10:21] info (10595): MetaDataInit reports: MetaInit failed 7037
    [22/Mar/2004:14:10:21] info (10595): ContentMgrInit reports: Failed to initialize MetaData
    I'm running Sun Solaris 5.6, and I don't know how to fix this error or what it means.
    Thanks
    Ali

    First - You really, REALLY should be upgrading to Web Server 6.1 or Web Server 7.0 (or Open Web Server). Really.
    Second - You can have multiple SAFs, but you need to make sure that you code them to avoid conflicts with function names, data structures, etc. Good luck.

  • How do I configure PERL in Netscape Enterprise Server 6.0?

    I have set up a shellcgi directory for my perl programs and a mime type called shellcgi. I also set up a file association in Windows 2000. When I try and run a test perl script I get the following message...GET /sh-bin/test.pl, shellcgi-send reports: can't find file association of E:/iPlanet/Servers/https-ga1wboly02/sh-bin/test.pl for execution .

    In order to run a PERL script under Windows NT the Netscape Web Server needs to know where to find the PERL interpreter.
    follow these steps :
    1) Make sure Windows NT knows what a .pl file is. In file Manager click on file and choose associate from the menu. Check the "files with extension" drop-down list for pl - if it exists verify that it is pathed to your perl.exe. If it is not already on the list click the "New Type" button. In the Filetype box put pl. Choose open from the Action drop-down list. In the Command box specify the full path to your perl.exe interpreter (Make sure to use short filenames, rather than long filenames.) Click the OK button. Then click the Close button in the main Associate dialog box. Double click a .pl file to test - it should automatically launch the PERL interpreter and feed it your .pl file.
    2) Create a directory to contain your .pl scripts.
    ~server_root\shell-cgi is a good choice.
    NOTE: Make very sure that this directory is NOT part of the document root, it should have it's own directory (preferably at the same level of the docroot).
    3) In the Admin Server select Programs.
    4) Choose ShellCGI Directory from the Programs menu.
    5) Put the URL Prefix you would like to map to your Shell-CGI directory into the URL Prefix field.
    6) Put the full path to your Shell-CGI directory in the Shell CGI directory field.
    7) Click OK.
    8) The save and apply changes page will display your changes and give you the opportunity to verify them. If they are correct click the Save and Apply button. If not Click the Undo button and go back to step 4.
    You can then call your .pl scripts directly by referencing the directory mapping that you have just created. For example:
    http://my.server.whatever/shell-cgi/myscript.pl
    this should work now.
    If not Pls Mail me.
    regards
    T.Raghulan
    [email protected]

  • I am trying to set up virtual servers with Netscape Enterprise Server 3.6. Can get home page to display but images linked to the page won't display and links to other pages won't work.

     

    hi,
    If your home page of the virtual server is displayed then,you have set the virtual server properly.
    check the links and source of the images or directories in the HTML source code of the home page.
    this should solve ur problem. If not notify me.
    Regards
    T.Raghulan.
    [email protected]

Maybe you are looking for

  • Strange behavior in Financial Reports (drop down feature)

    Hello Gurus, I have currently performed migration of Financial Reports from 11.1.1.3 environment to 11.1.2.2 environment with the help of a staging environment. We migrated the reports over to 11.1.2.2 using LCM from the Staging 11.1.2.2 environment.

  • Does iOS 6 have timestamp for all messages in iMessage?  (I know that mac does)

    As far as I can see it only displays on some but not all in iOS 6. Mac has the option to display every message in the event the time is important to know in some cases. Also can you upload a profile pic in imessage iOS 6?

  • How to upgrade built-in subversion

    I have been using the version of subversion (1.4.4) built-in to Leopard (10.5.6) successfully for many months now but a recent commit from a windows subversion client (1.5) updated the version of the repository so that now I cannot commit from my Mac

  • BAPI HR_ECM_INSERT_INFOTYPE

    Hi, I'm trying to ad a new record to infotype '0000' with bapi HR_ECM_INSERT_INFOTYPE. Its working without errors but there is also no new entry in the db. I also set a commit work but also no difference. Has somebody used this bapi before and knows

  • Heading Change for keyfigures in the layouts

    Hi- We have two keyfigures in Manual Layouts which has short description as heading. Now users want to see Long description as heading. 1. I went to change mode of Manual layout and copied the "Long description" to heading. Still when users are creat