Lables / Ratings wont add - cache issue too

Labels/ nor ratings will not Add.
I rebooted, no luck.
I hate having to reset preference, but I did that too and labels wont add still.
I have a big project to edit, and am putting it on hold for a bit becuase of this.
Incidentlaly, I had an intern spend four hours caching 50-60 folders of images for me so they would come up quickly for me and I would not have to wait for caching.
No matter how often I use Bridge it always seems if you have not visited a folder recently the folders new a nice long new cache run.
After the reset of preference, however the cache seems to be gone too, and so I'm never having an intern do that, I'll just suffer the wait the eternity for caching these 100 folders in this project.
I

After the reset of preference, however the cache seems to be gone too, and so
I'm never having an intern do that, I'll just suffer the wait the eternity for
caching these 100 folders in this project.
Kevin, there is either something wrong with your install or with your system
set up. Neither of the problems you mention should happen in case of normal
setup.
You mention a new iMac but not how many RAM installed. Also did you start
from scratch with the installation of your iMac or did you use carbon copy
from and older Mac?
Restart Bridge with option key you only should select reset preferences and
not the purge global cache, this leaves the cache untouched.
Try creating a new user for testing and see if the problems have gone.

Similar Messages

  • 404, published site won't connect to server, cache issue too

    Using DW5...testing site ran perfect. Went live today and getting 404 and I can only sometimes connect to the server to upload. I also can't view the live version. Already cleared cache, already did a command ipconfig/flushdns...not sure what to do next. I think it has something to do with the cache.

    Are you certain that the files are loading to the right location on the remote server? The path on your testing server and the path on the remote server won't necessarily be the same. When you go into your hosting account and look at the directory structure, do you have an index.html file at the root level?
    Can you upload files using a different FTP software, like filezilla?

  • Directory Caching issue with Cisco Jabber client for Windows

    Hi ,
    I am facing cache issue with Cisco Jabber client for Windows. If I do any change related to modification or deletion of contacts in Active Directory/ Callmanager, it does not reflect in the Jabber. Because jabber takes the contacts from the locally stored cache file in the Windows system.
    Every time I have to remove the cache file to overcome this issue, practically it's not possible to do the same with all the Widows users. As, if any employee leaves the company and still I can see his contact appears in the "Cisco Jabber client". I have not seen this issue with Android/Apple iOS.
    Is there any automated way to remove the cache file? 
    Here is the detail of CUCM,Presence and Jabber.
    CUCM version: 9.1.x
    Presence          : 9.1.X
    Jabber              : 10.5 and 10.6

    Hello
    On our environment we had to install a dedicated Microsoft Certificate Authority "just for Cisco Jabber usage" to house the
    Network Device Enrollment Service.
    Our certificate for the CUPS were generated on this Certification Authority too.
    I discussed this certificate matter with my colleagues this afternoon and nobody seems to remember how these certificates were deployed into the
    Enterprise Trust store for the users.
    But I think they asked all 400 users to accept the 3 certificates by answering "yes" to the popup instead of using a script deployed by GPO...
    I wish you success with that deployment and really hope you have a technical partner that *Knows* this subject.
    Our partner left us alone with that unfortunately.
    Florent
    EDIT: If the "Certutil script method" works, please let me know. This could be useful in our own deployment.

  • SharedObject and Caching issues

    Background:
         I am working on a project where I am using sharedObject to store data for a favorites list. The project contains 2 swfs, one in AS 3.0 (using Flex 4.5) and the other an AS 2.0 flash 8 project.  Basically the AS 2.0 project read and writes data to the shared object and the AS 3.0 project just reads the data.
    Setup:
         OS: Windows 7
         Flash Player: 10.3     Browsers: IE 9, IE 8, Chrome 14, and some misc Firefox testing -- Chrome seems to be working the best.  
    Problems:
         First off it has been extremely hard to get consistent results across different computers so if anyone has a suggestion as to why that would be (other than different browsers, different flash player versions, different flash player settings/global settings and different OS versions) because I have been making sure all that stuff is consistent across devices for testing purposes.
         1. It appears that some computers/browers won't store the shared object at all even though everything to allow it is turned on.
         2. Some computers/browsers will store it, but won't update until I refresh the page
    General Questions:
         1. Is the storage of sharedObject object data in a .sol file configured the same in both AS 2.0 and AS 3.0 and if so, would this be a means of communicating between two swfs running off the same domain?
         2. Is it possible to have a browser cache sharedObject data(the .sol file)?
          3. I have noticed as new flash player releases are coming out(especially recently i.e. 10.3) I have had to make a lot of repairs to the actionscipt 2 stuff.  Is actionscript 2 support slowly being phased out? Is anyone else experiencing the same problems? 
    Possible Solutions/Findings:
         I am starting to believe that it has something to do with browser caching since Chrome seems to perform the best and Chrome has performed best when it comes to browser caching issues.
    ** code is available if needed but since it was working before I don't think it is relevant.

    Hello,
    #1
    are you using explicit call to flush method immediately afer you're writing data to reference to SharedObject?
    http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/net/SharedObject. html#flush()
    If not you could have different data read by different browsers sessions run at the same time (e.g. IE/FireFox both hosting your test Flash movies) - as data are flushed only when given Flash runtime session is to be terminated (e.g. movie is to be unloaded) and in other cases as outlined in documentation.
    #2
    the SharedObject is reference to binary file stored on local machine by Flash runtime (Air runtime too). It has nothing similar to web-fetched content to be cached:
    http://en.wikipedia.org/wiki/Local_Shared_Object
    regards,
    Peter

  • SecurityDomain and Caching Issues

    I am running into some caching issues when setting the securityDomain of an imported SWF to match the calling SWF file and I was curious if anyone had any ideas on how to get around this issue.
    Here is the scenario:
    A.swf is launched on Domain A, it sends a Loader request for B.swf on Domain B.
    B.swf will be updated frequently so caching is disabled, A.swf however can be cached.
    B.swf has some ExternalInterface.calls so it requires being in the same securityDomain as A.swf otherwise it will receive a Security Error #2006.
    The code I am using for this is fairly straightforward:
    ActionScript Code:
    var request:URLRequest = new URLRequest("http://domainB/B.swf");
    var loader:Loader = new Loader();
    var context:LoaderContext = new LoaderContext();
    context.securityDomain = SecurityDomain.currentDomain;
    loader.load(request, context);
    I believe B.swf is inheriting the caching setting of A.swf because it is residing in the same securityDomain. If I make a small update to B.swf and refresh A.swf in a browser it will not load the B.swf updates until I clear cache.
    If I get rid of the securityDomain context on the load it will always update B.swf with the most current version, but I run into security issues with ExternalInterface.
    ActionScript Code:
    var request:URLRequest = new URLRequest("http://domainB/B.swf");
    var loader:Loader = new Loader();
    loader.load(request);
    I have tried appending random strings to the end of the URLRequest while using the securityDomain context but it will always used a cached version of B.swf. I have also tried loading B.swf into a ByteArray then using loadBytes on a Loader but that didn't work either.
    Any ideas are appreciated!

    Hello,
    #1
    are you using explicit call to flush method immediately afer you're writing data to reference to SharedObject?
    http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/net/SharedObject. html#flush()
    If not you could have different data read by different browsers sessions run at the same time (e.g. IE/FireFox both hosting your test Flash movies) - as data are flushed only when given Flash runtime session is to be terminated (e.g. movie is to be unloaded) and in other cases as outlined in documentation.
    #2
    the SharedObject is reference to binary file stored on local machine by Flash runtime (Air runtime too). It has nothing similar to web-fetched content to be cached:
    http://en.wikipedia.org/wiki/Local_Shared_Object
    regards,
    Peter

  • Caching issue in jsp or servlet

    I am not sure where I should post the issue that I have. I have a j2ee web app (struts) running on Apache Web Server + Glassfish + MySQL. My server has multi core.
    The problem is that whenever I insert a new data or delete it from a table, I don't see the change right away. Sometimes, I see the change. Sometimes I don't. It's very inconsistent.
    If the old data is cached in JSP, I shouldn't see the change in log file, but I do see it even in the log file.
    For example, I have a page managing user's folders. when I delete a certain folder name from jsp page, this folder is deleted from a db table. but when I refresh the page, I still see the folder name that is not supposed to show up. or when I go to a different page and come back to this page, I don't see it. The behavior is very inconsistent.
    If it's a browser caching issue, I don't think that I should see it in the log file, but I still see the folder name(which is supposed to be deleted) in the log file.
    I am including these lines in all included jsp pages.
    response.setHeader("Cache-Control","no-cache");
    response.setHeader("Pragma","no-cache");
    response.setDateHeader ("Expires", -1);
    does anybody have any opinion about this?
    It's hard to debug it and describe the behavior.
    But it would be very helpful if someone who had a same experience about this explains about this and tells me how to fix it.
    Thanks.

    caesarkim1 wrote:
    I am including these lines in all included jsp pages.
    response.setHeader("Cache-Control","no-cache");
    response.setHeader("Pragma","no-cache");
    response.setDateHeader ("Expires", -1); Instead of including these lines in all jsp's, make a filter and add these lines to it.

  • IE Caching Issue while closing and opening a UI thrice or more

    Hi Everybody..
    Greetings of the day..
    I am working on a web application (Can not disclose the name) where at certain level a word document generated contains a customized toolbar.
    It contains one print option, when clicked opens a UI which shows default printer available (Its different from our normal printing).
    When I repeat opening and then closing of this UI thrice or more times, the entire application gets hanged and I have
    to terminate it by killing the associated process from task manager.
    When this issue was analysed our by onsite team they arrived at a conclusion saying that its an IE caching issue.
    But upto my knowledge I know that any application which is .SSL secured, by default IE never does cache control.
    What could be the solution if application is not .SSL secured or if it is.
    Kindly help asap.
    Thanks.

    Hi all
    Did anyone ever manage to fix this? I'm having this issue across multiple iPads. Even if i completely reset the iPad (erasing all content and settings) it does it again when restored.
    I've just got an iPad Air and that does it too. I even created a new Apple ID to see if that would work (trying to avoid any kind of caching aross iCloud, etc) and it does it straight away in those books. It's massivley frsustrating.
    I have noticed it only seems to do it for iBooks formatted books, not ePubs.
    Anyone have a resolution - it's quite embarrassing when you're doing a presentation about book features and the audience assumes youve only the wrong book each time. More annoying when clsoing the book and the wrong cover appears again, but also takes you to that books collection page, rather than the one you were in.

  • Possible session caching issue in SSRS2014

    Using custom FormsAuth, User A can sign into our own main asp.net mvc app (WIF cookie), then SSRS (FormsAuth cookie) and all is well.  Here is where things go bad.  User A signs out of our main application (WIF cookie deleted) then back in into
    our main application as User B then back into SSRS.  SSRS report that displays User!UserID show UserA instead of current User B.  Its like there is either a session or cookie caching issue going on but not for sure.  
    1. What is the proper way to sign out of SSRS and prevent session caching?
    2. Do I need to worry about making my SSRS logon page non-cacheable?  If so, what is the recommended way of doing this?
    thanks
    scott

    Hi scott_m,
    According to your description, you used custom FormsAuthentication in Reporting Services, after user A sign out the application an sign in as user B, SSRS built-in user is shows user A instead of user B.
    Based on my search, once we configured SSRS to use Custom (Forms) authentication by deploying a custom security extension, we can logon to MS Report Manager (MSRM) using credentials of our custom security framework via a logon web page. But there is no way
    to logout or to expire the authentication cookie, so we need to close the browser manually. As a workaround, we can add a logout button to the Report Manager which is using Forms Authentication, then use code to clear the cookie and redirect to home page.
    In addition, if you extend Reporting Services to use Forms Authentication, it’s better to use Secure Sockets Layer (SSL) for all communications with the report server to prevent malicious users from gaining access to another user's cookie. SSL enables clients
    and a report server to authenticate each other and to ensure that no other computers can read the contents of communications between the two computers. All data sent from a client through an SSL connection is encrypted so that malicious users cannot intercept
    passwords or data sent to a report server.
    Here is a relevant thread you can reference:
    https://social.msdn.microsoft.com/Forums/sqlserver/en-US/5e33949d-7757-45d1-9c43-6dc3911c3ced/how-do-you-logout-of-report-manager
    For more information about Forms Authentication, please refer to the following document:
    https://technet.microsoft.com/en-us/library/aa902691%28v=sql.80%29.aspx?f=255&MSPPError=-2147217396
    If you have any more questions, please feel free to ask.
    Thanks,
    Wendy Fu
    If you have any feedback on our support, please click
    here.
    Wendy Fu
    TechNet Community Support

  • BitmapImage cache issue

    On WIndows 8 RP, I create a BitmapImage with the Uri of a file on disk. The user has the ability to change the image file (using a picker which will replace the file on disk that is currently being used). The issue is that even when the BitmapImage is recreated,
    because the Uri is pointing to the same file, the new updated image is never loaded. The only way to get the new image to load is to close and reopen the app. Clearly there is a cache issue.
    I have two questions:
    1. Is the issue with the cache of the BitmapImage that I construct using the Uri? Or is the issue with the cache of the Image UIElement that is displayed using the BitmapImage I mentioned previously?
    2. It looks like I have far fewer options when dealing with BitmapImages on WinRT. I cannot do bi.BeginInit() or bi.CacheOption. All I can do is bi.CreateOptions = BitmapCreateOptions.IgnoreImageCache; ... but this does not help.
    Here is how I'm constructing my BitmapImage:
    BitmapImage bi = new BitmapImage();bi.CreateOptions = BitmapCreateOptions.IgnoreImageCache;bi.UriSource = new Uri(currentFile.Path, UriKind.Absolute);
    Here is how I'm setting the grid cell BitmapImage (which is binded to a UIElement Image):
    gridViewCellObject.tileImage = bi;
    Here is the code for the gridViewCellObject tileImage get/set
    public BitmapImage muteImage
    get { return _muteImage; }
    set
    _muteImage = value;
    // Call NotifyPropertyChanged when the source property
    // is updated.
    NotifyPropertyChanged("muteImage");
    Here is the XAML which binds the Image to tileImage:
    <Image Source="{Binding tileImage, Mode=OneWay}" Width="140" Height="140" HorizontalAlignment="Center" VerticalAlignment="Top" Margin="0,10,0,0" Stretch="Fill"/>
    Any advice on how get around this caching?
    Bryan L. Keller

    Here is the solution. As the comments in my code suggest, this is ridiculous and shouldn't even be necessary.
    Here is the revised getPhotos method. I copy each bitmap from its original source to the temp folder. I give it a random name that will never be repeated while the application is open. This is done by getting some information about the current system time.
    I calculated it out to be a 1 in 10^-8 chance of getting a duplicate file name using my method of naming.
    public async Task<List<BitmapImage>> getPhotos()
    photos.Clear();
    IReadOnlyList<IStorageFile> files = (IReadOnlyList<IStorageFile>) await folderHierarchy.Last().GetFilesAsync(); //gets storagefiles of original png files
    DateTime currentTime;
    foreach (StorageFile currentFile in files)
    if (currentFile.Name.EndsWith(".png")) //get only png files
    //copy to and read from temp to prevent bitmap caching. (It's ridiculous that I even need to do this)
    currentTime = DateTime.Now;
    String tempFileName = currentTime.Hour + " " + currentTime.Minute + " " + currentTime.Second + " " + currentTime.Millisecond; //generate unique name
    await currentFile.CopyAsync(Windows.Storage.ApplicationData.Current.TemporaryFolder, tempFileName); //copy to temp with unique name
    //because the name is new each time, the bitmap will never be cached. photos.Add(new BitmapImage(new Uri((await Windows.Storage.ApplicationData.Current.TemporaryFolder.GetFileAsync(tempFileName)).Path))); //add bitmap to array of photos. This is used by the rest of the app to populate the gridview
    return photos; //return array of photos
    Microsoft, I shouldn't need to waste time solving your API issues. This stuff should have been fixed in one of the Developer Preview builds, NOT the Release preview.
    Get your act together so developers can do their job.
    Bryan L. Keller

  • CC2014 Cache Issue/Bug?

    Has anyone had any Cache issues withe After Effects CC2014? I'm using the latest version and myself and a co-worker are having cache-related(we think) issues whenever we re-time something.
    Specifically I was trying to create a looping comp using a 1second comp that uses the loopOut expression. It's basically a rangefinder set of lines that continuously move to the right. Inside the 1s comp it loops perfectly, but when I use loopOut, no matter what I do, or check, it creates a huge amount of motion blur on the last frame of the comp(even though it doesn't happen at all in the precomp)
    My coworker was re-timing a scene with a person using twixtor pro, the footage is touched up to remove some wrinkles under the subjects eyes, but when twixtor is applied it appears to be using the wrinkled-eyed footage. It's 100% opacity and doesn't have a blend mode or any expressions. The original un-retouched image with wrinkles is a hidden(not shy) layer under the new footage for timing/matching purposes.
    When the original footage is removed from the comp and the cache is cleared it seems to clear up.
    Any thoughts/suggestions?

    hey sandeep--
    if i'm understanding you correctly, this does indeed sound like a cache issue. based on what i'm thinking is your expected behavior, it sounds as if you're forgetting to clear the cache for your other PARAM items when a value is selected from one of your PARAM items that, from a logical perspective, comes before it. so to use your example...
    After I get Report based on (1). And then go back & select (2). It works fine. But when I go back & select (1) again, it still shows the Regions displayed based on the (2).
    ...i'd say you'd want to add a process to your page that fires after submit and clears the cache for PARAM2 when the value of :REQUEST = 'PARAM1'.
    hope this helps,
    raj
    ps-if i've misunderstood your issue, please explain it in more detail.

  • Cache issue coming in Start Process for Employee iView under MSS

    Hi,
    Navigate to MSS -> Team -> HCM Process and Forms -> Start Process for Employee
    In Start Process for Employee iView, when I clicks on Refresh link at the bottom right of the table the Direct Reports got removed from the table (which is correct) but when I navigates to some other screen and comes back then again the previous data comes back. It seems to be cache level issue. Even I logs off and login the same data comes back which should not happen.
    I have checked the forum [Team=>Personnel Developent=>Employee Search; and found it that Refesh property will work if I set the parameter of iview Cache Lifetime = -1 then it will disable the caching at all.
    And I wants the same behaviour for Start Process for Employee iView. But I am not able to find the similar property in Start Process for Employee iView.
    Anyone have an idea of What is the resolution for this issue?
    Regards,
    Deep

    Hi Deep,
    now I understand your problem )
    To me it sounds like an OADP cache issue rather than one in Portal. The iview uses OADP which again uses the cache which does not reflect on the actual current org-structure.
    One possibility would be enhancing the WD4A and call FMs
    HRWPC_OADP_DELETE_TGTOBJCACHE
    HRWPC_OADP_DELETE_SRCHOBJCACHE
    HRWPC_OADP_DELETE_NAVOBJCACHE
    HRWPC_OADP_DELETE_DATAVWCACHE
    dependent on what you want to delete to refresh.
    I would probably try to enhance HookMethod WDDOINIT in Component Controller and call them there, but that's just a guess; could be complete nonesense.
    Another possibility would be trying to add the application parameter "sap.xss.req.crt.cachelifetime=0" to the iView.
    Links for reference:
    http://help.sap.com/saphelp_ppm50/helpdata/en/21/1ac5ca5cad46528d4f970cc03b8e8f/content.htm
    Web dynpro abap and OADP cache
    http://help.sap.com/saphelp_dimp50/helpdata/DE/97/7f754067025537e10000000a1550b0/content.htm
    hope this helps a bit now
    regards, Lukas

  • Cache issue in Reports using Parameters

    Hi,
    I have a Report which uses multiple Regions to show conditionally based on the Parameters selected.
    e.g. PARAM1, PARAM2, PARAM3
    (1)PARAM1,null,null - Selected : Shows Region : 1,2,3
    (2)PARAM1, PARAM2, null- Selected : Shows Region : 1,4,5,6
    (3)PARAM1, PARAM2, PARAM3 - Selected : Shows Region 1,7,8
    After I get Report based on (1). And then go back & select (2). It works fine. But when I go back & select (1) again, it still shows the Regions displayed based on the (2).
    Is it a Cache Issue ?
    Please advise
    Thanks
    Sandeep

    hey sandeep--
    if i'm understanding you correctly, this does indeed sound like a cache issue. based on what i'm thinking is your expected behavior, it sounds as if you're forgetting to clear the cache for your other PARAM items when a value is selected from one of your PARAM items that, from a logical perspective, comes before it. so to use your example...
    After I get Report based on (1). And then go back & select (2). It works fine. But when I go back & select (1) again, it still shows the Regions displayed based on the (2).
    ...i'd say you'd want to add a process to your page that fires after submit and clears the cache for PARAM2 when the value of :REQUEST = 'PARAM1'.
    hope this helps,
    raj
    ps-if i've misunderstood your issue, please explain it in more detail.

  • The cache issue about indexcol function

    Hi Experts,
    We have one requirement as below,
    Firstly, we have some columns prompt created by JAVA in external portal page, not OBIEE internal prompts,such as Year, Month,Day.
    Secondly, we have one report contains one dynamic column which showes the lowest selected level value.
    For example,
    When users muti-select value in Year, and not select Month,Day, so this report will display as below:
    Dynamic--------Sales
    2010-------------1000
    2011-------------2000
    When users muti-select value in Year and Month, and not select Day, so this report will display as below:
    Dynamic--------Sales
    201001-----------100
    201002-----------300
    201101-----------500
    When users muti-select value in Year , Month, and Day , so this report will display as below:
    Dynamic--------Sales
    20100101--------50
    20100202--------80
    20110101--------100
    So we have one method to solve this requirement, but faced new cache or update issue immediately. More detail information as below:
    We create one temp table which has one flag column ,
    when users select Year level, it will record 0,
    when users select Month level, it will record 1,
    when users select Day level, it will record 2
    Then import this temp table into physical layer, and create session init block like below:
    select flag from temp
    Finially, we create new indexcol column in BMM :
    INDEXCOL(VALUEOF(NQ_SESSION.FLAG),Year,Month,Day) and drag it into presentation layer.
    When users select value in Year or Month or Day, and the flag will be record into database.However, the dynamic column in report will not be changed.
    I must click "Reload Server Metedata" firstly, it will show correctly.(Users do not click this )
    Is there any better method to solve cache issue? Or any other better methods for solving this requirement?
    Thanks very much.
    Note: I have disabled the cache in temp table in physical layer.

    Sorry to bother you again, I found I was wrong in describing my problem. I found out that I sent the CiscoIPhoneExecute xml to the phone last time, not the CiscoIPhoneImageFile xml.
    The CiscoIPPhoneExecute xml is like:
    http://192.168.1.2:8080/test/push2phone.jsp?action=get"/>
    And "http://192.168.1.2:8080/test/push2phone.jsp?action=get" returns the CiscoIPPhoneImageFile xml, like this:
    Image Title goes here
    Prompt text goes here
    0
    0
    http://192.168.1.2:8080/test/pngs/attention.png
    so when I send the CiscoIPPhoneExecute xml to a phone, the phone will display the file attention.png on the screen with the sound chime.raw, then I press the "exit" button, the attention.png on the screen disappears. But if I then send the CiscoIPPhoneExecute xml with the "http://192.168.1.2:8080/test/push2phone.jsp?action=get" that returns the CiscoIPPhoneImageFile that contains a different png file, for example "warning.png", the "attention.png" will appear for a short time during the time when "warning.png" is downloading, then "warning.png" appears. I have no idea why that happens. I don't want to see "attention.png" when I'm sending "warning.png". What can I do?
    I've tried to directly sent the CiscoIPPhoneImageFile xml to a phone, everything goes well, no "cache" problems. but I have no idea how to add the sound "chime.raw". I want the png files to be sent like short messages with sounds. Please help!
    Thanks a lot.

  • About cache issue when using push2phone and callerino

    I have made push2phone and callerino functions working well,but the issue is when we push messages to the phone,the phoen always displayed the message sent last time firstly then the message this time was displayed,seems there was cache issue,so does the callerinfo function.I have no idea about where the cache issue occurs,also how can I let the message be displayed as "tab" method on the phone? Please help !Thanks in advance.

    Sorry to bother you again, I found I was wrong in describing my problem. I found out that I sent the CiscoIPhoneExecute xml to the phone last time, not the CiscoIPhoneImageFile xml.
    The CiscoIPPhoneExecute xml is like:
    http://192.168.1.2:8080/test/push2phone.jsp?action=get"/>
    And "http://192.168.1.2:8080/test/push2phone.jsp?action=get" returns the CiscoIPPhoneImageFile xml, like this:
    Image Title goes here
    Prompt text goes here
    0
    0
    http://192.168.1.2:8080/test/pngs/attention.png
    so when I send the CiscoIPPhoneExecute xml to a phone, the phone will display the file attention.png on the screen with the sound chime.raw, then I press the "exit" button, the attention.png on the screen disappears. But if I then send the CiscoIPPhoneExecute xml with the "http://192.168.1.2:8080/test/push2phone.jsp?action=get" that returns the CiscoIPPhoneImageFile that contains a different png file, for example "warning.png", the "attention.png" will appear for a short time during the time when "warning.png" is downloading, then "warning.png" appears. I have no idea why that happens. I don't want to see "attention.png" when I'm sending "warning.png". What can I do?
    I've tried to directly sent the CiscoIPPhoneImageFile xml to a phone, everything goes well, no "cache" problems. but I have no idea how to add the sound "chime.raw". I want the png files to be sent like short messages with sounds. Please help!
    Thanks a lot.

  • Macbook wont add a printer

    Hi there, I only recently got my first Macbook so please bear with me and my lack of knowledge!
    I managed to add my printer ok and it was working fine until a few days ago when I tried to scan something with it. It worked no problem the first time but the second time it told me that it couldn't start the scanner for some reason. I tried a few things suggested online and removed the printer to re-add it but now it wont add the printer at all. I can go onto "add printer" in the system preferences and the printer shows up (Deskjet F4500 series) but when I click to add it it determines the installable options? but doesnt add the printer?
    Any help would be much appreciated!

    Most printers come with an install cd and that should help you set your printer up also refer to the manual. You might want to try deleting the cache folder just in case there's some messed up cache file ~/Library/Caches
    Do a regular empty and some files won't empty then you want to do a secure empty.
    Chris

Maybe you are looking for

  • NF-e 3.10 - Erro 204 - Duplicidade - Botão consulta status

    Boa tarde a todos. Estamos em fase de testes do projeto de implementação do XML 3.10. Eu tive algumas notas no meu ambiente de teste integrado com rejeição 204 (duplicidade de nota). Eu preciso realizar a consulta de status para essas notas, porém no

  • Can this router fall back to 3g if 4g is not available?

    We recently purchased this router to work remotely. However some of the places we are at have only 3G service. Phone seem to work with 3G receiving data, but our 4G LTE router will not connect. I've looked through the setting in the router, but can't

  • I want to install an older version of OSX

    I bought a used Mac Mini (Mid 2010) that has Mountain Lion installed.  I want to erase the drive and reinstall Snow Leopard.  How do I go about installing an older version of OSX?

  • Share files from the Library/Application Support folder between user accounts?

    I am using Mac OS 10.10.2, and am having trouble with allowing my son's user account to see his Minecraft files which are on my user account (User/Library/Application Support/Minecraft)   how do I make it so that Minecraft will find and use these fil

  • EXC_BAD_ACCESS after using CFBundleGetBundleWithIndentifier

    I wrote this code to get all the installed browsers: CFArrayRef appsArr = LSCopyAllHandlersForURLScheme(CFSTR("http")); int count = CFArrayGetCount(appsArr); int i; CFMutableArrayRef appsNamesArr = CFArrayCreateMutable(kCFAllocatorDefault, 0, NULL);