Flash write to FileSystem

Hi There
We are new to Flash development.       I have a Flash site with a user registration page.  When users have completed a number of details and when clicked 'register', I want to exit cleanly and save an encrypted id and last session date in a specific user folder.
Can Flash write to  client side file system, say   c:\user\$user\appdata\roaming\$myapplication\registered.txt
If not, what design options or other technologies do I need ?
Any great ideas will be appreciated

Writing to a user's machine via a web site is a security no-no.  If you could write to a user's machine via a web site you would be a dangerous site to visit.
If you want this interaction to take place on the web then you will probably need to create a database for your users where you store information.  Look into using PHP with a MySQL database to manage storing user information.
If this is supposed to be more in the way of cookie information that your site will retrieve when visitor returns then look into using Flash's SharedObject class.

Similar Messages

  • JVM Error 547 - Flash Write Failed

    Hi, i got the 547 error after a long way of many other errors, it start by installing a new app using the stupid DM and my BB restart after the installation and i got 507 error, which mean no software, so i doubt it and tried to pull the battery, sim card and SD, wait for some time, return the battery, and 561 error was there, tried again and nothing
    after search on crackberry and blackberry forums, talking about JL and BBSAK, used both to wipe and re-install the OS again,
    of course i remove the vendor.xml from common files and user "document and settings" folders
    during the installation it load until the net_rim_cldc.cod and restart on its own, and the loader give an error not able to connect again, so i wait until my phone restart with error 507 and click on retry, it stupidly erase every thing again instead of continue from the stop point and it reach the same point and restart, so i fall in a loop
    i tried to delay the net_rim_cldc.cod to the end by changing the Platform.alx, and i tried to cancel this file from Platform.alx and it stuck with the truetype font.cod
    i remove this OS and i tried to download from a different service provider, "again of course i remove the two files for vendor.xml" but no use
    then i used the BBSAK to add manually all the basic files which is 220 modules, and i left the net_rim_cldc.cod to the end, suddenly my phone try to start and keep restarting every 2 minutes, and after several attempts is give me the JVM Error 547 "flash write failed"
    no i cannot connect to BBSAK, the only way is to connect to the loader without battery and wait until it finish erasing then i can connect to JL to wipe or BBSAK
    but then what?? i will end up between BB apploader which cannot finish the installation and BBSAK which can put the 220 files in 220 steps and the phone will not load
    now, any BB genius can help??

    Hi maytik and welcome to the BlackBerry Support Community Forums!
    Take a look at this article as it should help get you back up and running again:
    KB11320 - How to perform a clean reload of the BlackBerry Device Software using BlackBerry Desktop M...
    Hopefully that helps!
    -CptS
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

  • Permission to write into filesystem

    hi,
    i have an oracle sdo_georaster problem. my procedure:
    CREATE OR REPLACE PROCEDURE EXPORT_GEORASTER_FILE(
    RID NUMBER,
    IMG_FNAME VARCHAR,
    FILETYP INTEGER,
    P_LEVEL NUMBER,
    CA_ULX NUMBER,
    CA_ULY NUMBER,
    CA_LRX NUMBER,
    CA_LRY NUMBER
    IS
    GR SDO_GEORASTER;
    FINALSTRING VARCHAR(500);
    FT VARCHAR(20);
    CA VARCHAR(300);
    PLEVEL VARCHAR(40);
    BEGIN
    IF FILETYP = 0 THEN
    FT := 'TIFF';
    ELSIF FILETYP = 1 THEN
    FT := 'BMP';
    ELSIF FILETYP = 2 THEN
    FT := 'PNG';
    ELSE
    FT := 'PNG';
    END IF;
    IF P_LEVEL IS NULL THEN
    PLEVEL := 0;
    ELSE
    PLEVEL := NULL;
    END IF;
    IF CA_ULX IS NULL AND CA_ULY IS NULL AND CA_LRX IS NULL AND CA_LRY IS NULL THEN
    CA := NULL;
    ELSE
    CA := 'CROPAREA=('|| CA_ULX || ', ' || CA_ULY || ', ' || CA_LRX || ', ' || CA_LRY ||')';
    END IF;
    FINALSTRING := 'PLEVEL = ' || P_LEVEL || ', ' || CA;
    SELECT GEORASTER INTO GR FROM T99_GEORASTER WHERE ID = RID;
    --SDO_GEOR.EXPORTTO(GR, FINALSTRING, FT, 'FILE', IMG_FNAME, 'WORLDFILE', 'FILE', TFW_FNAME);
    SDO_GEOR.EXPORTTO(GR, NULL, FT, 'FILE', 'c:\bla1', 'WORLDFILE', 'FILE', 'c:\bla1');
    END;
    works fine but i'm unable to write in the filesystem. after execute my procedure i get the following message:
    SQL> exec EXPORT_GEORASTER_FILE(1,'c:\bla',0,0,null,null,null,null);
    BEGIN EXPORT_GEORASTER_FILE(1,'c:\bla',0,0,null,null,null,null); END;
    ERROR at line 1:
    ORA-13463: error retrieving GeoRaster data: the Permission
    (java.io.FilePermission c:\bla1.tfw write) has not been granted to MDSYS. The
    PL/SQL to grant this is dbms_java.grant_permission( 'MDSYS',
    'SYS:java.io.FilePermission', 'c:\bla1.tfw', 'write' )
    ORA-06512: at "MDSYS.MD", line 1723
    ORA-06512: at "MDSYS.MDERR", line 17
    ORA-06512: at "MDSYS.SDO_GEOR", line 3048
    ORA-06512: at "RASTER.EXPORT_GEORASTER_FILE", line 45
    ORA-06512: at line 1
    now i connected wto ora with system (dba) and tried:
    SQL> CALL DBMS_JAVA.GRANT_PERMISSION('MDSYS','SYS:JAVA.IO.FILEPERMISSION', 'C:\'
    , 'WRITE' );
    but i get the exception:
    CALL DBMS_JAVA.GRANT_PERMISSION('MDSYS','SYS:JAVA.IO.FILEPERMISSION', 'C:\', 'WR
    ITE' )
    ERROR at line 1:
    ORA-29532: Java call terminated by uncaught Java exception:
    java.lang.SecurityException: policy table update SYS:JAVA.IO.FILEPERMISSION,
    C:\
    SQL> CALL DBMS_JAVA.GRANT_PERMISSION('MDSYS','SYS:JAVA.IO.FILEPERMISSION', 'C:\b
    la1.tfw', 'WRITE' );
    CALL DBMS_JAVA.GRANT_PERMISSION('MDSYS','SYS:JAVA.IO.FILEPERMISSION', 'C:\bla1.t
    fw', 'WRITE' )
    ERROR at line 1:
    ORA-29532: Java call terminated by uncaught Java exception:
    java.lang.SecurityException: policy table update SYS:JAVA.IO.FILEPERMISSION,
    C:\bla1.tfw
    i don't know why i get the exception. is there a problem with my java rights?
    can anybody help me?
    thanks a lot,
    michael

    hi,
    i have an oracle sdo_georaster problem. my procedure:
    CREATE OR REPLACE PROCEDURE EXPORT_GEORASTER_FILE(
    RID NUMBER,
    IMG_FNAME VARCHAR,
    FILETYP INTEGER,
    P_LEVEL NUMBER,
    CA_ULX NUMBER,
    CA_ULY NUMBER,
    CA_LRX NUMBER,
    CA_LRY NUMBER
    IS
    GR SDO_GEORASTER;
    FINALSTRING VARCHAR(500);
    FT VARCHAR(20);
    CA VARCHAR(300);
    PLEVEL VARCHAR(40);
    BEGIN
    IF FILETYP = 0 THEN
    FT := 'TIFF';
    ELSIF FILETYP = 1 THEN
    FT := 'BMP';
    ELSIF FILETYP = 2 THEN
    FT := 'PNG';
    ELSE
    FT := 'PNG';
    END IF;
    IF P_LEVEL IS NULL THEN
    PLEVEL := 0;
    ELSE
    PLEVEL := NULL;
    END IF;
    IF CA_ULX IS NULL AND CA_ULY IS NULL AND CA_LRX IS NULL AND CA_LRY IS NULL THEN
    CA := NULL;
    ELSE
    CA := 'CROPAREA=('|| CA_ULX || ', ' || CA_ULY || ', ' || CA_LRX || ', ' || CA_LRY ||')';
    END IF;
    FINALSTRING := 'PLEVEL = ' || P_LEVEL || ', ' || CA;
    SELECT GEORASTER INTO GR FROM T99_GEORASTER WHERE ID = RID;
    --SDO_GEOR.EXPORTTO(GR, FINALSTRING, FT, 'FILE', IMG_FNAME, 'WORLDFILE', 'FILE', TFW_FNAME);
    SDO_GEOR.EXPORTTO(GR, NULL, FT, 'FILE', 'c:\bla1', 'WORLDFILE', 'FILE', 'c:\bla1');
    END;
    works fine but i'm unable to write in the filesystem. after execute my procedure i get the following message:
    SQL> exec EXPORT_GEORASTER_FILE(1,'c:\bla',0,0,null,null,null,null);
    BEGIN EXPORT_GEORASTER_FILE(1,'c:\bla',0,0,null,null,null,null); END;
    ERROR at line 1:
    ORA-13463: error retrieving GeoRaster data: the Permission
    (java.io.FilePermission c:\bla1.tfw write) has not been granted to MDSYS. The
    PL/SQL to grant this is dbms_java.grant_permission( 'MDSYS',
    'SYS:java.io.FilePermission', 'c:\bla1.tfw', 'write' )
    ORA-06512: at "MDSYS.MD", line 1723
    ORA-06512: at "MDSYS.MDERR", line 17
    ORA-06512: at "MDSYS.SDO_GEOR", line 3048
    ORA-06512: at "RASTER.EXPORT_GEORASTER_FILE", line 45
    ORA-06512: at line 1
    now i connected wto ora with system (dba) and tried:
    SQL> CALL DBMS_JAVA.GRANT_PERMISSION('MDSYS','SYS:JAVA.IO.FILEPERMISSION', 'C:\'
    , 'WRITE' );
    but i get the exception:
    CALL DBMS_JAVA.GRANT_PERMISSION('MDSYS','SYS:JAVA.IO.FILEPERMISSION', 'C:\', 'WR
    ITE' )
    ERROR at line 1:
    ORA-29532: Java call terminated by uncaught Java exception:
    java.lang.SecurityException: policy table update SYS:JAVA.IO.FILEPERMISSION,
    C:\
    SQL> CALL DBMS_JAVA.GRANT_PERMISSION('MDSYS','SYS:JAVA.IO.FILEPERMISSION', 'C:\b
    la1.tfw', 'WRITE' );
    CALL DBMS_JAVA.GRANT_PERMISSION('MDSYS','SYS:JAVA.IO.FILEPERMISSION', 'C:\bla1.t
    fw', 'WRITE' )
    ERROR at line 1:
    ORA-29532: Java call terminated by uncaught Java exception:
    java.lang.SecurityException: policy table update SYS:JAVA.IO.FILEPERMISSION,
    C:\bla1.tfw
    i don't know why i get the exception. is there a problem with my java rights?
    can anybody help me?
    thanks a lot,
    michael

  • Flash Presentation not allowing connection

    The rest of the presentation works beautifully. Then the last
    screen I have a link to my website. When I click on it:
    "Macromedia Flash Player has stopped a potentially unsafe
    operation.
    The following local application on your computer or network:
    ......ya da yada.swf
    is trying to communicate with this internet-enabled location:
    www.avatarix.com
    To let this application communicate with the internet, click
    Settings.
    You must restart this application after changing your
    settings.
    OK Settings"
    When I click on Settings, it opens Dreamweaver and does
    nothing. Any idea what I can do to make the link work?
    THx,
    Marianne Dempsey

    in flash, write:
    System.security.allowDomain("*");
    in the first frame of your movie to allow external
    communication.
    hope it helps.

  • To where does the LGWR write information in redo log buffer ?

    Suppose my online redo logfiles are based on filesystems .I want to know to where the LGWR writes information in redo log buffer ? Just write to filesystem buffer or directly write to disk ? And the same case is associated with the DBWR and the datafiles are based on filesystems too ?

    It depends on the filesytem. Normally there is also a filesystem buffer too, which is where LGWR would write.Yes but a redo log write must always be a physical write.
    From http://asktom.oracle.com/pls/ask/f?p=4950:8:15501909858937747903::NO::F4950_P8_DISPLAYID,F4950_P8_CRITERIA:618260965466
    Tom, I was thinking of a scenario that sometimes scares me...
    **From a database perspective** -- theoretically -- when data is commited it
    inevitably goes to the redo log files on disk.
    However, there are other layers between the database and the hardware. I mean,
    the commited data doesn't go "directly" to disk, because you have "intermediate"
    structures like i/o buffers, filesystem buffers, etc.
    1) What if you have commited and the redo data has not yet "made it" to the redo
    log. In the middle of the way -- while this data is still in the OS cache -- the
    OS crashes. So, I think, Oracle is believing the commited data got to the redo
    logs -- but is hasn't in fact **from an OS perspective**. It just "disapeared"
    while in the OS cache. So redo would be unsusable. Is it a possible scenario ?
    the data does go to disk. We (on all os's) use forced IO to ensure this. We
    open files for example with O_SYNC -- the os does not return "completed io"
    until the data is on disk.
    It may not bypass the intermediate caches and such -- but -- it will get written
    to disk when we ask it to.
    1) that'll not happen. from an os perspective, it did get to disk
    Message was edited by:
    Pierre Forstmann

  • Flash Pro CS 5.5 will only open when I open as Admin

    For some reason Flash Pro CS 5.5 will only open when I open as Admin.  If I try to open it normaly or by clicking on a fla nothing happens except a program called WerFault.exe and Flash.exe show up in my Task Manager then close.  I get no report that something is wrong though I know werfult is window's problem reporting program.  When I open as admin Flash Pro works fine so I do not understand what is going on.  It worked fine yesterday and I have made no installations or updates since then.
    Any suggestions?

    Sounds like you installed it for standard users, you use a standard user account and you changed something while you were logged on as an admin. If you did anything as an admin to make a file Flash writes (configs, etc) then they can become unable to be utilized again by anything other than the administrator.
    As administrator, you can right-click on a folder, open up properties, use the security tab, advanced at bottom, owner tab at top, edit button, select your username, check "Replace owner on all subcontainers and objects" then apply and keep hitting apply/ok. That will reset ownership of all the files back to the user you designate which shouldn't require administrator privs.
    Additionally, as administraotor, you can go in properties->security tab->edit button, select your user and make sure they have full control permissions.

  • Flash and java using image io

    ImageIo is the new api for image input and out.This api provide architecture for writing plugins for images extension .Is there any plugin available for imageio which treat flash movies as image an show flash movie in swings components

    I have used flash as a menu in jsp page and I am calling my jsp pages through Flash,
    write if u need anything specific,
    Samir

  • Help: Flash still not working in IE

    I've tried every fix that I could find and my flash is still not showing up in IE9. It works in other browsers. Any suggestions?
    <div id="flashContent">
    <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="550" height="400" id="Untitled-1" align="middle">
    <param name="movie" value="Untitled-1.swf" />
    <param name="quality" value="high" />
    <param name="bgcolor" value="#ffffff" />
    <param name="play" value="true" />
    <param name="loop" value="true" />
    <param name="wmode" value="window" />
    <param name="scale" value="showall" />
    <param name="menu" value="true" />
    <param name="devicefont" value="false" />
    <param name="salign" value="" />
    <param name="allowScriptAccess" value="sameDomain" />
    <!--[if !IE]>-->
    <object type="application/x-shockwave-flash" data="Untitled-1.swf" width="550" height="400">
    <param name="movie" value="Untitled-1.swf" />
    <param name="quality" value="high" />
    <param name="bgcolor" value="#ffffff" />
    <param name="play" value="true" />
    <param name="loop" value="true" />
    <param name="wmode" value="window" />
    <param name="scale" value="showall" />
    <param name="menu" value="true" />
    <param name="devicefont" value="false" />
    <param name="salign" value="" />
    <param name="allowScriptAccess" value="sameDomain" />
    <!--<![endif]-->
    <a href="http://www.adobe.com/go/getflash">
    <img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" />
    </a>
    <!--[if !IE]>-->
    </object>
    <!--<![endif]-->
    </object>

    Can you see other Flash sites in IE9? If you can then the Flash player is installed. That junk html that Flash writes could be part of the problem. Try to reduce the code to just this part:
    <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="550" height="400"id="Untitled-1" align="middle">
    <param name="movie" value="Untitled-1.swf" />
    <param name="quality" value="high" />
    <param name="bgcolor" value="#ffffff" />
    <param name="play" value="true" />
    <param name="loop" value="true" />
    <param name="wmode" value="window" />
    <param name="scale" value="showall" />
    <param name="menu" value="true" />
    <param name="devicefont" value="false" />
    <param name="salign" value="" />
    <param name="allowScriptAccess" value="sameDomain" />
    </object>
    and see if that improves things.

  • Output jpegs from Wordpress MySQL to Flash

    Does anyone have any idea how to go about outputting jpgs in a Wordpress MySQL database to display as Flash on a template?
    Thanks...
    - D

    Data is coming from the Wordpress db to be displayed on a webpage - self-created template or otherwise in html. I am trying to work out how Wordpress calls jpgs but am non the wiser. If I could work it out I guess I could use Flash Writer (http://www.bronsonbeta.com/oldstuff/).
    It appears that no-one is using images displayed in Flash and I'm beginning to see why!
    - D

  • WAAS Flash

    Is the WAAS flash a field replaceable unit? I have a corrupt flash out in one of my remote offices that needs to be replaced. The model is a WAE-612. Thanks

    Yes, I have tried the recovery CD but no luck. The server displays this output.
    Choice [0]: 5
    Please select an image from the following list:
    1. WAAS41.sysimg
    2. Return to Main Menu
    Image [1]: 1
    Read 23993344 byte image file
    Existing version in flash: NONE
    New version to install: 4.1.1c.16
    Proceed with flash write? [y]:
    ........................................................................................................................................................................................installer: io write on devfile_fd=4/devname=/dev/sdc failed: Input/output error
    Image was NOT written to flash. (err=-18)
    MODEL: OE612
    FLASH: found, directory validated
    COOKIE: valid
    IMAGE: 4.1.1c.16
    FLASHDEV: /dev/sdc
    Installer Main Menu:
    1. Configure Network
    2. Manufacture flash
    3. Install flash cookie
    4. Install flash image from network
    5. Install flash image from cdrom
    6. Install flash image from disk
    7. Wipe out disks and install .bin image
    8. Exit (and reboot)
    Choice [0]:
    RMA looks like the only choice. Thanks for your help Dan.
    Regards

  • Using FLASH and JAVA

    Does anyone know how you can use JAVA and FLASH together for database access like you can use coldfusion and (I think PHP)?
    Kind Regards
    Schalk
    Volume4
    Dedicated to an OpenSource World(tm)

    I have used flash as a menu in jsp page and I am calling my jsp pages through Flash,
    write if u need anything specific,
    Samir

  • Unable to Flash BIOS of ANY HP Device - Return Code = 0x103

    Thanks Dan, but i would only ever run HPQflash - Running a BIOS upgrade via IE is insanity. I did see reference to IE not being default being a cause of some users problems, but that is not related to this problem. Whether I run HPQflash from explorer, or open a CMD window with admin rights (it says Administrator in the title bar to confirm i have the required rights), the same error occurs.  

    We evidently have something in our environment that is preventing the BIOS being flashed on ANY HP device. The failure log for an 800 G1 reads: 2015/06/01 09:07:17.450|0000122C|Information|ChpqFlashApp::InitInstance|--- START NEW HPQFLASH SESSION, HPQFLASH version 4.50.1.1 ---
    2015/06/01 09:07:17.450|0000122C|Information|ChpqFlashApp::CPQFProcessCmdLineArgs|Command line =
    2015/06/01 09:07:19.255|0000122C|Information|CCpqCIMIntf::GetsystemInfo|System name = HP ELITEDESK 800 G1 SFF
    2015/06/01 09:07:19.256|0000122C|Information|CCpqCIMIntf::GetsystemInfo|System ID = 0x1998
    2015/06/01 09:07:19.257|0000122C|Information|CCpqCIMIntf::GetsystemInfo|System Serial Number = CZCBlaaaa
    2015/06/01 09:07:19.257|0000122C|Information|CCpqCIMIntf::GetsystemInfo|AT-p supported = 0 (0: not supported, 1 supported)
    2015/06/01 09:07:19.257|0000122C|Information|CCpqCIMIntf::GetsystemInfo|Version of BIOS in system:
    2015/06/01 09:07:19.258|0000122C|Information|CCpqCIMIntf::GetsystemInfo| Family = L01
    2015/06/01 09:07:19.258|0000122C|Information|CCpqCIMIntf::GetsystemInfo| Major version = 0x2, Minor Version = 0x21
    2015/06/01 09:07:19.259|0000122C|Information|CCpqCIMIntf::GetsystemInfo| Release Date = 07/15/2014
    2015/06/01 09:07:20.879|0000122C|Information|ChpqFlashApp::AreToolsAvailable|The binary to create HP_TOOLS partition is not present: 'C:\swsetup\SP70995\HPQFlash\Installer.exe'
    2015/06/01 09:07:24.304|0000122C|Information|CFlashDLLApp::CPQFValidateROMCABImage|Version of BIOS in ROM update (in CAB file):
    2015/06/01 09:07:24.305|0000122C|Information|CFlashDLLApp::CPQFValidateROMCABImage| Family = L01
    2015/06/01 09:07:24.305|0000122C|Information|CFlashDLLApp::CPQFValidateROMCABImage| Version = 2.59
    2015/06/01 09:07:24.306|0000122C|Information|CFlashDLLApp::CPQFValidateROMCABImage| Release Date = 03/16/2015
    2015/06/01 09:07:25.639|0000122C|Information|CConfirmFlashPage:nWizardNext|Don't need to Backup BIOS files. Either system is not a laptop or BIOS does not support backup from USB device.
    2015/06/01 09:07:26.642|0000122C|Information|CCpqCIMIntf::FlashRom|***** Start FLASHING *****
    2015/06/01 09:07:26.656|0000122C|Information|CCpqCIMIntf::FlashRom|Start Saving Original BIOS Contents
    2015/06/01 09:11:06.863|0000122C|Information|CCpqCIMIntf::FlashRom|End Saving Original BIOS Contents
    2015/06/01 09:11:06.864|0000122C|Information|CCpqCIMIntf::FlashRom|Start flashing (Write) Attempt #1
    2015/06/01 09:11:06.864|0000122C|Information|CCpqCIMIntf::FlashRomImage|Start Flash Rom Image (Write)
    2015/06/01 09:11:10.389|0000122C|Information|CCpqCIMIntf::FlashRomImage|End Flash Rom Image (Write), bStatus = 0
    2015/06/01 09:11:10.390|0000122C|Information|CCpqCIMIntf::FlashRom|End flashing (Write) Attempt #1
    2015/06/01 09:11:10.390|0000122C|Information|CCpqCIMIntf::FlashRom|Start flashing (Write) Attempt #2
    2015/06/01 09:11:10.391|0000122C|Information|CCpqCIMIntf::FlashRomImage|Start Flash Rom Image (Write)
    2015/06/01 09:11:40.769|0000122C|Information|CCpqCIMIntf::FlashRomImage|End Flash Rom Image (Write), bStatus = 0
    2015/06/01 09:11:40.770|0000122C|Information|CCpqCIMIntf::FlashRom|End flashing (Write) Attempt #2
    2015/06/01 09:11:40.771|0000122C|Information|CCpqCIMIntf::FlashRom|Start flashing (Write) Attempt #3
    2015/06/01 09:11:40.771|0000122C|Information|CCpqCIMIntf::FlashRomImage|Start Flash Rom Image (Write)
    2015/06/01 09:11:40.836|0000122C|Information|CCpqCIMIntf::FlashRomImage|End Flash Rom Image (Write), bStatus = 0
    2015/06/01 09:11:40.837|0000122C|Information|CCpqCIMIntf::FlashRom|End flashing (Write) Attempt #3
    2015/06/01 09:11:40.837|0000122C|Information|CCpqCIMIntf::FlashRom|Start Rolling back to old BIOS
    2015/06/01 09:11:40.838|0000122C|Information|CCpqCIMIntf::FlashRomImage|Start Flash Rom Image (Write)
    2015/06/01 09:12:10.909|0000122C|Information|CCpqCIMIntf::FlashRomImage|End Flash Rom Image (Write), bStatus = 0
    2015/06/01 09:12:10.909|0000122C|Information|CCpqCIMIntf::FlashRom|End Rolling back to old BIOS, status = 0
    2015/06/01 09:12:10.911|0000122C|Information|CCpqCIMIntf::FlashRom|***** END FLASHING PROCESS *****
    2015/06/01 09:19:30.523|0000122C|Information|ChpqFlashApp::ExitInstance|Exit hpqFlash: Return Code = 0x103
    2015/06/01 09:19:30.526|0000122C|Information|ChpqFlashApp::ExitInstance|--- END HPQFLASH SESSION ---  What can be causing this? There are a lot of people posting about these 0x103 errors and no solution being provided.  

  • How to download a file from Oracle UCM using OSB

    Hi,
    How can I download a file from Oracle UCM and save it on a filesystem using OSB 11.1.1.5.
    Thanks

    UCM supplies webservice interfaces which let you retrieve the filecontent by soap calls from UCM (http://ucmhost/_dav/cs/idcplg for example). (maybe you should enable some settings on ucm to have this webservice interface getting published).
    This services for example has 2 operations getFileByID and getFileByName.
    So you can just call these services from within OSB.
    After that you need to do some tests if you eitherway need to create a file-transport business-service and call this one from your proxy service or create a messageType proxyservice (binary)  which calls this file-transport business service to be able to write fo filesystem.
    I think for the OSB book i used a jca file adapter generated in Jdeveloper and used that one to write to filesystem.

  • How to control DE USB disk Automounts.

    Hi,
    Can someone please guide me as to how to 'control' Automounts by DE when we plug USB disk drives.
    I have KDE4 on my Arch system. When I connect a pen drive/USB HDD which is formatted as vfat/NTFS, the system(or KDE) 'Automounts' it in /media and I have read/write access to it. But if I use the same drive and format it as ext4, it wont be mounted as read/write for normal users but only for root.
    Now pen drives and USB HDD's are removable storage drives and hence are volatile and could not have a fixed mount point, so it cannot be mounted by putting an entry in fstab or could they?. And I need my USB HDD frequently, and manually mounting it through CLI everytime and working on it as root is a bad idea i guess.
    I am posting this because m confused as to how to control this Automount feature-What is the backend to it? Because I've read that HAL no longer takes care of it and that HAL will be deprecated soon, instead UDEV takes care of it. If that is the case then should I be concerned about polkit? Because that is what's the output provided by Dolphin(freedesktop.org policy prevented blah blah).
    Another thing is if HAL is still in use and Automounts my devices then is it independent or polkit is a part of it. Then, is using hal-easy an option or replacement to standard HAL. ??!!??
    I tried HAL archwiki and used the code to give a user permission to give rw access to automounted ext filesystems, but then nothing is mounted, it sings the same old freedesktop.org prevented bla blah song. And I think this is a question for all linuxes using Gnome and KDE in general.
    Any help is appreciated.

    If by 'ability to mount as user' you mean to mount it manually but read/write access to normal users then yes. But primarily I need automounting as user, also be able to give access to other users for read/write et filesystem automounts.
    Last edited by kapz (2009-11-17 01:12:56)

  • *UPDATED 7/15/04* Complete guide to bioses, drivers, and needed files for the MSI K8N Neo Platinum

    Complete newbie's guide to bioses, drivers, and needed files for the MSI K8N Neo Platinum:
    Last Updated: Thursday July 15th, 2004
    Bioses:
    (In order of date released.)
    1.1b3 - (Download)
    - Pre-1.1, given to reviewers to use in their reviews and benchmarks.
    - Less stable, but supposedly you get slightly better overclocks.
    1.1 Official - (Download)
    1. This is AWARD BIOS release
    2. This BIOS fixes the following problems of the previous version:
    - Memory always run DDR 200 when install single side DDR on DIMM2 & DIMM3.
    - Windows 2000 can't format the RAID IDE HDD when plug in Promise 378 controller.
    1.2b5 - (Download)
    1.2b7 - (No Download Yet)
    1.2b10 - (Download)
    - First attempt to fix false temperature readings. Fixes it for some people with Newcastle cores and doesn't fix it for anybody with Clawhammer cores.
    1.2b12 - (Download)
    - Second attempt to fix false temperature readings. Fixes it for some people with Newcastle cores and some people with Clawhammer cores.
    1.3b1 - (Download)
    - Another attempt to fix temperature problems?
    - Possibly fixes cold boot/power light issues?
    1.2 Official - (Download)
    1. This is AWARD BIOS release
    2. This BIOS fixes the following problems of the previous version:
    - System can't resume from S3 sometimes when install USB device.
    - Support K8 Sempron CPU.
    - Turn off keyboard LED in S3.
    --Quick Guide for flashing BIOS, provided by MSI--
    1. Create a MS-DOS boot diskette, then copy the the .exe and the bios file to the floppy disk. Both of these files can be found in the package you downloaded.
    2. Press "Delete" and go to BIOS setup while computer bootup.
    Check BIOS advanced features and see if BIOS flash write control is enabled
    (This option must be enabled. If you can not find this setting, it means the BIOS can be
    flashed.)
    3. Boot from MS-DOS boot diskette and get a:\> prompt.
    4. Type "", then press ENTER
    5. The flash program will then ask "Do you want to save BIOS?", please press "N" for no. The when you see Press 'Y' to program or 'N' to Exit, please press "Y" to continue.
    6. After flashing complete, remove floppy and reset the system .
    7. Press DELETE or F1 when prompted at first reboot after flashing.
    8. Load BIOS optimized defaults, then save settings and exits.
    Drivers & Needed Files:
    (Note: All these drivers are for Windows XP.)
    Leaked Nvidia nForce3 Chipset Drivers Version 4.40
    (Please use at your own risk, these are LEAKED drivers. Password for the .zip file is "ocworkbench rules". Also, you will need to rename the WinXP_2K folder in IDE to either WinXP or Win2K else the installer doesn't pick it up.) Thanks for the link Wonkanoby!
    *NEW* Leaked Nvidia nForce3 Chipset Drivers Version 5.03
    More leaked drivers? Seems some parts of the drivers are older and some are newer.
    1. Windows XP Service Pack 1A (Web Install) -or- Windows XP Service Pack 1A (Full Install)
    2. Microsoft DirectX 9.0b (Web Install) -or- Microsoft DirectX 9.0b (Full Install)
    3. Nvidia nForce3 Chipset Drivers Version 4.24
    4. AMD Athlon 64 Processor Driver Version 1.1.0.14
    5. Nvidia Video Card Driver Version 56.72 -or- Omega Nvidia Video Card Driver Version v1.5303
    (The Omega drivers are third party drivers optimized for gaming, most prefer these over the standard Nvidia drivers.)
    5. ATI Video Card Driver Version 4.7 -or- Omega ATI Video Card Driver Version 2.5.51
    (The Omega drivers are third party drivers optimized for gaming, most prefer these over the standard ATI drivers.)
    6. Onboard Sound Driver (Realtek AC'97 Audio Codec) Version A3.61
    It is HIGHLY reccomended that you install the drivers/needed files in the order listed above. Please note that there are two #5's because you either install one or the other depending on your video card, do not install both of them.
    You will come across a problem here though. You can't install the chipset drivers without installing the Windows service pack and DirectX first, but the Windows service pack and DirectX installs need the internet to download files and you won't have working internet until you install the chipset drivers. Here's what I did to get around this. Instead of downloading the web install versions of Windows service pack and DirectX, download the full version and and put them along with all the other drivers on a backup hard drive or burn them to a CD, this way you will have all the drivers you need when it's time to install them and none of them will require the internet to download files.
    Another note when installing drivers. Apparently the Nvidia chipset drivers also come with drivers for the onboard sound, but people seem to agree that the Realtek onboard sound drivers are better. When you are installing the Nvidia chipset drivers, just be sure to uncheck the box for sound drivers when it asks you which drivers you would like to install. Now you can safely install the Realtek drivers without any chance of conflicting sound drivers. Thanks for the tip Wonkanoby!

    Quote
    Originally posted by RLiu818
    Quote
    Originally posted by Deviation56
    Quote
    Originally posted by RLiu818
    You CAN install the nforce drivers BEFORE installing SP1.  The only requirement to install the nforce drivers is DX9.
    So is SP1 still recommended to install before the nforce drivers?
    The installer still reccomends to install it beforehand for full USB 2.0 functionality... I would have put what you said in there but I wanted to keep it as simple as possible.  
    oh.  IIRC the installer just says USB 2.0 will be fully functional after SP1 is installed.  So after you install SP1 you go into device manager and u click update driver and it will auto search and update the driver.
    Simplicity-wise, i guess its pretty much equal.  It might take less preparation to just copy DX9 full onto a CD and install that first, then nforce driver, then right away you have yoru internet connection.
    but i dunno.. i guess i will try it your way this time when my RMA"d board comes.
    i will be fomratting and doing a fresh install later on today and will let you know if i come across any problems

Maybe you are looking for