Runclient on win98

I'm trying out the converter tutorial. I was able to successfully install and run j2ee, deploytool and ant on win98. Now I'm trying to run the application client.
runclient -client ConverterApp.ear -name ConverterClient
-textauth
The login screen appears and I enter guest and guest123.
The output I get is:
Initiating login ...
Username = null
Binding name:`java:comp/env/ejb/SimpleConverter`
Caught an unexpected exception!
java.rmi.AccessException: CORBA NO_PERMISSION 0 No; nested exception is:
org.omg.CORBA.NO_PERMISSION: minor code: 0 completed: No
org.omg.CORBA.NO_PERMISSION: minor code: 0 completed: No
at java.lang.Class.newInstance0(Native Method)
at java.lang.Class.newInstance(Class.java:237)
at com.sun.corba.ee.internal.iiop.messages.ReplyMessage_1_2.getSystemExc
eption(ReplyMessage_1_2.java:93)
at com.sun.corba.ee.internal.iiop.ClientResponseImpl.getSystemException(
ClientResponseImpl.java:108)
at com.sun.corba.ee.internal.POA.GenericPOAClientSC.invoke(GenericPOACli
entSC.java:136)
at org.omg.CORBA.portable.ObjectImpl._invoke(ObjectImpl.java:459)
at ConverterHomeStub.create(Unknown Source)
at ConverterClient.main(ConverterClient.java:28)
at java.lang.reflect.Method.invoke(Native Method)
at com.sun.enterprise.util.Utility.invokeApplicationMain(Utility.java:24
3)
at com.sun.enterprise.appclient.Main.main(Main.java:159)
Seems like a problem with server.policy, but I don't know how to fix it. Much appreciate if anyone could point me in the right direction.

Can't help directly because I've never run it on 98 but if you do a search for Win98 in this forum you'll get some help. There have also been long discussions on this subject on Sun's J2EE mailing list so it would be worth finding and searching the archives of that.

Similar Messages

  • J2ee tutorial on Windows 98 - runclient error org.omg.CORBA:NO_PERMISSION

    I am using Win98...I have successfully run J2ee , deployement tool, and can run Web clients for the examples. However my runclient utility is giving errors.
    javax.naming.CommunicationException: org.omg.CORBA.NO_PERMISSION: minor code:
    0 completed: No
    at java.lang.Class.newInstance0(Native Method)
    at java.lang.Class.newInstance(Class.java:237)
    at com.sun.corba.ee.internal.iiop.messages.ReplyMessage_1_2.getSystemExc
    eption(ReplyMessage_1_2.java:93)
    I am enclosing the codes for my .bat files.
    J2EE.BAT FILE CONTENTS:
    @echo off
    rem
    rem Set JAVA_HOME and J2EE_HOME before running this script.
    rem
    rem set JAVA_HOME to the path where you have Java 2 (JDK1.2) installed.
    rem
    rem set J2EE_HOME to the path where you have installed this package (EJB server).
    rem
    if not "%J2EE_HOME%" == "" goto CONT0
    echo ERROR: Set J2EE_HOME before running this script.
    goto END
    :CONT0
    if EXIST "%J2EE_HOME%\bin\setenv.bat" goto CONT1
    echo ERROR: Set J2EE_HOME to the path of a valid j2sdkee.
    goto END
    :CONT1
    call %J2EE_HOME%\bin\setenv.bat
    if not "%JAVA_HOME%" == "" goto CONT2
    echo ERROR: Set JAVA_HOME before running this script.
    goto END
    :CONT2
    if EXIST "%JAVA_HOME%\bin\java.exe" goto CONT3
    echo ERROR: Set JAVA_HOME to the path of a valid jdk.
    goto END
    :CONT3
    rem @echo on
    rem for win98 %JAVACMD% %LISTEN_OPTIONS% -Dorg.xml.sax.parser=org.xml.sax.helpers.XMLReaderAdapter -Dorg.xml.sax.driver=org.apache.crimson.parser.XMLReaderImpl -Djms.home=%JMS_HOME% -Dcom.sun.jms.service.jdbc.dbpath=%JMS_DB_PATH% -Djms.properties=%J2EE_HOME%\config\jms_service.properties -Djava.security.policy==%J2EE_HOME%\lib\security\server.policy -Djava.security.auth.login.config=%J2EE_HOME%\lib\security\login.config -Dcom.sun.enterprise.home=%J2EE_HOME% -classpath %CPATH% com.sun.enterprise.server.J2EEServer %*
    @echo on
    %JAVACMD% -D%SSL_A%=%SSL_B% -D%JAAS_A%=%JAAS_B% -D%LISTEN_A%=%LISTEN_B% -Dorg.xml.sax.parser=org.xml.sax.helpers.XMLReaderAdapter -Dorg.xml.sax.driver=org.apache.crimson.parser.XMLReaderImpl -Djms.home=%JMS_HOME% -Dcom.sun.jms.service.jdbc.dbpath=%JMS_DB_PATH% -Djms.properties=%J2EE_HOME%\config\jms_service.properties -Djava.security.policy=%J2EE_HOME%\lib\security\server.policy -Djava.security.auth.login.config=%J2EE_HOME%\lib\security\login.config -Dcom.sun.enterprise.home=%J2EE_HOME% -classpath %CPATH% com.sun.enterprise.server.J2EEServer %
    cd c:\j2sdkee1.3\bin
    :END
    SETENV.BAT FILE CONTENTS:
    rem
    rem Set JAVA_HOME and J2EE_HOME before running this script.
    rem
    rem first include user-specified definitions.
    call %J2EE_HOME%\bin\userconfig.bat
    if "%JMS_HOME%" == "" set JMS_HOME=%J2EE_HOME%
    set LIBDIR=%J2EE_HOME%\lib
    set LOCALEDIR=%J2EE_HOME%\lib\locale
    set CLOUDSCAPE_INSTALL=%LIBDIR%\cloudscape
    set CLASSESDIR=%LIBDIR%\classes
    set JMS_CLASSESDIR=%JMS_HOME%\classes
    set J2EEJARS=%LIBDIR%\j2ee.jar
    set JAVATOOLS=%JAVA_HOME%\lib\tools.jar
    set JAVAHELPJARS=%LIBDIR%\jhall.jar
    rem JMS DB PATH must end in slash to specify a directory
    set JMS_DB_PATH=%J2EE_HOME%\repository\%COMPUTERNAME%\db\
    set SYSTEM_LIB_DIR=%LIBDIR%\system
    set JMS_RI_JDBC=%SYSTEM_LIB_DIR%\cloudscape.jar;%SYSTEM_LIB_DIR%\tools.jar
    set CLOUDJARS=%JMS_RI_JDBC%;%CLOUDSCAPE_INSTALL%\RmiJdbc.jar;%CLOUDSCAPE_INSTALL%\cloudclient.jar
    set CPATH=%CLOUDJARS%;%CLASSESDIR%;%JMS_CLASSESDIR%;%J2EEJARS%;%LOCALEDIR%;%J2EE_CLASSPATH%;%JAVATOOLS%;%JAVAHELPJARS%
    rem for win98 set JAAS_OPTIONS=-Djava.security.auth.policy=%J2EE_HOME%\lib\security\jaas.policy
    rem for win98 set SSL_OPTIONS=-Djavax.net.ssl.trustStore=%J2EE_HOME%\lib\security\cacerts.jks
    rem set LISTEN_OPTIONS=-Dcom.sun.CORBA.connection.ORBListenSocket=SSL:0,SSL_MUTUALAUTH:0,PERSISTENT_SSL:1060
    rem for win98 set JAVACMD=%JAVA_HOME%\bin\java -Xmx128m %SSL_OPTIONS% %JAAS_OPTIONS%
    set JAAS_A=java.security.auth.policy
    set JAAS_B=%J2EE_HOME%\lib\security\jaas.policy
    set SSL_A=javax.net.ssl.trustStore
    set SSL_B=%J2EE_HOME%\lib\security\cacerts.jks
    rem set LISTEN_A=-Dcom.sun.CORBA.connection.ORBListenSocket
    set LISTEN_A=com.sun.CORBA.connection.ORBSocketFactoryClass
    set LISTEN_B=SSL:0,SSL_MUTUALAUTH:0,PERSISTENT_SSL:1060
    @echo on
    set JAVACMD=%JAVA_HOME%\bin\java -Xmx128m
    RUNCLIENT.BAT FILE CONTENTS:
    @echo off
    rem
    rem Set JAVA_HOME and J2EE_HOME before running this script.
    rem
    rem set JAVA_HOME to the path where you have Java 2 (JDK1.2) installed.
    rem
    rem set J2EE_HOME to the path where you have installed this package (EJB server).
    rem
    if not "%J2EE_HOME%" == "" goto CONT0
    echo ERROR: Set J2EE_HOME before running this script.
    goto END
    :CONT0
    if EXIST "%J2EE_HOME%\bin\setenv.bat" goto CONT1
    echo ERROR: Set J2EE_HOME to the path of a valid j2sdkee.
    goto END
    :CONT1
    call %J2EE_HOME%\bin\setenv.bat
    if not "%JAVA_HOME%" == "" goto CONT2
    echo ERROR: Set JAVA_HOME before running this script.
    goto END
    :CONT2
    if EXIST "%JAVA_HOME%\bin\java.exe" goto CONT3
    echo ERROR: Set JAVA_HOME to the path of a valid jdk.
    goto END
    :CONT3
    @echo on
    %JAVACMD% -D%SSL_A%=%SSL_B% -D%JAAS_A%=%JAAS_B% -D%LISTEN_A%=%LISTEN_B% %VMARGS% -Djms.home=%JMS_HOME% -Djms.properties=%J2EE_HOME%\config\jms_client.properties -Djava.security.policy=%J2EE_HOME%\lib\security\client.policy -Djava.security.auth.login.config=%J2EE_HOME%\lib\security\login.config -Dcom.sun.enterprise.home=%J2EE_HOME% -classpath %CPATH%;%APPCPATH% com.sun.enterprise.appclient.Main %1 %2 %3 %4
    :END

    I am answering my own question, I have all the bat files to successfully run J2ee on windows 98. Mail me at [email protected]

  • Oracle Lite and Oracle 8i Client on Win98

    I've had Olite v8i running on my Win98 machine for a while now. I just installed Oracle 8i Client on my machine. Now, my JDBC driver for Oracle Lite does NOT work. What could have happened here??
    Thanks.
    -Jeremy
    null

    HI Jeremy,
    I think, Your PATH was cranked up.
    The JDBC driver for OLite normally does not use any OCI DLLs, so that should not be the problem. As I said, the OLite dlls may be missing now from the PATH.
    Any error messages? "Does not work" is a bit... fuzzy.

  • Oracle 8.0.4 is not working on win98

    i have win98.i have installed oracle 8.0.4 successfuly but when i start using it a messege comes which is "this programe may not run correctly on win98 because of enhanced operating system features".
    plz solve my problem.

    Probably 8.0.4 version was not designed to run in win98.
    Use 8.1.+ personal edition for win98.
    Best regards, Marcelo.

  • MSI K7N2 DELTA -L (601-6570-020) nFORCE 2 DUAL 400 , RANDOM RESTART PROBLEM (WinXP,Win98)

    Machine Specs:
    - AMD Athlon XP 2600+ With L2 512 KB (Model 10)
    - MSI K7N2 Delta -L nFORCE 2 Ultra 400 (601-670-020) (My AwardBios is updated to v5.7, Using nVIDIA`s O/B Audio and Ethernet Controllers)
    - TwinMOS PC3200(CL2.5) 512 MB DDR400 RAM (Desktop Series)
    - Samsung SpinPoint (SP0411N) 40 GB 7200 Rpm HDD
    - GeForce2 MX400 64MB AGP 4x (Oem Manufacturer)
    - Samsung SyncMaster 753s 17" Monitor
    - Sony 52x Cd-Rom
    - Philips Stereo Headphones
    - Windows XP Home Edition Turkish (Service Pack 1 Turkish) , I did all of critical and other updates ,Totally up to date.Device drivers are too...(nForce 3.13 whql International,Forceware 56.72 whql International)
    Problem :
    - ERROR EVENT : 1003 ERROR NAME : IRQL_NOT_LESS_OR_EQUAL
    Original Error Texts:
    A problem has been detected & Windows has been shut down to prevent damage to your computer.
    IRQL_NOT_LESS_OR_EQUAL
    If this is the first time you've seen this Stop error screen, restart the computer. If this screen appears again follow these steps.
    Check to make sure any new hardware or software is properly installed. If this is a new installation, ask your hardware or software manufacturer for any Windows updates you might need. If the problem continues, disable or remove any newly installed hardware or software.
    Disable BIOS memory options such as caching or shadowing.
    If you need to use safe mode to remove or disable components restart your computer, Press F8 to select Advanced Start-up options & select Safe Mode.
    Technical Information :
    *** STOP: 0x0000000A (0x00000004, 0x00000002, 0x00000001, 0x804F1473)
    Beginning dump of physical memory
    Physical memory dump complete. Contact your system Administrator or technical support group for further assistance.
    After restarting manually from the PC. I get the following message
    The system has recovered from a serious error.
    BCCode : a BCP1 : 00000004 BCP2 : 00000002 BCP3 : 00000000
    BCP4 : 804F1ADA OSVer : 5_1_2600 SP : 0_0 Product : 256_1
    C:\WINDOWS\Minidump\Mini042202-01.dmp
    C:\DOCUME~1\DANIEL~1\LOCALS~1\Temp\WER3.tmp.dir00\sysdata.xml
    And when I check EVENT VIEWER
    Event Type: Error
    Event Source: System Error
    Event Category: (102)
    Event ID: 1003
    Date: 22/04/2002
    Time: 5:55:03 PM
    User: N/A
    Computer: XXX-BOX
    Description:
    Error code 0000000a, parameter1 00000004, parameter2 00000002, parameter3 00000000, parameter4 804f1ada.
    For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
    Data:
    0000: 53 79 73 74 65 6d 20 45 System E
    0008: 72 72 6f 72 20 20 45 72 rror Er
    0010: 72 6f 72 20 63 6f 64 65 ror code
    0018: 20 30 30 30 30 30 30 30 0000000
    0020: 61 20 20 50 61 72 61 6d a Param
    0028: 65 74 65 72 73 20 30 30 eters 00
    0030: 30 30 30 30 30 34 2c 20 000004,
    0038: 30 30 30 30 30 30 30 32 00000002
    0040: 2c 20 30 30 30 30 30 30 , 000000
    0048: 30 30 2c 20 38 30 34 66 00, 804f
    0050: 31 61 64 61 1ada
    I installed 6 operating systems on my pc (WinXp Home Edition Turkish/English,WinXP Pro Turkish/English,Win98 Turkish/English) and tested it, but every time i meet the same thing (MS Blue Screen Of Death Sux...).I checked the WinXP`s logs and searched for error code`s meaning from microsoft knowledge database. They are saying nothing about this problem but the problem`s root is coming from a bad device driver. It seems to be a generic problem for all operating systems cuz all of them were restarting themselves randomly, before i close "auto-restart on critical errors" option.After i saw some messages on forums , i searched for my RAM maker`s home page then i learned that my RAM is assembled with VIA KT Series and SIS chips & optimized for them. I think nForce is too picky about rams.But i aint sure about where the hell is this problem coming from. If you guys are sure about that is an unsupported ram problem and knew the list of ram marks&models that supported by MSI K7N2 Delta -L ,please help me about this damn problem. Thanks for your help.
    Note : I tried Asus Ati Radeon 9200SE 64mb g.adapter (some peoples told me thats about g.adapter), but problem continued.

    If I read correctly in your specs I see only 11 Amps on the +12v Rail. Is this correct?
    If so, I'd advise a PSU that has at least 18 amps on the +12v Rail, perhaps as low as 16 with the other rails to match as shown currently in your spec.
    11 Amps is just way too underpowered for that rig. I am surprised it even boots.
    At what point does the BSOD occur?

  • PetStore 1.3.1 Install on Win98

    I am trying to install Java PetStore 1.3.1 on a Windows 98 (unfortunately) platform.
    maybe I need to run this on Win2000 or XP Pro? I couldn't find any info in the Blueprints area of the site that states that it will or will not run on Win98. Assuming 98 is ok, here is the background for problem.
    My j2dk and j2dkee were a version or two behind so I upgraded those as well.
    As part of the install process it is necessary to get cloudscape and the j2ee server running. both of these executables call the setenv.bat in the %J2EE_HOME%\bin directory. I have encountered a number of syntax errors when running the setenv.bat as follows:
    1.
    not sure if this is an error...
    the script looks to see if %JMS_HOME% is set, if not it sets it to %J2EE_HOME%. In my environment, %JMS_HOME% had not been set up to this point. I assume this is ok, but since I have subsequent problems (#3 below), wondered if anyone has a definite idea here. Maybe I should set %JMS_HOME% to something else before running setenv.bat?
    2.
    set CLASSESDIR=%LIBDIR%\classes
    %LIBDIR% is the %J2EE_HOME%\lib directory. There was no classes directory under it, but there are *.jar files. I added classes directory here but of course its empty and probably will eventually have a no class def found problem?
    3.
    set JMS_CLASSESDIR=%JMS_HOME%\classes
    same as #2 -- there was no classes directory in the %JMS_HOME% path. I added a classes directory manually, but assume there are some classes that it will need here! As mentioned in #1 for my environment, %JMS_HOME% is same as %J2ee_HOME%.
    4.
    set JAAS_OPTIONS=-Djava.security.auth.policy=%J2EE_HOME%\lib\security\jaas.policy
    for this line, I get a syntax error. In fact there is no jaas.policy file in the %J2EE_HOME%\lib\security\ directory. Anyone know why or what belongs in this file?
    5.
    set SSL_OPTIONS=-Djavax.net.ssl.trustStore=%J2EE_HOME%\lib\security\cacerts.jks
    get syntax error. not sure why, did make sure the file cacerts.jks actually exists in this directory.
    6.
    set LISTEN_OPTIONS=-Dcom.sun.CORBA.connection.ORBListenSocket=SSL:0,SSL_MUTUALAUTH:0,PERSISTENT_SSL:1060
    get syntax error. not sure why, and I don't know much about SSL.
    thanks in advance for any help

    Did you ever get an answer??
    I'm in the same boat as you. I have Windows 98 and want to start learning J2EE. My old crummy Compaq computer won't handle Win 2000 so I guess I'm going to buy a new computer (with xp pro).
    Were you able to get it working.
    Jeez, you'd think it would be a little more flexible with a language that is "platform independent".

  • Problem using runclient with j2ee

    Dear all,
    please help as i am banging my head against the monitor trying to figure all these little things out. Currently, I am working through the j2ee tutorial. This uses the deploytool to package and deploy all files. however, when i try to run runclient from the command line, i get the following error message :
    Application threw an exception:java.io.IOException: converterApp.ear does not exist
    I cannot see why this should happen as the file converterApp.ear definately does exist. I have also added the application client file to the APPCPATH environment variable (as the tutorial instructs).
    Any help would be much appreciated
    Thanks

    You must go to your diroctory where ACount.ear exist. Then you set up your classpath for the sub client application like :
    set Classpath= AcountAppliClint.jar
    to run application client do :
    runclient -client AccountEAR.ear -name Applicationclient -textauth
    by

  • Runtime.exec() works in Win98 but not in XP?

    Hi all!
    I have the following problem: I am using following lines of code in win98 to launch a MSDOS-window from my application (with some arguments to it):
    try {
    Runtime rt = Runtime.getRuntime();
    Process proc = rt.exec("start "+"command.com"+"/k"+"java -cp \""
    +getArgument(directory,false)
    +"\""+" "+getNoExtent(file));
    proc.waitFor();
    catch (Exception ex) {
    ex.printStackTrace();
    This works very well, however in XP it doesnt do a thing (I know that I have to change 'command.com' to 'cmd' or 'cmd.exe'). I have already tried that but it wont work. Instead, this exception occurs while running on XP:
    java.io.IOException: CreateProcess: start cmd error=2
    at java.lang.Win32Process.create(Native Method)
    at java.lang.Win32Process.<init>(Win32Process.java:63)
    at java.lang.Runtime.execInternal(Native Method)
    at java.lang.Runtime.exec(Runtime.java:566)
    at java.lang.Runtime.exec(Runtime.java:428)
    at java.lang.Runtime.exec(Runtime.java:364)
    at java.lang.Runtime.exec(Runtime.java:326)
    at JSEdit.actionPerformed(JSEdit.java:443)
    at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:17
    64)
    at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(Abstra
    ctButton.java:1817)
    at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel
    .java:419)
    at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:257
    at javax.swing.AbstractButton.doClick(AbstractButton.java:289)
    at javax.swing.plaf.basic.BasicMenuItemUI.doClick(BasicMenuItemUI.java:1
    113)
    at javax.swing.plaf.basic.BasicMenuItemUI$MouseInputHandler.mouseRelease
    d(BasicMenuItemUI.java:943)
    at java.awt.Component.processMouseEvent(Component.java:5134)
    at java.awt.Component.processEvent(Component.java:4931)
    at java.awt.Container.processEvent(Container.java:1566)
    at java.awt.Component.dispatchEventImpl(Component.java:3639)
    at java.awt.Container.dispatchEventImpl(Container.java:1623)
    at java.awt.Component.dispatchEvent(Component.java:3480)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:3450
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3165)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3095)
    at java.awt.Container.dispatchEventImpl(Container.java:1609)
    at java.awt.Window.dispatchEventImpl(Window.java:1590)
    at java.awt.Component.dispatchEvent(Component.java:3480)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:450)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchTh
    read.java:197)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThre
    ad.java:150)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:144)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:136)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:99)
    What should I do?
    Thanx!
    Regards
    Veroslav

    Check you string concatenation, you're missing spaces or you are not providing the actual code:
    Process proc = rt.exec("start "+"command.com"+"/k"+"java -cp \""
    +getArgument(directory,false)
    +"\""+" "+getNoExtent(file));Let's dissect:
    String command = "start ";
    // command := "start "
    command += "command.com";
    // command := "start command.com"
    command += "/k"+"java -cp \""
    // command := "start command.com/kjava -cp\""You can always trace these kind of errors by using a debugger. Or dump the string you are passing to System.out. Every comprehensive IDE has a debugger built in, or you can resort to jdb.
    Greets
    Dhek Bhun.

  • Can't use CDS in win98?

    I have benn success to use java -Xshare:dump to renew classes.jsa, but when i use -Xshare:on to run my application, error info print as below:
    ========================================
    An error has occured while processing the shared archive file.
    Unable to map shared space.
    Error occurred during initialization of VM
    Unable to use shared archive.
    ========================================
    But CDS say that win98 is supported, anyone can tell me why?
    Thanks in advance,
    luochangtao

    CDS is not supported in Win95/98/ME.
    It's my fault, Sorry. :)

  • Win98 Client and 8.1.6

    Hello,
    I was told by my ORacle consultant that our newly installed Oracle 8.1.6 system does not have a Windows98 client. She tells me that only there is only a 8.0.6 client for this OS. Have of my company is still on Win98. Tell me this isn't so?!?!?!?
    Marcos

    I'm pretty sure the Oracle 8.1.7 Client CD I have sitting at my desk says it works on Windows 95/98/ME/NT/2000
    I can double check

  • Win98 se problems/jdk1.2.2

    I installed jdk1.2.2 and when i want to compile, i gotta type all the paths like:
    cd C:\jdk1.2.2\bin\
    javac C:\Java\java.java
    and its getting me mad. people say to change the PATH in autoexec.bat, but i cant find it on my computer. i can only find autoexec.001. Please help. Im using Windows 98 se.

    I think I installed java on win98 once upon a time and it was hideous.
    slow
    memory hoggin
    win98 could not handle it.
    it took 30 secs to compile hello world
    and dont even think about J2EE or JBOSS or Tomcat
    abort

  • Where can i find an oracle CLIENT for win98??

    I need an oracle client for win98 to access a 9i database, where
    can i find it?
    Best Regards
    Erik Rangel de Oliveira

    any oracle 8i client or oracle 8 client can connect to oracle 9i
    database if that helps.
    The clients can be obtained from the technet site.

  • Download report for win98

    I use win98 and already download Oracle Personal Edition. What I should download if I want to use report features.
    Thanks
    null

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Kwok Ping Sum ([email protected]):
    I use win98 and already download Oracle Personal Edition. What I should download if I want to use report features.
    Thanks<HR></BLOCKQUOTE>
    Hi
    What report features do you want? If you want reports6i, then you need to clean your system of all oracle products, then download reports6i from otn install it, then install your personal edition and then run your reports. If you have any problems contact me at [email protected]
    Krishna
    null

  • Connecting Win98 pc to Tiger

    I'm wondering what the trick is. I have 2 Win98 pcs that connect just fine to/each other and my Panther eMac (10.3.6) but they won't connect to my Tiger iMac (10.4.2). My network is running fine and all the other connections work without a hitch.
    Have checked ALL the network settings, Workgroup name, sharing, accounts, passwords, etc. on Tiger & Win98 multiple times - everything appears correct.
    The Win98 pcs can see the iMac on the network (by name & by IP address), pings work just fine, etc. but when I try to log on or map a network drive from the Win98 pcs to the iMac my password is rejected, and I know I'm using the correct password.
    Funny thing is, the iMac can connect to the Win98 pcs just fine, via GO>Connect to Server. I know that's effectively a workaround to the problem, but for security reasons I'd really rather have the connection go the other way so I don't have to turn on sharing on the pcs).
    Any idea what's going on here? It seems to me to be a difference between Panther & Tiger since the pcs have no problem logging onto my Panther machine.

    Hi Martin, sounds frustrating. What I'd do is open Applications/Utilities/Console and leave it open and try to connect via the PC. THis should give you human readable messages of what is happening, even though the errors maybe gibberish, it'll give you a place to start.
    Cheers.

  • JDev3.0's JSP and Applet works on NT but doesn't work on Win98, why?

    JDeveloper3.0 works fine on WindowNT machine when I run JSP files and Applet, but at home the JDeveloper3.0 cannot trigger the browser to display the result on my Windows98 machine when I run the JSP files or Applet. Why? How can I make it works for me at home. Other tools, such as J++6.0 and JBuilder work with Applet on the same machine. Who can help me?

    James,
    The JDeveloper 3.0 design time environment is not supported on Windows98. Some functions might work under Win98 but they are not supported.
    Sorry!
    Regards,
    Arun

Maybe you are looking for

  • Error in using CF_UT_UNIT_CONVERSION in the enhancement of Master data

    Hi , Can anyone please help me in debugging the run time error. This is the Run time error i am getting - An exception occurred that is explained in detail below. The exception, which is assigned to class 'CX_SY_DYN_CALL_ILLEGAL_TYPE', was not caught

  • How do I save in the original format

    I recorded a cover band and my camcorder split the video into several 2GB .MTS clips.  The bigger point is that there is LOTS of dead time, breaks, etc.  I'd like to know how to 1) edit an original 2GB MTS file, remove the dead spots and replace the

  • Oracle 11g R2 for Sun Solaris???

    When will be release the version for Sun Solaris? Is there any way to check the release date for each Oracle version? (e.g. 10.2, 11.1, etc) Thanks, Shum

  • Does SharePoint foundation supports Reporting services

    Does user will be able to create Adhoc reporting services in SharePoint foundation 2010, our requirement is the SMDL created bit BIDS(Business Intelligence Development Studio) would be uploaded into the business intelligence site and user uses these

  • Bookmarks gone

    Hi, all My bookmarks in Safari is gone. Hon can I get Them back? Have tried to kill Safari but it didnt help. I have restarted the pad and that didnt help. I Think they disapered at the last program update ios6.