Using applet to execute a command on the server

I want my applet to run a commend on a server. If I had a java program, I would have used
Runtime.getRuntime().exec (cmd1, envArr, file)
but I have an applet. so can I make it execute the command: "perl perlfile.pl" where perlfile.pl is on http://server/path/ ?
the applet need some data that this perlfile creates.

Send the command to a servlet and and get this to execute the command and return the response.
This sounds like a good starting point to create a massive security hole.

Similar Messages

  • How execute a command on the Console from our prgm

    can any body let me know how do we execute a command on the Console from our prgm . . on a windows platform ..
    eg. a simple commant like "dir" or "cls" . . or whatever . . .
    i heard that it can be done by calling the native methods . . but how is that done???

    thankx for the quick reply . .
    for instance i wanna take a file from my local machine . .
    a c++ source code . . (myfile.cpp)
    i want to execute that on the prompt using c:\> tcc myfile.cpp
    and all these i mean reading the file from the HDD and giving it to the console and getting the output everything should be done by my prgm . .
    so basically the command which i usually run on the prompt i should be able to pass that command from my java prgm to the console and get that thing executed . .
    i hope i am clear now .. .

  • Could not able to execute FTP commands in windows server machines 2012/ windows server 2008.

    Could not able to execute FTP commands in windows server machines 2012/ windows server 2008.
    From windows server 2012 and windows server 2008, Opened port 20,21,22 in firewall bidirectionally. After Establishing connection by passing credentials  230 log in  successful.
    ftp commands executing getting as " 425 Use Port or PASV first" , "500 Illegal PORT command".
    But I could able to do windows client machines like windows 7 and windows 8 with same environment
    Note : Firewall ports are opened.  have tested by making firewall down to avoid filters. 
    Pandiyan Muthuraman

    Hi Pandiyan Muthuraman,
    Did you mean even you disable or open the related port the FTP issue still exist? I found this errors most time occur when we use the ISA firewall and the FTP configured passive
    mode, if you have ISA firewall please refer the following KB to fix this issue.
    How to enable passive CERN FTP connections through ISA Server 2000, 2004, or 2006
    http://support.microsoft.com/kb/300641
    The have a specific form for the IIS question, if you have the further IIS related question you can ask in IIS forum.
    IIS support forum
    http://forums.iis.net/
    Thanks for your understanding and support
    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.

  • Using cfexecute to execute dos command in windows.

    Hi!
    Well i have a requirement where i need to check status of
    particular service in windows from time to time.
    I inferred that we can use cfexecute for this. Well i tried
    to use the same but i was not successful in achieving the desired
    result.
    The following is the code i have written for the above
    purpose.
    <cfexecute name="sc query Internet Information Services"
    arguments="y"
    outputfile="d:\Temp\Output.txt"
    timeout="90" />
    I get the following message:
    oldfusion.tagext.lang.ExecuteTag$TimeoutException: Timeout
    period expired without completion of sc query Internet Information
    Services
    at
    coldfusion.tagext.lang.ExecuteTag.doStartTag(ExecuteTag.java:170)
    at
    cfserverchecking2ecfm748178803.runPage(D:\Test\serverchecking.cfm:3)
    at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:147)
    at
    coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:357)
    well i have tried using different timeout periods but it dint
    work for me.i have gone crazy with it.
    Please advice on this.
    Many thanks.

    In addition to Mr Black's suggestions, take a look at these
    two entries about using cfexecute on Ben Forta's blog
    http://www.forta.com/blog/index.cfm/2006/7/31/Using-CFEXECUTE-To-Execute-Command-Line-Util ities
    http://www.forta.com/blog/index.cfm/2006/9/11/A-Couple-Of-CFEXECUTE-Gotchas

  • Using ProcessBuilder to execute multiple commands.

    I am having issues getting ProcessBuilder to execute multiple commands in windows.
    As an example I would like to execute "dir /w" fallowed by "java.exe some.App arg1 arg2".
    I can accomplish this from the command line by using "&".
    Example: dir /w & java.exe some.App arg1 arg2 Or: dir /w & dir /c"
    For internal commands (i.e. dir and cd) I know that commands in the array being passed to ProcessBuilder must be formatted like {"dir /w", "dir /c"}
    see post: [http://www.java-tips.org/java-se-tips/java.util/from-runtime.exec-to-processbuilder.html]
    Here is an example of one of the many things I have tried:
    {code}
    String[] commands = new String[]{"dir /w", "&", "java.exe", "some.App", "arg1", "arg2"};
    ProcessBuilder pb = new ProcessBuilder(commands);
    pb.start();
    {code}
    Any other ideas / what am I doing wrong?
    Edited by: brianjbrady on May 7, 2009 4:49 PM
    Edited by: brianjbrady on May 7, 2009 4:50 PM

    brianjbrady wrote:
    You can run dir all day long without using cmd.exe. Try it. It works for me.Perhaps you have cygwin in your path.
    How are you running dir out of interest (and don't say with a DOS window ;)
    import java.io.*;
    import java.util.Arrays;
    public class Main {
        public static void main(String... args) throws IOException {
            run("dir");
            run("dir.exe");
            run("cmd", "/c", "dir");
            run("c:\\cygwin\\bin\\dir");
        private static void run(String... command) throws IOException {
            try {
                ProcessBuilder pb = new ProcessBuilder(command);
                pb.redirectErrorStream(true);
                Process p = pb.start();
                InputStream is = p.getInputStream();
                System.out.println("\nCommand " + Arrays.asList(command) + " reported");
                int b;
                while ((b = is.read()) >= 0)
                    System.out.write(b);
                is.close();
                p.destroy();
            } catch (IOException e) {
                System.err.println("\nCommand " + Arrays.asList(command) + " reported " + e);
    }Prints
    Command [dir] reported java.io.IOException: Cannot run program "dir": CreateProcess error=2, The system cannot find the file specified
    Command [dir.exe] reported java.io.IOException: Cannot run program "dir.exe": CreateProcess error=2, The system cannot find the file specified
    Command [cmd, /c, dir] reported
    Volume in drive D is Work Disk
    Volume Serial Number is AC0B-0757
    Directory of D:\dev\scratch
    26/12/2008  22:15    <DIR>          .
    26/12/2008  22:15    <DIR>          ..
    03/09/2007  21:45    <DIR>          classes
    26/08/2008  20:14            65,280 mynamedpipe
    23/11/2008  11:37           201,354 name.ppt.txt
    24/10/2008  20:00           201,354 race.txt
    05/11/2008  23:17         6,193,334 record.csv
    08/01/2009  16:44               704 scratch.iml
    27/12/2008  12:29            21,576 scratch.ipr
    08/05/2009  20:02            53,258 scratch.iws
    28/04/2009  21:34    <DIR>          src
    07/12/2008  11:44               101 test.txt
                   8 File(s)      6,736,961 bytes
                   4 Dir(s)  32,506,023,936 bytes free
    Command [c:\cygwin\bin\dir] reported
    classes      name.ppt.txt  record.csv     scratch.ipr  src
    mynamedpipe  race.txt        scratch.iml     scratch.iws  test.txt

  • Executing two commands at the same time from Runtime.getRuntime

    Hi everybody,
    I m executing a command of imageMagic from javacode to crop and for changing the quality of image.The code is as below :
    String changeQuality = new String("convert " + originalImage
                        + " -crop " + imageWidth + "x" + imageHeight + "+" + imageX
                        + "+" + imageY + " -quality " + quality + " " + finalImage);
                   Runtime.getRuntime().exec(changeQuality);
    But before going to next page of jsp I want the size of the finalImage. So I m calling a new function from the base file, from which i m calling the above function, for getting the size of image:
    public String getSize(String finalImage) {
                   proc = Runtime.getRuntime().exec("identify " + finalImage);
    As identify cmd gives the size and various values of image but this command is showing the size zero. and if try to read the file then it shows FileNotFoundException.It means the file is not on the server.
    What should i do to execute both the command and getting the right result.
    Any help is appreciated.
    Thanks in advance.
    Vivek Kumar Gupta

    Hi everyone,
    Nobody ans my question but finally i got the ans of my question.
    I use a input stream for reading the first one imagemagic command. through this the second command execute after the first command finished its execution.
    And my images are now displaying without error.
    I know now you all are thinking how great mind I am!!! hai na
    Hmm woh to main hoon.
    post a question if u have over here. Perhaps i can solve your prob.

  • How does client invoke an operating system command in the Server machine.?

    Guys,
    Is there any way that a client could trigger an operating system command on the Oracle Server machine?
    I've a VB scipt file in the server machine.My requirement is to execute that VB file on the server machine.(The script would essentially create a DSN on the server machine).
    The normal way to execute a VB script would be to specify the name of the file in the command prompt.(If my VB script ONDEMAND.VBS resides in C:\ONDEMAND folder,I need to execute the statement
    "C:\ONDEMAND\ONDEMAND.VBS" in the command prompt to get it executed.)
    I would utilise the SQL command below
    HOST C:\ONDEMAND\ONDEMAND.VBS
    to invoke it programatically(from a PL\SQL scipt).
    Can someone help me in utiliting HOST command in Oracle(Or by any other means) for a client database operation to execute an Operating system command in the Oracle server machine?
    Thanks,
    Bhagat

    Hi Bhagat,
    This has been asked several times recently:
    Executing Shell Script from PL/SQL Block
    Fire an executable using oracle
    Cheers,
    Colin

  • How to run an applet(in a html file) in the server?

    I am using the jpedal Viewer inmy code, I embedded the applet code
    in a html file , it is running fine, but when I try to run the same Viewer applet in the Server it is throwing an error
    "java.lang.NoClassDefFoundError: org/jpedal/objects/acroforms/DefaultAcroRenderer
         at org.jpedal.PdfDecoder.startup(Unknown Source)
         at org.jpedal.PdfDecoder.<init>(Unknown Source)
         at pdfViewer.PdfApplet.init(PdfApplet.java:199)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)"
    What is the problem ?
    Please suggest solution for it?
    Its urgent

    I am trying to run the Applet in Tomcat server,
    Could you post the code where you invoke the Applet? It sounds like you're saying you're trying to run the Applet as part of your server-side code. The other interpretation is that you are simply accessing the Applet through the browser that happens to be on the machine being used as the server.
    Like I say, post the code that shows how you're trying to use the Applet "on the server".

  • Monitoring an applet on a thin client from the server

    Hello all,
    I'm not even sure if this is possible or not, but here is what I would like to do.
    I want to be able to monitor an applet running on a remote thin client device from the central server to determine if there have been any problems (exceptions, device failures, etc).
    I'll be using java 1.5.0. If you require more info please let me know.
    Thanks,

    But would anyone know if there is a similar method for applets?
    What makes you think you can't use that technique in an applet? Use that, and contact the server when there's an uncaught exception.
    You'll probably want to report a number of caught exceptions too (unless you're really bad at handling exceptions).
    Best bet is to use a utility class on your applet with a method like "logError(Throwable t, String message)" which will send the details up to the server, maybe output to the console, maybe even pop up a dialog. If you did this via an interface you could plug in different implementations and compound them if required.

  • Executing a program when the server starts

    I have developed a chat program and to run it I have type "java ChatManager".
    Is there a way where this program can start automatically when I start the tomcat.
    Regards,
    Sharad

    The chat application is a java file. I need to keep it running so that I can use it in my applet. The problem is after I start the tomcat, I have start the chat application and for this I open a new window and type "java ChatManager". Once this is done I can start using the chat applet. Is there a way, where the chat application starts automatically when the tomcat starts. Do I need to add something in the server.xml file for this.
    Regards,
    Sharad

  • Discoveryd process uses 100% CPU - Safari Can't find the server

    Hello
    Since upgrading to Yosemite, I lose connection to the internet 2 or 3 times a day. (Outlook goes offline at the same time)
    This is with a wired connection. (Wi-Fi is turned off)
    Safari gives me the "Safari Can't Find the Server" message.
    Restarting the computer solves the issue temporarily.
    While I'm unable to connect to the internet, Activity Monitor shows a process named "discoveryd" that uses 100% CPU.
    Force quitting this process gives me back access to the internet instantly. Unfortunately, I suffered a kernel panic (auto restart) a few minutes after force quitting discoveryd. I'm not 100% sure those 2 are related but it would be an odd coincidence as I never experienced had a single kernel on that system. Haven't tried force quitting that process since.
    I'm using this iMac in a work environment. (Connected to a windows file server and exchange)
    This issue has been happening 2-3 times a day since the day I upgraded to Yosemite.
    Any pointers on what could fix this issue ?
    Thanks

    Start time: 10:04:31 11/11/14
    Model Identifier: iMac11,3
    System Version: OS X 10.10 (14A389)
    Kernel Version: Darwin 14.0.0
    Time since boot: 1:39
    SATA
       WDC WD1001FALS-40Y6A0                  
    USB
       USB-PS/2 Optical Mouse (Logitech Inc.)
    Diagnostic reports
       2014-10-30 Adobe InDesign CC 2014 hang
       2014-10-30 Adobe InDesign CS6 hang
       2014-10-30 Adobe InDesign CS6 crash
       2014-10-30 FileMaker Pro hang x5
       2014-10-30 Finder crash* x2
       2014-10-30 Finder hang
       2014-10-30 Microsoft Outlook hang
       2014-10-30 iTunes hang
       2014-10-31 Adobe InDesign CC 2014 hang
       2014-11-04 Adobe InDesign CC 2014 crash x2
       2014-11-04 Adobe InDesign CC 2014 hang
       2014-11-04 Adobe InDesign CS6 crash x2
       2014-11-04 Microsoft Excel hang
       2014-11-05 Adobe InDesign CS6 hang
       2014-11-05 FileMaker Pro hang
       2014-11-10 Adobe InDesign CC 2014 hang
       2014-11-10 FileMaker Pro hang
       2014-11-11 Adobe Illustrator hang
        * Code injection
    Log
       Nov  5 08:25:33 ** GPU Hardware VM is disabled (multispace: disabled, page table updates with DMA: disabled)
       Nov  5 10:07:01 process discoveryd[49] thread 1190 caught burning CPU! It used more than 50% CPU (Actual recent usage: 82%) over 180 seconds. thread lifetime cpu usage 91.907001 seconds, (77.250009 user, 14.656992 system) ledger info: balance: 90001960650 credit: 91780798965 debit: 1778838315 limit: 90000000000 (50%) period: 180000000000 time since last refill (ns): 109240779280
       Nov  5 10:09:03 ** GPU Hardware VM is disabled (multispace: disabled, page table updates with DMA: disabled)
       Nov  5 11:46:47 process discoveryd[49] thread 1256 caught burning CPU! It used more than 50% CPU (Actual recent usage: 99%) over 180 seconds. thread lifetime cpu usage 91.591946 seconds, (75.959886 user, 15.632060 system) ledger info: balance: 90000109700 credit: 91486467544 debit: 1486357844 limit: 90000000000 (50%) period: 180000000000 time since last refill (ns): 90105095085
       Nov  5 11:54:53 PM notification timeout (pid 275, Creative Cloud)
       Nov  5 11:54:53 PM notification timeout (pid 344, Adobe CEF Helper)
       Nov  5 11:54:53 PM notification timeout (pid 343, Adobe CEF Helper)
       Nov  5 12:35:03 jnl: b(1, 2): replay_journal: from: 57934848 to: 61127168 (joffset 0x1721c000)
       Nov  5 12:35:03 jnl: b(1, 2): journal replay done.
       Nov  5 12:38:37 jnl: b(1, 2): replay_journal: from: 61127168 to: 67488768 (joffset 0x1721c000)
       Nov  5 12:38:37 jnl: b(1, 2): journal replay done.
       Nov  5 12:38:40 ** GPU Hardware VM is disabled (multispace: disabled, page table updates with DMA: disabled)
       Nov  5 13:26:28 process mdworker32[357] thread 8766 caught burning CPU! It used more than 85% CPU (Actual recent usage: 86%) over 40 seconds. thread lifetime cpu usage 81.048638 seconds, (76.580865 user, 4.467773 system) ledger info: balance: 34001309838 credit: 80940733771 debit: 46939423933 limit: 34000000000 (85%) period: 40000000000 time since last refill (ns): 39339579198 [fatal violation]
       Nov  5 14:26:53 PM notification timeout (pid 231, Creative Cloud)
       Nov  5 14:26:53 PM notification timeout (pid 325, Adobe CEF Helper)
       Nov  5 14:26:53 PM notification timeout (pid 326, Adobe CEF Helper)
       Nov  5 14:45:49 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov  5 14:45:49 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov  5 14:47:27 process discoveryd[49] thread 1023 caught burning CPU! It used more than 50% CPU (Actual recent usage: 99%) over 180 seconds. thread lifetime cpu usage 91.572722 seconds, (77.540749 user, 14.031973 system) ledger info: balance: 90015163759 credit: 91483527972 debit: 1468364213 limit: 90000000000 (50%) period: 180000000000 time since last refill (ns): 90121915160
       Nov  5 15:13:33 ** GPU Hardware VM is disabled (multispace: disabled, page table updates with DMA: disabled)
       Nov  6 08:25:36 ** GPU Hardware VM is disabled (multispace: disabled, page table updates with DMA: disabled)
       Nov  6 11:59:36 PM notification timeout (pid 286, Creative Cloud)
       Nov  6 11:59:36 PM notification timeout (pid 355, Adobe CEF Helper)
       Nov  6 11:59:36 PM notification timeout (pid 356, Adobe CEF Helper)
       Nov  6 12:29:24 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov  6 12:29:24 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov  6 12:29:24 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov  6 12:29:24 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov  6 12:29:24 smbsmb2_sm2_b_parse_smchabnge_no_tipfary: ssmb_er_chq_replya failngeed_n ot6if0
       Nov  6 12:29:24 y: smb_rq_reply failed 60
       Nov  6 12:29:24 smb2_ssmmb2_b_spmabr_sparsee_c_hancgeh_naotinfgy: smb_rq_re_epnlyoti failfedy :60 sm
       Nov  6 12:29:24 b_rq_reply failed 60
       Nov  6 12:29:24 rs failed Qsmumber2b_sy m_Inrqfbo __pa60rr
       Nov  6 12:29:24 rse_change_notify: smb_rq_reply failed 60
       Nov  6 12:29:24 ply failed 60smb2_smb_parse_change
       Nov  6 12:29:24 _notify: smsmb_rq_reply failb2_ed smb_6parse_0
       Nov  6 12:29:24 ply failed smb2_smb_pa60
       Nov  6 12:29:24 rse_change_nsmb2otif_smy:b_ spmb_rq_reply failedars e_c60han
       Nov  6 12:29:24 ge_notify: smb_smb2_smb_parse_chrqange__repnotify: smb_rly fq_ailed reply failed 60
       Nov  6 12:29:24 smb2_smb_parssmb2_e_smbchange_pa_nrsote_chifany:ge _nosmb_tifrq_y:re smplb_y rq_fareilply failed 60
       Nov  6 12:29:24 y failed 60
       Nov  6 12:29:24 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov  6 12:29:24 q_reply failed 60
       Nov  6 12:29:24 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov  6 12:29:24 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov  6 12:29:24 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov  6 14:01:02 process discoveryd[49] thread 1259 caught burning CPU!; EXC_RESOURCE supressed due to audio playback
       Nov  6 15:49:49 ** GPU Hardware VM is disabled (multispace: disabled, page table updates with DMA: disabled)
       Nov  6 16:10:23 process Adobe InDesign C[435] caught causing excessive wakeups. Observed wakeups rate (per sec): 309; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 45011
       Nov  7 08:25:38 ** GPU Hardware VM is disabled (multispace: disabled, page table updates with DMA: disabled)
       Nov 10 09:28:46 process discoveryd[49] thread 1195 caught burning CPU! It used more than 50% CPU (Actual recent usage: 99%) over 180 seconds. thread lifetime cpu usage 152.284113 seconds, (127.648543 user, 24.635570 system) ledger info: balance: 90002963251 credit: 152063056684 debit: 62060093433 limit: 90000000000 (50%) period: 180000000000 time since last refill (ns): 90142287445
       Nov 10 09:42:09 ** GPU Hardware VM is disabled (multispace: disabled, page table updates with DMA: disabled)
       Nov 10 11:20:45 process discoveryd[49] thread 1182 caught burning CPU! It used more than 50% CPU (Actual recent usage: 99%) over 180 seconds. thread lifetime cpu usage 150.526060 seconds, (126.552866 user, 23.973194 system) ledger info: balance: 90000111985 credit: 150369654672 debit: 60369542687 limit: 90000000000 (50%) period: 180000000000 time since last refill (ns): 90164134478
       Nov 10 12:14:06 PM notification timeout (pid 261, Creative Cloud)
       Nov 10 12:14:06 PM notification timeout (pid 332, Adobe CEF Helper)
       Nov 10 12:14:06 PM notification timeout (pid 333, Adobe CEF Helper)
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 y failed 60
       Nov 10 12:43:27 failed mb60
       Nov 10 12:43:27 smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:46:06 process WindowServer[121] caught causing excessive wakeups. EXC_RESOURCE supressed due to audio playback
       Nov 10 12:49:29 jnl: b(1, 2): replay_journal: from: 27704832 to: 35355648 (joffset 0x1721c000)
       Nov 10 12:49:29 jnl: b(1, 2): journal replay done.
       Nov 10 12:54:05 jnl: b(1, 2): replay_journal: from: 35355648 to: 40313344 (joffset 0x1721c000)
       Nov 10 12:54:05 jnl: b(1, 2): journal replay done.
       Nov 10 12:54:08 ** GPU Hardware VM is disabled (multispace: disabled, page table updates with DMA: disabled)
       Nov 10 14:31:43 PM notification timeout (pid 232, Creative Cloud)
       Nov 10 14:31:43 PM notification timeout (pid 327, Adobe CEF Helper)
       Nov 10 14:31:43 PM notification timeout (pid 324, Adobe CEF Helper)
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 : smb_rq_reply failesmbd 2_smb_60
       Nov 10 15:07:47 parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 tify: smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_nsotify:mb2 sm_b_rq_reply sfailmed b60
       Nov 10 15:07:47 _parse_change_notify: smbsmb2_rq__rsepmb_parsly failee_d ch60ange_notify
       Nov 10 15:07:47 : smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:47:46 process discoveryd[49] thread 1013 caught burning CPU! It used more than 50% CPU (Actual recent usage: 99%) over 180 seconds. thread lifetime cpu usage 153.503446 seconds, (128.774521 user, 24.728925 system) ledger info: balance: 90007455004 credit: 153327303891 debit: 63319848887 limit: 90000000000 (50%) period: 180000000000 time since last refill (ns): 90099512937
       Nov 11 08:25:38 ** GPU Hardware VM is disabled (multispace: disabled, page table updates with DMA: disabled)
       Nov 11 09:38:05 process Adobe InDesign C[553] caught causing excessive wakeups. Observed wakeups rate (per sec): 283; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 45017
       Nov 10 14:31:43 PM notification timeout (pid 327, Adobe CEF Helper)
       Nov 10 14:31:43 PM notification timeout (pid 324, Adobe CEF Helper)
       Nov 10 14:31:43 com.apple.dpd: Service exited with abnormal code: 75
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 : smb_rq_reply failesmbd 2_smb_60
       Nov 10 15:07:47 parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 tify: smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_nsotify:mb2 sm_b_rq_reply sfailmed b60
       Nov 10 15:07:47 _parse_change_notify: smbsmb2_rq__rsepmb_parsly failee_d ch60ange_notify
       Nov 10 15:07:47 : smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:47:46 process discoveryd[49] thread 1013 caught burning CPU! It used more than 50% CPU (Actual recent usage: 99%) over 180 seconds. thread lifetime cpu usage 153.503446 seconds, (128.774521 user, 24.728925 system) ledger info: balance: 90007455004 credit: 153327303891 debit: 63319848887 limit: 90000000000 (50%) period: 180000000000 time since last refill (ns): 90099512937
       Nov 10 16:47:01 com.apple.WebKit.Networking.UUID: Service exited with abnormal code: 1
       Nov 11 08:25:37 com.apple.Kerberos.kdc: Service exited with abnormal code: 1
       Nov 11 08:25:38 ** GPU Hardware VM is disabled (multispace: disabled, page table updates with DMA: disabled)
       Nov 11 08:56:36 com.apple.dpd: Service exited with abnormal code: 75
       Nov 11 09:38:05 process Adobe InDesign C[553] caught causing excessive wakeups. Observed wakeups rate (per sec): 283; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 45017
    CPU per process: com.apple.WebKit (UID 501) is using 41.2  %
    Daemons
       com.apple.installer.osmessagetracing
       com.microsoft.office.licensing.helper
       com.adobe.fpsaud
    Agents
       com.adobe.CS4ServiceManager
       com.adobe.AdobeCreativeCloud
       com.adobe.ARM.UUID
       com.adobe.ARM.UUID
       com.apple.Safari
       com.adobe.ARM.UUID
       com.google.keystone.user.agent
       com.apple.AirPortBaseStationAgent
    App extensions
       com.apple.InternalFiltersXPC
    Contents of /Library/LaunchAgents/com.adobe.AdobeCreativeCloud.plist (checksum 461455494)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.adobe.AdobeCreativeCloud</string>
        <key>Program</key>
        <string>/Applications/Utilities/Adobe Creative Cloud/ACC/Creative Cloud.app/Contents/MacOS/Creative Cloud</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Utilities/Adobe Creative Cloud/ACC/Creative Cloud.app/Contents/MacOS/Creative Cloud</string>
        <string>--showwindow=false</string>
              <string>--onOSstartup=true</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
       </dict>
       </plist>
    Contents of Library/LaunchAgents/com.adobe.AAM.Updater-1.0.plist (checksum 4071182229)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
        <dict>
         <key>Label</key>
         <string>com.adobe.AAM.Scheduler-1.0</string>
         <key>Program</key>
         <string>/Library/Application Support/Adobe/OOBE/PDApp/UWA/UpdaterStartupUtility</string>
         <key>ProgramArguments</key>
         <array>
            <string>/Library/Application Support/Adobe/OOBE/PDApp/UWA/UpdaterStartupUtility</string>
            <string>-mode=scheduled</string>
         </array>
         <key>StartCalendarInterval</key>
         <dict>
           <key>Minute</key>
           <integer>0</integer>
           <key>Hour</key>
           <integer>2</integer>
         </dict>
        </dict>
       </plist>
    Contents of Library/LaunchAgents/com.adobe.ARM.UUID.plist (checksum 394026997)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.adobe.ARM.UUID</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Adobe Reader.app/Contents/MacOS/Updater/Adobe Reader Updater Helper.app/Contents/MacOS/Adobe Reader Updater Helper</string>
        <string>semi-auto</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>12600</integer>
       </dict>
       </plist>
    Contents of Library/LaunchAgents/com.adobe.ARM.UUID.plist (checksum 4116814193)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.adobe.ARM.UUID</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/MacOS/Updater/Adobe Acrobat Updater Helper.app/Contents/MacOS/Adobe Acrobat Updater Helper</string>
        <string>semi-auto</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>12600</integer>
       </dict>
       </plist>
    Contents of Library/LaunchAgents/com.adobe.ARM.UUID.plist (checksum 926752576)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.adobe.ARM.UUID</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/MacOS/Updater/Adobe Acrobat Updater Helper.app/Contents/MacOS/Adobe Acrobat Updater Helper</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>12600</integer>
       </dict>
       </plist>
    Contents of Library/LaunchAgents/com.apple.SafariBookmarksSyncer.plist (checksum 4209634474)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.apple.Safari</string>
        <key>LimitLoadToSessionType</key>
        <string>Aqua</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Safari.app/Contents/SafariSyncClient.app/Contents/MacOS/S afariSyncClient</string>
        <string>--sync</string>
        <string>com.apple.Safari</string>
        <string>--entitynames</string>
        <string>com.apple.bookmarks.Bookmark,com.apple.bookmarks.Folder</string>
        </array>
        <key>RunAtLoad</key>
        <false/>
        <key>ThrottleInterval</key>
        <integer>60</integer>
        <key>WatchPaths</key>
        <array>
        <string>/Users/USER/Library/Safari/Bookmarks.plist</string>
        </array>
       </dict>
       ...and 1 more line(s)
    Contents of Library/LaunchAgents/com.google.keystone.agent.plist (checksum 64800286)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.google.keystone.user.agent</string>
        <key>LimitLoadToSessionType</key>
        <string>Aqua</string>
        <key>ProgramArguments</key>
        <array>
         <string>/Users/USER/Library/Google/GoogleSoftwareUpdate/GoogleSoftwareUpdate.bu ndle/Contents/Resources/GoogleSoftwareUpdateAgent.app/Contents/MacOS/GoogleSoftw areUpdateAgent</string>
         <string>-runMode</string>
         <string>ifneeded</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>3523</integer>
        <key>StandardErrorPath</key>
        <string>/dev/null</string>
        <key>StandardOutPath</key>
        <string>/dev/null</string>
       </dict>
       </plist>
    Bad plists
       Library/Preferences/com.apple.iphotomosaic.plist
    Listeners
       launchd: afpovertcp
       launchd: afpovertcp
       launchd: microsoft-ds
       launchd: ssh
       launchd: microsoft-ds
       launchd: ssh
       kdc: kerberos
    User login items
       Microsoft Outlook
       - /Applications/Microsoft Office 2011/Microsoft Outlook.app
       TransmitMenu
       - /Applications/Transmit.app/Contents/MacOS/TransmitMenu.app
       ClipMenu
       - /Applications/ClipMenu.app
       Dept
       - /Volumes/Dept
       Public
       - /Volumes/Public
       Apps
       - /Volumes/Apps
    Restricted files: 4584
    Lockfiles: 99
    Elapsed time (s): 352

  • Unable to execute nqcmd command in RHLinux server

    Hi All,
    When we try to execute nqcmd on RH Linux server we are getting error below.
    Bin$ pwd
    /home/oracle/obiee/OracleBI/server/Bin
    Bin$ ./nqcmd
    ./nqcmd: error while loading shared libraries: libodbcinst.so: cannot open shared object file: No such file or directory
    Regards,
    Somu

    hi
    maxim
    i have install obiee 10.1.3.4 in my server Aix 6.1 (unix server). i i have one problem when we try excute nqcmd in unix (Aix 6.1 server )ts show error
    cd /u02/dwbi_apps/obiee/oraclebi/server/Bin
    $ ./nqcmd
    exec(): 0509-036 Cannot load program ./nqcmd because of the following errors:
    0509-022 Cannot load module /u02/dwbi_apps/obiee/oraclebi/server/Bin/libnqsgenericodbcinterface.so.
    0509-150 Dependent module libodbc.a(odbc.so) could not be loaded.
    0509-022 Cannot load module libodbc.a(odbc.so).
    0509-026 System error: A file or directory in the path name does not exist.
    0509-022 Cannot load module nqcmd.
    0509-150 Dependent module /u02/dwbi_apps/obiee/oraclebi/server/Bin/libnqsgenericodbcinterface.so could not be loaded.
    0509-022 Cannot load module
    2. Then i try to do this one
    $ cd /u02/dwbi_apps/obiee/oraclebi/setup
    $ ./common.sh
    $ ./sysenvinit.sh
    ./sysenvinit.sh[68]: =::/u02/dwbi_apps/obiee/oraclebi/odbc/lib:/usr/lib:/lib:$: not found.
    where i will struck i don't no could please tell me maxim
    Advance thanks

  • Facetime error using OS 10.6.8 (snow leopard) "the server encountered an error processing registration"

    I can't seem to manage to get logged into facetime on my MacBook Pro using OS 10.6.8, Snow Leopard. It keeps giving me the error of "the server encountered an error processing registration, please try again later" Well two days later its the same issue, can someone please help!! I see a lot of the fixes on here are for the upgraded operating system, and everyone seems to have had snow leopard work fine...why cant I!!! help the old school op system user PLEASE!! :-)

    I've been trying to get an answer to this problem for MONTHS.  I upgraded both my iMac and my MacBook Pro to Mountain Lion, and ever since, FaceTime and iMessage stopped working.  I got the "Server encountered an error . . ." So, I called Apple "support" and they claimed they haven't heard of this issue.  I said I find it hard to believe since it's apparently a huge problem for tons of users and is all over the Apple forums.  After spending an hour on the phone with "support", they said they had to pass i on to a senior engineer and they'd call me back within 2 days with an answer.  After waiting a week, I decided to go to the place where I should have gone before, the place where all questions can be answered, even those too advanced for Apple, that place . . . YouTube.
    Fixing the time issue didn't work for me, nor did any other solution that has been posted on the boards.  Yet after watching a 1:24 video on YouTube, both FaceTime and iMessage now work for me.
    Here's the solution which WILL work.
    You do need to first make sure your date/time settings are correct and set to adjust automatically.  But doing just this step will not fix the problem.
    Open Finder, click on "Go" at the top menu, then select "Go To Folder"
    Type in    /etc     and hit enter
    You'll see a file called "hosts".  Drag that file to your desktop.
    Right click on that file and open with Text Edit
    Select all the text in that file, delete it and replace it with the text below, exactly as it is below.  Then save the new hosts file (just exiting will save it). And then drag that new hosts file back into the /etc folder to replace the old one.  After that, your FaceTime and iMessage will work, no thanks to Apple.
    # Host Database
    # localhost is used to configure the loopback interface
    # when the system is booting. Do not change this entry.
    127.0.0.1 localhost
    255.255.255.255 broadcasthost
    ::1 localhost
    fe80::1%lo0 localhost

  • Can remote users use Time Machine to back up to the server?

    We have 4 Mac users in our office, and a 5th remote Mac user. All 5 users are using a Mac Mini Server at our office for file sharing services. The 4 local users are all set up for Time Machine backups to the server. I wasn't able to set up the remote user - although she can 'see' the Backups share point when she connects to the server by afp, the Backups device can't be selected from her Time Machine settings in System Preferences.
    Am I going about this wrong? Or are remote backups not supported? I'm aware they may be very slow over a regular internet connection...
    PS - All 5 users are on 10.6

    Sorry for the late reply. There's a slight difference for the minimum system requirements for what Leopard CAN run on vs. what it SHOULD be run on. Although a 667MHz G4-based machine with 512MB RAM may suffice technically, I would propose that a reasonable minimum from a performance perspective is a 1GHz PPC processor (or any Intel processor), with 1GB minimum RAM. Thus, the 1GHz eMac with 1GB RAM is probably the cheapest way you could reasonably run Leopard.
    One of the issues with Finder and iTunes is that Apple is increasingly making use of "Cover Flow" and other sophisticated graphics. These will run slowly (if at all) on systems with PPC processors under 1GHz. You don't want to choke your processor, especially if there's a single PPC processor in your system.

  • No receiving e-mails from Roadrunner - using ATT - Action Required -Leave messages on the server

    I am not received e-mails from my Roadrunner account.  I've deleted e-mail account, sent service books, set-up roadrunner e-mail.
    I checked the setting and Leave messages on the server is selected on my Outlook Escpress...
    Help!!

    I went back into the BB Bis Site....deleted RR e-mail, sent service books, created RR-email....then went back into my OE, into Advanced options.  Removed "leave messages on server"...apply, then went back in and put it back on....
    Don't know, but it seems to be ok for now....
    Thanks for asking...I'll see for today...
    Appreciate your help.

Maybe you are looking for