Comand-Line Listener Pattern???

Hi all gurus and thanks in advance for any help.
I have a basic question relating to command-line input. Is there an easy way of monitoring when a user enters some text through the command-line? I know how to read text off the command line but I�m assuming I would need to put the code into a while(true) loop to continually look for new input. The user may input commands throughout the life of my application and a loop is not my preferred solution.
If I was to use a swing app I could easily attach a listener to the component to detect when a user inputs a command. Is there a pattern or easy way of mimicking this through a basic command line?
Thanks

If I was to use a swing app I could easily attach a
listener to the component to detect when a user
inputs a command. Is there a pattern or easy way of
mimicking this through a basic command line?Create a thread which reads the input and calls a listener when a line is read.

Similar Messages

  • Run unit test in comand line

    Hello everybody,
    I try to run existing unit test in comand line:
    ututil -run -test -name ROW_COUNT -repo unit_test_repos -db finch
    where
    ROW_COUNT - simple unit test
    unit_test_repos - unit test repository, which i create using tutorial (http://www.oracle.com/webfolder/technetwork/tutorials/obe/db/sqldev/r30/sqldev_unit_test/sqldev_unit_test_otn.htm)
    finch - owner of procedure, which i try to test
    after execution this command i receive this message:
    C:\sqldeveloper\sqldeveloper\bin>ututil -run -test -name ROW_COUNT -repo unit_test_repos -db finch
    SEVERE Error: No Repository was found on the selected connection, you need to create a repository. - oracle.dbtools.unit_test.UtRepositoryManager.openConnectionWithChecks(UtRepositoryManager.java:214)
    Unable to open repositoryafter that i try to execute command with another parametres (instead of finch i use sys-user), but receive equal result.
    what`s wrong?
    in Help document i find next:
    The following example runs a unit test named AWARD_BONUS in a Windows environment where SQL Developer is installed under Program Files. (Note that test and suite names are case sensitive for the command-line interface.) This example uses the repository connection for user unit_test_repos and runs the test as user fred.
    cd c:\Program Files\sqldeveloper\sqldeveloper\bin
    ututil -run -test -name AWARD_BONUS -repo unit_test_repos -db fred"
    fred is connection which exist in oracle sql developer interface? what kind of privilegies should fred has?
    In oracle sql deevloper exist several connection to another servers. i`t can be reason of error?
    I trying in oracle sql developer interface select finch as manager of unit tests (tools - unit_test - manage_users to the next i select in dropdown list "finch" and granted needed privilegies for him) , but result was`t changed.
    thanks.

    It looks like you need to spark up SQL Developer, create a repository connection and assign that in the Unit Test Menu. It will walk you through creating the repository and then you can refer to that from the command line.

  • Create functio on Comand line!

    Hi!!
    I need to create download procedure, so i must modify the stored function called "wwv_flow_epg_include_mod_local" using SQL comand line.
    Example: http://daust.blogspot.com/2006/04/xe-calling-stored-procedures.html
    I make:
    SQL> connect
    SQL>SYSTEM
    SQL>PASSWORD
    connected
    SQL>alter session set current_schema=FLOWS_020100;
    Session altered.
    SQL>CREATE OR REPLACE function wwv_flow_epg_include_mod_local(
    procedure_name in varchar2)
    2 return boolean
    3 is
    4 begin
    5 if upper(procedure_name) in ('LIONEL.DOWNLOAD_MY_FILE') then
    6 return TRUE;
    7 else
    8 return FALSE;
    9 end if;
    10 end wwv_flow_epg_include_mod_local;
    11
    12
    13
    14
    15
    What should i make to run the create funtion?
    Why it dont stop creating lines?
    Thanks Lionel

    A simple slash and it has create the function and now the download procedure is working.
    Thank´s a lot

  • Comand line argument for updating .air applications

    Hi all,
    Please help me regarding the issue while updating the .air application silently using command line argument -update -silent -location <%INSTALLDIR%> "Location of .air file".
    For the fresh installation I used the following cmd line arguments
    ------> Adobe AIR Application Installer.exe -silent -eulaAccepted -programMenu -location "<INSTALLDIR>" "Location of .air file" ---> This will work for fresh installations only.
    but the same comand will not work if the older version is already installed in the machine we have t use -update argument.
    I don't fine correct argument list for updating the .air files. Please help me if any one know how to update the .air file silently using command line arguments.

    Hi,
    To update an app, the app installer should be invoked with the following command line params:
    -update -silent <dir> <url> <version>
    where <dir> is the full native path to the application, <url> is the URL to the .air file to update it with (either local or remote), and <version> is the version of the new app in the .air file.
    Thanks,
    Jian

  • White Lines/ Foreign Patterns in Fonts only  while Playing

    Vram in use 64K, Keynote 2.0.2
    Does anyone know how to correct this problem? It seems that whenever i play the slide presentation white lines are running through the entire slides and foreign patterns appear in the fonts. i have changed the display, colors, sync, but nothing has improved this problem.

    I wish I had a 10.3.9 machine to check, but, since your video card should definitely be up to the task, I think it's probably going to be that Keynote's having a unique problem with your setup. In Keynote, under the Keynote menu, choose "Provide User Feedback" and send your problem to Apple. It could be that it may not have been reported yet.

  • Illustrator CS5 display performance of fine lines and patterns

    Hi,
    is there a way to improve the display performance in Illustrator CS5? I am working on a large piece which has a lot of very fine cross-hatching that I create with dotted .5 lines (why I'm using Illustrator rather than Photoshop for that isn't open for discussion ). It looks fine when saved as a jpeg or exported to Photoshop, but in Illustrator itself the lines show up significantly thicker and darker - which is very confusing. Switching to Overprint/Pixel Preview doesn't change much.
    I've taken a couple of screenshots (taken at 16% zoom) to illustrate what I mean.
    Illustrator screenshot:
    Photoshop screenshot:
    Also I've noticed the same problem with pattern tiles - when zoomed out to ~50% they start to lose their seemlessness (and look like an incomprehensible mess)

    it's a very large file so I export it at 72ppi. But exporting isn't a problem - regardless of what resolution I export it at the lines always look smoother and softer in Photoshop. Zooming in at 100% in Illustrator gives an accurate display (exactly the same as in PS, I compared the two), it's only when I zoom out that the lines start to look rough and jagged.

  • Parsing commands from a command line, command-pattern?

    I'd like to create a command line where user type their commands and the application will invoke the appropriate action. There could be many commands with different arguments.
    example:
    FDA G 1033052
    XXLD TA 93843234 G 928322
    etc
    each command has different arguments and each command should perform a db task (it's long).
    Also, the commands can be undo (eg, if user clicks UNDO it will undo the last command)
    for this I realized I need to build the command pattern (hold a stack of all commands) but I'm still debating with some issues:
    1. What parser should I build in order to execute the command
    2. How should I encapsulate the commands in a way that will be easier to invoke, should I add all commands in the beginning to a map where the first argument will be the key and the value will be the class?
    Thank you
    Edited by: xianwinwin on Oct 29, 2009 2:22 AM

    xianwinwin wrote:
    I'd like to create a command line where user type their commands and the application will invoke the appropriate action. There could be many commands with different arguments.
    example:
    FDA G 1033052
    XXLD TA 93843234 G 928322
    Commands like that are going to be error prone for human users.
    etc
    each command has different arguments and each command should perform a db task (it's long).
    Also, the commands can be undo (eg, if user clicks UNDO it will undo the last command)
    for this I realized I need to build the command pattern (hold a stack of all commands) but I'm still debating with some issues:
    1. What parser should I build in order to execute the commandFor the posted examples the parser is trivial - break on space. Validation might be harder.
    2. How should I encapsulate the commands in a way that will be easier to invoke, should I add all commands in the beginning to a map where the first argument will be the key and the value will be the class? You are creating a language. How you interpret the language depends on the definition of the language and specifics of the implementation.
    You could certainly do it as you suggest but there are many other variations as well.

  • Phone with multiple lines - listening

                       We have a service phone that takes incoming calls from the public. It is not part of contact center or anything like that. But we have a need for quality control on this phone. Is there a way enable a feature to allow a manager to listen to a call in real time?
    Thanks.

    How about the Attendant Console ( OPR.8.6.2.611 )? Will Barge work with that? I know it is unsupported, but has anyone tried it? Management wants to ensure quality of calls.

  • Calling process flow / mapping from comand line on client machine?

    Looking to call a process flow / mapping from a commad line on the client machine. Online research has found some attempts at it, but nothing solid. I'd like to test this functionality so that I can eventually build these calls into a wrapper used by an enterprise scheduler.
    Thanks

    what oleg2 is writins is oke but I think
    it is easier to write you one wrap around this sql-call, because then you have to parse some parameters and do other additional stuff
    PROCEDURE "P_EXECUTE_WORKFLOW"("P_WORKSPACE" IN VARCHAR2, "P_LOCATION_NAME" IN VARCHAR2, "P_WORKFLOW_NAME" IN VARCHAR2, "P_CUSTOM_PARAMS" IN VARCHAR2 DEFAULT '","', "P_SYSTEM_PARAMS" IN VARCHAR2 DEFAULT '","') ;

  • Sesion bean client not running with comand line

    This is a session bean client program created using Netbeans 5.0 and Sun Application Server 9.
    Everything is normal as long as you run the client application from Netbeans.
    I have been trying to run the .jar file (created by Netbeans) from the command line and the exception thrown is as following:
    C:\Program Files\Java\jdk1.5.0_07\bin>java -jar CartClient.jar
    Exception in thread "main" java.lang.NoClassDefFoundError: com/sun/logging/LogDomains
    at com.sun.enterprise.util.ORBManager.<clinit>(ORBManager.java:78)
    at com.sun.enterprise.naming.SerialInitContextFactory.<clinit>(SerialInitContextFactory.java:56)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:242)
    at com.sun.naming.internal.VersionHelper12.loadClass(VersionHelper12.java:42)
    at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:654)
    at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:247)
    at javax.naming.InitialContext.init(InitialContext.java:223)
    at javax.naming.InitialContext.<init>(InitialContext.java:197)
    at cartclient.Main.main(Main.java:45)
    Somebody knows the reazon why this program run normal in Netbeans and the jar file doesn't
    work using the command line.

    The solution to this problem is to add the following libraries to the session bean
    client:
    appserv-admin.jar
    appserv-deployment-client.jar
    appserv-ext.jar
    appserv-rt.jar
    javaee.jar

  • IDSM comand lines removal from 6509 vss switch

    Hi in our network we have implimented VSS withtwo Cisco 6509 -Eswitches. In these switch I have installed IDS module and following are my IDS configurations.
    intrusion-detection switch 1 module 4 management-port access-vlan 21
    intrusion-detection switch 2 module 4 management-port access-vlan 21
    intrusion-detection switch 1 module 4 data-port 1 trunk allowed-vlan 27,31
    intrusion-detection switch 2 module 4 data-port 1 trunk allowed-vlan 27,31
    intrusion-detection switch 1 module 4 data-port 1 autostate include
    intrusion-detection switch 2 module 4 data-port 1 autostate include
    Whenever I am restarting any node of my VSS the last two lines of the IDS configuration disappears and i need to reenter this manually.
    "intrusion-detection switch 1 module 4 data-port 1 autostate include
    intrusion-detection switch 2 module 4 data-port 1 autostate include"
    Following are my switch details.
    Switch model : WS-C6509-E
    SUP module : VS-S720-10G
    IDS module details : WS-SVC-IDSM-2
    IDS firmware : 7.2(1)
    IDS software : 6.2(3)E4
    I dont understand what causes this problem and during reboot of any VSS node why this configuration is not getting replicated to the othet node?
    Please help me...

    intrusion-detection switch 1 module 4 data-port 1 autostate include portfast
    set this command and check !!!!

  • Error when executing comand line RWRUN to distribute by xml

    Hello,
    I have a .rdf and a customized distribution.xml configured to burst the report and distribute to email.
    I am using command prompt to start distribution, like:
    c:\devsuitehome_1\bin\rwrun report=myreport.rdf userid=devlp/devlppass@mv distribute=yes destination=distribution.xml
    After i run the command line, i keep getting log files create in the same directory where the rdf + distribution xml resides, logs that show errors outside the Java Machine, and nothing happens no report is distributed. I keep running the same command line, and after several attempts, no log error appears in the directory, and results are successfully delivered.
    Do you know what may cause this? Could it be the email server?
    What i'm using:
    - Windows XP, Oracle 10g R2, Oracle Develer Suite 10g R2;
    - Microsoft Exchange Mail Server.
    The log file is named like "hs_err_pid1468.log" and then number is changing all the time (the pid of my action), and the body of the log looks like:
    An unexpected exception has been detected in native code outside the VM.
    Unexpected Signal : EXCEPTION_ACCESS_VIOLATION (0xc0000005) occurred at PC=0x7C93426D
    Function=[Unknown.]
    Library=C:\WINDOWS\system32\ntdll.dll
    NOTE: We are unable to locate the function name symbol for the error
    just occurred. Please refer to release documentation for possible
    reason and solutions.
    Current Java thread:
         at oracle.reports.engine.EngineImpl.CRunReport(Native Method)
         at oracle.reports.engine.EngineImpl.run(EngineImpl.java:437)
         at oracle.reports.server.JobManager.runJobInEngine(JobManager.java:916)
         - locked <0x11568410> (a oracle.reports.engine.EngineImpl)
         at oracle.reports.server.ExecAsynchJobThread.run(ExecAsynchJobThread.java:54)
    Dynamic libraries:
    0x00400000 - 0x00424000      c:\devsuitehome_1\bin\rwrun.exe
    0x7C900000 - 0x7C9B0000      C:\WINDOWS\system32\ntdll.dll
    0x7C800000 - 0x7C8F4000      C:\WINDOWS\system32\kernel32.dll
    0x77C10000 - 0x77C68000      C:\WINDOWS\system32\MSVCRT.dll
    0x77D40000 - 0x77DD0000      C:\WINDOWS\system32\USER32.dll
    0x77F10000 - 0x77F56000      C:\WINDOWS\system32\GDI32.dll
    0x66220000 - 0x6623C000      c:\devsuitehome_1\bin\nn.dll
    0x64CE0000 - 0x64DBD000      c:\devsuitehome_1\bin\UIW.dll
    0x64CA0000 - 0x64CB1000      c:\devsuitehome_1\bin\UTL.dll
    0x77DD0000 - 0x77E6B000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77E70000 - 0x77F01000      C:\WINDOWS\system32\RPCRT4.dll
    0x64CD0000 - 0x64CD7000      c:\devsuitehome_1\bin\UTC.dll
    0x60730000 - 0x607DC000      c:\devsuitehome_1\bin\oracore10.dll
    0x608D0000 - 0x60963000      c:\devsuitehome_1\bin\oranls10.dll
    0x62B40000 - 0x62B53000      c:\devsuitehome_1\bin\oraunls10.dll
    0x60C40000 - 0x60C47000      c:\devsuitehome_1\bin\orauts.dll
    0x71AB0000 - 0x71AC7000      C:\WINDOWS\system32\WS2_32.dll
    0x71AA0000 - 0x71AA8000      C:\WINDOWS\system32\WS2HELP.dll
    0x76B40000 - 0x76B6D000      C:\WINDOWS\system32\WINMM.dll
    0x774E0000 - 0x7761C000      C:\WINDOWS\system32\ole32.dll
    0x64CC0000 - 0x64CC9000      c:\devsuitehome_1\bin\UTJ.dll
    0x64F10000 - 0x64F21000      c:\devsuitehome_1\bin\UIIM.dll
    0x73000000 - 0x73026000      C:\WINDOWS\system32\WINSPOOL.DRV
    0x5D090000 - 0x5D127000      C:\WINDOWS\system32\COMCTL32.dll
    0x64ED0000 - 0x64EF6000      c:\devsuitehome_1\bin\UIOLE.dll
    0x763B0000 - 0x763F9000      C:\WINDOWS\system32\comdlg32.dll
    0x77F60000 - 0x77FD6000      C:\WINDOWS\system32\SHLWAPI.dll
    0x7C9C0000 - 0x7D1D4000      C:\WINDOWS\system32\SHELL32.dll
    0x663D0000 - 0x66414000      c:\devsuitehome_1\bin\CA.dll
    0x66340000 - 0x6636A000      c:\devsuitehome_1\bin\mmc.dll
    0x616B0000 - 0x61891000      c:\devsuitehome_1\bin\oraclient10.dll
    0x62B60000 - 0x62B66000      c:\devsuitehome_1\bin\oravsn10.dll
    0x60D30000 - 0x60DE8000      c:\devsuitehome_1\bin\oracommon10.dll
    0x60300000 - 0x60720000      c:\devsuitehome_1\bin\orageneric10.dll
    0x629C0000 - 0x629D2000      c:\devsuitehome_1\bin\orasnls10.dll
    0x62B80000 - 0x62C86000      c:\devsuitehome_1\bin\oraxml10.dll
    0x00330000 - 0x00341000      C:\WINDOWS\system32\MSVCIRT.dll
    0x607E0000 - 0x608CC000      c:\devsuitehome_1\bin\oran10.dll
    0x62000000 - 0x6202C000      c:\devsuitehome_1\bin\oranl10.dll
    0x62030000 - 0x62042000      c:\devsuitehome_1\bin\oranldap10.dll
    0x62090000 - 0x62184000      c:\devsuitehome_1\bin\orannzsbb10.dll
    0x61E10000 - 0x61E52000      c:\devsuitehome_1\bin\oraldapclnt10.dll
    0x61F30000 - 0x61F47000      c:\devsuitehome_1\bin\orancrypt10.dll
    0x71AD0000 - 0x71AD9000      C:\WINDOWS\system32\WSOCK32.dll
    0x76D60000 - 0x76D79000      C:\WINDOWS\system32\iphlpapi.dll
    0x77120000 - 0x771AC000      C:\WINDOWS\system32\OLEAUT32.dll
    0x621A0000 - 0x621D7000      c:\devsuitehome_1\bin\oranro10.dll
    0x621F0000 - 0x621FC000      c:\devsuitehome_1\bin\orantcp10.dll
    0x61F70000 - 0x61F76000      c:\devsuitehome_1\bin\oranhost10.dll
    0x61F20000 - 0x61F26000      c:\devsuitehome_1\bin\orancds10.dll
    0x62210000 - 0x62216000      c:\devsuitehome_1\bin\orantns10.dll
    0x60970000 - 0x60C31000      c:\devsuitehome_1\bin\orapls10.dll
    0x62500000 - 0x62507000      c:\devsuitehome_1\bin\oraslax10.dll
    0x627B0000 - 0x628B3000      c:\devsuitehome_1\bin\oraplp10.dll
    0x618B0000 - 0x61905000      c:\devsuitehome_1\bin\orahasgen10.dll
    0x622B0000 - 0x622E6000      c:\devsuitehome_1\bin\oraocr10.dll
    0x622F0000 - 0x62315000      c:\devsuitehome_1\bin\oraocrb10.dll
    0x5B860000 - 0x5B8B4000      C:\WINDOWS\system32\NETAPI32.dll
    0x76BF0000 - 0x76BFB000      C:\WINDOWS\system32\PSAPI.DLL
    0x62A80000 - 0x62AF6000      c:\devsuitehome_1\bin\orasql10.dll
    0x65050000 - 0x6576D000      c:\devsuitehome_1\bin\rw.dll
    0x64AB0000 - 0x64AC4000      c:\devsuitehome_1\bin\ZRC.dll
    0x66AC0000 - 0x66AC5000      c:\devsuitehome_1\bin\D2SC.dll
    0x66810000 - 0x66A2B000      c:\devsuitehome_1\bin\DE.dll
    0x627A0000 - 0x627AF000      c:\devsuitehome_1\bin\oraplc10.dll
    0x64E30000 - 0x64E93000      c:\devsuitehome_1\bin\UIREM.dll
    0x659A0000 - 0x659EE000      c:\devsuitehome_1\bin\ROS.dll
    0x662F0000 - 0x66320000      c:\devsuitehome_1\bin\mmi.dll
    0x64F50000 - 0x64F66000      c:\devsuitehome_1\bin\UICC.dll
    0x662C0000 - 0x662DF000      c:\devsuitehome_1\bin\mms.dll
    0x662A0000 - 0x662B0000      c:\devsuitehome_1\bin\mmv.dll
    0x73B50000 - 0x73B67000      C:\WINDOWS\system32\AVIFIL32.dll
    0x77BE0000 - 0x77BF5000      C:\WINDOWS\system32\MSACM32.dll
    0x75A70000 - 0x75A91000      C:\WINDOWS\system32\MSVFW32.dll
    0x66250000 - 0x6627E000      c:\devsuitehome_1\bin\mmw.dll
    0x64FB0000 - 0x64FDA000      c:\devsuitehome_1\bin\UCOL.dll
    0x665F0000 - 0x665F5000      c:\devsuitehome_1\bin\dfc.dll
    0x66210000 - 0x66215000      c:\devsuitehome_1\bin\obs.dll
    0x65010000 - 0x6503E000      c:\devsuitehome_1\bin\rws.dll
    0x64AD0000 - 0x64C05000      c:\devsuitehome_1\bin\VGS.dll
    0x76390000 - 0x763AD000      C:\WINDOWS\system32\IMM32.DLL
    0x00360000 - 0x00369000      C:\WINDOWS\system32\LPK.DLL
    0x74D90000 - 0x74DFB000      C:\WINDOWS\system32\USP10.dll
    0x773D0000 - 0x774D3000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2982_x-ww_ac3f9c03\comctl32.dll
    0x74720000 - 0x7476B000      C:\WINDOWS\system32\MSCTF.dll
    0x77B40000 - 0x77B62000      C:\WINDOWS\system32\apphelp.dll
    0x755C0000 - 0x755EE000      C:\WINDOWS\system32\msctfime.ime
    0x08000000 - 0x08139000      C:\DevSuiteHome_1\jdk\jre\bin\client\jvm.dll
    0x10000000 - 0x10007000      C:\DevSuiteHome_1\jdk\jre\bin\hpi.dll
    0x00D10000 - 0x00D1E000      C:\DevSuiteHome_1\jdk\jre\bin\verify.dll
    0x00D20000 - 0x00D39000      C:\DevSuiteHome_1\jdk\jre\bin\java.dll
    0x00D40000 - 0x00D4D000      C:\DevSuiteHome_1\jdk\jre\bin\zip.dll
    0x03B90000 - 0x03B9F000      C:\DevSuiteHome_1\jdk\jre\bin\net.dll
    0x71A50000 - 0x71A8F000      C:\WINDOWS\System32\mswsock.dll
    0x76F20000 - 0x76F47000      C:\WINDOWS\system32\DNSAPI.dll
    0x76FB0000 - 0x76FB8000      C:\WINDOWS\System32\winrnr.dll
    0x76F60000 - 0x76F8C000      C:\WINDOWS\system32\WLDAP32.dll
    0x66580000 - 0x6658F000      C:\WINDOWS\system32\pnrpnsp.dll
    0x76FC0000 - 0x76FC6000      C:\WINDOWS\system32\rasadhlp.dll
    0x03F20000 - 0x03F26000      C:\DevSuiteHome_1\BIN\rwu.dll
    0x04950000 - 0x04965000      C:\WINDOWS\system32\PGPlsp.dll
    0x049B0000 - 0x04A08000      C:\WINDOWS\system32\hnetcfg.dll
    0x71A90000 - 0x71A98000      C:\WINDOWS\System32\wshtcpip.dll
    0x04B20000 - 0x04B26000      C:\DevSuiteHome_1\jdk\jre\bin\ioser12.dll
    0x77FE0000 - 0x77FF1000      C:\WINDOWS\system32\Secur32.dll
    0x71F80000 - 0x71F84000      C:\WINDOWS\system32\security.dll
    0x77C70000 - 0x77C93000      C:\WINDOWS\system32\msv1_0.dll
    0x5E1F0000 - 0x5E213000      C:\WINDOWS\System32\spool\DRIVERS\W32X86\3\PS5UI.DLL
    0x5E160000 - 0x5E1D4000      C:\WINDOWS\System32\spool\DRIVERS\W32X86\3\PSCRIPT5.DLL
    0x73B30000 - 0x73B44000      C:\WINDOWS\system32\mscms.dll
    0x70000000 - 0x700EE000      C:\WINDOWS\System32\spool\DRIVERS\W32X86\3\X6120PWR.DLL
    0x05250000 - 0x05273000      C:\DevSuiteHome_1\jdk\jre\bin\cmm.dll
    0x05380000 - 0x0539E000      C:\DevSuiteHome_1\jdk\jre\bin\jpeg.dll
    0x06210000 - 0x06322000      C:\DevSuiteHome_1\jdk\jre\bin\awt.dll
    0x76C90000 - 0x76CB8000      C:\WINDOWS\system32\imagehlp.dll
    Heap at VM Abort:
    Heap
    def new generation total 576K, used 453K [0x10010000, 0x100b0000, 0x113c0000)
    eden space 512K, 88% used [0x10010000, 0x10080c88, 0x10090000)
    from space 64K, 3% used [0x100a0000, 0x100a09d0, 0x100b0000)
    to space 64K, 0% used [0x10090000, 0x10090000, 0x100a0000)
    tenured generation total 6700K, used 5052K [0x113c0000, 0x11a4b000, 0x20010000)
    the space 6700K, 75% used [0x113c0000, 0x118af348, 0x118af400, 0x11a4b000)
    compacting perm gen total 8704K, used 8512K [0x20010000, 0x20890000, 0x24010000)
    the space 8704K, 97% used [0x20010000, 0x20860250, 0x20860400, 0x20890000)
    Local Time = Thu May 08 13:36:06 2008
    Elapsed Time = 7
    # The exception above was detected in native code outside the VM
    # Java VM: Java HotSpot(TM) Client VM (1.4.2_06-b03 mixed mode)
    Thank you,
    Mihai

    Hi,
    I am having a similar issue. Did you get any workarounds on this issue.
    Please reply.
    Thanks,
    Girish.

  • [SOLVED] Long comand line input

    Hello. I have problem with my gnome-terminal. When the command line is too long, it rolls to the same row instead of the next one.
    Here you can see it if my explanation isn't clear enough:
    I don't remember since when I have this problem, but I have modified my .bashrc file some time ago. Maybe this is the reason. Its content:
    # Check for an interactive session
    [ -z "$PS1" ] && return
    complete -cf sudo
    alias sudo="sudo -E"
    alias ls='ls --color=auto'
    PS1="\e[1;34m\u@\h \W> \e[m"
    I would appreciate any hint how to fix it
    Last edited by Fazir (2009-11-05 17:03:18)

    brisbin33 wrote:dude, read my first post.
    You are the man! So so sorry, but my english is very very poor, but with a little effort, now it worked.
    PS1='\[\e[0;36m\]::\[\e[1;33m\]\u:\[\e[0;36m\]\w \[\e[1;33m\]\$ \[\e[0;37m\]'
    Thanks again

  • Comand line: EUL upgrade error

    Hi All,
    I am running the following from command line...
    dis51usr.exe/connect user1/pswd@prod1 /opendb test_ap /sheet test_ap_sheet /batch /export xls c:\carlson\1.xls
    But It doesn't create the export file output at the given path.
    If i try to run the partial command:
    dis51usr.exe/connect user1/pswd@prod1 /opendb test_ap /sheet test_ap_sheet
    It pops up the disco Desktop and gives the following error:
    You must upgrade your EUL tables to use this software release. Please contact your discoverer manager.
    Please help, it's urgent.
    Thanks...

    It sounds like your Discoverer EUL version is out of sync with the Discoverer client software that you are using to connect. Are you connecting to a 4i EUL with a 9i client?
    Can you find out what Discoverer EUL version you have...?
    You can see the Discoverer client version by clicking on "About.." in Discoverer Desktop and Discoverer Admin when the log in box pops up.
    Maria

  • Comand line to know what process run in background

    Hiya all,
    I need to know the command line to know how many apps, and what kind, run in background on my iMac.
    Thx in adv
    Parsipal

    Welcome to Apple Discussions, Parsipal.
    Try *ps aux | less* or *ps -ef* for an expanded list. You really should be asking in the Unix Forum.
    http://discussions.apple.com/forum.jspa?forumID=735
    This can be a bit tough to Find because it's under +Mac OS X v10.6 Snow Leopard > Using Mac OS X 10.6 Snow Leopard+
    -mj

Maybe you are looking for

  • Software Update Fails to Install iLife 09 Updates...

    I have a Macbook with all the most recent updates installed, and computer otherwise running smoothly. I had purchased iLife 11 (and since gave it away to a friend) but was very disappointed with the upgrade, and for various reasons decided to go back

  • Sharepoint 2013 Online - error while setting up CRM integration

    Hi, we use Dynamics CRM 2011 on-premise and Sharepoint 2013 online and since last week CRM integration with Sharepoint stopped working. When I want to set up "Document Management Settings" in CRM administration I got an error "An error occured while

  • SRM MDM UoM

    Hi I am loading a new MDM SRM Catalog repository with a supplier file. The supplier items are for hire i.e. computers, cabins, etc. We want to load the catalog items that can be hired/leased. However in the search interface we can only select a quant

  • Layer palette issue. I choose a layer and when I use move tool on that layer PSCC jumps to another layer

    I am Using Photoshop CC 14.2.1x32. When I choose a layer in the layers palette and then use the move tool to re-position an element on that layer, PS forces a jump to another layer. The only way I can re-position is by using free transform on the lay

  • Help! Laptop died/new laptop.  How do I import my itunes?

    My old laptop died. I did backup all my tunes to a memory stick and have most of my tunes on my ipod. How can I get my whole library onto the new laptop! Thanks