File Monitor - Not working properly on SMB file share

The "File Monitor" does not trigger on SMB file share, i think this might be a bug.
I have tried the same "File Monitor" on a windows share, and it works like intended. However, when I use the same runbook on a Solaris SMB share, it does not trigger properly. It triggers when I delete or rename a file, but not any thing else (like
create, changed, etc) I have turned all the triggers on just to see what actually makes it trigger...
I'm using specified authentication (domain user and password)
The SMB folder is shared on a Solaris (SunOS 5.10).
Can anyone confirm that they also have this problem?
Is there a patch to fix this? Thanks.

Can someone please verify that they also have this problem?
Thanks.

Similar Messages

  • .jar file is not working properly :developed in NETBEANS

    Hi Gurus,
    i am using NETBEANS IDE 7.2.
    i am developing a project that interacts with databases 10g and COM ports of machine , these all processes are performed by .bat file which i am trying to run from jFramform , code works perfectly .bat file is also called perfectly when i run the project using F6 from the NETBEANS, for testing i placed some dialogue boxes on the form to test it ,
    but when i run executable .jar  file , form run successfully and dialogue box works perfectly but .bat file is not called by executable .jar file.
    this is how i call the .bat file...
      String filePath = "D:/pms/Libraries/portlib.bat";  
            try { 
              Process p = Runtime.getRuntime().exec(filePath); 
            } catch (Exception e) { 
                e.printStackTrace(); 
    and below is the contents of portlib.bat file
    java -jar "D:\SMS\SMS\dist\SMS.jar" 
    you must probably ask why i am calling a .jar file using .bat file .
    reason is that this .jar project sends message using GSM mobile , System.exit(); is compulsory to complete a job and then do the next one ,
    if i use the same file to execute this job it makes exit to entire the application (hope you can understand my logic).
    that's why i use extra .jar file in .bat file , when single job is completed .bat exits itself and new command is given.
    Problem is that code is working perfectly in NETBEANS when i run the project but when i run .jar then .bat file is not working  ,
    thanks.

    Thanks Sir ,
    You need to first test an example that works like the one in the article.
    There are plenty of other examples on the web - find one you like:
    http://javapapers.com/core-java/os-processes-using-java-processbuilder/
    I tried this one.
      try {
                ProcessBuilder dirProcess = new ProcessBuilder("D:/SMS/SMS/Send_message.bat");
                 File commands = new File("D:/SMS/SMS/Send_message.bat");
                 File dirOut = new File("C:/process/out.txt");
                 File dirErr = new File("C:/process/err.txt");
               dirProcess.redirectInput(commands);
                 dirProcess.redirectOutput(dirOut);
               dirProcess.redirectError(dirErr);
                 dirProcess.start();
            } catch (IOException ex) {
                Logger.getLogger(mainform.class.getName()).log(Level.SEVERE, null, ex);
    as instructed in the article i compiled  both the projects at same version or sources and libraries which is 1.7
    here is my version details
    C:\>javac -version
    javac 1.7.0_07
    C:\>java -version
    java version "1.7.0_07"
    Java(TM) SE Runtime Environment (build 1.7.0_07-b11)
    Java HotSpot(TM) Client VM (build 23.3-b01, mixed mode, sharing)
    inside the NETBEANS IDE c:\process\err.txt  remains empty and code works perfectly , but when I run executable .jar file( by double clicking on that file in dist directry) then c:\process\err.txt becomes full with this error text and there is no response from calling D:\SMS\SMS\send_message.bat
    here is the error text
    java.lang.UnsupportedClassVersionError: sms/SMSMAIN (Unsupported major.minor version 51.0)
      at java.lang.ClassLoader.defineClass0(Native Method)
      at java.lang.ClassLoader.defineClass(Unknown Source)
      at java.security.SecureClassLoader.defineClass(Unknown Source)
      at java.net.URLClassLoader.defineClass(Unknown Source)
      at java.net.URLClassLoader.access$100(Unknown Source)
      at java.net.URLClassLoader$1.run(Unknown Source)
      at java.security.AccessController.doPrivileged(Native Method)
      at java.net.URLClassLoader.findClass(Unknown Source)
      at java.lang.ClassLoader.loadClass(Unknown Source)
      at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
      at java.lang.ClassLoader.loadClass(Unknown Source)
      at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    Exception in thread "main"
    here is /SMS/SMS
    unknown source ?

  • My JAR file is not working properly!!!

    Hi everyone,
    I made an application that has a GUI (window). I converted it into a JAR file so I can send it to a friend by email. Then she can run it to generate the output. First, the user has to select a destination to save the .txt file (using JFileChooser). Then enters the inputs (using JTextFields). Clicks "Run" button (Results will be calculated and copied to the file). A Message will appear indicating that the results are copied. The problem is that when I run the application in the IDE (Eclipse) it works fine. But when I convert it into JAR, The moment I click the "Run" button, suddenly the window closes. Please HELP???
    Thank you

    DrClap wrote:
    Eng.Sh_2004 wrote:
    Sorry guys, but i would like to make things clearer, As I mentioned earlier, What i'm doing is the following: 1) Using the Jfilechooser, save the results into a filename.txt file _[main class in the manifest file (class for the GUI) ]._ 2) Click "run" to write the data to the created file in step 1 [_another class is used to write to file_]. I have a feeling that the problem is related to the manifest main class. What do you think guys?I think your description of the problem is very bad. And I think your idea of making wild guesses is a bad way of diagnosing problems.
    First of all. A JFileChooser does not save anything. It just allows the user to select a file to be saved to. So if you thought that the first step was writing anything or creating any file, you're probably wrong. But examining the code would help you understand.
    Second, if you're having problems because one class chooses the file name and a second class writes data to it, then you're probably running into the basic beginner problem we see around here all the time of how to communicate data between objects. Again, examining the code might help.
    Third, you need to understand what is writing that error message. Examining the code would help there too.
    So: stop guessing. Look at the code.I'm still New To Java that's why i find difficulty in problems diagnosis. Regarding the JAR problem, as you mentioned, I used JFileChooser to select a file and (copying data) is the other part. So I will look at the code again.
    Edited by: Eng.Sh_2004 on Aug 26, 2010 1:10 PM

  • File.lastModified() not working properly.

    Hi,
    I need to check if the file is modified or not.So Iam using the following code.
    public void testLastModified() {
              for(int i =1 ;i < 10 ;i++){
              String filePath = "C:" + File.separator + "test1.rtf";
              File test1 = new File(filePath);
              if (test1.exists()) {
                   System.out.println("File exits");
                   if (test1.canRead()) {
                        System.out.println("Can read file");
                        if (test1.canWrite()) {
                             System.out.println("can write file");
                             long time = test1.lastModified();
                             System.out.println("last modified:" + time);
                             try {
                                  this.sleep(1000);
                             } catch (InterruptedException e) {
                                  // TODO Auto-generated catch block
                                  e.printStackTrace();
                             System.out.println("wait completed");
                             System.out.println("last modified:" + test1.lastModified());
    while the thread is in sleep state for 1000 ms iam openning and modifying the file.But not saving it.
    The code prints the same modified time as that of the intial modified time.
    So can't we determine last modified time without saving the file.
    Thanks in advance.

    The question doesn't make any sense at all. If you haven't saved the modifications yet, the file hasn't been modified yet, so how could the last-modified date & time change? Why should it change?
    Having said that, some platforms don't modify this attribute until the file is closed.

  • Macron & underdot entities coded in OEB file does not showup properly in epub file

    "A" macron entity coded as "&#257" and "N" underdot entity coded as "n&#803" and "d" underdot entities coded as "&#803d&#803" are not showing up properly in the epub files but they display properly in the OEB file (HTML display). Please advise. Does epub provide support to these entities?

    Hi Subhash,
    You have to create at your own, take any decimal list of entities and open its .epub file in ADE, you will see the question marks against entities, these are the entities which are not supported by .epub.
    Need any further help, reply me.
    Regards,
    Arvinder

  • Hp 6700 option to scan to single file or multiple files does not work-scans to single files only

    Cannot find a way  to scan multiple documents to a single file.  The option on the Scan function does not work!

    Hi @apdamw 
    Have you tried saving the scanned pages as a PDF? When you choose PDF in the format option, you will see the option to choose save all pages to a single file, or create a seperate file for each scanned page. Depending on what option you see, you will need to tick or untick the option.
    Please click the Thumbs up icon below to thank me for responding.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Sunshyn2005 - I work on behalf of HP

  • Final Cut Pro 2nd monitor not working properly?

    Been here before a long time ago, can't remember how it was resolved.
    Working in a new edit suite, FCP Studio.  Two new Samsung monitors (not my choice).  I want one to be my playback monitor.
    I set:
    Final Cut Pro > Audio/Video Settings
    > Digital Cinema Desktop Full Screen
    > View > External Video > All Frames
    But all I'm getting is a black frame on the 2nd monitor.
    They've also got one of those very flat alluminum keyboards ... where F12 becomes a sound control.  I'd love to know how I can change the function key to work as an FCP action / 2nd monitor toggling on and off.
    That's two questions.  Would be most appreciative of an answer for either.
    Ben

    Hey Andy,
    I did the first half of your suggestion, but not the second half.  Heading down to the studio this morning ... set up in a tiny white chapel looking out across the silvery North Atlantic ... and will try the second half of your suggestion.  Will also see if there are two graphics cards installed in the Mac Pro.  Will also check out the Window > Arrange in FCP (something I should have checked first off).
    I talked to a filmmaker who previously worked on the system, only to discover he never uses the second monitor as a full screen, but rather as a large 'bin'.  Interesting.
    If worse comes to worse and I can't solve it I suspect I could size the canvas window to super large and drag it over to the second monitor.
    Will post back when I've tried the latest suggestions ...
    Thanks you mucho guys,
    Ben

  • File Dependency not working properly

    Hi,
    In our project we have a job group which will move a set of file from one directory to another directory. The first job in that group will be run only when a file with an extension "ind" is present in the source directory, i.e the dependency is set to a file with extension *.ind(Please see attached screeshot for reference).
    But when we run the job the dependency is not being satisfied even though the file is present in the source directory.
    What could be the reason for this?
    Note: If I overide the job, then the files are properly griing moved. But since this is automated, the job run must be based on the dependency we have set.

    This sounds like the runtime user of the job is a different account than used by the agent.
    File Dependencies and File Events are evaluated by the agent process.  This means the account running the agent service must have access to the file.
    When the job runs it uses the runtime user.  If the runtime user is different account than the agent account you can encounter the problem you describe.
    If this is a Windows agent running as a Local System account, the agent will only have access to files local to the server.  So if the file is on another server the agent will not have access to it.
    If this isn't your issue, could you provide details about the agent (windows/unix), file location (local to agent/UNC path), and whether the agent running the job is the same as the agent being used to evaluate the file dependency.
    Thanks.

  • File Sync not working properly

    Hopefully someone else has come across this problem. I'll try to set the stage here: I'm running D.W. CS6 and manage about a dozen Web Sites that have been up & running for years without ever seeing this problem.
    When I update a file i.e. contactus.html on my local server then try to sync it with remote server I get But the local file has changed...If I hit YES on the 'No Sync necessary' I get No files listed in the next screen,
    I can connect & see the remote files but can not Sync to it nor manually update it. I tried recreating the Site Cache but that did not help. I also deleted the dwsync.xml on local & restarted D,W. Same results.
    I guess I could delete the Site Definition & start over but I am not sure that would remedy my situation.
    Please assist, Thanks in advance. Pat 

    Synchronization in DW has always seemed to have random issues for me.
    To be honest, I just stopped using it all together and went with...
    Right click the root folder in the Files window
    Choose Select > Recently Modified
    Set the Days field to 1
    That will highlight anything changed in the last day according to DW itself (no server interaction required)
    Put the highlighted files
    You'll end up uploading a couple extra files, to be sure, but it's a lot faster than trying to find them by hand.

  • File Sharing not working properly on app

    Hello,
    My group has been developing an app that will run on an iPad for a company and the app needs to add or edit documents (in pdf format) to the app through itunes. We've implemented UIFileSharingEnabled in the info.plist and the app appears on iTunes that it can support file sharing. Now the problem is when we add files to the app, the files don't appear in the app itself and we've searched trying to find out what could be causing this but we're not sure what's going on.

    What code have you written in the iPad app to allow the files added via iTunes to 'appear' there?

  • File.delete() not working properly

    Hi Forum!!
    I am trying with the below code :
    File file = new file("path");
    try{
    if(file.exists())
    System.+gc+();
    file.delete();
    System.+out+.println("Control in delete trx file after deletion"+ file.exists());
    }catch(SecurityException se){
    String msg= "Delete trx file if 3gttz file created : IO Problems";
    Log.+error+(msg, se);
    }file.exists() returns false But I when I check file, it still exhists with content 0 bytes .
    Is there a way to remove the entire file from the directory rather than deleting only the
    contents ? Need not to tell I did my initial search to solve the problem.
    Thanks
    Edited by: jagabandhu on Feb 10, 2009 1:09 PM

    georgemc wrote:
    PhHein wrote:
    corlettk wrote:
    We can't all be rocket surgeons, either ;-)Heart scientist is the word you're looking for.Or rockin' sturgeons. A (marginally) cooler - albeit fictional - alternative to this abominationFrom a crazy drunk:
    A "bottle in front of me" is better than a "frontal lobotomy"!
    (Sound out those two quoted strings.)

  • Why is my Acer "Ab Files" program not working properly when I download it to my Acer Aspire One?

    Hello there, Im having an issue with trying to download Acers Ab files that works with the apps for Iphone. When I do download it and I click on it, my screen goes black for a second and then everything on my screen gets huge like its in SAFE MODE. I've tried to uninstall it and it keeps doing the same darn thing. I've checked for recent updates for windows and spy and malware and any corrupt files using a program that detects and fixes them. It comes up clean. This program used to work on my computer and now it doesn't. So far, I think its the only one that works convienently using wireless, unless theres another app that does the same. Anyone have this problem? Thanks....

    Charliewhitepaw,
    When you say this program used to work on your computer, what has changed since then? Have you attempted to go back (system restore) to when it worked to see if that resolves the issue?

  • External widescreen monitor not working properly

    Hi! i have an LG Flatron 2243S monitor and i just hooked it up to my late 2011 macbook pro 15" through the mini display port and vga cable since the monitor does not have DVI input, Im having issues with the resolution it shows. if i put it in 1920x1080 60hz it leaves a black space on the left side of the screen. I have it set to 1400x1050 60hz so it fils the screen but it looks streched since i believe that is more of a 4:3 resolution... Can you guys help me?

    Well, I think I have solved the problem. One of the external cases apparently was screwing up the works as far as the USB bus was concerned. After removing that unit from the setup, it seems as if everything is back to normal. I now have to test the HDD's to see if either of the two from that particular enclosure have a problem.

  • Help needed--activity monitor not working properly

    Activity Monitor is currently not showing any processes, no matter what I do. Otherwise, it appears to be functioning normally. I just can't see any processes listed. Also, A.M. works normally in a different account on my MBP.

    Hi
    In your user account Library/Preferences/ folder, there's a file com.apple.ActivityMonitor.plist Quit AM first, then drag this file to the trash. This is the preference settings file for AM & it's possibly gone a bit odd. A new one will be created when you next open AM - any setting/display changes you made in AM will be lost.
    Try that - if it's ok now, just forget the file you trashed.

  • IMac Monitor not working properly

    My iMac 24 monitor has started acting strangely.  I hve what looks like snow or flickering across the whole screen.  I tried rebooting and at the Applw startup screen the scrrne is covered with noise and the Apple lgo is semi duplicated higher on the screen.  It seems to bootup and then the screen realy goes crasies with black blocks in 4 columns on the right side of the screen.
    looks like a monitor problem.  I tried unplugging everyting and startw ith shift key.  no luck, same thing.
    Any suggestions other than take to Apple.  It is a 2008 unit so it is outside of warranty....
    I think I have uptodate backups of most of info using time machine.  I may be missing a bit from Parallels, but should be enough to get back.
    I currently have it unplugged to see if cooling it down helps.  I am guessing graphics card is ...
    It was not overheated when this occurred, I had just started it from sleep mode...

    You're likely correct in that it could be a failed/failing graphics card but you could try a couple of things that might help, if you haven't already. Sounds like you have backup organised - you may need it.
    Are you really running 10.8.2, as per your profile - 10.8.4 is the current version? Applying the combo will bring you up-to-date with the OS: http://support.apple.com/kb/DL1659
    Try a Safe Boot: http://support.apple.com/kb/HT1564 - once booted restart as normal from the Apple menu.
    Boot into the Recovery HD and run Disk Utility to see if any repairs are required. Restart holding down Command = r - more info here: http://support.apple.com/kb/HT4718

Maybe you are looking for