Data Persistence during WebSite transition

Hi there,
I have a website that stores some files within on the computer, for example within the program data folder.  Like,
C:\ProgramData\<company name>\<app>
For numerous reasons I would like to keep this data there but I am unsure as to what happens when Azure decides to transition my site to another machine or suchlike, will it lose this data?  If it does lose it, what's the best way to handle data that
I would like to migrate?
Somewhere out there...

Anything under D:\home\ will persist with your site when it moves from machine to machine (it's best to use the %HOME% environment variable).

Similar Messages

  • Storing data in the fields during the transition back and forth

    How to make the transition within the tab back and forth, the page is not updated, and the data saved in the fields? Caching enabled, but its not work, or after Opera I think that the cache should work differently. There's all the data stored in the transition. Its not auto fill when typing in the field, or by using the wand passwords. Data in the field is only stored until update the page. In fact, you can only go back on any number of levels of your history, and then return to the past and the data fields will be the same. So in the 12x version of Opera
    I hope clearly explained

    ''yozuul [[#question-1051752|said]]''
    <blockquote>
    I hope clearly explained
    </blockquote>
    Not really. Are you trying to say you are typing on a web page, but what
    you typed does not show up on the page?
    What is the site and public web address?
    Security Issue: Update your Flash Player '''Version 17.0.0.134<br>https://www.adobe.com/products/flashplayer/distribution3.html'''
    Many site issues can be caused by corrupt cookies or cache.
    * Clear the Cache and
    * Remove Cookies<br> '''''Warning ! ! '' This will log you out of sites you're logged in to.'''
    Type '''about:preferences'''<Enter> in the address bar.
    * '''Cookies;''' Select '''Privacy.''' Under '''History,''' select Firefox will '''Use Custom Settings.''' Press the button on the right side called '''Show Cookies.''' Use the search bar to look for the site. Note; There may be more than one entry. Remove '''All''' of them.
    * '''Cache;''' Select '''Advanced > Network.''' Across from '''Cached Web Content,''' Press '''Clear Now.'''
    If there is still a problem,
    '''[https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-using-safe-mode Start Firefox in Safe Mode]''' {web link}
    While you are in safe mode;
    Type '''about:preferences#advanced'''<Enter> in the address bar.
    Under '''Advanced,''' Select '''General.'''
    Look for and turn off '''Use Hardware Acceleration'''.
    Poke around safe web sites. Are there any problems?
    Then restart.

  • IOS 7 ugrade failed " Error:Device disappeared during timed transition". Phone will not now turn on or sync with itunes, any ideas please?

    iOS 7 ugrade failed " Error:Device disappeared during timed transition". Phone will not now turn on or sync with itunes, any ideas please?

    if a Mac OSX Computer is in near - try iBackup Viewer.
    This is free of charge and can read your backup.
    and thats the main difference. Those tools are reading the saved Data in the backup
    but itunes attempts to restore the data from the backup on your iphone. if there are any corrupted data in the backup - the backup restore goes wrong. this can happen during security software or wrong corrupt data already stored on the iphone.
    if itunes messed up to restore from backup try this one :
    - restore your iphone to factory settings using HT1808 or reset all settings and content direct from iphone
    - rename your iPhone (e.g. iPhone Test)
    - setup your iPhone as new device -> attempt to make a new backup - if successful -
    - click in itunes on restore from backup... and choose your desired backup
    or go to:
    Mac: ~/Library/Application Support/MobileSync/Backup/
    Windows XP: \Documents and Settings\(Username)\Application Data\Apple Computer\MobileSync\Backup\
    Windows Vista - Windows 7: \Users\(Username)\AppData\Roaming\Apple Computer\MobileSync\Backup\
    Pull your complete BackupFolder and try a different PC - copy the BackupFolder on this different PC in the same Path above - start iTunes and see if your Backup is there - attempt to restore from Backup again

  • Data Persistence

    Can i specify persistence location in MI client.
    I want my data persistence to be on a central server.
    Then to synchronize data from central server to R3.
    client1 client2  client3
          central
          server
    Because data dependency exists between clients.
    Can anybody throw light on this?

    hi,
    For the data persistence needs of a mobile client applications, MI offers the Persistence API which is located in the packagecom.sap.ip.me.api.persist.*.
    Storage implementation for this concept is a black box for application - it is storage independant. The Persistence API let you store, change, delete and query data. The storage medium used and the technicality of its access is entirely transparent to users of the Persistence API. The MI uses 'bridges' - one for every storage type - to access the physical storage. The bridges dynamically create the necessary statements (for example, SQL-statements to access a JDBC databases) to access the data.
    The Persistence API can store data on databases as well as on the file system (that means via standard Java serialization). The currently activated storage type is detected automatically by the MI at runtime. Applications using the Persistence API therefore make best use of the current device features (that means storing on the database if it's there and doing without it, if it's not there).
    What ever you store in your client is physically stored in your R/3 System only. your client will have only instances of that data objects.
    Even if you use multiple clients, and if you have changed data from any client (say client2), when you do a sync on Client 1 during your next logon, delta-determination takes place. The data you updated from Client 2 gets reflected in Client 1 also.
    Hope this enlightened you!
    Regards,
    Ak.
    PS: Don't forget my points if this helps.

  • Data persistence using SQL/J

    Hi !
    I am trying to achieve data persistence using SQL/J.
    The env / tools that I am using are WLS 4.5.1
    Oracle 8i, SQL/J.
    SQL/J works fine with the two - tier applications but with WLS the connectivity is not been arrived at.
    Any help would be wewlcome.
    Thanks,
    Archana

    Are you using an Oracle JDBC driver in WLS or not?
    (1) If the answer is no, then you should replace:
    oracle.sqlj.runtime.Oracle.connect(<url>,<user>,<pwd>);
    (and similarly Oracle.getConnection())
    with:
    import sqlj.runtime.ref.DefaultContext;
    <load JDBC driver, if necessary>
    DefaultContext.setDefaultContext(new DefaultContext(<url>,<user>,<pwd>,false));
    (2) Actually, forget (1): in the middle tier you should never use a default context at all (every thread must have its own connection context):
    DefaultContext ctx = new DefaultContext(...);
    #sql [ctx] { ..SQL statement.. };
    (3) If you do not use an Oracle JDBC driver, then say in your sqlj command line:
    -profile=false
    (this omits Oracle customization and makes the .ser file smaller)
    Also, you only need runtime.zip at runtime, anyway. And for non-Oracle JDBC drivers you can remove the whole oracle.* hierarchy from runtime.zip.
    (4) You do need to deploy those .ser files with the bean. Or use -ser2class and deploy class files with the bean.
    (5) Finally, it appears the WLS deployment tool has not heard about SQLJ - it may only understand .java files. In this case you have to translate all .sqlj files (and the .ser files) into .java files before putting these into WLS:
    (a) run SQLJ over the .sqlj source with the -compile=false option. This produces .java files.
    (b) you can also turn the .ser files into .java files by running:
    java sqlj.runtime.profile.util.SerProfileToClass -nc *.ser
    (issue the line without arguments to get an option synopsis)
    You'd want to do (a) and (b) via a Makefile and not do it by hand more than once.
    (c) During deployment time and runtime you must have runtime.zip (modulo comments in (3)) in the respective CLASSPATHS of the deployment tool and of the server.
    Sorry these answers were rather generic - I still could not tell exactly how you are failing in WLS.

  • BUG: Vertical Red/blue/green on right during video transitions (SOLVED)

    I was getting this phantom vertical bar on the right side of the video, and it took me 2 hours to figure out what was causing it. The video size of the sequence was 595x222 (it's for a flash element on a website); This glitch occured across all media types at this resolution: jpegs, mov, whatever. During the cross-dissolve (or any transition) a red vertical var would appear and would cycle colors to red and green during the transition. It showed up in the final exported render as well.
    THE SOLUTION:  I changed the width by 1px. That's it. I have no idea why that worked, but it fixed it– no more random color bar. It may have something to do with the width being an even vs odd number or not, or the aspect ratio of the height and width. Anyway, I hope this helps someone, and Adobe- put this on your to-do list.

    Thank you for posting your fix.
    Appreciated,
    Hunt

  • Why am I being charged data usage during the times my phone is not being used?

    I got a notice on my phone that my number has used all of its allowed data usage for the month.  I looked at my current usage and seen that I was being charged for data usage during the times that I am not using my phone.  I figured it up and it adds up to be more than the amount that you say I am over.  Explain please.

    Ok, what all should I turn off on my 5s and I should get any additional fees waived.  I just got this new phone about a week before Thanksgiving and never got a notice till it was full.  I have never went over before.  I also have never been told that I could be charged data even if I am not using my phone and I should make these changes to prevent this.
    Also, the phone was 2 days late getting to me.  So in addition to any additional fees that I may occur from the overage I should get a credit for the delay in my phone being sent.  Oh, and it probably would have been longer had I not called to see where it was at, which the guy that helped me put in the order and was to follow up the next day with a phone call to let me know what the status was and never did.

  • How to read data from a website

    Hello Everyone..
    I hav a interesting scanario..
    Is it possible to read data from a website..!!!
    My scenario is to read a bank statement from a banks website(internet banking)..
    using the same authentication my application must be able to pull the data from the website and update my r3...
    Please crack this out for me..
    Awaiting for solution..
    Thanks in advance

    check whether the bank offers webservice to get this data, if yes either from ABAP of JAVA you can consume this webservice to get the bank statement.
    else
    from abap you can use cl_http_client to make your ABAP to act as http client to read data from that website. (search weblog and ABAP forums for cl_http_client - there are lot of examples)
    Regards
    Raja

  • Possible to validate data entries during Digital Signature?

    I have a form that was built from scratch using Adobe LiveCycle  Designer ES 8.2. I also have Adobe Acrobat Pro 9.3.2. (WinXP)
    I  see numerous articles online related to validating user input prior to  data submission for an online form via a Submit button, however, I  am trying to figure out how to implement the same sort of data  validation during the signing of a particular digital signature field in an offline pdf form. Simply, I want to perform data validation during a digital  signature instead of when user presses Submit button.
    Here's my  use-case:
    1. Form Originator fills out a large number of data fields  and signs form via a CAC cert.
    2. Another person will review,  possibly edit/add data, and sign another signature block with CAC.
    3.  Then there is one more final CAC signature on the form before it is  completed and then emailed to the right folks for processing.
    4. I  would like to be able to enforce the population of several Mandatory  data fields (at least one Radio button and one text input, possibly  others) before the 3rd signature can be applied to the document.
    Again, I  need to emphasize this is all happening in an offline form, no data  submission or database back-end. Also, everything with the digital  signatures (and locking up fields afterword) works totally fine, just interested  in adding Data Validation capability during Digital Signature.
    I am in no way a javascript expert, but I can  probably learn from a good example. Any help or guidance is very much appreciated. Thanks...

    If you are using SignatureField in the form then you will get two events preSign and postSign which you can use to validate the field input just like you do with a Submit button.
    Thanks
    Srini

  • How to update cgicmd.dat file during runtime?

    I'd like to know how do update cgicmd.dat file during runtime. For example, I run a report one.jsp as
    http://<machine>:<port>/reports/rwservlet?one.jsp&USERID=uid/pwd@db&DESTYPE=cache&mode=bitmap&desformat=htmlcss
    within this report there is a hyperlink to open another report named two.jsp.
    before creating this hyperlink, I'd like to update cgicmd.dat file with passed in userID, pwd, and connection, so two.jsp can use this key for userinfo
    so I can create hyperlink as follows
    srw.set_hyperlink('/reports/rwservlet?report=two.jsp'||
    '&cmdkey=userinfo&DESTYPE=cache&mode=bitmap&desformat=htmlcss');
    Thanks

    To my knowledge the cgicmd.dat is only read when the OC4J starts, so you would have to come up with another solution. Using Single-Sign-On (SSO) is quite a good idea, and it's there for cases like this.
    Regards,
    Martin Malmstrom

  • How to keep the last slide image in the background during loading transition??

    Does anyone have any good strategies for using the last slide as a static background image when one swf file transitions to another during the loading process?  Basically, I'd like to keep the loading image ontop of the last slide during the transition.

    Does this fairly recent post help?
    http://forums.adobe.com/thread/561129
    Erik

  • Design of reusable data persistence layer with single container

    Hi,
    I am designing an 3-tier application using cmp for my data persistence layer (DPL). The customer now wants to run multiple versions of the application on one server using different data sets for each application. One solution I see, but don't like very much, is to add an application ID to each enity bean in my DPL. However, I would rather run multiple DPL's on different databases and reuse my business logic layer and my presentation layer. Has anybody solved this problem or see the obvious solution that I am missing here?
    Thanks a lot,
    Sandigo.

    Hi KPSeal,
    there is absolutely no relation between the different versions of the application. Although I would prefer to run a single business logic layer it is very much an option to have different versions of the entire application. Could you elaborate on how I would achieve these different versions? Would I have to rewrite the deployment descriptors so that each bean can exist twice or would that give me two instances?
    Thanks,
    S.

  • Local data persistence in Interactive workflows

    I have read through all the threads regarding Data persistence and do understand that form data is stored in xml format. I still have the following doubt:
    For all the custom workflows we are developing for this client (using Adobe interactive forms as the UI in the workflows) we want to have local data persistence. Is there a model which covers data collected through the forms, including those data that are retrieved from SAP at the beginning of the workflow, and those data that are manually entered by the forms user?
    Scenario :<b>  cost xx   - approver 1
                     cost xx + 1 - approver 2
    Form data filled, cost xx and hence a email goes to approver 1.
        Now, details changes and cost for that sales order increases to xx + 1.</b>
    Will my email still be in the inbox of approver 1?
    What if I want data persistence where from the initiation to the end of workflow the data should be persisted irrespective of the changes.

    Hello Kavitha,
    Your workitem will stay where it is unless you've specifically modelled it to react to a change. In standard purchasing you would use a change event triggered from ME22N or the likes, but unfortuantely I'm not in depth familiar with Adobe Forms so I don't know what happens when data is changed on a form once the WF has started.
    However if you want data to remain constant throughout the life of the WF then I'd suggest binding it to a WF container when the doc is first created and then working with that value.
    Hope that helps,
    Mike

  • Sound effects During a transition

    Is there a way to play sound DURING a transition from one slide to the next? e.g. I would like to use the Shutter transition and play a camera shutter sound effect while you see the shutter close and open. Another example would be a bang during a Fall transition, as if it hit the floor. I currently have a large library of effects I can use.

    Greetings and welcome to the forum.
    Sorry to be the bearer of bad tidings, but what you want to do - while an excellent idea - is not possible with the current version of Keynote. You might want to address this to the Keynote Feedback Forum as an "enhancement request."
    http://www.apple.com./feedback/keynote.html
    Good luck.

  • Sound Effects DURING Slide Transitions?

    Essentially, is there a way to add a sound clip to play between slides, during the transition?
    I'm creating a Keynote presentation that will be exported into Quicktime with hyperlink-activated transitions, and would like a specific sound to play during the 'Magic Move' transition. When the sound is imported into the first slide, once the transition begins, it fades out and stops. Yet if I drag and drop the sound file between the slides, it just creates a blank slide with the sound effect icon in the middle.
    Any ideas?

    Nope, unless you have a soundtrack on your show, there's no other way to have sound during a transition.

Maybe you are looking for