IFS-10620

We are trying to access the IFS through a web application with the following classpath
Mon Mar 11 16:29:45 PST 2002:<I> <System Props> weblogic.class.path = C:\f2f\system\lib\xalan.jar;C:\f2f\system\lib\jaxp.jar;C:\f2f\system\lib\pj.jar;C:\f2f\system\lib\crimson.jar;.\license;C:\weblogic51\lib\weblogic510sp11.jar;C:\weblogic51\classes;C:\weblogic51\lib\weblogicaux.jar;C:\f2f\system\classes\ftf.jar;C:\f2f\system\classes\ftfConnectorForIFS.jar;C:\f2f\system\classes;C:\f2f\system\lib\com.cab;C:\f2f\system\lib\ACJRuntime.jar;C:\oracle\ora81\jdbc\lib\classes111.zip;C:\oracle\ora81\jdbc\lib\classes12.zip;C:\oracle\ora81\ifs1.1\settings;C:\oracle\ora81\lib\vbjorb.jar;C:\oracle\ora81\lib\xmlparserv2.jar;C:\oracle\ora81\ifs1.1\lib\adk.jar;C:\oracle\ora81\ifs1.1\lib\clientlib.jar;C:\oracle\ora81\ifs1.1\lib\cmdlineutils.jar;C:\oracle\ora81\ifs1.1\lib\cup.jar;C:\oracle\ora81\ifs1.1\lib\email.jar;C:\oracle\ora81\ifs1.1\lib\ftp.jar;C:\oracle\ora81\ifs1.1\lib\http.jar;C:\oracle\ora81\ifs1.1\lib\installer.jar;C:\oracle\ora81\ifs1.1\lib\jewt-opt-4_1_1.zip;C:\oracle\ora81\ifs1.1\lib\ntfs.jar;C:\oracle\ora81\ifs1.1\lib\oemadmin.jar;C:\oracle\ora81\ifs1.1\lib\release.jar;C:\oracle\ora81\ifs1.1\lib\repos.jar;C:\oracle\ora81\ifs1.1\lib\share-opt-1_1_7.zip;C:\oracle\ora81\ifs1.1\lib\smb.jar;C:\oracle\ora81\ifs1.1\lib\utils.jar;C:\oracle\ora81\ifs1.1\lib\wcp.jar;C:\f2f\system\classes\ftf.jar;C:\f2f\system\classes\ftfConnectorForIFS.jar;C:\f2f\system\lib\log4j.jar;C:\f2f\system\lib;C:\f2f\system\lib\mail.jar;C:\f2f\system\lib\mailapi.jar;C:\f2f\system\lib\smtp.jar;C:\f2f\system\lib\imap.jar;C:\f2f\system\lib\pop3.jar
and we get the following error, please advice what to do
thanks in advance
-pari
oracle.ifs.common.IfsException: IFS-10620: Unable to construct connection pool
     at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java)
     at oracle.jdbc.oci8.OCIDBAccess.check_error(OCIDBAccess.java)
     at oracle.jdbc.oci8.OCIDBAccess.logon(OCIDBAccess.java)
     at oracle.jdbc.driver.OracleConnection.<init>(OracleConnection.java)
     at oracle.jdbc.driver.OracleDriver.getConnectionInstance(OracleDriver.java)
     at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java)
     at java.sql.DriverManager.getConnection(DriverManager.java:517)
     at java.sql.DriverManager.getConnection(DriverManager.java:177)
     at oracle.ifs.server.LibraryConnection.<init>(LibraryConnection.java:235)
     at oracle.ifs.server.ConnectionPool.createLibraryConnection(ConnectionPool.java:576)
     at oracle.ifs.server.ConnectionPool.<init>(ConnectionPool.java:321)
     at oracle.ifs.server.S_LibraryService.<init>(S_LibraryService.java:912)
     at oracle.ifs.server.S_LibraryService.startService(S_LibraryService.java:1129)
     at oracle.ifs.beans.LibraryService.connectLocal(LibraryService.java:408)
     at oracle.ifs.beans.LibraryService.connect(LibraryService.java:280)
     at oracle.ifs.beans.LibraryService.connect(LibraryService.java:252)
     at oracle.ifs.beans.LibraryService.connect(LibraryService.java:213)

please add the following line to your web application:
IfsException.setVerboseMessage(true);
and then post the new error message.

Similar Messages

  • IFS-10620 when trying to connect to ifs (server side)

    hi!
    I have deployed the ifs-classes and -properties to the database (8.1.7).
    To call the Java-API I used following Class (out of the Oracle documentation)
    // Copyright (c) 2001 Oracle Corporation
    import oracle.ifs.beans.LibraryService;
    import oracle.ifs.beans.LibrarySession;
    import oracle.ifs.common.CleartextCredential;
    import oracle.ifs.common.ConnectOptions;
    import oracle.ifs.common.IfsException;
    import oracle.ifs.common.ParameterTable;
    public class HelloIFSWorld implements Runnable
    ParameterTable params=null;
    String username=null;
    String password=null;
    String servicename=null;
    String schemapassword=null;
    public HelloIFSWorld(String[] args)
    params=new ParameterTable(args);
    username=params.getString("user","system");
    password=params.getString("password","manager");
    servicename=params.getString("service","IfsDefault");
    schemapassword=params.getString("schemapassword","bravo");
    System.out.println("Running with arguments:");
    System.out.println("username="+username);
    System.out.println("password="+password);
    System.out.println("servicename="+servicename);
    System.out.println("schemapassword="+schemapassword);
    System.out.println("---------Results----------");
    public static void main (String[] args)
    new Thread(new HelloIFSWorld(args)).start();
    public void run()
    try
    System.out.println("Obtaining LibraryService.");
    LibraryService lsrvc=new LibraryService();
    System.out.println("LibraryService obtained for Oracle iFS version:"+lsrvc.getVersionString());
    System.out.println("Obtaining LibrarySession.");
    CleartextCredential cr=new CleartextCredential(username,password);
    System.out.println("Obtaining ConnectOptions.");
    ConnectOptions cop=new ConnectOptions();
    System.out.println("setting servicename.");
    cop.setServiceName(servicename);
    System.out.println("setting schemapassword.");
    cop.setServicePassword(schemapassword);
    System.out.println("connecting.");
    LibrarySession session=lsrvc.connect(cr, cop);
    System.out.println("LibrarySession obtained for user:"+session.getUser().getName());
    catch(IfsException e )
    e.printStackTrace();
    When I try to connect to the IFS this message comes up (call_HelloIFSWorld is a PLSQL-Wrapper-Function ...):
    SQL> exec call_HelloIFSWorld;
    Running with arguments:
    username=system
    password=manager
    servicename=IfsDefault
    schemapassword=bravo
    ---------Results----------
    Obtaining LibraryService.
    LibraryService obtained for Oracle iFS version: 1.1.5.0.0
    Obtaining LibrarySession.
    Obtaining ConnectOptions.
    setting servicename.
    setting schemapassword.
    connecting.
    oracle.ifs.common.IfsException: IFS-10620: Unable to construct connection pool
    at java.sql.DriverManager.getConnection(DriverManager.java:477)
    at java.sql.DriverManager.getConnection(DriverManager.java:137)
    at oracle.ifs.server.LibraryConnection.<init>(LibraryConnection.java:235)
    at oracle.ifs.server.ConnectionPool.createLibraryConnection(ConnectionPool.java:576)
    at oracle.ifs.server.ConnectionPool.<init>(ConnectionPool.java:321)
    at oracle.ifs.server.S_LibraryService.<init>(S_LibraryService.java:912)
    at oracle.ifs.server.S_LibraryService.startService(S_LibraryService.java:1129)
    at oracle.ifs.beans.LibraryService.connectLocal(LibraryService.java:408)
    at oracle.ifs.beans.LibraryService.connect(LibraryService.java:280)
    at ifs_test.HelloIFSWorld.run(HelloIFSWorld.java:66)
    PL/SQL procedure successfully completed.
    SQL>
    In the IfsDefault.properties I used
    DatabaseUrl=jdbc:default:connection:
    as connection descriptor
    Now, what could be wrong?
    Roland

    I don't think 'malware' is your issue. And probably not accurate to begin with.
    PowerBook G4 would be running Tiger 10.4. I assume.
    Your router/modem etc might be what you see.
    When you log into your network equipment, harden it and make sure to change the defalt password, use something stronger (create and store in Keychain or another password manager).
    AS much as I favor security I don't know of any WORM or router exploit, but there are always people that will look to do remote login.
    If you ever use(s) a bittorrent client your IP got listed on P2P servers and you will see denial of service on your router/firewall.
    NAS hard drives, printers, anything that can be shared?
    And Apple has more than a few Networking Support articles.
    Make sure your modem etc have the latest firmware, too.

  • IFS-10620: Unable to construct connection pool

    Hi,
    I obtain IFS-10620 error running java application. Acording with Developer Guide this error ocurrs when they are problems in the connection because TNS, ifs service or user/password problems. I verified this topics and i don't detect any problem.
    Somebody have any idea?
    Thanks,
    FABIAN.
    null

    Hi Mark!, my java code is the next:
    import java.lang.Object;
    import java.lang.Exception;
    import oracle.ifs.common.IfsException;
    import oracle.ifs.beans.Document;
    import oracle.ifs.common.IfsException;
    import oracle.ifs.beans.DirectoryUser;
    import oracle.ifs.common.IfsException;
    import oracle.ifs.beans.PrimaryUserProfile;
    import oracle.ifs.common.IfsException;
    import oracle.ifs.beans.Folder;
    import oracle.ifs.beans.DocumentDefinition;
    import oracle.ifs.beans.LibraryObject;
    import oracle.ifs.beans.LibraryService;
    import oracle.ifs.beans.LibrarySession;
    import oracle.ifs.common.CleartextCredential;
    import oracle.ifs.common.ConnectOptions;
    import oracle.ifs.common.AttributeValue;
    import oracle.ifs.beans.Selector;
    import oracle.ifs.beans.FolderPathResolver;
    class HelloWorld {
    public static void main(String args[]) throws IfsException
    //Connect to the repository.
    LibraryService ifsService = new LibraryService();
    CleartextCredential me = new CleartextCredential("user", "pass");
    ConnectOptions connectOpts = new ConnectOptions();
    connectOpts.setServiceName("ServerManager");
    connectOpts.setServicePassword("ifspass");
    LibrarySession ifsSession = ifsService.connect(me,connectOpts);
    //Create a new DocumentDefinition and a new Document.
    DocumentDefinition newDocDef = new DocumentDefinition(ifsSession);
    newDocDef.setAttribute("NAME", AttributeValue.newAttributeValue
    ("Hello_World.txt"));
    newDocDef.setContent("Hello World");
    Document doc = (Document) ifsSession.createPublicObject(newDocDef);
    //Obtain the users home folder and add the new Document to it.
    DirectoryUser thisUser = ifsSession.getDirectoryUser();
    PrimaryUserProfile userProfile = ifsSession.getPrimaryUserProfile(thisUser);
    Folder homeFolder = userProfile.getHomeFolder();
    homeFolder.addItem(doc);
    //Disconnect from the repository.
    ifsSession.disconnect();
    This code compile fine but the error to execute it is the next:
    IFS-10620: Unable to construct connection pool
    at oracle.ifs.server.LibraryConnection.<init>(LibraryConnection.java:227
    at oracle.ifs.server.ConnectionPool.createLibraryConnection(ConnectionPo
    ol.java:576)
    at oracle.ifs.server.ConnectionPool.<init>(Compiled Code)
    at oracle.ifs.server.S_LibraryService.<init>(Compiled Code)
    at oracle.ifs.server.S_LibraryService.startService(S_LibraryService.java
    :1129)
    at oracle.ifs.beans.LibraryService.connectLocal(LibraryService.java:408)
    at oracle.ifs.beans.LibraryService.connect(LibraryService.java:280)
    at HelloWorld.main(HelloWorld.java:34)
    What's the problem?
    Thanks for your help.
    null

  • IFS-10620: Unable to construct connection pool exception

    I am getting the "IFS-10620: Unable to construct connection pool" exception on the browser
    when I try to run the Airport example from the "Writing an iFS Custom Renderer" http://technet.oracle.com/products/ifs/htdocs/xsl/index.htm
    technical brief.
    Technet tells me that in this case I should (a) run it under jdk 1.1.8, and
    (b) have classes111.zip from the jdbc directory included in the classpath.
    (c) DatabaseUrl field in IfsDefault.properties is defined properly.
    I have modified one of the classes to output the relevant system parameters when
    initialised, and I get the enclosed output in (a) on loading the servlet.
    Together with paths (b) and classpath(c) settings,it seems that the requirements
    are met but it still gives the error. Any suggestions of where we go wrong?
    Oracle, IFS and JWS are installed on the same NT machine, and the iFS GUI works.
    The value of the DatabaseUrl field was empty (juts "@", I then changed it to
    "@machinename" but to no avail).
    Thanks
    Nikolay Mehandjiev
    [email protected]
    Enclosures
    (a) output from the modified servlet on loading
    javawebserver: java.version is 1.1.8
    javawebserver: java.class.version is 45.3
    javawebserver: java-vm.version is null
    javawebserver: java.class.path is \Oracle\Ora81\ifs\settings;\Oracle\Ora81\ifs\j
    re\lib\rt.jar;\Oracle\Ora81\ifs\jre\lib\i18n.jar;\Oracle\Ora81\jdbc\lib\classes1
    11.zip;\Oracle\Ora81\lib\vbjorb.jar;\Oracle\Ora81\jlib\xmlparserv2.jar;\Oracle\O
    ra81\ifs\lib\repos.jar;\Oracle\Ora81\ifs\lib\adk.jar;\Oracle\Ora81\ifs\lib\email
    .jar;\Oracle\Ora81\ifs\lib\tools.jar;\Oracle\Ora81\ifs\lib\utils.jar;\Oracle\Ora
    81\ifs\lib\release.jar;\Oracle\Ora81\assistants\jlib\jnls.jar;\Oracle\Ora81\ifs\
    custom_classes;\Oracle\Ora81\ifs\webui_classes;\Oracle\Ora81\ifs\lib\http.jar;\O
    racle\Ora81\ifs\lib\webui.jar;\Oracle\Ora81\ifs\lib\clientlib.jar;\Oracle\Ora81\
    ifs\jws\lib\servlet.jar;\Oracle\Ora81\ifs\jws\lib\jst.jar;\Oracle\Ora81\ifs\jre\
    lib\javac.jar;\Oracle\Ora81\ifs\settings;\Oracle\Ora81\ifs\jre\lib\rt.jar;\Oracl
    e\Ora81\ifs\jre\lib\i18n.jar;\Oracle\Ora81\jdbc\lib\classes111.zip;\Oracle\Ora81
    \lib\vbjorb.jar;\Oracle\Ora81\jlib\xmlparserv2.jar;\Oracle\Ora81\ifs\lib\repos.j
    ar;\Oracle\Ora81\ifs\lib\adk.jar;\Oracle\Ora81\ifs\lib\email.jar;\Oracle\Ora81\i
    fs\lib\tools.jar;\Oracle\Ora81\ifs\lib\utils.jar;\Oracle\Ora81\ifs\lib\release.j
    ar;\Oracle\Ora81\assistants\jlib\jnls.jar;\Oracle\Ora81\ifs\custom_classes;\Orac
    le\Ora81\ifs\webui_classes;\Oracle\Ora81\ifs\lib\http.jar;\Oracle\Ora81\ifs\lib\
    webui.jar;\Oracle\Ora81\ifs\lib\clientlib.jar;\Oracle\Ora81\ifs\jws\lib\servlet.
    jar;\Oracle\Ora81\ifs\jws\lib\jst.jar;\Oracle\Ora81\ifs\jre\lib\javac.jar;C:\Ora
    cle\Ora81\ifs\jre\lib\rt.jar;C:\Oracle\Ora81\ifs\jre\lib\i18n.jar;C:\Oracle\Ora8
    1\ifs\jre\lib\classes.zip;C:\Oracle\Ora81\ifs\jre\classes
    javawebserver: java.library.path is null
    (b) Path values
    C:\Oracle\Ora81\ifs\bin>set PATH
    Path="C:\Oracle\Ora81\ifs\bin";C:\Oracle\Ora81\bin;C:\jdk1.1.8\bin;C:\WINNT\syst
    em32;C:\WINNT;C:\WINNT\system32\nls\ENGLISH;C:\WINNT\system32\nls;C:\Oracle\Ora8
    1\orb\bin
    PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH
    (c) Classpath values
    C:\Oracle\Ora81\ifs\bin>set CLASSPATH
    CLASSPATH=Files\Exceed.nt\hcljrcsv.jar;C:\Oracle\Ora81\orb\classes\yoj.jar;C:\Or
    acle\Ora81\orb\classes\share.zip;C:\Oracle\Ora81\jdbc\lib\classes111.zip
    null

    I have the same error when I try to connect from another machine to iFS.
    oracle.ifs.common.IfsException: IFS-10620: Unable to construct connection pool
    oracle.ifs.common.IfsException: IFS-10633: Unable to create library connection
    oracle.ifs.common.IfsException: IFS-10600: Unable to construct library connectio
    n
    iFS API is working only with jdk1.1.8 ?
    I'm just using your API and I can assure you that IfsDefault.properties is as you advice and inluded in classpath.
    Please reply if you have any solution to this
    Thank you verry much

  • Error in starting iFS from NT 4.0

    Hi,
    Im having difficulty in starting "ifsstart" and I am getting the following error message in the the ifsagent & ifsprotocol log files.
    IfsException in starting ServerManager; FATAL
    oracle.ifs.common.IfsException: IFS-10620: Unable to construct connection pool
    oracle.ifs.common.IfsException: IFS-10633: Unable to create library connection
    oracle.ifs.common.IfsException: IFS-10600: Unable to construct library connection
    java.sql.SQLException: Error while trying to retrieve text for error ORA-12705
    Server Manager exiting.
    Any ideas?

    If you get an error like:
    java.sql.SQLException: Error while trying to retrieve text for error ORA-xxxxx, it usually means that you can't even access the database at all. I think that you might no be able to use SQL*Plus at this point. Of course, you can't start iFS without having a connection to the database. This is what the error means.

  • Problem in the iFS map drive...!

    Thanks for your concern:
    As you know, in window explorer,iFS map drive is very convenient facility.According to install procedure in some documents, i installed these on client-pc and rebooted. But there was no notification for which machine is iFS server when i mapped iFS server to map-drive in local.In set&admin guide,there might be some notification beside machine name in map-network drive diallog box as like "iFS server".
    what's wrong?. but,in program group of start menu,iFS utilities are generated correctly.
    Only in mapping iFS drive,these problems are occured.
    I wonder:
    1.When iFS server is started with ifsstart command, Are there any droped,but essential,agent or protocol by my mistake?
    thanks......
    null

    Something wrong in IfsProtocols.log file..
    What should I do?
    IfsProtocols.log
    Wed Aug 23 15:56:36 JST 2000
    IfsException in starting ServerManager; FATAL
    oracle.ifs.common.IfsException: IFS-10620: Unable to construct connection pool
    oracle.ifs.common.IfsException: IFS-10633: Unable to create library connection
    oracle.ifs.common.IfsException: IFS-10600: Unable to construct library connection
    java.sql.SQLException: ORA-01033: ORACLE initialization or shutdown in progress
    Server Manager exiting.
    Wed Aug 23 15:58:18 JST 2000
    Server STARTED: IfsProtocols(37416) not managed
    Attempting to load agent FtpServerAgent
    Agent FtpServerAgent loaded
    Attempting to start agent FtpServerAgent
    Agent FtpServerAgent started
    Attempting to load agent CupServerAgent
    Agent CupServerAgent loaded
    FtpServerAgent: Start request
    Server STARTED: IfsAgents(37415) not managed
    FtpServerAgent: passing credentials
    FtpServerAgent: starting timer
    FtpServerAgent: Timer timeouts remaining set to 4
    Attempting to start agent CupServerAgent
    Agent CupServerAgent started
    Attempting to load agent NtfsServerAgent
    Agent NtfsServerAgent loaded
    CupServerAgent: Start request
    CupServerAgent: passing credentials
    CupServerAgent: starting timer
    CupServerAgent: Timer timeouts remaining set to 4
    Attempting to start agent NtfsServerAgent
    Agent NtfsServerAgent started
    Attempting to load agent WcpServerAgent
    Agent WcpServerAgent loaded
    NtfsServerAgent: Start request
    NtfsServerAgent: passing credentials
    NtfsServerAgent: starting timer
    NtfsServerAgent: Timer timeouts remaining set to 4
    Attempting to start agent WcpServerAgent
    Agent WcpServerAgent started
    Attempting to load agent ImapServerAgent
    WcpServerAgent: Start request
    Agent ImapServerAgent loaded
    WcpServerAgent: passing credentials
    WcpServerAgent: starting timer
    WcpServerAgent: Timer timeouts remaining set to 4
    Attempting to start agent ImapServerAgent
    Agent ImapServerAgent started
    Attempting to load agent SmtpServerAgent
    Agent SmtpServerAgent loaded
    ImapServerAgent: Start request
    ImapServerAgent: passing credentials
    ImapServerAgent: starting timer
    ImapServerAgent: Timer timeouts remaining set to 4
    Attempting to start agent SmtpServerAgent
    Agent SmtpServerAgent started
    SmtpServerAgent: Start request
    SmtpServerAgent: passing credentials
    SmtpServerAgent: starting timer
    SmtpServerAgent: Timer timeouts remaining set to 4
    Server STARTED: CupServer(37600) managed by IfsProtocols(37416)
    CupServerAgent: Server STARTED: CupServer(37600) managed by IfsProtocols(37416)
    Server STARTED: FtpServer(37619) managed by IfsProtocols(37416)
    FtpServerAgent: Server STARTED: FtpServer(37619) managed by IfsProtocols(37416)
    Server STARTED: WcpServer(37621) managed by IfsProtocols(37416)
    WcpServerAgent: Server STARTED: WcpServer(37621) managed by IfsProtocols(37416)
    FtpServerAgent: timer expired with internal status of Starting...
    FtpServerAgent: remaining timeouts reduced to 3
    FtpServerAgent: Server Created with internal status of Starting...
    FtpServerAgent: stopping timer
    WcpServerAgent: timer expired with internal status of Starting...
    WcpServerAgent: remaining timeouts reduced to 3
    WcpServerAgent: Server Created with internal status of Starting...
    WcpServerAgent: stopping timer
    CupServerAgent: timer expired with internal status of Starting...
    CupServerAgent: remaining timeouts reduced to 3
    CupServerAgent: Server Created with internal status of Starting...
    CupServerAgent: stopping timer
    ImapServerAgent: timer expired with internal status of Starting...
    ImapServerAgent: remaining timeouts reduced to 3
    NtfsServerAgent: timer expired with internal status of Starting...
    NtfsServerAgent: remaining timeouts reduced to 3
    SmtpServerAgent: timer expired with internal status of Starting...
    SmtpServerAgent: remaining timeouts reduced to 3
    Server STARTED: ImapServer(37647) managed by IfsProtocols(37416)
    ImapServerAgent: Server STARTED: ImapServer(37647) managed by IfsProtocols(37416)
    ImapServerAgent: Server Created with internal status of Starting...
    ImapServerAgent: stopping timer
    Server STARTED: SmtpServer(37658) managed by IfsProtocols(37416)
    SmtpServerAgent: Server STARTED: SmtpServer(37658) managed by IfsProtocols(37416)
    SmtpServerAgent: Server Created with internal status of Starting...
    SmtpServerAgent: stopping timer
    NtfsServerAgent: timer expired with internal status of Starting...
    NtfsServerAgent: remaining timeouts reduced to 2
    Server STARTED: NtfsServer(37667) managed by IfsProtocols(37416)
    NtfsServerAgent: Server STARTED: NtfsServer(37667) managed by IfsProtocols(37416)
    NtfsServerAgent: Server Created with internal status of Starting...
    NtfsServerAgent: stopping timer
    null

  • IfsException: IFS-10600

    Hi.
    I have followed all the steps I have been able to find for creating a connection from a NT workstation to IFS 1.1 on a Solaris Box.
    Important error messages:
    IfsException: IFS-10600: Unable to construct library connection
    java.sql.SQL
    Exception: ORA-12154: TNS:could not resolve service name
    I have installed oracle NT client 8.1.7
    I think the tnsnames.ora file may be in the wrong place (the client is installed in D:\oracle). Do I need to put it's location in the class path? Please help.
    I am putting the whole stack trace below:
    C:\Program Files\Oracle\JDeveloper 3.2\jdk1.3.0_01\jre\bin\java" -XXdebug -mx50m -classpath "C:\Program Files\Oracle\JDeveloper 3.2\myclasses;C:\Program Files\Oracle\JDeveloper 3.2\lib\jdev-rt.zip;C:\Program Files\Oracle\JDeveloper 3.2\jdbc\lib\oracle8.1.7\classes12.zip;C:\Program Files\Oracle\JDeveloper 3.2\lib\connectionmanager.zip;C:\Program Files\Oracle\JDeveloper 3.2\lib\webtogo.jar;C:\Program Files\Oracle\JDeveloper 3.2\lib\xmlparserv2.jar;C:\Program Files\Oracle\JDeveloper 3.2\lib\ojsp.jar;C:\Program Files\Oracle\JDeveloper 3.2\lib\servlet.jar;C:\Program Files\Oracle\JDeveloper 3.2\lib\jbcl2.0.zip;C:\Program Files\Oracle\JDeveloper 3.2\jfc\lib\swingall.jar;C:\Program Files\Oracle\JDeveloper 3.2\ifs\lib\adk.jar;C:\Program Files\Oracle\JDeveloper 3.2\ifs\lib\email.jar;C:\Program Files\Oracle\JDeveloper 3.2\ifs\lib\release.jar;C:\Program Files\Oracle\JDeveloper 3.2\ifs\lib\repos.jar;C:\Program Files\Oracle\JDeveloper 3.2\ifs\lib\utils.jar;C:\Program Files\Oracle\JDeveloper 3.2\ifs\settings;C:\Program Files\Oracle\JDeveloper 3.2\jdk1.3.0_01\lib\dt.jar;C:\Program Files\Oracle\JDeveloper 3.2\jdk1.3.0_01\jre\lib\rt.jar;C:\Program Files\Oracle\JDeveloper 3.2\jdk1.3.0_01\jre\lib\i18n.jar" package2.Dgw
    System Output: oracle.ifs.common.IfsException: IFS-10620: Unable to construct connection pool
    System Output: oracle.ifs.common.IfsException: IFS-10633: Unable to create library connection
    System Output: oracle.ifs.common.IfsException: IFS-10600: Unable to construct library connection
    System Output: java.sql.SQL
    System Output: Exception: ORA-12154: TNS:could not resolve service name
    System Output:
    System Output:
    System Output: oracle.ifs.server.S_LibraryService oracle.ifs.server.S_LibraryService.startService(java.lang.String, java.lang.String) (S_LibraryService.java:1129)
    System Output: oracle.ifs.server.S_LibrarySessionInterface
    System Output: oracle.ifs.beans.LibraryService.connectLocal(oracle.ifs.common.Credential, oracle.ifs.common.ConnectOptions) (LibraryService.java:408)
    System Output: oracle.ifs.beans.LibrarySession oracle.ifs.beans.LibraryService.connect(oracle.ifs.common.Credential, oracle.ifs.commo
    System Output: n.ConnectOptions) (LibraryService.java:280)
    System Output: java.lang.String[] package2.ListFolder.getContents(java.lang.Long) (ListFolder.java:57)
    System Output: void package2.Frame1.setPanelVisible(int) (Frame1.java:170)
    System Output: void package2.Frame1$1.actionPerformed(java.awt.event.Act
    System Output: ionEvent) (Frame1.java:544)
    System Output: void javax.swing.AbstractButton.fireActionPerformed(java.awt.event.ActionEvent) (AbstractButton.java:1450)
    System Output: void javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(java.awt.event.ActionEvent) (AbstractButton.java:150
    System Output: 4)
    System Output: void javax.swing.DefaultButtonModel.fireActionPerformed(java.awt.event.ActionEvent) (DefaultButtonModel.java:378)
    System Output: void javax.swing.DefaultButtonModel.setPressed(boolean) (DefaultButtonModel.java:250)
    System Output: void javax.swing.plaf.basic.BasicButtonListene
    System Output: r.mouseReleased(java.awt.event.MouseEvent) (BasicButtonListener.java:216)
    System Output: void java.awt.Component.processMouseEvent(java.awt.event.MouseEvent) (Component.java:3717)
    System Output: void java.awt.Component.processEvent(java.awt.AWTEvent) (Component.java:3546)
    System Output: void j
    System Output: ava.awt.Container.processEvent(java.awt.AWTEvent) (Container.java:1164)
    System Output: void java.awt.Component.dispatchEventImpl(java.awt.AWTEvent) (Component.java:2595)
    System Output: void java.awt.Container.dispatchEventImpl(java.awt.AWTEvent) (Container.java:1213)
    System Output: void java.a
    System Output: wt.Component.dispatchEvent(java.awt.AWTEvent) (Component.java:2499)
    System Output: void java.awt.LightweightDispatcher.retargetMouseEvent(java.awt.Component, int, java.awt.event.MouseEvent) (Container.java:2451)
    System Output: boolean java.awt.LightweightDispatcher.processMouseEvent(j
    System Output: ava.awt.event.MouseEvent) (Container.java:2216)
    System Output: boolean java.awt.LightweightDispatcher.dispatchEvent(java.awt.AWTEvent) (Container.java:2125)
    System Output: void java.awt.Container.dispatchEventImpl(java.awt.AWTEvent) (Container.java:1200)
    System Output: void java.awt.Window.dis
    System Output: patchEventImpl(java.awt.AWTEvent) (Window.java:912)
    System Output: void java.awt.Component.dispatchEvent(java.awt.AWTEvent) (Component.java:2499)
    System Output: void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent) (EventQueue.java:319)
    System Output: boolean java.awt.EventDispatchThread.p
    System Output: umpOneEvent() (EventDispatchThread.java:103)
    System Output: void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional) (EventDispatchThread.java:93)
    System Output: void java.awt.EventDispatchThread.run() (EventDispatchThread.java:84)
    System Output:
    null

    Originally posted by Luis:Did you install iFS on the Windows box, into the same ORACLE_HOME as the Oracle client? Or did you just copy the .jar files over (or use the ones that come with JDeveloper) and then write and compile a custom app?
    I did not install iFS on the Windows box at all (Do I need to?). I'm using the .jar files that came with JDeveloper.Where did you get the
    C:\Program Files\Oracle\JDeveloper 3.2\ifs\settings directory?
    I copied the whole \settings directory (with no changes) from the server where iFS is installed into the existing ifs directory on my NT workstation under Oracle/JDeveloper.you should be able to cd to: ...\ifs\settings\oracle\ifs\server\properties -- do so and then you should see at least one .properties file. Hopefully you'll find a ServerManager.properties file, since that's the service name you specified in the code you're using to connect to iFS.
    Yes, ServerManager.properties is there. I'm going to paste it below along with TNS name. Unfortunately it appears that the service name "World" is in both files. Or if that is not correct could you say exactly how it should be written.TNS names:
    # TNSNAMES.ORA Network Configuration File: D:\Oracle\Ora81\NETWORK\ADMIN\tnsnames.ora
    # Generated by Oracle configuration tools.
    WORLD.US.SAS.COM =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = sonoma.unx.sas.com)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = world)
    ServerManager.properties: (not everything, this file is long):
    AuroraService=false
    Driver=oracle.jdbc.driver.OracleDriver
    User=IFSSYS
    DatabaseUrl=jdbc:oracle:oci8:@world
    JdbcTracing=false
    DefaultRowPrefetch=0
    CaseSensitiveAuthentication=false
    CredentialManagers=Ifs
    CredentialManagerIfsClassname=oracle.ifs.server.IfsCredentialManager
    CredentialManagerIfsAlternateNames=IFS, DEFAULT
    CredentialManagerIfsSchema=IFSSYS$CM
    CredentialManagerIfsRdbmsUserMustExist=false
    CredentialManagerIfsAcceptCleartextCredential=true
    CredentialManagerIfsAcceptChallengeResponseCredential=true
    CredentialManagerIfsAcceptHttpDigestCredential=true
    CredentialManagerIfsAcceptTokenCredential=true
    NOTE: sonoma.unx.sas.com is the server where the oracle database is located. However munin.unx.sas.com is the server where ifs is located. When I use sql*plus I am connecting to sonoma and the database, not iFS. I believe this is correct and this is what my java app should also connect to (sonoma not munin). munin doesn't have a service name and there is no way for the client software to connect to it. Is this correct or could this be causing the problem?
    Thanks so much for your help.
    -Nick
    null

  • IFS on NT and ORacle8i on Linux

    Hi there,
    I am trying to install IFS on an NT box that talks to an oracle8i server on a Linux box.
    I have installed a vanilla Oriacle8i on the Linux box with all the default passwords and made sure I followed the IFS instructions.
    I then installed Oracle8i client on the NT box and I can use the DBA Studio to connect to the database on the Linux box.
    Then I install IFS and run through the configuration assistant, which creates all the tables in the database and the ifssys user.
    Then I try to start IFS using the ifsstart batch file and get asked for the usernames/passwords I use the defaults given in the documentation and receive the error message:
    "Error launching iFS PROTOCOLS.
    Consult the following log file for details:
    E:\ifs\log\IfsProtocols.log
    The error reported was:
    Unable to start iFS ServerManager
    Invalid credentials specified"
    then anther box:
    "Error launching iFS AGENTS.
    Consult the following log file for details:
    E:\ifs\log\IfsAgents.log
    The error reported was:
    Unable to start iFS ServerManager
    Invalid credentials specified"
    Looking at the log files gives me:
    Protocols:
    Fri Sep 29 15:18:15 GMT 2000
    IfsException in starting ServerManager; FATAL
    oracle.ifs.common.IfsException: IFS-10620: Unable to construct connection pool
    oracle.ifs.common.IfsException: IFS-10633: Unable to create library connection
    oracle.ifs.common.IfsException: IFS-10600: Unable to construct library connection
    java.sql.SQLException: Error while trying to retrieve text for error ORA-12705
    Server Manager exiting.
    Agents:
    Fri Sep 29 15:18:15 GMT 2000
    IfsException in starting ServerManager; FATAL
    oracle.ifs.common.IfsException: IFS-10620: Unable to construct connection pool
    oracle.ifs.common.IfsException: IFS-10633: Unable to create library connection
    oracle.ifs.common.IfsException: IFS-10600: Unable to construct library connection
    java.sql.SQLException: Error while trying to retrieve text for error ORA-12705
    Server Manager exiting.
    Can anyone help?
    Mark

    Mark,
    look at discussions on error 503, it looks like you have got a similar problem (well the lok is the same)
    null

  • Connection to iFS from a remote station & .properties file syntax

    Hello,
    I want to make a java application (running on a simple NT workstation) that is able to connect onto the iFS-1.1.9 server (running on a different unix server).
    So I copied all the necessary jar and zip files from the iFS server, installed JDK1.1.8 (would it work with JDK 1.3 since I have iFS-1.1.9 ?), put all necessary jar/zip files in the classpath and I was able to compile the sample program given in the iFS dev guide.
    I know that I also need a "service.properties" file that is in oracle.ifs.server.properties directory in my CLASSPATH, that point is ok.
    The fact is that I don't have a clue about the exact syntax of that file. I only have as an example the standard servers.properties file on my iFS server itself, but the "DatabaseUrl" attribute is probably not the same because in my case the service is running on a remote machine...
    As a result, when I launch my java app on my workstation it says :
    oracle.ifs.common.IfsException: IFS-10620: Unable to construct connection pool
    oracle.ifs.common.IfsException: IFS-10633: Unable to create library connection
    oracle.ifs.common.IfsException: IFS-10600: Unable to construct library connection
    So is there anything I am missing ? Where can I find the definition and syntax of all attributes in the .properties file ?
    Thanks in advance for any help.
    Regards,
    Arnaud.
    null

    <BLOCKQUOTE><font size="1" face="Verdana, Arial, Helvetica">quote:</font><HR>Thanks to your advises, here is the simple properties file I created (only 3 lines) :
    User=IFSSYS
    DatabaseUrl=jdbc:oracle:oci8:haddock/tciDir
    CredentialManagerIfsSchema=IFSSYS$CM
    <HR></BLOCKQUOTE>
    OK, so there are two problems. First of all, I should have explained better. You absolutely need ALL of the other properties in the new service properties file you have created. What I should have said in the last post was that the above three properties are the only ones you need to CHANGE. What you should do is copy IfsDefault.properties from the iFS installation ($OH/ifs1.1/settings/oracle/ifs/server/properties) to your NT machine, and then EDIT those three properties as you have specified above. And make sure to put it in the CLASSPATH correctly, under the same directory hierarchy.
    The second problem is your JDBC database URL. The format for the OCI8 connect string using a TNS alias is as follows:
    jdbc:oracle:oci8:@<tns_alias>
    where <tns_alias> is a name you create with the Oracle Net8 Assistant (it should be on your NT machine under your Start menu: Oracle-<your_oracle_home>/Network Administration).
    You should read the Net8 Administration Guide for more information about TNS aliases and how to use "thick" (OCI8) JDBC.

  • Running ifs and ctx as service

    I am trying to run ctx and ifs as a service so that I can log off the administrator. I have created a service using the windows2000 resource toolkit, and start ifs and ctx in a .bat file for the service to run. I added two dependencies to the service: OracleTNSListener and OracleServiceORCL817. I get these errors in the log files:
    **Ctx Error**
    11-14-04 08/27/02 === OCO server startup ===
    11-14-04 08/27/02 Initialized CORE
    11-14-12 08/27/02 === Server failure ===
    11-14-13 08/27/02 DRG-11100: unable to connect to the database
    11-14-13 08/27/02 ORA-12560: TNS:protocol adapter error
    11-14-14 08/27/02 Fail to OCIServerAttach...
    11-14-15 08/27/02 === Server shutting down ===
    **Agents and protocol log **
    Tue Aug 27 11:00:08 CDT 2002
    IfsException in starting ServerManager; FATAL
    oracle.ifs.common.IfsException: IFS-10620: Unable to construct connection pool
    oracle.ifs.common.IfsException: IFS-10633: Unable to create library connection
    oracle.ifs.common.IfsException: IFS-10600: Unable to construct library connection
    java.sql.SQLException: ORA-12560: TNS:protocol adapter error
    Server Manager exiting.
    My question is if it is even possible to do this and if so why don't these start?
    ** File Service runs**
    call c:\oracle\ora817\ifs1.1\bin\ifsstart.bat
    call c:\oracle\ora817\bin\ctxsrv -user ctxsys/ctxsys -log c:\oracle\ifsconfig\ctxm.log
    Urgently need advice.

    If you have database and iFS on one computer, your problem is probably the sequence of starting services.
    You probably don't have database or/and listener started by the time you start iFS.
    Maybe the solution is to modify your scripts to check that database is started or to wait some time before starting iFS.
    Alexandre

  • Error starting iFS Processes

    Hello,
    After installing Oracle 8.1.7 I had problems to connect as sys/change_on_install to shut down my database (i describe the problem under the topic ORA-01031). After ignoring this problem i have installed on the same NT Server iFS 1.1 (I have 1GB RAM, PIII: i think that is ok). After the successful installing and configurating iFS, i tried to logon through the WEb-interface. I got the following message:
    Error launching iFS PROTOCOLS.
    The error reported was: Invalid credential specified.
    IfsProtocols.log has the following contents:
    Wed Feb 07 19:04:50 GMT+02:00 2001
    IfsException in starting ServerManager; FATAL
    oracle.ifs.common.IfsException: IFS-10620: Unable to construct connection pool
    oracle.ifs.common.IfsException: IFS-10633: Unable to create library connection
    oracle.ifs.common.IfsException: IFS-10600: Unable to construct library connection
    java.sql.SQLException: ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist
    Server Manager exiting.
    Error launching iFS AGENTS:
    The error reported was: Invalid credential specified.
    IfsAgents.log has the following contents:
    Wed Feb 07 19:04:51 GMT+02:00 2001
    IfsException in starting ServerManager; FATAL
    oracle.ifs.common.IfsException: IFS-10620: Unable to construct connection pool
    oracle.ifs.common.IfsException: IFS-10633: Unable to create library connection
    oracle.ifs.common.IfsException: IFS-10600: Unable to construct library connection
    java.sql.SQLException: ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist
    Server Manager exiting.
    Please help...
    Thanx...
    null

    The problem was that the database was down. After starting the database everything was ok.
    Please ignore my question.

  • IFS Manager problem... Please Help!

    Hi,
    I am having problems getting 9IFS Manager to work. Everything else works (CUP, Java code, Web UI, etc). I am entering the same credential info that works for all my other tests (admin=system, password=manager, schema password=ifssys).
    It seems that I need a TNS Listener, and I know I have one on the DB platform. Do I also need one on the 2nd tier platform where IFS is installed?
    Any help would be greatly appreciated. The error message and my config info is below.
    Thanks,
    Ray
    ERROR DETAILS
    Repository credential authentication failed.
    IFS-20102: Unable to start service (ifsdb-IFSSYS)
    IFS-20102: Unable to start service (ifsdb-IFSSYS)
    IFS-20122: Unable to construct service
    IFS-10620: Unable to construct connection pool
    IFS-10633: Unable to create library connection
    IFS-10600: Unable to construct library connection
    java.sql.SQLException ORA-12541: TNS:no listener
    MY CONFIGURATION INFO
    DB => 9.0.1.3
    DB Platform => Solaris 2.6
    DB SID => ifsdb
    2nd Tier Platform => Windows 2000 Server
    IFS Version => 9.0.1

    I have the same problem. I'm not using applets but standard Java application.
    Yesterday I've created new Ubuntu user and under this user the program crashes with the same stacktrace as in the previous message. Under another user it works well. I can't find out where can be the difference between this users and what is the cause of the problem.
    Rmiregistry is started the same way as I usually do. No parameters.

  • Ifs connection errors

    Hello,
    First please forgive my poor English.
    I'm writing a little application in java in order to test IFS
    fonctionnalities.
    When I launch the connect method from LibraryService class I
    have the followings errors :
    The following Java exception was thrown:
    oracle.ifs.common.IfsException:
    IFS-20102: Unable to start service (IfsDefault)
    oracle.ifs.common.IfsException:
    IFS-20122: Unable to construct service
    oracle.ifs.common.IfsException:
    IFS-10620: Unable to construct connection pool
    oracle.ifs.common.IfsException:
    IFS-10633: Unable to create library.
    I used IfsDefault.properties file from the server side (windows
    2000).
    Anyone can help ?
    Thanks in advance
    Regards
    Fred

    I'm guessing you should make your monitoring software stop and start iFS after a database restart. iFS uses persistent connections to the database sometimes, and it doesn't restart itself after a restart.
    Metalink support may be able to provide better help with this as it's not a development issue.

  • Connect to Ifs by HelloWorld

    After I compile following HelloWorld.java, I have gotten a lot of error reports.
    How can I solve this probleme. I am expecting your help
    Yiping
    Following are reports and programme.
    //reports
    Obtaining LibraryService.
    oracle.ifs.common.IfsException: IFS-20102: Unable to start service (IfsDefault)
    oracle.ifs.common.IfsException: IFS-20122: Unable to construct service
    oracle.ifs.common.IfsException: IFS-10620: Unable to construct connection pool
    oracle.ifs.common.IfsException: IFS-10633: Unable to create library connection
    oracle.ifs.common.IfsException: IFS-10600: Unable to construct library connection
    java.sql.SQLException: Zeichensatz nicht unterst|tzt !!: DBConversion
         void oracle.jdbc.dbaccess.DBError.throwSqlException(java.lang.String, java.lang.String, int)
         void oracle.jdbc.dbaccess.DBError.throwSqlException(int, java.lang.Object)
         void oracle.jdbc.dbaccess.DBError.check_error(int, java.lang.Object)
         void oracle.jdbc.dbaccess.DBConversion.unexpectedCharset(short)
         void oracle.jdbc.dbaccess.DBConversion.<init>(short, short, short)
         oracle.jdbc.dbaccess.DBConversion oracle.jdbc.oci8.OCIDBAccess.logon(java.lang.String, java.lang.String, java.lang.String, java.util.Properties)
         void oracle.jdbc.driver.OracleConnection.<init>(oracle.jdbc.dbaccess.DBAccess, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.util.Properties)
         java.sql.Connection oracle.jdbc.driver.OracleDriver.getConnectionInstance(java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.util.Properties)
         java.sql.Connection oracle.jdbc.driver.OracleDriver.connect(java.lang.String, java.util.Properties)
         java.sql.Connection java.sql.DriverManager.getConnection(java.lang.String, java.util.Properties, java.lang.ClassLoader)
         java.sql.Connection java.sql.DriverManager.getConnection(java.lang.String, java.lang.String, java.lang.String)
         void oracle.ifs.server.LibraryConnection.<init>(long, oracle.ifs.server.S_LibraryService, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.io.PrintStream, int)
         oracle.ifs.server.LibraryConnection oracle.ifs.server.ConnectionPool.constructLibraryConnection(int)
         void oracle.ifs.server.ConnectionPool.createLibraryConnection()
         void oracle.ifs.server.ConnectionPool.<init>(oracle.ifs.server.S_LibraryService, oracle.ifs.server.ConnectionPoolConfiguration)
         void oracle.ifs.server.S_LibraryService.resetConnectionPools(boolean)
         void oracle.ifs.server.S_LibraryService.<init>(java.lang.String, java.lang.String, oracle.ifs.common.AttributeValue[])
         oracle.ifs.server.S_LibraryService oracle.ifs.server.S_LibraryService.startService(java.lang.String, java.lang.String, oracle.ifs.common.AttributeValue[])
         oracle.ifs.beans.LibraryService oracle.ifs.beans.LibraryService.startService(java.lang.String, java.lang.String, oracle.ifs.common.AttributeValue[])
         oracle.ifs.beans.LibraryService oracle.ifs.beans.LibraryService.startService(java.lang.String, java.lang.String)
         void de.adstec.sam.adapter.ifs.HelloWorld.run()
         void java.lang.Thread.run()
    Process exited with exit code 0.
    //Programm
    package de.adstec.sam.adapter.ifs;
    import oracle.ifs.beans.LibraryService;
    import oracle.ifs.beans.LibrarySession;
    import oracle.ifs.common.CleartextCredential;
    import oracle.ifs.common.ConnectOptions;
    import oracle.ifs.common.IfsException;
    import oracle.ifs.common.ParameterTable;
    public class HelloWorld implements Runnable
    ParameterTable params = null;
    String username = null;
    String password = null;
    String servicename = null;
    String schemapassword = null;
    public HelloWorld(String[] args)
    params = new ParameterTable(args);
    username = params.getString("user", "system");
    password = params.getString("password","manager9ifs");
    servicename = params.getString("service","IfsDefault");
    schemapassword = params.getString("schemapassword","ifssys");
    System.out.println("Running with arguments : ");
    System.out.println(" username = " + username);
    System.out.println(" password = " + password);
    System.out.println(" servicename = " + servicename);
    System.out.println(" schemapassword = " + schemapassword);
    System.out.println("---------Results----------");
    public static void main (String[] args)
    new Thread(new HelloWorld(args)).start();
    public void run()
    try
    System.out.println("Obtaining LibraryService.");
    LibraryService lsrvc = LibraryService.startService(servicename,schemapassword);
    System.out.println("LibraryService obtained for Oracle iFS version: " +
    lsrvc.getVersionString());
    System.out.println("Obtaining LibrarySession.");
    CleartextCredential cr = new CleartextCredential(username,password);
    ConnectOptions cop = new ConnectOptions();
    LibrarySession session = lsrvc.connect(cr, cop);
    System.out.println("LibrarySession obtained for user : " + session.getUser().getName());
    catch(IfsException e )
    e.printStackTrace();
    //Classpath
    W:\libs\external\Oracle\9ifs\adk.jar;W:\libs\external\Oracle\9ifs\email.jar;W:\libs\external\Oracle\9ifs\repos.jar;W:\libs\external\Oracle\9ifs\utils.jar;W:\libs\external\Oracle\9ifs\settings;C:\9ifs\jdbc\lib\classes12.zip

    you can get the right name for ifsservice by starting
    the ifsmgr
    the right name are displayed
    you shoud start the script on the ifs-Server
    if you want to test the script
    if you want to start from a other host as ifs-Server i don't known how it work

  • Problem getting iFS to start.

    I'm running Win2K, Oracle8i Release2, and OEM 2.1. Everything is running on the same machine (PIII 733Mhz, 256MB)
    I then installed iFS but when I try to run it I receive these errors:
    From the ifsAgent log:
    Wed Aug 16 17:31:11 EDT 2000
    IfsException in starting ServerManager; FATAL
    oracle.ifs.common.IfsException: IFS-10620: Unable to construct connection pool
    oracle.ifs.common.IfsException: IFS-10633: Unable to create library connection
    oracle.ifs.common.IfsException: IFS-10600: Unable to construct library connection
    java.sql.SQLException: ORA-01017: invalid username/password; logon denied
    Server Manager exiting.
    Wed Aug 16 17:46:03 EDT 2000
    IfsException in starting ServerManager; FATAL
    oracle.ifs.common.IfsException: IFS-10620: Unable to construct connection pool
    oracle.ifs.common.IfsException: IFS-10633: Unable to create library connection
    oracle.ifs.common.IfsException: IFS-10600: Unable to construct library connection
    java.sql.SQLException: ORA-01017: invalid username/password; logon denied
    Server Manager exiting.
    Thu Aug 17 10:27:57 EDT 2000
    IfsException in starting ServerManager; FATAL
    oracle.ifs.common.IfsException: IFS-10620: Unable to construct connection pool
    oracle.ifs.common.IfsException: IFS-10633: Unable to create library connection
    oracle.ifs.common.IfsException: IFS-10600: Unable to construct library connection
    java.sql.SQLException: ORA-01017: invalid username/password; logon denied
    Server Manager exiting.
    From the ifsProtocols log:
    Wed Aug 16 17:26:19 EDT 2000
    IfsException in starting ServerManager; FATAL
    oracle.ifs.common.IfsException: IFS-10620: Unable to construct connection pool
    oracle.ifs.common.IfsException: IFS-10633: Unable to create library connection
    oracle.ifs.common.IfsException: IFS-10600: Unable to construct library connection
    java.sql.SQLException: ORA-01017: invalid username/password; logon denied
    Server Manager exiting.
    Wed Aug 16 17:31:11 EDT 2000
    IfsException in starting ServerManager; FATAL
    oracle.ifs.common.IfsException: IFS-10620: Unable to construct connection pool
    oracle.ifs.common.IfsException: IFS-10633: Unable to create library connection
    oracle.ifs.common.IfsException: IFS-10600: Unable to construct library connection
    java.sql.SQLException: ORA-01017: invalid username/password; logon denied
    Server Manager exiting.
    Wed Aug 16 17:46:03 EDT 2000
    IfsException in starting ServerManager; FATAL
    oracle.ifs.common.IfsException: IFS-10620: Unable to construct connection pool
    oracle.ifs.common.IfsException: IFS-10633: Unable to create library connection
    oracle.ifs.common.IfsException: IFS-10600: Unable to construct library connection
    java.sql.SQLException: ORA-01017: invalid username/password; logon denied
    Server Manager exiting.
    From the ifsConfigOut log:
    java.sql.SQLException: ORA-00922: missing or invalid option
    at java.lang.Throwable.<init>(Compiled Code)
    at java.lang.Exception.<init>(Compiled Code)
    at java.sql.SQLException.<init>(SQLException.java:43)
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java)
    at oracle.jdbc.oci8.OCIDBAccess.check_error(Compiled Code)
    at oracle.jdbc.oci8.OCIDBAccess.executeFetch(Compiled Code)
    at oracle.jdbc.oci8.OCIDBAccess.parseExecuteFetch(OCIDBAccess.java)
    at oracle.jdbc.driver.OracleStatement.executeNonQuery(Compiled Code)
    at oracle.jdbc.driver.OracleStatement.doExecuteOther(OracleStatement.java)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithBatch(OracleStatement.java)
    at oracle.jdbc.driver.OracleStatement.doExecute(Compiled Code)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(Compil ed Code)
    at oracle.jdbc.driver.OracleStatement.execute(OracleStatement.java)
    at oracle.ifs.utils.sql.SQLCommands.createUser(SQLCommands.java:347)
    at oracle.ifs.installer.IfsConfiguration$CreateSchemaAction.createIfsUser(IfsConfiguration.java:489)
    at oracle.ifs.installer.IfsConfiguration$CreateSchemaAction.perform(IfsConfiguration.java:464)
    at oracle.ifs.utils.action.ActionQueue.performActions(Compiled Code)
    at oracle.ifs.utils.action.ActionQueue.run(ActionQueue.java:244)
    at java.lang.Thread.run(Thread.java:466)
    recording that configuration failed
    saving:D:\Oracle\Ora81\ifs\settings\oracle\ifs\installer\properties\IfsConfig.properties
    iFS configuration failed; the following error occurred:
    oracle.ifs.utils.action.ActionFailedException: java.sql.SQLException: ORA-00922: missing or invalid option
    at java.lang.Throwable.<init>(Compiled Code)
    at java.lang.Exception.<init>(Compiled Code)
    at oracle.ifs.utils.action.ActionFailedException.<init>(ActionFailedException.java:76)
    at oracle.ifs.installer.IfsConfiguration$CreateSchemaAction.perform(IfsConfiguration.java:481)
    at oracle.ifs.utils.action.ActionQueue.performActions(Compiled Code)
    at oracle.ifs.utils.action.ActionQueue.run(ActionQueue.java:244)
    at java.lang.Thread.run(Thread.java:466)
    configuration failed on Wed Aug 16 16:57:27 EDT 2000
    Any ideas as to why it will not run. I had to install iFS with out the Partitioning option and without Intermedia Option. (I tried first with the Intermedia option and it told me that Intermedia was not configured correctly, so I scartched it out but it still will not work.)
    If anyone can help me please respond to this post or email me at [email protected]
    Thank you ahead of time.

    W2K is not a supported platform for iFS 1.0.
    Please use NT4.0.
    In your case it appears that you have given incorrect username/password information for ifsschema owner at the ServerManager login. The second password on the ServerManager startup dialog is the schema owner's database password, not the iFS administrator password.
    However please note that even if you get past the connection problem you will encounter other problems under W2K, and we cannot provide support for you on a platform that is not supported. Also we recommend more that 256 Meg of Memory.
    null

Maybe you are looking for