Deploying FX as a Desktop App - jnlp file codebase should be...what?

Howdy,
If I try and run my deployed JavaFX app on another PC I get an error pointing back to the codebase that NB created in the <appname>.jnlp file:
codebase="[http://localhost:8082/servlet/org.netbeans.modules.javafx.project.JnlpDownloadServlet/E%3A/JavaFX/Projects/Concentration/Concentration11/dist/]"My main question is, for a standalone desktop FX app you want to distribute, what should the codebase be?
I assume you don't point to your developer machine's URL because of course that won't exist on someone else's machine. And unlike most web examples, this won't be running from a server.
Many other examples refer to running the jar file from the command prompt - not acceptable if you are selling an applet, or even just distributing to the general public.
So how does this work - how do you set up the jnlp file for desktop deployment? And, do you have to manually do this, or is there something I am missing in NB (6.8) ?
Many thanks in advance.

Hi Phil and thank you. I admit have been avoiding learning to compile from the command prompt or with other tools due to the ease that NB affords - but it seems that NB is introducing some issues lately.
I haven't tried the other tools yet, but I thought maybe I could just edit the NB created jnlp file:
[http://forums.sun.com/about:blank]<jnlp spec="1.0+" codebase="file:/" href="Concentration11.jnlp"> [http://forums.sun.com/about:blank]<information>  <title>*Concentration11*</title>  <vendor>*Gary*</vendor>  <homepage href="http://localhost:8082/servlet/org.netbeans.modules.javafx.project.JnlpDownloadServlet/E%3A/JavaFX/Projects/Concentration/Concentration11/dist/"/>  <description>*Concentration11*</description>  <offline-allowed/>  </information> [http://forums.sun.com/about:blank]<resources>  <j2se version="1.5+"/>  <extension name="JavaFX Runtime" href="http://dl.javafx.com/1.2/javafx-rt.jnlp"/>  <jar href="Concentration11.jar" main="true"/>  <jar href="lib/derby.jar"/>  <jar href="lib/derbyclient.jar"/>  <jar href="lib/derbytools.jar"/>  <jar href="lib/.netbeans-derby_JapaneseWords.jar"/>  </resources> [http://forums.sun.com/about:blank]<application-desc main-class="com.sun.javafx.runtime.main.Main">  <argument>*MainJavaFXScript=dbPackage.Main*</argument>  </application-desc>  <update check="background"/>  </jnlp>Replacing the code base with your file idea, if I try to run from the jnlp file it complains it can't find the resource:
com.sun.deploy.net.FailedDownloadException: Unable to load resource: file:/Concentration11.jnlp
at com.sun.deploy.net.DownloadEngine.actionDownload(Unknown Source)
<...more...>Sorry to be so dense. Any ideas what I am flubbing up this time?
Thank you Phil.

Similar Messages

  • All of a sudden my desktop apps and files went missing.what is the cost of the problem

    all of a sudden, my desktop applications, (i mean the whole applications and files,document in my desktop), went missing .what could be the cost of the problem?

    all of a sudden, my desktop applications, (i mean the whole applications and files,document in my desktop), went missing .what could be the cost of the problem?

  • Getting an error while runing the adobe CC desktop app. - error code 1.   What is this???

    Downloaded CC desktop manager but getting an error code 1...anyone?

    Did you read this?  http://support.microsoft.com/kb/2277649/en-us
    Did you run Test-MapiConnectivity? If not, can you run and post results? 
    HossFly, Exchange Administrator

  • I can't sync to my files In the CC desktop app

    I can't sync to my files In the CC desktop app Assets/Files/ I hit the "Start Syncing" button and get the waiting wheel, but never get to my files.  Up under the gear (settings) icon. it says file synch is off (and greyed out), and I go to Preferences/Files turn the sync to on and close the box, and it still under the gear (settings) icon. it says file synch is off (and greyed out).

    Just found another very helpful post from Ben Mordue with the solution:
    * Quit the Creative Cloud Desktop app
    * In terminal, type:
    rm ~/Library/Application\ Support/Adobe/CoreSync/options.tix
    When you relaunch the CC desktop app, and press the Start Syncing button, it should work.

  • Mapping problem of JnlpDownloadServlet from .Jnlp file

    Hello All,
    1. I am trying to run a java web start application, i am using tomcat 5.5.20 server. I am using the JnlpDownloadServlet to use the $$codebase and $$name to dynimically code the path to the jar's and the jnlp file.
    Here is what i have done:
    Here i have a JnlpDownloadServlet in a seperate folder called (D:/apache-tomcat-5.5.20/webapps/online/server1/WEB-INF/lib/jnlp-servlet.jar).
    2. Now i am placing my .jnlp and my application jar's in a seperate folder called *"client1"* (D:/apache-tomcat-5.5.20/webapps/online/client1/)
    I need to have the client1 and server1 folders and i have to map the servlet to the jnlp file, because i want to keep my jars's and the servlet in a seperate folders.
    3. I have the web.xml file in WEB-INF folder.
    4. web.xml:
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app>
    <servlet>
    <servlet-name> JnlpDownloadServlet</servlet-name>
    <servlet-class>jnlp.sample.servlet.JnlpDownloadServlet</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>JnlpDownloadServlet</servlet-name>
    *<url-pattern>../client1/*.jnlp</url-pattern>* *<!-- /* I am having problem here, i think */ -->*
    </servlet-mapping>
    </web-app>
    Myapp.jnlp:
    <?xml version="1.0" encoding="utf-8"?>
    <jnlp spec="1.0+"
    codebase="$$codebase"
    href="$$name">
    <information>
    </information>
    <resources>
    <j2se version="1.6+"/>
    <jar href="$$codebase/XXXXXX.jar" main="true" download="eager"/>
         <jar href="$$codebase/XXXX.jar" download="eager"/>
         <jar href="$$codebase/XXXXX.jar" download="eager"/>
    <nativelib href="$$codebase/XXX.jar" />
    </resources>
    </jnlp>
    While i run the application. i get the following error:
    Error occured when trying to run a Java web start application
    BadFieldException[ The field <jnlp>codebase has an invalid value: $$codebase,$$codebase]
         at com.sun.javaws.jnl.XMLUtils.getAttributeURL(Unknown Source)
         at com.sun.javaws.jnl.XMLUtils.getAttributeURL(Unknown Source)
         at com.sun.javaws.jnl.XMLFormat.parse(Unknown Source)
         at com.sun.javaws.jnl.LaunchDescFactory.buildDescriptor(Unknown Source)
         at com.sun.javaws.jnl.LaunchDescFactory.buildDescriptor(Unknown Source)
         at com.sun.javaws.jnl.LaunchDescFactory.buildDescriptor(Unknown Source)
         at com.sun.javaws.Main.launchApp(Unknown Source)
         at com.sun.javaws.Main.continueInSecureThread(Unknown Source)
         at com.sun.javaws.Main$1.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    I need to resolve the mapping issue, because the servlet is not running and the codebase and href variables are not populated.
    Thanks in Advance.

    Hi Peter,
    to use messages of two different SWCVs in a BPM you need to create a based on relationship between the two SWCVs in SLD. BPM restricts object usage to the SWCV in which the BPM itself resides, so to solve your problem go to the SLD content maintenance and select your SWCV of your BPM, click on Usage Dependencies, then select Define Dependencies, choose Installation Time and then the SWCV in which the other objects reside, click save and your done. You might need to reimport the SWCV to the repository to update the relationship there. It is updated as soon as you can see Basis Objects in the SWCV tree.
    best regards
    Christine

  • Deploying Java Desktop App using executable JAR files

    Hi there.
    Today I am very optimistic about java. I am a beginner, and I had tried (in my few free time) to understand how to deploy java desktop apps.
    I am using the lattest NetBeans IDE to do the programming and it is very very fast and optimized.
    Going to the point, I tried some time ago to deploy an application (made with this IDE) using JAR files, but even though the application run well on my IDE, when I packed it, it rised an error saying that
    java.lang.NoClassDefFoundError: org/netbeans/lib/awtextra/AbsoluteLayout
    I was using an absolute layout on my JFrame forms and this AbsoluteLayout is provided by netbeans and not by the normal SDK.
    I then looked for the absolute layout class and found a jar file in the following path:
    C:\netbeans\modules\ext\AbsoluteLayout.jar
    So I mounted the Jar file in my File Systems and then added the contents of the file to myApp.Jar file.
    I used the automated Jar Recipe Packaging feature of netbeans, that is why I needed to mount the AbsoluteLayout.jar file into my file systems.
    Now it runs fine by just right clicking the MyApp.jar file from Windows Explorer.
    In a next reply to this topic I will include some sample code so that anybody requiring to do such implementation can take this for help.
    Regards!
    JN

    Well,
    I will take some time here to show the basic source code and procedure to create a desktop application, pack it up in a Jar file for deployment, add other classes or jars to the deployment jar file and finally open the jar file as an executable. This applies for either windows and linux environments.
    Take in count i am using Netbeans IDE 3.x (3.5)
    First I open the IDE and create a new project called MyDesktopApp. This is done by going to the menu Project / Project Manager. Then click on the New button and specify the project name and click on OK.
    At this point, the Filesystems tab in the project explorer is empty. So I mount a directory to store myDesktopApp in it. I selected c:\MyDesktopApp but you can select any name you want.
    To mount the directory you follow these steps:
    1. Right-click on File Systems
    2. From the contextual menu select Mount > Local Directory
    3. In the filechooser window, you just browse it and SELECT the directory to mount. Be aware that you can even create the directory on this window. Do not enter (double-click) into the directory you want to mount, just select it and click on finish...
    4.Then the directory entry appears under the filesystems node of the project explorer.
    Now you have to create your application. You can either create a package (special configured and tracked directory) or you can create the clases directly inside the directory. For tidy project, I will create the package.
    To create the package follow these instructions:
    1. Right-click on the mounted directory and from the contextual menu select New > Java Package
    2. In the New Wizard - Java Package window, type the package name and click on finish. I use the "MyDesktopApp" as package name.
    OK. Now the package is created under the mounted directory. Now we have to create the Main Class. In this case I will use a JFRAME as the main class but you can create any class you want.
    To create the JFRAME as main class follow these steps:
    1. Right click on the java package you just created and select New>JFRAME from the contextual menu. If you do not see the JFRAME option on the NEW sub menu you will have to select the All Templates option. I explain the All Templates option now on, it will be easier to use the JFRAME if available. Once you use JFRAME with the all templates then the JFRAME will show up in further NEW usage.
    2. So finally we used the All Templates, and you select the Java GUI Forms > JFRAME form option and click on NEXT.
    3. Give it a name. (I used MyDesktopAppFrm) and click on finish. Be aware you can set advanced options by clicking on next. But for the purposes of this topic we will use default options so click on FINISH
    4. A new JFRAME form appears inside your package. Right click on the form and select Set layout > Absolute Layout.
    5. Add some controls and code. I added a label and a button. And coded the ActionPerformed event of the button to say hello! on the label. this is up to you. The code just looks as follows:
    private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
    // Add your handling code here:
    jLabel1.setText("Hello folks!");
    6. Compile and execute the form.
    Let's say this is our Desktop Application. Now We will pack it in a Jar in two steps...
    A. Create a JAR file (Recipe)
    1. Right-click on your package and select New > All Tempaltes (Long Route) You can also select New > JAR Recipe if available.
    2. On the New Wizard Window, choose the JAR ARchives > JAR Recipe template and click on NEXT
    3. I used MyDesktopApp as the file name and Defaults and then click on Next.
    4. Specify the JAR Contents. Select the Package (not the mounted folder) from the mounted file system and click on add and then click on NEXT twice...
    5. On the JAR Manifest window, click on GENERATE
    6. Edit the manifest in the window to add the following code:
    Main-Class: MyDesktopApp.MyDesktopAppFrm
    7. Ensure the Main-Class definition is the same as your java package and JFRAME name. Click on FINISH
    8. At this point we have a jar file in your project directory but this file wont run because it is missing some Netbeans clases that we will add in the next set of steps... Just to check, compile the file (right click on the JAR file and compile) and try to execute. It must compile but must not execute.(well if it executes you are done. It may execute if you did not set the lay out of the form as AbsoluteLayout)
    B. Add the AbsoluteLayOut to the JAR
    1. Right click on File Systems and select Mount > Archive Files
    2. Look for your netbeans installation folder and select the following file:
    .../netbeans/modules/ext/AbsoluteLayout.jar
    3. Click on finish
    4. Now the JAR File is mounted in the file systems.
    5. Right-click on your MyDesktopApp.JAR file and select properties.
    6. Look for the contents property click once on it and then on its elipsis button [...]
    7. From the FileSystems box in the Contents window, select the AbsoluteLayOut file and click on Add
    8. Then the system asks you if you are sure. Of course you are so click OK. (If not sure, just read the message text and click OK...:-))
    9. Click on OK
    10. Compile your JAR Recipe (right click on it and Compile)
    11. Now you must be able to run the file by right clicking it and EXECUTE.
    12. Also you must be able to run the file by double clicking the file from a Windows Explorer. You may receive a message asking to select the program to run the file with. You must browse and select the Javaw.exe file in the bin directory of your Java RUn Time installation. This is typically located at C:\j2sdk1.4.0_01\jre\bin or something like that. Use the File-Search feature of window to locate the JAVAW.exe file if needed.
    I hope this long explanation helps somebody to deploy Java Desktop applications. Please reply the message if it helps you just to know it was useful.
    Thanks for your time....
    JN

  • Getting problem during deploying desktop application with JNLP File.

    Hi,
    I am developing one standalone (desktop) application in swing. I want to make one jnlp file that would be install on my computer as a client(suppose). When i am doing jav web start enabled after that making application descriptor. But when i am running a web browser where i have stored my html file. but it is giving me an error that codebase or something like this. Please tell me is there any other way to do this task. Please help me to do this. Is NetBeans ide is best way to do this. please help me.
    Thanks in advance.
    Manveer.

    >
    ...but it is giving me an error that codebase or something like this. ...>Try changing the JNLP file to 'something like that', that might work.
    In case it does not, I provide a tool called JaNeLA that will provide a lot more specific error message(s) than 'something like this'.
    Really, I cannot see you getting better help than on some of your other recent threads, with vague, unspecific error messages, and without putting the JNLP file and other relevant information.

  • Deploying a JNLP file to corporate users?

    When it comes to Java, I'm pretty clueless. I was a VB programmer years ago, and now I deal mostly with Python apps.
    I have a corporate client with ~80 workstations. One of their primary business applications is deployed by a jnlp file. Their tech support said to go to http://theirapplication.com/app.jnlp and the program will install.
    I have tried a few test methods of getting this pushed out to every user.
    The first was to deploy a shortcut to their desktop called "TheirApp" which pointed to that jnlp file.
    In practice, that launches IE, downloads the JNLP file, checks if the app is installed, installs it if it isn't, and then runs the app. Plus, the app drops a new shortcut onto the desktop for directly launching the program. The shortcut points to javaws and then a long path to some per-user cache folder. So now users are confused by two shortcuts.
    When the app initially starts, it asks for a bunch of settings--like really long account numbers. All this info appears to be per-user. So when users sit down at a different workstation (which happens frequently in their environment), clueless users are asked to install the app and put in all those initial settings.
    The second method was a failure--I tried deploying a shortcut to start javaws pointing to that cache folder. I didn't really expect it to work. On new machines it failed because that app hadn't been installed into that cache folder yet. On existing installs, it would work for users that had previously installed it, but new users wouldn't work because the cache folder is stored under a different users settings folder.
    So I guess my questions for the Java community would be these:
    Is there a way to deploy a java webstart app per-machine?
    Is there a way to share the same cache folder between all the users on the network so they see all the same settings?
    Does anyone have similar experiences and suggestions on how to better deploy jnlp applications?
    Thanks for reading.
    -Aaron

    To pre-install you can use the -import option.
    Something like
    javaws -import -silent http://whateverTheServer.ext/whateverTheJnlp.jnlpYou could even copy all files to a local server and override codebase with -codebase option.
    You could try (but I've heard people complain about it) to use the -system option so that all machine users run same instance (app is installed once per machine, not once per user and machine).
    About properties, the most common way to store data is to put them in the user.home dir, have a look there, maybe you can spot out a file (or a directory) and just tell user to copy their setting on a USB drive and paste them (into user.home) on any other machine they're gonna use.
    Bye.

  • Webstart-deployed desktop app, command line and Windows ShellExecute.

    Hi all,
    I want to be able to associate Windows Shell registry actions (shellExecute from right click menu, double click, and protocols) with a Webstart Java Swing desktop app. This is pretty key to our deployment strategy.
    I have two options that I'm pursuing right now.
    OPTION A
    Unfortunately I'm encountering a few problems:
    1) javaws.exe does not accept parameters, therefore I can't pass parameters directly from a Windows command line
    2) The only way to get arguments in is through the jnlp file. Sounds like this is possible using a jnlp written by a servlet. But can I just pass GET parameters to my servlet like so?
    http://webstart.com/go/?param=value&param2=value2Would that work?
    2a) subissue: I want to use JNLP's SingleInstance to make sure that only one of my app is running at any time. It sounds like that JNLP interface also allows for new parameters to be passed in as arguments... but if I pass in parameters to my webstart address, will SingleInstance properly recognize that http://webstart/go and http://webstart/go?param=value are the same program?
    OPTION B
    So the alternative deployment strategy that I'm contemplating is using webstart, but then deploying a separate .jar to the machine and registering that to be the argument acceptor from Windows. So windows would run something like so:
    java -jar cmdLauncher.jar argshereFrom there I will do two things:
    a) If the program is already running, then I pass the argument in using network sockets and deal with it like so.
    b) If the program isn't already running, then I execute javaws http://myurl and then maybe write to the socket when it's ready. This might really suck since i'll have to poll until the socket is ready.
    Anyway, was hoping someone with more webstart internals had some idea as to
    a) would a option A (dynamic servlet) work in the way I expect?
    b) Is option B the only way to really do it? It certainly seems feasible at this point.
    Ideally I just wish javaws.exe allowed passing arguments, and thus this entire problem would not exist. It's a pretty powerful and important feature for WebStart to be able to be a fully featured deployment solution.

    OPTION A
    Unfortunately I'm encountering a few problems:
    1) javaws.exe does not accept parameters, therefore I
    can't pass parameters directly from a Windows command
    line
    2) The only way to get arguments in is through the
    jnlp file. Or the SingleInstanceService.
    ....Sounds like this is possible using a jnlp
    written by a servlet. But can I just pass GET
    parameters to my servlet like so?
    http://webstart.com/go/?param=value�m2=value
    2Would that work?Huh? Assuming the servlet that produces the
    launch file fir this application is called 'go', and that
    servlet returns the correct content-type, and writes
    the two params in the URL into the JNLP as
    arguments, then.. yes - this should work.
    http://webstart.com/go?param=value�m2=value2Note the lack of one '/'.
    ( I have not had much direct experience with
    JNLP combined with servlets, but am familiar
    with both. )
    2a) subissue: I want to use JNLP's SingleInstance to
    make sure that only one of my app is running at any
    time. It sounds like that JNLP interface also allows
    for new parameters to be passed in as arguments...
    but if I pass in parameters to my webstart address,
    will SingleInstance properly recognize that
    http://webstart/go and http://webstart/go?param=value
    are the same program?As I understand from my experience, the URL
    becomes redundant, any params that were in
    the JNLP are ignored in preference to the single
    -open argument. Here is my buildable example..
    http://www.physci.org/jws/#sis
    a) would a option A (dynamic servlet) work in the way
    I expect?Sounds like it.

  • Semi-black screen of death: desktop app screen mostly black on deployment

    Hi I've got a problem running an executable .jar on a friend's machine. Here is what happens:
    Open the jar, and the main frame opens. All of the combo boxes on the desktop application appear fine, but the background, text boxes, jtree navigation, and labels appear black. The menu bar is fine, and also the a checkbox and the first selected jtree node. Two of the 6 buttons are fine but the rest show as black. When my friend clicks one of the buttons that brings up another window, everything on the panel is white except for the comboboxes.
    I've installed this software on three Windows XP machines, and one Windows Home Premium 64 bit machine with no problems, everything appears fine. I'm about to try it out on a Vista Home Premium 32 bit. The offending machine is a Windows home Premium 64 bit machine. I'll be able to remote desktop into my friend's machine soon, but they don't know a lot about computers or programming. I'm not sure where the proper forum for this question is, because many of the swing elements appear correctly, I don't think it is a swing problem, but a problem with the deployment somehow. If anyone has any ideas on how to begin troubleshooting this, let me know.

    Thank you so much for responding to my post.
    My app requires the following classes:
    -- acrobat.jar
    – appframework-1.0.3.jar
    – beansbinding-1.2.1.jar
    – javax.persistence.jar
    – mysql-connector-java-5.1.10-bin.jar
    – org.eclipse.persistence.antlr.jar
    – org.eclipse.persistence.asm.jar
    – org.eclipse.persistence.core.jar
    – org.eclipse.persistence.jpa.jar
    – org.eclipse.persistence
    --jcalendar-1.3.3.jar
    --looks-2.0.jar
    --swing-worker1.1.jar
    I used Netbeans to develop the code.
    1) I'll work up a SSCCE later tonight after I can take a look at my friend's machine.
    2) The program is a simple database desktop app that allows my friend to look through a document repository (mysql database). It keeps track of correspondence: Titles of letters, date of letter reception, Authors of letters, Categories of letters, Storage locations of letters. It lets my friend save them to a tree-like explorer interface, as well as search them. It also displays a PDF help file. The problem my friend is having when the program starts up blacks out the JTree letter explorer, and blacks out the search text box and a few of the search buttons.
    3)I will see if I get a stack trace on startup. That is a good place to begin. I've installed it on two more Vista machines today, and was unable to replicate the problem.
    Thanks again!

  • Link to help file in Java desktop app

    Hi,
    Is it possible to link to a file, ie. UserGuide.pdf from a menuitem in a desktop app?
    The file is originally in the application root, but after downloading with Java Web Start the link no longer work.
    Thanks
    Dave

    Resources for JWS apps. should be in Jars, whereas I am guessing the PDF is a loose file.
    If the PDF is converted to something more Java friendly such as HTML, RTF or text, it can be included in a Jar and displayed using JavaHelp or a JEditorPane.
    To use a PDF and have it open in the system default software for displaying PDF files, it would be necessary to:
    1) Include the PDF in a Jar and add the Jar to the resources section of the JNLP.
    2) Get a reference to the PDF using
    this.getClass().getResource("the.pdf");3) Gain an InputStream from that URL.
    4) Read the bytes of the PDF and save them to a known place (such as a sub-directory of user.home).
    5) Call
    Desktop.open("${user.home}/path/to/the.pdf");

  • My iPad no longer appears in the iTunes desktop app, so I can't sync or transfer files?, my iPad no longer appears in the iTunes desktop app, so I can'y sync or transfer files?

    My iPad no longer appears in the iTunes desktop app, so I can't sync or transfer files?
    I also have an iPod Touch. It appears in iTunes but willnot sync... "unknown error 1723"
    This is a recent problem. Everything was fine initially, and I don't think that I've done anything to change my setup.
    ...Charles

    iPad not appearing in iTunes
    http://www.apple.com/support/ipad/assistant/itunes/
    iOS: Device not recognized in iTunes for Mac OS X
    http://support.apple.com/kb/TS1591
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/TS1538
    iTunes for Windows: iTunes can’t contact the iPhone, iPad, or iPod software update server
    http://support.apple.com/kb/ts1814
    iTunes for Windows: Device Sync Tests
    http://support.apple.com/kb/HT4235
    IOS: Syncing with iTunes
    http://support.apple.com/kb/HT1386
    Apple - Support - iPad - Syncing
    http://www.apple.com/support/ipad/syncing/
    iTunes 10.5 and later: Troubleshooting iTunes Wi-Fi Syncing
    http://support.apple.com/kb/ts4062
    iOS: “Not enough free space” alert when trying to sync
    http://support.apple.com/kb/ts1503
    You may need to delete iTunes on your computer and then reinstall.
    How To Completely Uninstall and Remove All Traces of iTunes
    http://zardozz.com/zz/2008/04/how-to-completely-uninstall-and-remove-all-traces- of-itunes.html/
     Cheers, Tom

  • My desktop App for Story  has malfunctioned and I am no longer able to access the files that were on it, how do I save those documents and reinstall the app?

    I have a Story + desktop app for Adobe on my hard drive and it was supposed to sync up to my online app (or cloud) however it never did and now I cannot access my desktop app, nor the important files that were on it.
    __I.E. when I try to press the [Sign In] button, nothing happens.
    So I figured to find those files elsewhere, copy them somewhere safe then try re installing the app again.  However, I cannot find those files anywhere on my hard drive.

    Adobe Story stores its local files on the following location:
    On Windows,
    1. Open Windows Explorer and type '%appdata%' in the address bar
    2. Make a copy of 'com.adobe.AdobeStory.<some-number>' folder. This folder contains Story's local data.
    On Mac,
    1. Open Finder.
    2. From 'Go' Menu, open 'Go to folder'
    3. Type '~/Library/Preferences' and hit enter
    4. Make a copy of 'com.adobe.AdobeStory.<some-number>' folder. This folder contains Story's local data.

  • How to read JBoss server 'app.properties' file in the deployed Flex application?

    Hi, my current Flex project is using LCDS server to make call (Remote object call and Data managements services' call) to the backend Java services and consume data to render. I have defined the AMF and RTMP channels in the services-config.xml file and destinations for the Java services' in the remoting-config.xml and data-management-config.xml files.
         <channel-definition id="my-amf" class="mx.messaging.channels.AMFChannel">
                <endpoint url="http://localhost:8080/eqcFlex/messagebroker/amf" class="flex.messaging.endpoints.AMFEndpoint"/>
                <properties>
                    <polling-enabled>false</polling-enabled>
                </properties>
         </channel-definition>
    As of now both the Flex application WAR file and Java services EAR files are depolyed on the JBoss server on my machine, therefore I can hardcode the endpoint URL as http://localhost:8080 in the services-config file and hit the Java services.
    But the requirement is that the Flex application WAR file needs to be deployed on JBoss servers deployed on different machines and hence the endpoint URL cann't be hardcoded in the services-config.xml file. Is there a way we can pick up the endpoint URL from the JBoss server's app.properties file so that we can dynamically create channels in Actionscript code and make call to the backend services with dynamic endpoint URL?

    But in Command prompt I found out that My properties file by name
    'cedrelay.properties' is not recognised by web.xml.My web.xml structure is
    How does web.xml "recognize" anything?
    You specify the properties file as an init parameter. Do you read it in the init method of the servlet? If so, what does the code look like for reading the properties file?
    You'll have better luck if you put that properties file in WEB-INF/classes and load it as a resource input stream from the CLASSPATH.
    %

  • Creative Cloud Desktop App does not upload CERTAIN files

    Trying to use the Creative Cloud Desktop app to manage my Adobe Audition Files. The entire folder structure syncs, but individual files keep failing. The desktop app does not show any useful messages, but I found this error in the CoreSync.log file.
    ERROR: Copying file: {"cause":"infected_asset","message":"In the file 'Track 1_004.wav' the signature 'null' has been found"}
    This same error goes for pretty much all my files. Now if I take the same exact file and use the web uploader, it succeeds with no issues. My other computers will download the file, and my original computer does not download any duplicates. I tried Adobe's support chat but that was a joke. They said there is no technical support for the Cloud Desktop App and that I need to go to the forums.
    Anyone have any idea what's causing this error?

    Hi Kendr1ck,
    I wondered if it was related to the files being used when you were attempting to sync them. Were the files you were having difficult with open in Audition at the time? Do they still fail with Audition closed?
    Thanks,
    - Dave

Maybe you are looking for

  • How data  is replicated from SAP R/3 to SAP BW

    Hi,     I have to replicate datasource from SAP R/3 ECC 6.0 TO  SAP BW.   Please, help me in this regards Thks in advance - Mubeen.

  • Crash with multiple video cards

    I have three monitors connected to two separate graphics cards, an 8800GT and an FX5200 (PCI). Now, this setup works fine in regular XP Pro, with driver 175.19; Photoshop CS4's OpenGL works without a problem save for the brush cursor bug. However, I

  • Count table rows UI5 , XML view

    Hello, I want to count ( find the number of rows in a table , or in my model ) . I have a model ( json ) and i apply this model to a table. I tried to find how many rows I have in my table but i couldn't. Can you help me ?  The view ( xml ) looks lik

  • I want stock music and photo and video from Xperia z2

    I want stock photo & video & music that comes with new Xperia z2

  • Frustrated with iTunes Store music file quality.

    Dear Apple iTunes Store supervisors,      Ive decided I will no longer buy music from itunes until you start to release music in a better quality, uncompressed, lossless-format and higher bitrate and sample depth.  The list of albums i want to buy gr