X220 and Offline Files issue.

My manager uses the offline files feature quite a lot and now she has moved to an X220 with Win 7 Pro 64-bit, however some days when she logs in she notices the sync icon isn't in the tray. When you go into offline files it says its enable but not active a restart will activate it. However rebooting leads to the same thing, instead I go into the services page and find that although set to auto the offline file service is not running, I click start and it kicks back into life.
Now I have viewed the event viewer from when the computer starts and the Offline file service first starts then gchanges state to auto (delayed) then changes back to auto before finally saying that the service has stopped. All of these are info events as opposed to error or warning events. I know some services don't run even when set to auto as they are not needed however without offfline files service running no syncing is done and you also lose the "Always available offline" option when you right click a folder/file.
If anyone has any ideas as to whyt the service is stopping that would be great.
Mark

It is caused by a bug in "RapidBoot" which is software that Lenovo preloads.  You can either (a) uninstall RapidBoot or (b) upgrade to the latest version which fixes this bug.  I recommend (a) - you won't miss RapidBoot by uninstalling it.  Sorry for your inconvenience.

Similar Messages

  • Web Premium CS4 and Offline Files Issue

    My system: Multiple notebooks, laptops running Windows 7 Ultimate, all on a Microsoft Small Business Server 2008 network.
    I have My Documents, My Pictures, and My videos folders rehomed to the server via group policy, and when I unplug from the network these folders are available to the disconnected laptop/pc via offline files (and the offline file cache).
    My issue: When I install Web Premium CS4 on any machine, if my laptop/pc is disconnected from the network, the offline folders disappear, although the offline file management snap-in tab shows the cache is stored, and when I plug back in to the network, the folders will soon appear. When the folders are visible, the offline status shows "Always available offline".
    When I uninstall CS4, the trouble does not get fixed, but a barebones install from a disk image prior to CS4 installation fixes the problem, making me think adobe somehow changes network/registry settings to accomodate their own cache, or maybe something to do with the Adobe Bridge (just guessing). This happens on both 64 bit and 32 bit versions of Win 7.
    I have duplicated this issue on 3 different laptops, all with the same result. I opened a case with Adobe, but my case was immediately closed saying it was a Microsoft/network issue. In fact, I would guess the person who worked the case dismissed this out of hand, the case got closed so quickly.
    Is there someone out there that has run into this issue?
    Thank you,
    Bob

    Was this issue ever resolved? We are in the process of deploying design premium to around 1000 faculty members, and are experiencing the same issue. I wont know till the end of the day whether i can say 100% that its a CS 4 issue but im running a test on 3 laptops with slightly different configs.
    All laptops are win7 enterprise, with folder redirection enabled, same symptoms are occuring.
    As a test, i have been testing the offline files at different stages in the laptop bundle deployment to see where it starts to fail. I sync mydocs, undock laptop and then login to check offline files. I then wipe the CSC clean and move on to next step in deployment, and repeat check.
    We are at the last step in deployment, adobe design premium CS4, and there have been no failures with offline files so far. After it finishes deploying ill report on my findings.
    We have a ticket open with microsoft and  our sysadmin has been working with them for a few days to resolve the issue, and so far they have been baffled, escalating the ticket to a debug team. We have not yet mentioned that we suspect CS4 to be the issue, as they would probabily pass the buck and blame adobe, (similar to the OP saying adobe is blaming microsoft); we want them to fully investigate first.
    Sincerely,
    A Frustrated Team

  • Offline file issues with windows 8.1 not responding

    Hi,
    I am trying to make a teachers home folder available offline so the teacher can access his work at home. I am using windows 8.1, and offline files is enabled. When I select the folder to make it available offline nothing happens, usually it should go through
    a process of making the folder available offline.
    Any help or advice will be helpful
    Thanks in advance

    Hi,
    Please check the offline setting in Sync Center first.
    Open Control Panel, then type offline in
    search bar and press Enter.
    Make sure Offline file is enabled.
    Also you can try to use a little txt file for test if it could be offline access.
    If problem persists, please check Event Viewer if it identify this problem.
    Roger Lu
    TechNet Community Support

  • Windows 7 and Offline Files - Sync at logoff

    All,
    I have set up folder redirection in my organisation (testing purposes) The problem I am facing is Windows 7 will not automatically sync offline files back to the share.
    There is a gpo for Windows XP to do this when a user is either is logging off on on. I am trying to accomplish the same when a user logs off and a script can be run to initiate a sync.
    Please help.
    This is the VBS script I am using, but does nothing when I run it. IS there something missing? A better solution?
    ' THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
    ' ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
    ' THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
    ' PARTICULAR PURPOSE.
    ' Copyright (c) Microsoft Corporation. All rights reserved.
    ' Usage: CscSyncAll.vbs [/Direction:in|out|inout] [/PinNewFiles:1:0] [/Conflicts:local|remote|latest] [/Machine:value] [/User:value] [/Password:value]
    ' Demonstrates how to sync the entire Offline Files cache.
    const cComputerName = "LocalHost"
    const cWMINamespace = "root\cimv2"
    ' Process commandline arguments
    strComputerName = WScript.Arguments.Named("Machine")
    If Len(strComputerName) = 0 Then strComputerName = cComputerName
    strUserID = WScript.Arguments.Named("User")
    If Len(strUserID) = 0 Then strUserID = ""
    strPassword = WScript.Arguments.Named("Password")
    If Len(strPassword) = 0 Then strPassword = ""
    ' Sync control flags from Win32_OfflineFilesCache.Synchronize
    const fFillSparse = &H00000001
    const fSyncIn = &H00000002
    const fSyncOut = &H00000004
    const fPinNewFiles = &H00000008
    const fPinLinkTargets = &H00000010
    const fPinForUser = &H00000020
    const fPinForUser_Policy = &H00000040
    const fPinForAll = &H00000080
    const fLowPriority = &H00000200
    const fAsyncProgress = &H00000400
    const fInteractive = &H00000800
    const fConsole = &H00001000
    const fSkipSuspendedDirs = &H00002000
    const fBackground = &H00010000
    const fCrKeepLocal = &H10000000
    const fCrKeepRemote = &H20000000
    const fCrKeepLatest = &H30000000
    const wbemFlagSendStatus = &H00000080
    SyncControlFlags = fSyncIn + _
    fSyncOut + _
    fPinNewFiles + _
    fPinForUser + _
    fConsole + _
    fInteractive
    strDirection = WScript.Arguments.Named("Direction")
    If Len(strDirection) <> 0 Then
    if LCase(strDirection) = "in" Then
    SyncControlFlags = SyncControlFlags - fSyncOut
    Elseif LCase(strDirection) = "out" Then
    SyncControlFlags = SyncControlFlags - fSyncIn
    Elseif LCase(strDirection) = "inout" Then
    ' Do nothing. Flags already indicate in/out
    Else
    Wscript.Echo "Invalid direction value [" & strDirection & "]"
    Err.Raise 507 ' "an exception occured" error
    End if
    End if
    strPinNewFiles = WScript.Arguments.Named("PinNewFiles")
    If Len(strPinNewFiles) <> 0 And strPinNewFiles = "0" Then
    SyncControlFlags = SyncControlFlags - fPinNewFiles
    End if
    strConflicts = WScript.Arguments.Named("Conflicts")
    If Len(strConflicts) <> 0 Then
    If LCase(strConflicts) = "local" Then
    SyncControlflags = SyncControlFlags + fCrKeepLocal
    Elseif LCase(strConflicts) = "remote" Then
    SyncControlFlags = SyncControlFlags + fCrKeepRemote
    Elseif LCase(strConflicts) = "latest" Then
    SyncControlFlags = SyncControlFlags + fCrKeepLatest
    End if
    End if
    Set objWMILocator = WScript.CreateObject("WbemScripting.SWbemLocator")
    Set objWMIServices = objWMILocator.ConnectServer(strComputerName, _
    cWMINameSpace, _
    strUserID, _
    strPassword)
    Set objCache = objWMIServices.Get("Win32_OfflineFilesCache=@")
    Set objParams = objCache.Methods_("Synchronize").InParameters.SpawnInstance_
    Set objSink = WScript.CreateObject("WbemScripting.SWbemSink", "SINK_")
    Set objItemInstances = objWMIServices.InstancesOf("Win32_OfflineFilesItem")
    ' Set up the API arguments
    Dim ItemPaths(0)
    objParams.Paths = ItemPaths
    objParams.Flags = SyncControlFlags
    ' Constants for cache item types
    const cFile = 0
    const cDirectory = 1
    const cShare = 2
    const cServer = 3
    ' Execute the sync action on each share in the Offline Files cache.
    For Each objItem in objItemInstances
    If cShare = objItem.ItemType Then
    ItemPaths(0) = objItem.ItemPath
    objParams.Paths = ItemPaths
    objWMIServices.ExecMethodAsync objSink, "Win32_OfflineFilesCache", "Synchronize", objParams, wbemFlagSendStatus
    End If
    Next
    ' Loop until we receive an OnCompleted event
    bDone = False
    While Not bDone
    wscript.sleep 1000
    Wend
    Sub SINK_OnProgress(UpperBound, Current, Message, objContext)
    DIM PART_REASON, PART_RESULT, PART_RESULTMSG, PART_PATH
    DIM REASON_BEGIN, REASON_END, REASON_ITEMBEGIN, REASON_ITEMRESULT
    DIM Reasons(3)
    ' The message is composed as follows:
    ' <reason>:<result>:<result msg>:<path>
    ' <reason>
    ' Integer indicates reason for progress callback.
    ' Values are:
    ' 0 - "Begin" overall operation
    ' 1 - "End" overall operation
    ' 2 - "Begin Item" operation
    ' 3 - "Item result"
    ' <result>
    ' Integer result code; HRESULT.
    ' <result msg>
    ' Text describing the result. In most cases this is translated using
    ' the Win32 function FormatMessage. In some cases a more descriptive
    ' message is provided that is better aligned with Offline Files.
    ' <path>
    ' UNC path string associated with the progress notifcation. This is
    ' empty for the "Begin" and "End" notifications.
    ' Define indexes of the various parts in the message.
    PART_REASON = 0
    PART_RESULT = 1
    PART_RESULTMSG = 2
    PART_PATH = 3
    ' The reason codes present in the <reason> part.
    REASON_BEGIN = 0
    REASON_END = 1
    REASON_ITEMBEGIN = 2
    REASON_ITEMRESULT = 3
    ' split the message into the 4 parts and extract those parts.
    Parts = Split(Message, ":", -1, 1)
    Reason = CInt(Parts(PART_REASON))
    Path = Parts(PART_PATH)
    Result = CLng(Parts(PART_RESULT))
    ResultMsg = Parts(PART_RESULTMSG)
    Select Case Reason
    Case REASON_ITEMRESULT
    WScript.Echo Path
    if 0 <> Result then
    Wscript.Echo " Error: " & Hex(Result) & " " & ResultMsg
    end if
    Case REASON_END
    if 0 <> Result then
    Wscript.Echo "Error: " & Hex(Result) & " " & ResultMsg
    end if
    End Select
    End Sub
    ' Called when the operation is complete.
    Sub SINK_OnCompleted(HResult, objLastError, objContext)
    bDone = True
    End Sub
    *This code was pulled from: http://blogs.technet.com/b/filecab/archive/2007/04/26/cscsyncall-vbs-sync-the-entire-offline-files-cache.aspx

    Hi,
    Please know that Offline Files in Windows 7 uses Bitmap Differential Transfer. Bitmap Differential Transfer tracks which blocks of a file in the local cache are modified while you are working offline and then sends only those blocks to the server. In Windows
    XP, Offline Files copies the entire file from the local cache to the server, even if only a small part of the file was modified while offline.
    How the synchronization in Windows 7 Offline Files works
    http://blogs.technet.com/b/netro/archive/2010/04/09/how-the-synchronization-in-windows-7-offline-files-works.aspx
    That should be the cause of the issue that your script didn't work.
    Considering that the issue should be related to the script, I suggest to post the question on Script Center forum for further help.
    Script Center forum:
    http://social.technet.microsoft.com/Forums/scriptcenter/en-US/home
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. 
    Thanks for understanding.
    Kate Li
    TechNet Community Support

  • Offline Files Issue

    Hi all,
    We seem to be having a strange issue with Offline Files and resolving conflicts. It seems that files that have had no change seem to be flagged as changed and show in the Conflicts list awaiting user input. However, when the user tries to resolve the conflict,
    only the "Keep this version - Remote path" option clears the conflict! The "Keep this version - On this computer" just drops the dialog box but doesn't clear the conflict...
    Note that a "real" conflict works resolves as expected (both options work)! 
    Here is a screenshot of an example file - http://tinypic.com/r/20iyih2/8. As you can see nothing is different about the file.
    A bit of background....
    The clients are Windows 7 Ent SP1. We are running a Server 2012 File Server with a Domain Based DFS Namespace. The files that are having the issue are pointing to the shares under the DFS root. 
    Has anyone come across this before, or does anyone have any ideas? 
    Thanks,
    Adam

    Hi,
    A strange issue, there're two same versions shown up in the "reolve conflicts" dialog box, which one is the real version, I mean which one is really modified? on this computer or on remote path? 
    Does the "fake sync conflicts" only occurred in this particular document or occurred in all documents? Please also check if there're sync errors in the "view sync result" or in the event viewer.
    Regards 
    Yolanda
    TechNet Community Support

  • Folder Redirection and Offline Files

    I have Users documents and Favorites redirected using GPO Folder redirection. So everyone has their data redirected to the server. With the feature Always available offline. Then My raid crashed and that Drive become offline. after 24 HRS everyone got
    their Local copy of their files back. 
    Now Why did it take around that much time. The server that used to host the Files was down for 2-3 hrs. Later on I had the server up without the Raid.
    Also 2 users reported that they can see their files but its greyed out with an x and can't access it. Found out they had Always available Offline unchecked . Not sure how did that happened.
    So now I am going to add a new server with the same name and will follow direction to create the Folder and share it according
    http://support.microsoft.com/kb/274443/en-us
    Q 1   What will happen when that Shared folder comes online where user used to redirected their files and now its empty. will all the local files get redirected
    Q 2   If it doesn't work how can I bring users local copy available right away with out waiting for so long. Does it have any thing to do with the server being offline or online ?
    Thanks

    Hi,
    >>
    Q 1  
    What will happen when that Shared folder comes online where user used to redirected their files and now its empty. will all the local files get redirected
    Does this mean that what will happen after we create a new share path with the same path name as the previous failed one? If it’s this case, based on my knowledge, local files
    won’t get redirected, for they are just caches and the real files are on the failed share path.
    >>If it doesn't work how can I bring users local copy available right away with out waiting for so long. Does it have any thing to do with the server being offline
    or online ?
    As far as I know, we need to access the original share path and sync our offline files with it.
    Best regards,
    Frank Shen

  • Removing redirected {{My Documents}} and offline files

    We have a situation where several of our laptop users, about 100, have their {{My Documents}} folder redirected to a network share and that share is made available offline to them.  I have three things I need to do:
    1. redirect their {{My Documents}} folder back to the default location
    2. Turn off the available offline for these folders on the network share
    3. Move the data that is in the network share to the local PC in the default location for {{My Documents}}
    For #1 I can change the registry to point back to the default locations.
    For #2 I think I can use the group policy under Computer Configuration > policies > Administrative Template > Network > Offline Files. But I'm not sure which setting(s) to use
    For #3 I think I can use the group policy under Computer Configuration > policies > Administrative Template > Network > Offline Files with settings for synchronize all offline files when logging on or off.
    Does anyone have any ideas how to accomplish these tasks?

    > For #1 I can change the registry to point back to the default locations.
    Only if you have a way to copy the data... Unless you use FR to redirect
    back, you have to take care of copying existing data on your own.
    Why not creating a GPO that simply redirects to the local profile?
    > For #2 I think I can use the group policy under Computer Configuration >
    > policies > Administrative Template > Network > Offline Files. But I'm
    > not sure which setting(s) to use
    You can disable offline availability on the server side (in the share
    settings). Simple manual task :)
    Or "do not make redirected folders automatically available offline" -
    but this won't help since they ARE already available offline.
    > For #3 I think I can use the group policy under Computer Configuration >
    > policies > Administrative Template > Network > Offline Files with
    > settings for synchronize all offline files when logging on or off.
    If it works, yes. But this is only supported up to XP, not since Vista
    and above...
    The best solution I think is a script that leverages the
    win32_offlinefiles provider to check for items that are not in sync,
    then triggers a sync and reports success/failure to a log or a database.
    But that's way out of the scope of a GP forum.
    Martin
    Mal ein
    GUTES Buch über GPOs lesen?
    NO THEY ARE NOT EVIL, if you know what you are doing:
    Good or bad GPOs?
    And if IT bothers me - coke bottle design refreshment :))

  • IPad and .mov file issue

    I am trying to play some .mov files on my iPad. I was able to drag and drop one of the files from my hard drive to the Movies folder in iTunes.  The drag and drop worked and the file plays fine.  I then go on to do the second file but get an error message when I try to drop it into iTunes: "[file name.mov] was not copied to the iPad '[iPad name]' because it cannot be played on this iPad."  Both files are .mov.  Why am I able to drag and drop one file into iTunes but not the other?  (I am able to drag and drop it into "Movies" in my regular iTunes account, just not to the iPad device).

    Not all mov videos are friendly to iPad, but only H.264 / MPEG-4 encoding video in mov format is compatible with iPad. And the most important step is to convert MOV to the right MOV (mpeg-4), mov (h.264) for ipad. I haven't tried it, but this free software for Mac/Windows may convert it.
    http://www.mirovideoconverter.com/
     Cheers, Tom

  • OS X, SMB and offline files

    Hi all!
    I'd like to ask how you handle the following with OS X Mavericks:
    Assume you have a hierarchical storage management (HSM) system (also called "file system archiving" by some people) and OS X clients access this via, say, the SMB protocol. Now the challenge is that some files in your HSM are offline, which means they are not on disk but some other media, usually tape. OS X features like Quick Look trigger a recall of these files which is typically not a good idea because many files have to be read from tape which (a) takes time, and (b) questions HSM completely, because recalling the files will fill up your disk cache. Things get even worse if multiple users trigger file recalls.
    Now SMB knows a file attribute called ATTR_OFFLINE, see e.g. http://msdn.microsoft.com/en-us/library/cc246322.aspx which is used to indicate that a file is offline. However, it looks like Quick Look and friends do not check this flag. I'm aware of tools like ArchiveConnect, see e.g.
    http://www.grouplogic.com/enterprise-file-sharing/mac-file-archiving-system/ that claim to improve the interoperability of OS X and HSM systems.
    Any experience with this tool or other means to solve the problem? I'd like to see OS X to be more "HSM aware" which means, e.g., it cares about the offline attribute via SMB.
    Best regards, Dirk

    Hi Richard,
    We are looking at file archiving here and have the same potential issues. We haven't evaluated this product, but it claims to solve the problem:
    http://www.grouplogic.com/enterprise-file-sharing/mac-file-archiving-system/
    Good luck
    Mark

  • File Content Conversion and Empty file issue

    Hello,
    The issue is :
    I have configured a file sender adapter with file Content Conversion. I have 2 kinds of records Header and Items.
    i have defined the 'Key Field Name' based on the first character of each line of my flat file and the values associated :
    Header.keyFieldValue = 1
    Item.keyFieldValue = 2
    Flat file example :
    1;Headerfield1;Headerfield2
    2;ItemField1;ItemField1;ItemField1;ItemField1;
    2;ItemField1;ItemField1;ItemField1;ItemField1;
    2;ItemField1;ItemField1;ItemField1;ItemField1;
    and everything works fine !
    But now imagine you receive a bad file like this :
    xxxxx;ohhohoh;llllll
    y;sdfsdfs;zezerz;zerzer
    e;zerzerze;zezerzerzer
    The result is : IS receive nothing and no alert is generated ?!!!???
    What i have seen is that the adapter doesn't find any corresponding value for keyFieldValue so it consider that the flat file is empty and i do nothing, the file is archived and that's all no alert is generated ????
    But i want to receive an alert for checking that the processed flat file was not correct !
    If anybody has an idea, it will be great !
    Regards,
    Vincent

    Hi Vincent.
    Sometimes it really #!@#%%#.. me off when customers excepts that XI will solve their whole organization interfacing problems (and the world hunger as well...:)...
    even when it comes to the responsible systems that creates the file(sometimes with bugs and problems even before XI came to the org.).as in every developed application or out of the box one, the application has to take care of its outputs and deal with errors. when it cant deliver what other systems expects her to  it has to inform some one...
    When it comes to the Adapter frame work XI expects the system in its landscape to be responsible for the data they send (well formed and with the defined  structure...IDocs,XML,flat files).
    as mentioned in my colleagues previous postings you can take care of data verification during mapping and so..
    I belive it is possible to monitor the incoming file before it is parsed to XML (not sure it is the right way to) and maybe we'll get a solution to that in the future (today we can monitor the comm. channel wether its  configures well or not,maybe it will be possible in the future to alert when an incoming file is empty)
    Regards.
    Nimrod

  • Java and Batch File Issue - need urgent help

    I have a java program which calls a batch file. This batch file calls another java program. I want an option so that I can close this java program from main program.
    If i try process.destroy then it will call batch file and not java program.
    I can't go away with batch file.
    I will appreciate if someone can help me.

    khannap wrote:
    Hi, Thanks for the help but this doesn't seem solving my problem completely. I will appreciate if you can help more.
    I will explain you the scenario -
    1. There is java program provided as an external program to me.Only changes things slightly.
    2. This java program is called using batch file. When batch file is started this java program starts and listens on a socket for incoming data.I would want to wrap the launch of this java program in another JVM so we can use process.destroy().
    3. I am writing a program to check performance of the above java program. I want to call this java program from my program in a loop having some varying config data. When I run the loop first time I create a batch file at run time which executes the batch file provided by vendor. This batch file starts the socket. Once my message list is over then my loop goes to executing the batch file again with different config parameters. But this time I run into issue because my previous java program is not killed after message sending was over.Would it be acceptable to mung the 3rd party batch file to insert a wrapper JVM?
    Even if i use threads I don't think I can get rid of batch file.I did not suggest getting rid of batch files.
    So, I need to find a way so that when any iteration of loop is over then this socket program is killed. These 3rd party java programs - do they not have a "terminate" command you can put at the end of your message list?
    Even if i closed the socket from my client program that doesn't help because server is still listening and waiting for new client.
    I need to kill server which was started by batch file.On Linux it would be fairly simple to modify your batch file to determine what the process id is and send the process a signal to terminate it.
    Not sure what you can do on Windows.

  • Form 11g and Jar file issue

    I have migrated all the forms from 10g to 11g. When i run the form 11g using my config i get the below error
    USING Java Plug-in 1.6.0_23 i get the below error
    java.lang.SecurityException: class "oracle.forms.demos.enhancedItems.InfoButton"'s signer information does not match signer information of other classes in the same package
         at java.lang.ClassLoader.checkCerts(Unknown Source)
         at java.lang.ClassLoader.preDefineClass(Unknown Source)
         at java.lang.ClassLoader.defineClassCond(Unknown Source)
         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$000(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 sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Unknown Source)
         at oracle.forms.handler.UICommon.instantiate(Unknown Source)
         at oracle.forms.handler.UICommon.onCreate(Unknown Source)
         at oracle.forms.handler.ButtonItem.onCreate(Unknown Source)
         at oracle.forms.engine.Runform.onCreateHandler(Unknown Source)
         at oracle.forms.engine.Runform.processMessage(Unknown Source)
         at oracle.forms.engine.Runform.processSet(Unknown Source)
         at oracle.forms.engine.Runform.onMessageReal(Unknown Source)
         at oracle.forms.engine.Runform.onMessage(Unknown Source)
         at oracle.forms.engine.Runform.processEventEnd(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.redispatchEvent(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.KeyboardFocusManager.redispatchEvent(Unknown Source)
         at java.awt.DefaultKeyboardFocusManager.dispatchKeyEvent(Unknown Source)
         at java.awt.DefaultKeyboardFocusManager.preDispatchKeyEvent(Unknown Source)
         at java.awt.DefaultKeyboardFocusManager.typeAheadAssertions(Unknown Source)
         at java.awt.DefaultKeyboardFocusManager.dispatchEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    I tried using the Java Plug-in 1.6.0_12
    Loaded image: jar:http://130.1.3.171:9001/forms/java/frmall.jar!/oracle/forms/icons/bgnd.gif
    Forms Session ID is formsapp.9
    The proxy host is null, and the proxy port is 0.
    Native HTTP implementation is being used for the connection.
    The connection mode is HTTP.
    Forms Applet version is 11.1.1.4
    Loaded image: jar:http://130.1.3.171:9001/forms/java/frmall.jar!/oracle/forms/icons/frame.gif
    Exception "java.lang.IllegalArgumentException: failed to parse:"while constructing DataFlavor for:
    Exception "java.lang.IllegalArgumentException: failed to parse:"while constructing DataFlavor for:
    java.lang.ClassNotFoundException: oracle.forms.demos.enhancedItems.InfoButton
         at sun.plugin2.applet.Applet2ClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClassInternal(Unknown Source)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Unknown Source)
         at oracle.forms.handler.UICommon.instantiate(Unknown Source)
         at oracle.forms.handler.UICommon.onCreate(Unknown Source)
         at oracle.forms.handler.ButtonItem.onCreate(Unknown Source)
         at oracle.forms.engine.Runform.onCreateHandler(Unknown Source)
         at oracle.forms.engine.Runform.processMessage(Unknown Source)
         at oracle.forms.engine.Runform.processSet(Unknown Source)
         at oracle.forms.engine.Runform.onMessageReal(Unknown Source)
         at oracle.forms.engine.Runform.onMessage(Unknown Source)
         at oracle.forms.engine.Runform.processEventEnd(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.redispatchEvent(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.KeyboardFocusManager.redispatchEvent(Unknown Source)
         at java.awt.DefaultKeyboardFocusManager.dispatchKeyEvent(Unknown Source)
         at java.awt.DefaultKeyboardFocusManager.preDispatchKeyEvent(Unknown Source)
         at java.awt.DefaultKeyboardFocusManager.typeAheadAssertions(Unknown Source)
         at java.awt.DefaultKeyboardFocusManager.dispatchEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    Caused by: java.io.IOException: open HTTP connection failed:http://130.1.3.171:9001/forms/java/oracle/forms/demos/enhancedItems/InfoButton.class
         at sun.plugin2.applet.Applet2ClassLoader.getBytes(Unknown Source)
         at sun.plugin2.applet.Applet2ClassLoader.access$000(Unknown Source)
         at sun.plugin2.applet.Applet2ClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         ... 35 more
    My config section is
    [form11g]
    jpi_download_page=http://java.sun.com/products/archive/j2se/6u12/index.html
    jpi_classid=clsid:CAFEEFAC-0016-0000-0012-ABCDEFFEDCBA
    jpi_codebase=http://java.sun.com/update/1.6.0/jinstall-6-windows-i586.cab#Version=1,6,0,12
    jpi_mimetype=application/x-java-applet;jpi-version=1.6.0_12
    archive=frmall.jar,modcursor.jar,Images.jar,keyfilter.jar,ticker.jar,rolloverbutton.jar,activation.jar,javamailintegration.jar,mail.jar,uploadserver.jar,uploadclient.jar,infobutton.jar,hyperlink.jar,colorpicker.jar
    form=login.fmx
    pageTitle=Oracle Application
    splashScreen=No
    Previously i used to use jinitiator for 10g. Is there any configuration need to be done or should i sign the jar files.

    You might want to use google:
    http://www.google.com/#q=signer+information+does+not+match+signer+information+of+other+classes+in+the+same+package
    cheers

  • CS3 and Recent Files Issue

    Since installing CS3 about 2 weeks ago, have had the problem of using Save As to a network path that is not persistent. When starting CS3, it fails to open until network paths in recent files are restored.
    It seems to lookup all recent file locations while starting up.
    Is there any way to override that lookup?

    >Is there any way to override that lookup?
    set the recent file list size to 0.

  • Offline Files and folder redirection technology

    Is DFS-R used for Offline file sync between Windows 7 and a Windows 2008 servers? i am trying to see if i can move my redirected folders to a EMC NAS device. But i am thinking i need SMB and DFS-R for this?
    I cant much material about the technology using for offline files or folder redirection
    Can someone help?

    Hi,
    You can safely use DFS Replication and Offline Files together in scenarios when there is only one user at a time who writes to the files. This is useful for users who travel between two branch offices and want to be able to access their files at either
    branch or while offline. Offline Files caches the files locally for offline use and DFS Replication replicates the data between each branch office.
    Do not use DFS Replication with Offline Files in a multi-user environment because DFS Replication does not provide any distributed locking mechanism or file checkout capability. If two users modify the same file at the same time on different servers,
    DFS Replication moves the older file to the DfsrPrivate\ConflictandDeleted folder (located under the local path of the replicated folder) during the next replication.
    For more detailed information, please refer to the article below:
    DFS Replication: Frequently Asked Questions (FAQ)
    Deploy Folder Redirection with Offline Files
    Best regards,
    Susie
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • 2008 R2/ Win7 Offline Files Sync causing High Load on server

    Hi Everyone,
    I have recently been investigating extremely high CPU Usage from the System Process on my company's main File Cluster.
    We managed to track SRV2.sys Threads causing high CPU load within the system process, but was having issues identifying why this was the case.
    As per Microsoft's direction via support call, we have installed the latest SRV2.sys Hotfixes, but this does not appear to have allivated the issue we are experiencing. We have also added more CPU and Memory into both nodes, which has not helped either.
    We have since managed to create a system dump and is being sent to MS Support for analysis.
    I have noticed the following that appears to happen on our cluster:
    Whenever our CAD/Design department run certain functions within their apps running on a windows 7 client (apps include MicroStation, Revit, AutoCAD etc) we see a massive spike and flatline of the system process.
    We found several users with Windows 7 clients that have Configured Offline File to sync an entire Network Volume (some volumes are 2TB Plus, so would never fit on a users computer anyway, i was quite shocked when I found this). How we spotted this was through
    Resource Monitor, the System Process was trolling through all the folders and files in a given volume (it was "reading every single folder). Now, while this was the system process, we could identify the user by using the Open Files view in Server Manager's
    Share and Storage Management tool.
    I have done a fair bit of research and found that a lot of CAD/Drawing applications in the market have issues with using SMB2 (srv2.sys). When reviewing the products that we use, I noticed that a lot of these products actually recommended disabling SMB2
    and reverting to SMB1 on File Server and/or the clients.
    I have gone down the path of disabling SMB2 on all Windows 7 clients that have these CAD Applications installed to assist with lowering the load (our other options are to potentially shift the CAD Volumes off our main file cluster to further isolation these
    performance issues we have been experiencing.) We will be testing this again tomorrow to confirm that the issue is resolved when mass amounts of CAD users access data on these volumes via their CAD Application.
    We only noticed the issue with Offline Files today with trying to sync an ENTIRE Volume. My questions are:
    Should Offline File sync's really cause this much load on a File Server?
    Would the the size of the volume the sync is trying to complete create this additional load within the system process?
    What is the industry considered "Best Practice" regarding Offline Files setup for Volumes which could have up to 1000+ users attached? (My personal opinion is that Offline Files should only be sync of user "Personal/Home" Folders
    as they users themselves have a 1 to 1 relationship with this data.)
    Is there an easier way to identify what users have Offline Files enabled and "actually being used" (from my understanding, Sync Center and Offline Files are enabled by default, but you obviously have to add the folders/drives you wish to sync)?
    If I disable the ability for Offline Files on the volumes, what will the user experience be when/if they try to sync their offline files config after this has been disabled on the volume?
    Hoping for some guidance regarding this setup with Offline Files.
    Thanks in Advance!
    Simon

    Hi Everyone,
    Just thought I would give an update on this.
    While we're still deploying http://support.microsoft.com/kb/2733363/en-us to
    the remainder of our Windows 7 SP1 fleet, according to some Network Traces and XPerf that were sent to MS Support, it looks as though the issu with the Offline Files is now resolved.
    However, we are still having some issues with High CPU with the System Process in particular. Upon review of the traces, they have found a lot of ABE related traffic, leading them to believe that the issue may also be caused by ABE Access on our File Cluster.
    We already have the required hotfix for ABE on 2008 R2 installed (please see
    http://support.microsoft.com/kb/2732618/en-us), although we have it set to a certain value that MS believe may be too high. Our current value is set to "5", as that is the lowest level of any type of permission is set (i.e. where the lowest level of inheritance
    is broken).
    I think I will mark this as resolved regarding the Offline Files issue (as it did resolve the problem with the Offline Files)...
    Fingers crossed we can identify the rest of the high load within the System Process!!!

Maybe you are looking for

  • Setup problem - Extreme no longer found by Mac

    I'm trying to set up an Extreme base station and extend the network with an Express (and use airtunes). I had successfully set up airtunes, but the range was not being extended. After trying to change to a WDS arrangement, I now have a flashing amber

  • Updating missing thumbnails in the PSE Organizer not working?

    I am using PSE12 as a test intallation. After editing photos (JPEG or RAW) with the PSE-Editor, those thumbnails are not visible anymore. Also there are 2 out of about twenty folders that do not show thumbnails at all. Updating the thumbnails doesn't

  • There was an error attaching this file

    I wanted to send an email and I tried to attach a file from pages, I have tried several times but I always get "there was an error attaching this file"

  • Debugging Personalization Issues

    Hi, While trying to hide some columns in an advanced table, I set their rendered property to FALSE at the responsibility level. At that time, it gave me an error message Setting rendered to false may hide this item and its children. The application m

  • Curve 8330 will not sync with desktop manager after 4.5 OS upgrade

    Last time I connected to the desktop manager, it asked me to upgrade to 4.5. I thought, why not? So I did. Since then, I can no longer use the Google Sync for calendar and contacts as it stopped working immedately afterwards. I realized I need to get