Loading local files

Is there any way to load a file from the user's local machine
into a Flash application without going through a server? I would
like to be able to load an image directly but I suspect the only
way this can be done is to first upload the file to a server (using
FileReference) and then download it back into the player. Seems
kind of silly to have to make this round trip when the file is
already on the same machine as the player.

But if the swf is on a remote server then it can't get to
files on the local machine. I want to be able to load a file (at
runtime) that is on the same machine where the swf is being viewed
from (and the swf was downloaded from another machine).

Similar Messages

  • FLEX Workers unable to load local files

    Hi,
    I am currently testing the using Actionscript Workers. For the most part everything is working as described, however I notice that the FLASH Player (and even FLASH Builder debugger) is treating any child worker swf as a remote swf. This creates a problem where it can't access local files that are loaded in during runtime (in my case my parent application has a wsdl file saved locally and is trying to pass the same path to the child worker). The following error will be thrown when the worker swf attempts to access to the file:
    *** Security Sandbox Violation ***
    Connection to file:///<filepath> halted - not permitted from file:///<swf file application>
    -- Remote SWFs may not access local files.
    This is problematic as the parent application can access these local files without a problem, so I expected the child workers to behave in the same manner (especially since it's in debug mode).
    Does anyone know of any workaround to this particular issue?

    I'm having the same problem.
    Having scoured the internet and finding nothing useful yet, I'm almost ready to conclude that there is no workaround for this. At least without using AIR, or running a webserver on localhost.
    Would be very happy to be contradicted on this though...

  • Load local files in FMP?

    i cannot load a local file into FMP.  i assume this is due to the fact that the FMP swf runs on adobe's servers and is therefore subject to a remote sandbox.
    however, this makes testing websites locally difficult.  is there any way around this?
    one i know is to deploy media files to a server to avoid the remote sandbox restriction, but this is not useful without an internet connection.
    is it possible to run the FMP swf locally?

    it is possible to run the FMP swf locally.  use the Strobe player:
    http://sourceforge.net/projects/smp.adobe/files/
    setup is pretty much identical to the FMP.

  • AIR application in Leopard and loading local files

    I have an AIR app that loads a config.xml file that is in the
    same directory as the AIR app. It only has 4 nodes that are just
    pointers to folders and/or files. Works fine on a pc that I'm
    developing on. When I install the AIR app on a mac, running
    leopard, it always fails to load the config.xml file. No matter
    what file type I try to load on the mac, it will always give me the
    IOErrorEvent #2032.
    Has anyone run into this or does anyone know of a solution?
    Thanks,

    This is exactly the same problem I am having. I'm trying to
    load a local xml file from the same directory as the application
    (using OS 10.4.11).
    I am trying it this way:
    var xmlLoader:URLLoader = new URLLoader();
    var file:File = flash.filesystem.File.applicationDirectory;
    file = file.resolvePath("my.xml");
    var xmlPath:URLRequest = new URLRequest(file.url);
    try {
    xmlLoader.load(xmlPath);
    } catch (error:Error) {
    trace("Unable to load requested document.");
    Works perfectly on Windows but I get the #2032 error on Mac.
    Has someone done this successfully with Air (and how)? ;-)

  • Error in loading big file

    Hi All,
    I have an application on WL8.1 with sp3, the database is SQL Server 2000. I have code below to load local file into database. The data type in database is image.
    PreparedStatement pStatement = null;
    InputStreammyStream myStream = new InputStream();
    myStream.setEmbeddedStream( is );
    pStatement.setBinaryStream( 1, myStream, -1 );
    pStatement.executeUpdate();
    pStatement.close();
    pStatement = null;
    is is InputStream from a local file and the sql statement is
    insert into file_content(content) values(?)
    This workes fine for the files with size less than 150M, but for those big files (>150M), it doesn't work and I got error message as below:
    <Feb 11, 2005 12:00:41 PM PST> <Notice> <EJB> <BEA-010014> <Error occurred while attempting to rollback transaction: javax.transaction.SystemException: Heuristic hazard: (weblogic.jdbc.wrapper.JTSXAResourceImpl, HeuristicHazard, (javax.transaction.xa.XAException: [BEA][SQLServer JDBC Driver]Object has been closed.))
    javax.transaction.SystemException: Heuristic hazard: (weblogic.jdbc.wrapper.JTSXAResourceImpl, HeuristicHazard, (javax.transaction.xa.XAException: [BEA][SQLServer JDBC Driver]Object has been closed.))
    at weblogic.transaction.internal.ServerTransactionImpl.internalRollback(ServerTransactionImpl.java:396)
    at weblogic.transaction.internal.ServerTransactionImpl.rollback(ServerTransactionImpl.java:362)
    Any body can help? Thanks in advance.

    Fred Wang wrote:
    Hi All,
    I have an application on WL8.1 with sp3, the database is SQL Server 2000. I have code below to load local file into database. The data type in database is image.
    PreparedStatement pStatement = null;
    InputStreammyStream myStream = new InputStream();
    myStream.setEmbeddedStream( is );
    pStatement.setBinaryStream( 1, myStream, -1 );
    pStatement.executeUpdate();
    pStatement.close();
    pStatement = null;
    is is InputStream from a local file and the sql statement is
    insert into file_content(content) values(?)
    This workes fine for the files with size less than 150M, but for those big files (>150M), it doesn't work and I got error message as below:
    <Feb 11, 2005 12:00:41 PM PST> <Notice> <EJB> <BEA-010014> <Error occurred while attempting to rollback transaction: javax.transaction.SystemException: Heuristic hazard: (weblogic.jdbc.wrapper.JTSXAResourceImpl, HeuristicHazard, (javax.transaction.xa.XAException: [BEA][SQLServer JDBC Driver]Object has been closed.))
    javax.transaction.SystemException: Heuristic hazard: (weblogic.jdbc.wrapper.JTSXAResourceImpl, HeuristicHazard, (javax.transaction.xa.XAException: [BEA][SQLServer JDBC Driver]Object has been closed.))
    at weblogic.transaction.internal.ServerTransactionImpl.internalRollback(ServerTransactionImpl.java:396)
    at weblogic.transaction.internal.ServerTransactionImpl.rollback(ServerTransactionImpl.java:362)
    Any body can help? Thanks in advance.I already answered this as to the cause, in the ms newsgroups... It's the DBMS choking so
    bad on the size of your image file that it actually kills the connection. Note that the DBMS
    has to save the whole image to log as well as to the DBMS table. The fundamental response is
    to get DBA help to configure the DBMS to be able to do what you want. If you want and can,
    you could split your image column into multiple image columns, and split your data into
    100meg chunks, and then enter an empty row and then update it column by column, and then
    concatenate the data again in the cleint when you get it out, etc, but much better to post
    to the MS server newsgroups for ideas.
    Joe

  • Will not load local web-page and will not allow pop-ups

    does not work with local web pages
    will not load local files with basic HTTP HREF
    have to specifically add file:/// to all addresses
    will not allow pop-ups for local files

    You need to access the files via http://localhost/ if you want to set an exception.
    Other things that need attention:<br>
    Your above posted system details show outdated plugin(s) with known security and stability risks that you should update.
    *Java Plug-in 1.5.0_02 for Netscape Navigator (DLL Helper)
    Update the [[Java]] plugin to the latest version.
    *http://java.sun.com/javase/downloads/index.jsp (Java Platform: Download JRE)

  • Local Files Will not Sync to iPhone and Gets Error.....

    DescriptionI load local files to my spotify playlist, so that I can play them in the car when listening to spotify on my iPhone 6. When I go to play the song on the computer through spotify it works fine from "local files" but when I log onto my iPhone I do not see the files anywhere. It does not sync or play, even when I add the song to a private offline playlist. I also cannot get the local files to play from my computer on my phone. When I select to play sound from my phone not the computer speaker it shows up on my phone with an error "Song not Synced. If you own the song, you can sync it from your computer. I have tried multiple ways and still to no avail. Can someone help me? A more detailed description, using numbered steps1. Added the source of the local folder for local files on my computer spotify; logged out and logged back in2. Went to spotify on my phone and downloaded recent update and signed into spotify.3. Tried playing the song from local files, it was not listed.4. Tried playing song from a private offline playlist; would list but it was greyed out and said I was not synced.5. Tried rejoining my wi-fi on both computer and phone; connected fine.6. Tried playing local file from spotify on computer; plays fine.7. Tried playing local file on computer but project it to play on iphone speaker; same error message as before.  What I expected to happenMy files to load to "local files"; they are in the right format mp4. Then I wanted to be able to add it to playlists and play it from my phone. What actually happenedLocal files do not show up on my Spotify on my phone. It says an error message about not syncing right and the songs put into any of the private offline lists are greyed out. My iPad/iPhone modeliPhone 6 Device’s Operating System8.4 Is your device jailbroken?No Approximately how many playlists do you have?Fewer then 15 My mobile Spotify version3.6.0.923 My desktop Spotify version (if applicable)1.0.10.107 My provider and countryVerizon

    Hi,I have had a similar problem with my Android (4.4.4) phone. Apparently Spotify discontinued to support the upload and streaming of local files!!! I don't understand why, but I'm going to discontinue my premium membership because of this. Below is the email I got from them:"Hello,
    Thanks for getting back in touch with your feedback and your clarifications on the issue. That was very helpful for us!
    Our latest Spotify Version doesn't support the upload and streaming of local files. :( This was a feature in one of our previous Spotify Versions. :)
    Still, this sounds like a great idea: to get back this feature! Please feel free to share it on our ideas board on our Community Site.
    You can get other users to show their support by voting on the idea. We’ll keep everyone updated on its status. Maybe your idea could even make it into the app some day!
    Do not hesitate to get back to us if anything else comes up in the meantime. We will always do our best to help you.
    Have an amazing day,
     Spotify Customer Support"
     Here is my response:"Hi,this is a very bad management decision!Spotify is a great App, but it doesn’t provide access to all the music in the world and so people like me would like to add to their Spotify selection their own music. The fact that people are paying for a service like Spotify premium should tell you that people honor and appreciate good features and convenience.I don’t understand why Spotify would take back such an important feature. Updates are supposed to improve a product, not make it worse! Without this feature Spotify is just another music streaming platform like countless others and I don’t see the benefit any more. Therefore I will discontinue my premium membership as of the end of this month. Please contact me if this feature of uploading and streaming of local files is enabled again. Thanks"

  • Loading local swf files from Application Dir (ios)

    Hi Guys,
    I would like to load additional local swf files to my ios release build but I am confused a little bit because of the new API changes.
    As far as I know at the moment (from Air 3.7 or newer) it is allowed to load local swf files that contains compiled actionscript both from local folder and from a predefined remote host as well. 
    My assumption based on this article:
    http://blogs.adobe.com/airodynamics/2013/03/08/external-hosting-of-secondary-swfs-for-air- apps-on-ios/
    I created the text file to include all of my local swf file names and created the following node in the application.xml:
    <iPhone>
           <externalSwfs>assets/SampleSWFInfoFile.txt</externalSwfs>
    </iPhone>
    When I compile the release build (ipa) using command line adt, it converts all of my local swfs into the stripped swfs which is perfect, but even though I include all the swfs in the compiler command, it puts only the SampleSWFInfoFile.txt file into the assets folder in the ipa but not the swf files.
    I assume, it thinks I will load these files from an external host, but I would like to include them in the app itself.
    I tried to copy the stripped swf files from the externalStrippedSwfs folder and comment the <externalSwfs>assets/SampleSWFInfoFile.txt</externalSwfs> node in the application.xml and compile it and this way it puts the swf files into the ipa, but when I try to install and launch the app it crashes and when I test it using Flash Builder it shows an error message
    "VerifyError: Error #1042: Not an ABC file."
    Do any of you guys know the  solution for this problem?
    Thank you for your help in advance!

    You're publishing in AOT mode as long as you use one of these:
    The AIR Developer Tool or ADT has targets that lets you package apps either for the AOT mode or Interpreter mode. The targets for packaging in AOT mode are ipa-app-store, ipa-ad-hoc, ipa-test and ipa-debug.
    Flash Pro CS6 and Flash Builder automate this process pretty well so it's invisible but the SWF loads and executes code just fine for me when directly published.
    If I take it to command line I can use this to compile successfully (iPad test app):
    adt -package -target ipa-ad-hoc -storetype pkcs12 -keystore my.p12 -provisioning-profile my.mobileprovision NameOfApp.ipa NameOfApp-app.xml NameOfApp.swf iTunesArtwork iTunesArtwork@2x AppIconsForPublish swfs/swfs.txt swfs/GenerateText.swf
    I at least include generic icons in there but I made a 'swfs' folder and placed 'swfs.txt' and 'GenerateText.swf' in there. The SWF uses code to randomly generate text and changes every second using a Timer. I load it in using the same code you do with the ApplicationDomain.currentDomain context. I see the SWF appear and text start randomly changing.
    As I compile there's a folder generated called 'externalStrippedSwfs' with the stripped SWF in there.
    One thing to note is I do not supply <externalSwfs>swfs/swfs.txt</externalSwfs> in my iPhone settings. If I do that it doesn't work. I supply the path to the text file containing the SWF I want to be stripped to adt itself along with the SWFs I want stripped and it takes care of the rest.

  • Down loading ALV List to local file /print

    hi ,
    We have a program that displays data on an ALV list. Then, when you click on the 'Print' icon, or try to download to a local file, it gives a short dump with a message 'OBJECTS_NOT_CHARLIKE'.
    Any solutions on the same ....
    thanks

    Hi,
    i hope you have all your data in and internal table.
    If this is so use the following code,
    *--- Down load the file
    CALL FUNCTION 'WS_DOWNLOAD'
    EXPORTING
    filename = lv_file
    filetype = 'DAT'
    TABLES
    data_tab = gt_excel1
    EXCEPTIONS
    file_open_error = 1
    file_write_error = 2
    invalid_filesize = 3
    invalid_type = 4
    no_batch = 5
    unknown_error = 6
    invalid_table_width = 7
    gui_refuse_filetransfer = 8
    customer_error = 9
    OTHERS = 10.
    IF sy-subrc = 0.
    MESSAGE i000(zf) WITH text-017.
    ELSE.
    MESSAGE e939(zf) WITH lv_file. "Errors while downloading.
    ENDIF.
    Following should be passed,
    v_file --> file path with file name (provide filename with '.xls' extension)
    gt_excel --> Internal table which has to be downloaded to excel.
    thanks
    vijay
    reward points if helpful.

  • I need to intercept all local files that are being loaded in Firefox. How can that be achieved?

    I am using geckofx in c#. I need to intercept response of a local file load request so that I can modify some data/response before it reaches Javascript.
    In short, I need something like
    1. JS requests browser to read a file.
    2. Browser reads content of a file.
    3. MAKE SOME MODIFICATIONS TO DATA (Additional Step)
    4. Then pass this modified data to JS to perform required tasks.
    Is this possible? If yes, how can this be achieved.

    You may need to rebuild permissions on your user account. To do this,boot to your Recovery partition (holding down the Command and R keys while booting) and open Terminal from the Utilities menu. In Terminal, type:  ‘resetpassword’ (without the ’s), hit return, and select the admin user. You are not going to reset your password. Click on the icon for your Macs hard drive at the top. From the drop down below it select the user account which is having issues. At the bottom of the window, you'll see an area labeled Restore Home Directory Permissions and ACLs. Click the reset button there. The process takes a few minutes. When complete, restart.   
    Repair User Permissions

  • HTMLLoader loading local content (SWF files) problem

    Hello guys,
    I'm just finishing my application but I facing a problem.
    I'm currently developing a desktop application using AIR.
    I'm using HTMLLoader to load local SWF files when te user tries to access specific content on the application.
    I successfully accomplished this, but the loaded SWF also loads other files (assets and xml files with translations) and that is not working.
    When a SWF is loaded he just stops on his own loading screen (when loading the XML files).
    All this stuff is happening on my CustomNativeWindow:
    (my CustomNativeWindow "overlays" the main application)
    public function CustomNativeWindow()
             var nativeWindowInitOptions:NativeWindowInitOptions = new NativeWindowInitOptions();
             nativeWindowInitOptions.systemChrome = NativeWindowSystemChrome.NONE;
             nativeWindowInitOptions.renderMode = NativeWindowRenderMode.DIRECT;
             nativeWindowInitOptions.resizable = false;
             nativeWindowInitOptions.maximizable = false;
             nativeWindowInitOptions.minimizable = false;
             super(nativeWindowInitOptions);
             alwaysInFront = true;
             this.activate();
    public function setProperties(contentName:String, contentURL:String, posX:Number, posY:Number, stageWidth:Number, stageHeight:Number):void
              this.stageHeight = stageHeight;
              this.stageWidth = stageWidth;
              this.contentURL = contentURL;
              this.contentName = contentName;
              this.x = posX;
              this.y = posY;
              this.width = stageWidth;
              this.height = stageHeight;
              this.title = contentName;
              this.addEventListener(Event.RESIZE, onWindowResize);
              SWFHTMLLoader();
    private function SWFHTMLLoader():void
              //REQUEST LOAD URL
              var request:URLRequest = new URLRequest(contentURL);
              //HTML LOADER SWF
              htmlLoader  = new HTMLLoader();
              htmlLoader.width = stageWidth;
              htmlLoader.height = stageHeight;
              htmlLoader.addEventListener(Event.COMPLETE, onHtmlLoaderComplete);
              htmlLoader.load(request);
              stage.addChild(htmlLoader);
    private function onHtmlLoaderComplete(e:Event):void
              trace("NATIVE WINDOW HTMLLoader complete");
              onWindowResize();
    private function onWindowResize(e:Event = null):void
              if (htmlLoader)
                        htmlLoader.width = stage.stageWidth;
                        htmlLoader.height = stage.stageHeight;
    Probably something related to security?
    How can I fix this?
    Is kinda urgente... deadline is coming...
    Thank you!

    Thank you kglad for your fast response...
    The reference to the content comes from a XML loaded on the main application.
    var xml:XML =      <Content  en="game" >
                                      <ImageSource>assets/images/gallery/resources/gameone.png</ImageSource>
                                      <ContentSource>content/gameone/gameone.swf</ContentSource>
                                </Content>;
    contentURL = xml.ContentSource;
    So contentURL is: content/gameone/gameone.swf
    Am I in trouble?

  • URGENT -- loading SWF file locally from second time not  remotely

    Hi,
           I have Air application which has theming and localization those are loading remotly every time. Now i want to changes such a way that,
    theme.swf should load remotely first launch and second time onwords it should use locale swf.
    To acheive this
      I  download the swf to locale native path and using that path i can load the theme.
    Now,
              Using File,URLLoder and FILE streem, am reading the remote swf file data and locally creating new file and writing in that.
    So now
      When ever am trying to load locale one some errors are throwing like the following things repeatedly
    VerifyError: Error #1014: Class mx.core::FlexSprite could not be found.
    at flash.display::MovieClip/nextFrame()
    at mx.core::FlexModuleFactory/deferredNextFrame()[E:\dev\4.x\frameworks\projects\framework\s rc\mx\core\FlexModuleFactory.as:631]
    at mx.core::FlexModuleFactory/update()[E:\dev\4.x\frameworks\projects\framework\src\mx\core\ FlexModuleFactory.as:401]
    at mx.core::FlexModuleFactory/moduleCompleteHandler()[E:\dev\4.x\frameworks\projects\framewo rk\src\mx\core\FlexModuleFactory.as:718]
    VerifyError: Error #1014: Class mx.core::SpriteAsset could not be found.
    at flash.display::MovieClip/nextFrame()
    at mx.core::FlexModuleFactory/deferredNextFrame()[E:\dev\4.x\frameworks\projects\framework\s rc\mx\core\FlexModuleFactory.as:631]
    at mx.core::FlexModuleFactory/update()[E:\dev\4.x\frameworks\projects\framework\src\mx\core\ FlexModuleFactory.as:401]
    at mx.core::FlexModuleFactory/moduleCompleteHandler()[E:\dev\4.x\frameworks\projects\framewo rk\src\mx\core\FlexModuleFactory.as:718]
    doubts:
    IS THERE ANY DIFFERENCE BETWEEN actual file(remote) and created file(written)
    Please help me in this
    Thanks
    J Kishore

    Verify that the file is written correctly.
    If it is not written to the application-directory it will be sandboxed and
    fail.

  • UIwebview load local html file problem

    Hi,
    load local html file into UIwebview the TD cell data can't display, as attached the "2817 MODEL" column data lost on screen:
    The local html file souce as:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <html lang="en">
      <head>
        <title>IBM z196 zEnterprise 2817 Mainframe Reference - Technology News</title>
        <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
        <meta http-equiv="Content-Style-Type" content="text/css">
        <meta name="robots" content="index,follow">
        <meta name="Author" content="Hesh Wiener">
        <meta name="Formatter" content="Heshomatic 6.2">
    <STYLE TYPE="text/css">
    <!--
    BODY
      font-family: Arial, Helvetica, sans-serif;
      font-size: 9pt;
    A:link{color:white}
    A:visited{color:yellow}
    -->
    </STYLE>
      </head>
      <body>
        <h2>
          IBM Mainframes:<br>
           IBM z196 zEnterprise 2817 Mainframe Reference
        </h2>
        <table border="1" style="border-collapse:collapse;" summary="2094 series economic specs">
          <tr>
            <th rowspan="2">
                2817  <br>
                 MODEL  
            </th>
            <th rowspan="2">
              FIRST<br>
               AVAIL
            </th>
            <th rowspan="2">EST  INIT<br>
            US PRICE  </th>
          <th rowspan="2"> EST INIT <br>
          MIN US MAINT</th>
            <th rowspan="2">
              APPROX MIPS
            </th>
            <th rowspan="2">
              SW PRICE<br>
               MSU
            </th>
            <th>
              LSPR RELATIVE PERFORMANCE
            </th>
          </tr>
          <tr>
            <th>
              MI z/OS 1.11
            </th>
          </tr>
      <tr>
        <td>2817-401</td>
        <td>3Q 10</td>
        <td>$975,000</td>
        <td>$6,280</td>
        <td>240</td>
        <td>30</td>
        <td>0.43</td>
      </tr>
      <tr>
        <td>2817-402</td>
        <td>3Q 10</td>
        <td>$1,187,000</td>
        <td>$6,729</td>
        <td>459</td>
        <td>58</td>
        <td>0.82</td>
      </tr>
      <tr>
        <td>2817-501</td>
        <td>3Q 10</td>
        <td>$1,244,000</td>
        <td>$7,524</td>
        <td>588</td>
        <td>74</td>
        <td>1.05</td>
      </tr>
      <tr>
        <td>2817-403</td>
        <td>3Q 10</td>
        <td>$1,385,000</td>
        <td>$8,346</td>
        <td>672</td>
        <td>85</td>
        <td>1.20</td>
      </tr>
      <tr>
        <td>2817-601</td>
        <td>3Q 10</td>
        <td>$1,423,000</td>
        <td>$9,434</td>
        <td>768</td>
        <td>97</td>
        <td>1.37</td>
      </tr>
      <tr>
        <td>2817-404</td>
        <td>3Q 10</td>
        <td>$1,570,000</td>
        <td>$10,665</td>
        <td>879</td>
        <td>110</td>
        <td>1.57</td>
      </tr>
      <tr>
        <td>2817-405</td>
        <td>3Q 10</td>
    </html>
    Please help. thanks
    Regards,
    HC

    add colspan into td tag and try it got same problem, I just discovered the td data is numeric it can't display, change td data to alphanumeric it workable to normal display.
    below td tag data is unworkable:
    <td>2817-401</td>
    <td>2817401</td>
    change to below is workable:
    <td>2817*401</td>
    <td>281740A</td>
    <td>2817-401A</td>

  • Can an applet loading from a browser read from local file system?

    I have to load my applet from a browser, and the "browse" button on it should be able to select and read certain files in the local file system( or the files located under the server's home directory). Is there a way to address the security issue? I know there are ways to enable an appletviewer to do it, but how about a browser?

    You'll need to have a signed applet.

  • Local files loading slow

    (I'm a newbie to flash) I created a website that incorporates
    flash for the main image area and navigation (750 x 350px). The
    main page consists of flash only content. All other pages add html.
    The index .swf file is less than 230k, and all other pages hold one
    .swf file less than 50k. The files are running locally and test
    fine in all browsers on my Powermac G5.
    When I test the site locally in IE on a PC, the index file
    loads fine but all other .swf files load way slow or never. How
    could this be? If anything, shouldn’t the index .swf file
    load slowly?
    Any help would be appreciated.

    But if the swf is on a remote server then it can't get to
    files on the local machine. I want to be able to load a file (at
    runtime) that is on the same machine where the swf is being viewed
    from (and the swf was downloaded from another machine).

Maybe you are looking for

  • Error while making Web service call

    I have configured my webservice for https i calling the web service from a j2me clieny application, i get the error javax.xml.rpc.JAXRPCException: no HTTP reply header      at com.ibm.pvcws.jaxrpc.rpc.OperationImpl.invoke(OperationImpl.java:321) Can

  • How to generate Version of a Report -- I am getting Error Message

    Hi All, Hi all, I am doing the following steps ABAP Editor - Utilities - versions - Generate Versions "Object REPS ZMM_MATERIAL_CREATE not locked, no version created" Can anyone please help. Regards Martin

  • Using pdf as an ebook - compatibility issues

    Hello everyone. I am new here and new to ebooks! So I would be grateful for your help. I wish to produce a pdf document which can be read online as a kind of ebook. It is a complex document with lots of diagrams as vector images and I want to have li

  • Storage Condition field in Material Master Grayed Out.

    Hi folks, We are trying to use the Storage Condition field in a Material Master Plant Data/ Storage Location View. However I noticed the filed is grayed Out. Then I looked at the Configuration in "Field Selection for Data Screen**" and the selection

  • Live type render movie issue

    This goes out to you Live type gurus.  I have a 6 second animation with video.  It renders in the timeline fine but when I "render movie" the finished product only shows about half of the total project. eg it stops half way through the entire clip.