Problem with command console????

I am using Windows XP pro.
When using the command console, usually if you type:
cd c:\java
the console prompt should be in that directory i.e. it should read
C:\Java>
However, when I type this, it does not do anything, other commands such as 'dir' work fine, but I cannot get the prompt to change directory by typing cd 'dir name'.
Does anyone know what the problem is?
Manny thanks

Use:
C:
cd java
or:
cd C:\Java
C:

Similar Messages

  • Permission problems with command line CVS and Java CVS App

    Greetings,
    I'm part of a moderately sized website development team which recently upgraded to MacBook Pros (dual core) running OS 10.4.9. One of the primary tools we use in our day to day work is the open source concurrent versioning system (CVS). We've noticed a distressing issue running CVS on our macbook pros: there seems to be a problem with the way these new machines handle permissions on the directories/files that CVS uses to manage files.
    The error occurs when the CVS application, in this case both command line CVS and GUI CVS application named SmartCVS, tries to rename a temporary file named Entries~ to its new name Entries (no ~). It looks like this:
    java.io.IOException: Could not rename file
    /Users/[USER]/Sites/[MODULE]/lib/CVS/Entries~ to
    /Users/[USER]/Sites/[MODULE]/lib/CVS/Entries
    at smartcvs.JP.a(SourceFile:125)
    at smartcvs.JP.a(SourceFile:113)
    We've noticed that if we open up a get info window on the directory we're downloading, and choose "Apply to enclosed items" right when we start the download process, the issue will be resolved, presumably because the permissions are being set on the subdirectories as the download is taking place.
    We've checked the permissions on the overall ~/Sites/ directory numerous times, and they always seem to be set correctly as drwxr-xr-x. It's within this folder that CVS creates a directory with the CVS module name and downloads all the contained files, so we don't see why it would be having issues completing this successfully. We also checked to ensure the GUI CVS application is running under the current user on the machine: it does.
    Has anyone run into issues like this in the past? Is there more information I could provide to further clarify the problem we're having?
    Thanks for any input you have!

    Thanks for asking Jeff, yes one place we are seeing this error is Java application SmartCVS, though the results posted here are from a normal command line CVS checkout.
    ===
    Checkout command:
    cvs co [MODULE]
    ===
    Error:
    cvs [checkout aborted]: cannot rename file CVS/Entries.Backup to CVS/Entries: No such file or directory
    ===
    ID:
    uid=502([USER]) gid=502([USER]) groups=502([USER]), 81(appserveradm), 79(appserverusr), 80(admin)
    ===
    LS -ALN
    Computer:~/Sites [USER]$ ls -aln
    drwxr-xr-x 28 502 502 952 Jun 4 13:11 Sites
    Computer:~/Sites/[MODULE] [USER]$ ls -aln
    drwxr-xr-x 38 502 502 1292 Jun 4 13:33 www_root
    Computer:~/Sites/[MODULE]/www_root [USER]$ ls -aln
    drwxr-xr-x 32 502 502 1088 Jun 4 13:33 [SUBDIR1]
    Computer:~/Sites/[MODULE]/www_root/[SUBDIR1] [USER]$ ls -aln
    drwxr-xr-x 5 502 502 170 Jun 4 13:33 [SUBDIR2]
    Computer:~/Sites/[MODULE]/www_root/[SUBDIR1]/[SUBDIR2] [USER]$ ls -aln
    drwxr-xr-x 4 502 502 136 Jun 4 13:33 [SUBDIR3]
    Computer:~/Sites/[MODULE]/www_root/[SUBDIR1]/[SUBDIR2]/[SUBDIR3] [USER]$ ls -aln
    drwxr-xr-x 6 502 502 204 Jun 4 13:33 CVS
    Computer:~/Sites/[MODULE]/www_root/[SUBDIR1]/[SUBDIR2]/[SUBDIR3]/CVS [USER]$ ls -aln
    total 32
    drwxr-xr-x 6 502 502 204 Jun 4 13:33 .
    drwxr-xr-x 4 502 502 136 Jun 4 13:33 ..
    -rw-r--r-- 1 502 502 45 Jun 4 13:33 Entries
    -rw-r--r-- 1 502 502 45 Jun 4 13:33 Entries.Log
    -rw-r--r-- 1 502 502 48 Jun 4 13:33 Repository
    -rw-r--r-- 1 502 502 63 Jun 4 13:33 Root
    MacBook Pro / MacPro Mac OS X (10.4.9)

  • Problem with command d2axisXtick (diadem 10.2)

    Hello,
    I don't understand why d2axisXtick is not enabled.
    call graphobjopen("2dXaxis1_1")
         d2axisXscaletype="manual"
         d2axisXtick =a
         d2axisXbegin=b
    call graphobjclose("2dXaxis1_1")
    In the diadem help, this command exist. But it is not reconized.
    I use too the d2axisYtick which work!!!
    I think its a diadem bug but im not sure.
    If it is a bug, maybe an update exist and where is it?
    Or It's not a bug. But what is it?
    For more information, I joined my program (see line 162, 434)
    Thank you very much.
    (Sry for my english )
    Attachments:
    ProgComplet.txt ‏44 KB

    Hello c.reverte!
    D2AxisXTick still exist, only the syntax highlighting seem to have a problem with it. New in 10.2 (or other 10.x version) are the D2AxisXTickDist and D2AxisXTickChn variables.
    Matthias
    Matthias Alleweldt
    Project Engineer / Projektingenieur
    Twigeater?  

  • Problem with command from LFS

    So right now I'm in the middle of a LFS build (current stable).  I'm at Chapter 5 and currently doing the first build of glibc.  I'm having problems with the command:
    ln -vs libgcc.a 'gcc -print-libgcc-file-name | sed 's/libgcc/&_eh/''
    I've tried the above, escaping the sed command with '\' and doing a new line, a whole bunch of things.  It's all typed correctly because the 'gcc -print... | sed 's/libgcc/&_eh/'' line works fine by itself, but not with the whole command.  I would just use the absolute path that the second half (I think) is looking for, but I'm on a fresh Arch install, no X or anything and the path it prints me is "/mnt/lfs/tools/bin/../lib/gcc..." and that's not going to work. 
    Any help would be greatly appreciated.

    Just so you know, sed is sort of like a filter. If you do
    echo "hello" | sed s/hello/bye/
    The output will be bye instead of hello. It subsistuted hello with bye. It's a very handy dandy tool. If you can master it, you can do some very powerful and meaningful things with your outputs and files. The amp (&) is what you filtered (libgcc in your case) and then you added the _eh to the end of it (replacing all libgcc with libgcc_eh instead). I really recommend looking into sed, I find it very useful. Even if you don't have anything useful to do with it, you can definitely make yourself look cool using it instead which is really why we all use Linux (just kidding - sort of). B)
    echo "hello" | sed 's/hello/Then I said "&" to her./'
    Last edited by Aprz (2009-03-20 06:14:15)

  • Problem with BPEL Console

    Hi all,
    We are facing a peculiar type of problem on BPEL Console.
    Scenario: I have created an empty BPEL process. That process gets initiated by a CSV file present in the specific folder (with the help of file adapter), and subsequently the values from that CSV file is used as an input parameter for calling a procedure (with the help of DB Adapter). The success or failure of the BPEL process is informed to particular set of people through Email. Everything is working perfectly fine including the process instance and the Email part.
    Problem: We are not able to see any instance created on BPEL console if we are passing more than 2000-3000 records in a CSV file. But the process is happening because procedure is doing its work and we are getting the success or failure Email also.
    Point to note, For less than 2000 its working perfectly fine.
    Any help in this case will be helpful for our team.
    Regards,
    Abhi...

    This sounds like a bug in the administrative console. It would be interesting to see what happens if you query the database directly:
    There is a whitepaper that discusses that:
    http://www.oracle.com/technology/pub/articles/bpel_cookbook/blanvalet.html
    The relevant code for you is:
    whereCondition where = whereConditionHelper.whereInstancesStale();
    IInstanceHandle[] instances = getLocator(domainId, domainPassword).listInstances(where);
    BPEL ProcessManager API documentation can be found in [bpelhome]\integration\orabpel\docs\apidocs\index.html
    If this returns all instances, even when there are more than 2000, you know you hit a bug in the management console.
    Hope this helps,
    Lonneke

  • Illustrator problem with command button!

    I didn´t realise where I should put this topic so I put it here...
    When I´m usins Illustrator keyboard shortcuts includind command button such as Undo=command+z and quit the program with command+q does not work? But it works it Photoshop and all other programs...
    Do you know what´s wrong?

    Can nobody help me?
    Please!

  • OIM 9.1 Time-out problem with Design Console

    If I leave the design console running for any length of time, making updates result in the following error:
    17:36:52,578 ERROR [ACCOUNTMANAGEMENT] Class/Method: tcDataBase/getUser encounter some problems: Invalid user found: xelsysadm
    java.lang.RuntimeException: Invalid user found: xelsysadm
    at com.thortech.xl.server.tcDataBase.getUser(Unknown Source)
    at com.thortech.xl.dataobj.tcSVP.isOperationAllowed(Unknown Source)
    at com.thortech.xl.dataobj.tcDataObj.isUpdatePermissible(Unknown Source)
    at com.thortech.xl.dataobj.tcDataObj.eventPreUpdate(Unknown Source)
    at com.thortech.xl.dataobj.tcSVP.eventPreUpdate(Unknown Source)
    at com.thortech.xl.dataobj.tcDataObj.update(Unknown Source)
    at com.thortech.xl.dataobj.tcDataObj.save(Unknown Source) ...
    Closing the Design Console and re-launching produces similar errors. I must stop and restart the JBOSS server to get access again. My environment is Windows 2003 with JBOSS and an 11g database.
    Any help on what to look for would be appreciated.
    KC

    You are correct. If you pre-populate, it will be the requester. The requester would need to manually populate the field during the request with the requestee information. And there is only one form available. You can however, after submission of the request, get the request data, parse the Consolidated Request Data to determine the id's in the request field, and then return appropriate responses to trigger the tasks needed. This will still be a problem in the long run because you can't change the requestee information for each approval task. You're pretty much out of luck on this one.
    -Kevin

  • Problem with admin console

    Hai Folks,
    I have installed Weblogic8.1 SP5.I have created mydomain with user name,password,and all other portdetails host.
    When I start server it is running properly with out any errors..the out put window shows the below message..
    Starting weblogicserver with Java HotSpot(TM) Client VM Version 1.4.2_0
    Inc.>
    2006 11:14:55 AM CDT> <Info> <Configuration Manageme
    r is being started as the administration server.>
    2006 11:14:55 AM CDT> <Info> <Management> <BEA-14110
    8.1 SP5 Mon Sep 19 23:06:54 PDT 2005 641358
    XMLX Module 8.1 SP5 Mon Sep 19 23:06:54 PDT 2005 6
    2006 11:14:56 AM CDT> <Notice> <Management> <BEA-140
    ration from configuration repository at C:\bea\user_
    config.xml.>
    2006 11:14:59 AM CDT> <Notice> <Log Management> <BEA
    e C:\bea\user_projects\domains\mydomain\myserver\mys
    ver side log events will be written to this file.>
    2006 11:15:02 AM CDT> <Notice> <Security> <BEA-09008
    ing security realm myrealm.>
    2006 11:15:03 AM CDT> <Notice> <WebLogicServer> <BEA
    Admin Server "myserver" for domain "mydomain">
    2006 11:15:11 AM CDT> <Notice> <WebLogicServer> <BEA
    dmin Server "myserver" for domain "mydomain" running
    2006 11:15:11 AM CDT> <Notice> <WebLogicServer> <BEA
    RUNNING mode>
    2006 11:15:11 AM CDT> <Notice> <WebLogicServer> <BEA
    ad.Default" listening on port 7001, ip address *.*>
    But when i try to open admin console through browser giving the url as
    http://localhost:7001/console the page is not displaying its giving page not found error.I tried it again by restarting the system,but again the same problem..Please help me regarding this problem.
    Thanks,
    Sai

    mmm, it could be CPU, it could be a network-related issue... are you using multicast or unicast?
    can you reproduce the issue?
    if yes, can you run "top" to verify the CPU usage,
    and do a thread dump on the admin server?
    or at that point the box is entirely unresponsive?
    in that case, running a scripts which periodically does a thread dump, and running top to sample every 10 seconds, could help...
    jm2c

  • Slim, a problem with virtual consoles and a question about reboot

    hi, just installed slim but now when I switch to the virtual consoles my session on X starts firing keyboard events on the consoles I have there, how can I fix that?
    I'm using xmonad, my terminal is sakura and I'm starting slim from /etc/inittab and xmonad from ~/.xinitrc
    also, it seems slim uses special usernames to halt and reboot however those ask me for the root password, is there a way to avoid that?
    thanks all.
    Last edited by Samus_ (2008-11-23 18:19:49)

    Samus_ wrote:hi, just installed slim but now when I switch to the virtual consoles my session on X starts firing keyboard events on the consoles I have there, how can I fix that?
    this http://developer.berlios.de/bugs/?func= … up_id=2663 might be related.  out of curiosity, why are you starting slim from /etc/inittab and not as a daemon in /etc/rc.conf?
    Samus_ wrote:also, it seems slim uses special usernames to halt and reboot however those ask me for the root password, is there a way to avoid that?
    the flippant answer is, "yes, fix slim."  but so as not to be a jerk, 'man slim' turns up this:
    The 'halt' and 'reboot' commands need the root password, this may change in future releases.
    so i was about to say, "no."  then i decided to hit google with 'slim "special usernames" password'.   unfortunately, your post here is the fourth result, so no love there.
    *but* there's this:
    http://developer.berlios.de/bugs/?func= … up_id=2663
    and this:
    http://developer.berlios.de/patch/?func … up_id=2663
    and the abs.
    so if you really want it, read the wiki page on the abs, add the patch to the pkgbuild, makepkg, and pacman -U.  if you don't want pacman to replace your patched version when there's an update, add slim to the IgnorePkg line in /etc/pacman.conf.  you'll have to re-makepkg and re-pacman -U whenever there's an update, but it ain't that hard.
    if it works, i might like a copy of yr pkgbuild.  hth!

  • Upgrading to PT 8.49.14 - PermGen problem with weblogic console

    All Peoplesoft domain Comes you fine in our env setup (Admin, PIA1, and PIA2).
    When we try to bring up the console, we're able to get the initial signon screen.
    We enter the account and password, hit the signon button, and it never comes back.
    The log ends up showing a PermGen error:
    hrdmo@peo1asdv-z1:/psa1asdv/apps/hrdmo/hr890/webserv/hrdmo/servers/WebLo
    gicAdmin/logs> more WebLogicAdmin_stderr.log
    Exception in thread "VDE Replication Thread" java.lang.OutOfMemoryError:
    PermGen space
    Exception in thread "[STANDBY] ExecuteThread: '6' for queue:
    'weblogic.kernel.Default (self-tuning)'" java.lang.OutOfMemoryError:
    PermGen space
    Exception in thread "[ACTIVE] ExecuteThread: '0' for queue:
    'weblogic.kernel.Default (self-tuning)'" java.lang.OutOfMemoryError:
    PermGen space
    Exception in thread "[ACTIVE] ExecuteThread: '7' for queue:
    'weblogic.kernel.Default (self-tuning)'" java.lang.OutOfMemoryError:
    PermGen space
    Changed Java heap from Solution:
    from:
    JAVA_OPTIONS_SOLARIS="-server -Xms512m -Xmx512m -XX:MaxPermSize=256m
    -Dtoplink.xml.platform=oracle.toplink.platform.xml.jaxp.JAXPPlatform"
    To:
    JAVA_OPTIONS_SOLARIS="-server -Xms1024m -Xmx1024m -XX:MaxPermSize=256m
    -Dtoplink.xml.platform=oracle.toplink.platform.xml.jaxp.JAXPPlatform"
    Changed the adminserver:
    from:
    JAVA_OPTIONS_ADMINSERVER="-Xms256m -Xmx1024m"
    to:
    JAVA_OPTIONS_ADMINSERVER="-Xms1024m -Xmx1024m"
    still getting PermGen space error, any thoughts?
    Env setup: Solaris 10, WLS 92 MP3 patch1, PTools 849.14
    Thanks

    Increasing PermGen size doesn't solve problem at all. Source of the problem is related with class loader. After you web app is undeployed class loader can not unload all classes from PermGen memory. This leads to extra memory consumption after every undeploy, deploy cycle. Make sure every class can be released and undeployed after undeploy.
    Regards
    Remis B
    Remigijus Bauzys
    Java EE freelancer
    IT Consultant.

  • Problem with command line argument files and quoted strings

    I'm trying to use the following custom tag:
    -tag com.me.Test.testTag:f:"My Test Tag"
    This works fine when sent straight to the command line, but if I put it in an argument file (@argfile) along with the rest of my command, I get the following error:
    javadoc: Illegal package name: "My Test Tag"
    Any idea why this is happening? If I use a one-word tag header and omit the quotes, javadoc runs with no problems. I'm using Sun's SDK 1.4.1.
    Thanks for your help!
    Linda Howard

    White space is treated a bit differently in an @argfile,
    to enable users to put packages or options on separate lines.
    You might try escaping the spaces:
    "My\ Test\ Tag"
    or using a non-breaking space:
    "My Test Tag"
    What operating system are you on?
    -Doug Kramer
    javadoc team

  • Problem with amadmin console

    i am deploying my own portlet using the pddeploy command with amadmin as login.
    it is also allowing me to create new channel using the identity server.
    But when i am trying to login on portal server desktop as amadmin it gives me error as confoguration error.
    You are not having access rights.

    Hello Delali97,
    Both the console and the script you mentioned seems tell us you have a question more related to programming or anything else. This is not related to Visual Studio Setup and Installation forum. That is forum talks about Visual Studio Installation.
    Please reopen your post to a related forum or you can post back and clarify your project details so that we will give you a direction.
    Regards,
    Barry
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • [Help: Urgent] problems with accessing /console after apparent successful install of Portal server SP3.0sp3a

    Hi,
    HW: Sun Solaris 2.8
    I would really appreciate it you can cc: me if you can shed any light
    as
    to whats going wrong, and what I should do to fix the following
    problem.
    Portal server doesn't allow one to access /console (or /login) -
    0 length document is returned.
    We find the following in the enterprise server error log, when we
    attempt
    to access portal console (URI: http://....:8080/console)
    1) Installed SP3.0sp3a as Open Portal, i.e without the gateway and
    without
    SSL enabled.
    2) Our Unix users are served using YP
    ***From the server access logs : ***
    - - [16/Nov/2001:15:12:40 -0800] "GET /login HTTP/1.0" 503 0
    ***From the server error logs : ***
    [16/Nov/2001:14:11:27] info ( 4639): successful server startup
    [16/Nov/2001:14:11:27] info ( 4639): iPlanet-WebServer-Enterprise/4.1SP7
    BB1-04/05
    /2001 18:30
    [16/Nov/2001:14:11:28] info ( 4639): Loading Simple Session Manager by
    default. Sp
    ecify MMapSessionManager in servlets.properties to load persistent
    session manager
    [16/Nov/2001:14:11:28] info ( 4639): SimpleSessionManager: Default
    values for maxi
    mum number of sessions is 1000 with a time out value of 1800 seconds
    [16/Nov/2001:14:11:28] info ( 4639): SimpleSessionManager: Maximum
    number of sessi
    ons (1000) with a time out value of (1800) seconds
    [16/Nov/2001:14:12:40] info ( 4639): Internal Info: loading servlet
    login
    [16/Nov/2001:14:12:41] info ( 4639): Internal Info: loading servlet
    pllservice
    [16/Nov/2001:14:12:41] info ( 4639): pllservice: init
    [16/Nov/2001:14:12:42] failure ( 4639): Internal error: exception thrown
    from the
    servlet service function (uri=/login): java.lang.NullPointerException,
    stack: java
    ..lang.NullPointerException
    at
    com.iplanet.portalserver.auth.service.AuthD.printProfileAttrs(Compiled
    Code)
    at
    com.iplanet.portalserver.auth.service.AuthD.<init>(AuthD.java:160)
    at
    com.iplanet.portalserver.auth.service.AuthD.getAuth(AuthD.java:171)
    at
    com.iplanet.portalserver.auth.service.LoginServlet.doGetPost(Compiled C
    ode)
    at
    com.iplanet.portalserver.auth.service.LoginServlet.doGet(LoginServlet.j
    ava:990)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:701)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:826)
    at
    com.netscape.server.http.servlet.NSServletRunner.Service(NSServletRunne
    r.java:507)
    , root cause:
    Many thanks for your responses on this.
    Tarang Kumar Patel. WWW home:http://ic-www.arc.nasa.gov/ic/
    NASA Ames Research Center, MS 269-2, Moffett Field, CA 94035-1000
    Email: [email protected], Tel:(650) 604-4721 fax: (650) 604
    3594
    Stated views are my own IDEA, as I'm another I.D.E.A man "I Didn't
    Explain All"

    Just one more thing:
    I made the following setting in platform.conf
    ips.debug=on
    Now, the trace I see on the STDOUT/STDERR stream reveals :
    Received RequestSet XML : <?xml version="1.0" standalone="yes"?>
    <RequestSet vers="1.0" svcid="profile" reqid="2">
    <Request sid="qxcuekwwdrcfwubmmwuip82764q94o37r67n@[email protected]@8080@z
    repvc"><![CDATA[<ProfileService ver="1.0" reqid="0"><GetProfile  searchFlag="false"
    admin="false"><Profile profileName="mercip/authentication" profileType="9"><Priv p
    rivName="iwtSession-addSessionListenerOnAllSessions"/></Profile></GetProfile></Prof
    ileService>]]></Request>
    </RequestSet>
    ---->NEED TO FILL APPSHASH -----
    getProfile.walktree
    321^iwtSession-addSessionListenerOnAllSessions-pv
    com.iplanet.portalserver.profile.service.ProfileServiceException: 321^iwtSession-ad
    dSessionListenerOnAllSessions-pv
    at java.lang.Throwable.fillInStackTrace(Native Method)
    at java.lang.Throwable.fillInStackTrace(Compiled Code)
    at java.lang.Throwable.<init>(Compiled Code)
    at java.lang.Exception.<init>(Exception.java:42)
    at com.iplanet.portalserver.profile.service.ProfileServiceException.<init>(
    ProfileServiceException.java:47)
    at com.iplanet.portalserver.profile.service.ProfileService.walkTree(Compile
    d Code)
    at com.iplanet.portalserver.profile.service.ProfileService.getProfile(Compi
    led Code)
    at com.iplanet.portalserver.profile.service.ProfileService.processProfileRe
    quest(ProfileService.java:134)
    at com.iplanet.portalserver.profile.service.ProfileService.processRequest(P
    rofileService.java:123)
    at com.iplanet.portalserver.profile.service.ProfileService.process(Compiled
    Code)
    at com.iplanet.portalserver.pll.server.PLLRequestServlet.handleRequest(PLLR
    equestServlet.java:139)
    at com.iplanet.portalserver.pll.server.PLLRequestServlet.doPost(Compiled Co
    de)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:733)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:826)
    at com.netscape.server.http.servlet.NSServletRunner.Service(NSServletRunner
    .java:507)
    ProfileResponse: exception key:321
    ProfileResponse: exception string:iwtSession-addSessionListenerOnAllSessions-pv
    ProfileResponse.toXMLString:method id is 0
    Sent ResponseSet XML : <?xml version="1.0" standalone="yes"?>
    <ResponseSet vers="1.0" svcid="profile" reqid="2">
    <Response><![CDATA[<ProfileService vers="1.0" reqid="0"><Exception>321^iwtSession-a
    ddSessionListenerOnAllSessions-pv</Exception></ProfileService>]]></Response>
    </ResponseSet>
    ProfileResponse: exception key:321
    ProfileResponse: exception string:iwtSession-addSessionListenerOnAllSessions-pv
    ProfileUtils.getProfileResponse: Response content <ProfileService vers="1.0" reqid=
    "0"><Exception>321^iwtSession-addSessionListenerOnAllSessions-pv</Exception></Profi
    leService>
    Profile Error:
    Invalid attribute or privilege name
    com.iplanet.portalserver.session.SessionException: Invalid attribute or privilege n
    ame
    at java.lang.Throwable.fillInStackTrace(Native Method)
    at com.iplanet.portalserver.session.SessionException.<init>(SessionExceptio
    n.java:30)
    at com.iplanet.portalserver.session.Session.addSessionListenerOnAllSessions
    (Session.java:642)
    at com.iplanet.portalserver.session.Session.addSessionListenerOnAllSessions
    (Session.java:502)
    at com.iplanet.portalserver.auth.service.AuthD.<init>(AuthD.java:112)
    at com.iplanet.portalserver.auth.service.AuthD.getAuth(AuthD.java:171)
    at com.iplanet.portalserver.auth.service.LoginServlet.doGetPost(Compiled Co
    de)
    at com.iplanet.portalserver.auth.service.LoginServlet.doGet(LoginServlet.ja
    va:990)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:701)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:826)
    at com.netscape.server.http.servlet.NSServletRunner.Service(NSServletRunner
    .java:507)
    Authd Profile Attributes
    cookieDomains
    cookieName->iPlanetPortalServer
    authHost:authPort->........:8080
    authProto->http
    authHostIP->.....
    authHostURL->http://.......:8080/login/default
    Lets hope this helps

  • Problem with Management Console

    This is not really an installation issue, but this seemed the most appropriate category.
    Whenever I try to access any functions of the Users Tool in the Solaris Management Console (gui), such as viewing users, viewing roles, etc., an error msg pops up stating "CIM_ERR_FAILED" . This occurs whether I load locally or over network from another machine's Management Console.
    The box is running Solaris 8 04/01 with several packages from the Sun companuon CD installed, as well as the latest Sun recommended patch cluster. Any help and/or suggestions would be greatly appreciated.

    I think I temporarily fixed this problem I am not sure how this will affect the development.
    But atleast I can start the J2EE/DB services so that I can start and stop services from the MMC
    What was happening was that the services
    SAPJ2E_00
    SAPJ2E_01
    were not starting up because of the logon problems, the default account that was created SAPService( something like that ) was not able to log on, I changed the logon permissions to "Local System" and started the service, this time atleast the service started.
    I need to launch the Development Studio and see if I am able to work with the new account permissions on the J2EE server

  • Problems with administration console

    I try to launch the administration console by using this command.
    java -jar oc4j.jar -console
    It doesn't works
    The error message is :
    Exception in thread "main" java.lang.ExceptionInInitializerError
    at com.evermind.server.ApplicationServer.launchCommandline(ApplicationServer.java:837)
    at com.evermind.server.OC4JServer.launchOC4JCommandline(OC4JServer.java:194)
    at com.evermind.server.OC4JServer.main(OC4JServer.java:232)
    Caused by: java.util.MissingResourceException: Can't find bundle for base name com/evermind/client/assembler/Assembler, locale fr_FR
    at java.util.ResourceBundle.throwMissingResourceException(Unknown Source)
    at java.util.ResourceBundle.getBundleImpl(Unknown Source)
    at java.util.ResourceBundle.getBundle(Unknown Source)
    at com.evermind.util.FallbackResourceBundle.getBundle(FallbackResourceBundle.java:81)
    at com.evermind.util.FallbackResourceBundle.getBundle(FallbackResourceBundle.java:76)
    at com.evermind.client.assembler.Assembler.<clinit>(Assembler.java:24)
    ... 3 more
    I use oc4j standalone version 9.0.0.3
    and the jdk 1.4
    on a w2000 in console mode
    thanks

    Hi S B
    I agree with the rest of the complainers:
    Orion seem frozen in its tracks for more than a year
    now since Oracle took it over.
    I'm not sure if you're saying that OC4J hasn't developed or Orion hasn't developed in the last year.
    I know we've been working hard on OC4J. OC4J now leads the SpecjAppserver benchmarks for some categories in both the 2001 and 2002 editions -- big deal you may say -- but that shows OC4J can run complex apps at high workloads and achieve good performance levels. OC4J is J2EE 1.3 compatible and we have an preview release which exposes some J2EE 1.4 functionality in which which we have also integrated TopLink as the CMP provider and provided Web Services capabilities which use JAX-RPC and support for WS-I.
    > The barrier to entry for developers are as follows:
    >
    1) The documentation is all over the place on
    technet. They need to consolidate the docs into one
    big manual like all the other J2EE vendors.
    All the official product documentation for each production releaseis available from one place on OTN.
    http://otn.oracle.com/documentation/ias.html
    This is accessible from the doc tab on the top of the OTN page.
    The early doc we put out for the preview releases is usually linked off of the OC4J specific area -- is this what is hard to find? I'd appreciate any comments on specific doc you found hard to find so we can try and fix it.
    2) No administrative console except that bulky
    enterprise manager
    Enterprise Manager is being slimmed down (and quickened!) for the 904 release.
    We're aware that we need an alternative solution for management for the standalone distribution. We have implemented a JMX server and requisite MBeans/APIs per JSR77/88 and this will be available in the OC4J 10.0.3 release. A preview of this is available today. We are also shipping a demo console with the preview which uses the JMX capabilities to do deployment and management of the server.
    3) Lots of undocumented features you need like
    dmsoc4j/Spy that it seems only oracle internal people
    and people that troll forums can find
    We have a lot of capabilities in the product, so it's likely there are some pieces that are not covered in each piece of documentation. The DMS spy utility is described in the performance documentation book for the product. The concepts guide does try to present a relatively high level description of all the components of OracleAS and is worth a quick read to get across all the moving parts.
    4) (most of) the examples are all written by
    inexperienced hacks who make them so overly
    complicated that the are impossible to use for
    learning. The ant scripts for them are terrible
    Can you point to which specific examples you are referring to here so we can get it looked at and addressed.
    Please OC4J team, put some work into making the
    product more useable, clean up the docs and examples,
    and for godsakes rename the classes to
    com.oracle.oc4j. That's the first sign that you guys
    doing a sloppy job of taking it over. And not the
    only. Can I ask why do you need the packages renamed? How does that have any effect on you as a developer?
    I look forward to your improvements and would offer
    to help if it was at all pluggable. Too bad, my
    efforts will go to jboss instead.Thanks for the time you put into the feedback.
    -steve-

Maybe you are looking for

  • Addition of new field to customer master data

    Hi Is it possible to create a new field in customer master table screen  and to have the same field in sales order creation screen. can we do it in Ideas version of ECC. please guide me step by step. Regards Jai

  • Aperture Library both 3.1.2 but still cant be open library as its a newer version of aperture? Help :(

    Clicked GET INFO on my Aperture Library and it shows version 3.1.2 Clicked [APERTURE] then [ABOUT APERTURE] and it also says version 3.1.2 Go to open the aperture library and then this pops up The library in "/Users/main/Desktop/Aperture Library.apli

  • Stop in-flight esb instances?

    Hello, I have a few questions. We are testing bulk loading (basic aq adapter to various output adapters) in ESB and noticed that I am surpassing our current limits, due to various reasons such as hardware. After reading some posts, I've gotten quite

  • Camera Raw 5.3 RC installs in Japanese

    I have downloaded and installed ACR 5.3RC to fix the problem of magenta highlights in Canon 5d mkii Raw files. The installation gave me no language options and installed in Japanese by default. How can I change the language or re-install in English -

  • Adjust windows vanshes

    nearly out of reach to the left of my screen. Just a very tiny stripe of that window stays visable and then I can get it with my mouse and drag that window back in sight. It happens every time I reopen iPhoto and want to adjust a picture. At fisrst I