Not able to access javaFx charts from a remote system after using ext. jars

We are facing following issue. Any recommendations to resolve these issues are highly appreciated.
1. Not able to access javaFx charts from a remote system (More details at the end of mail).This is high priority requirement as we have a web based reporting application and users access it over our static IP address.
We are using Java Fx charts in our web application where we built jnlp and jar files in a separate fx project and kept jar and jnlp’s inside our web project.
It is working fine when we did not used any external jar files and remotely it is accessible. But when we used external jars our project is running on local
system but remotely it is not working due to some path settings. We modified jnlp files where entry of jar files exists and modified the jar path as per our
project. But still it did not work.
Before using external jars inside our java fx project my jnlp looks like:
<?xml version="1.0" encoding="UTF-8"?>
<jnlp spec="1.0+" codebase="http://localhost:8083/servlet/org.netbeans.modules.javafx.project.JnlpDownloadServlet/F%3A/New+FX+Projects+08-12-
2009/JavaFXApplication3/dist/" href="JavaFXApplication3.jnlp">
<information>
<title>JavaFXApplication3</title>
<vendor>Saurabh</vendor>
<homepage href="http://localhost:8083/servlet/org.netbeans.modules.javafx.project.JnlpDownloadServlet/F%3A/New+FX+Projects+08-12-
2009/JavaFXApplication3/dist/"/>
<description>JavaFXApplication3</description>
<offline-allowed/>
<shortcut>
<desktop/>
</shortcut>
</information>
<resources>
<j2se version="1.5+"/>
<extension name="JavaFX Runtime" href="http://dl.javafx.com/1.2/javafx-rt.jnlp"/>
<jar href="JavaFXApplication3.jar" main="true"/>
</resources>
<application-desc main-class="com.sun.javafx.runtime.main.Main">
<argument>MainJavaFXScript=misc.Test</argument>
</application-desc>
<update check="background">
</jnlp>
After modifying my jnlp as per my project as
<?xml version="1.0" encoding="UTF-8"?>
<jnlp spec="1.0+" codebase="/PiFx/FxFiles/" href="JavaFXApplication3_browser.jnlp">
<information>
<title>JavaFXApplication3</title>
<vendor>Saurabh</vendor>
<homepage href="/PiFx/FxFiles/"/>
<description>JavaFXApplication3</description>
<offline-allowed/>
<shortcut>
<desktop/>
</shortcut>
</information>
<resources>
<j2se version="1.5+"/>
<extension name="JavaFX Runtime" href="/PiFx/FxFiles/javafx-rt.jnlp"/>
<jar href="/PiFx/FxFiles/JavaFXApplication3.jar" main="true"/>
</resources>
<applet-desc name="JavaFXApplication3" main-class="com.sun.javafx.runtime.adapter.Applet" width="500" height="500">
<param name="MainJavaFXScript" value="misc.MyChart">
</applet-desc>
<update check="background">
</jnlp>
After adding external jars my jnlp looks like this :
<?xml version="1.0" encoding="UTF-8"?>
<jnlp spec="1.0+" codebase="http://localhost:8083/servlet/org.netbeans.modules.javafx.project.JnlpDownloadServlet/F%3A/New+FX+Projects+08-12-
2009/JavaFXApplication3/dist/" href="JavaFXApplication3.jnlp">
<information>
<title>JavaFXApplication3</title>
<vendor>Saurabh</vendor>
<homepage href="http://localhost:8083/servlet/org.netbeans.modules.javafx.project.JnlpDownloadServlet/F%3A/New+FX+Projects+08-12-
2009/JavaFXApplication3/dist/"/>
<description>JavaFXApplication3</description>
<offline-allowed/>
<shortcut>
<desktop/>
</shortcut>
</information>
<resources>
<j2se version="1.5+"/>
<extension name="JavaFX Runtime" href="http://dl.javafx.com/1.2/javafx-rt.jnlp"/>
<jar href="JavaFXApplication3.jar" main="true"/>
<jar href="lib/jdom.jar"/>
</resources>
<application-desc main-class="com.sun.javafx.runtime.main.Main">
<argument>MainJavaFXScript=misc.Test</argument>
</application-desc>
<update check="background">
</jnlp>
I have modified the jnlp as per my project :
<?xml version="1.0" encoding="UTF-8"?>
<jnlp spec="1.0+" codebase="/PiFx/FxFiles/" href="JavaFXApplication3_browser.jnlp">
<information>
<title>JavaFXApplication3</title>
<vendor>Saurabh</vendor>
<homepage href="/PiFx/FxFiles/"/>
<description>JavaFXApplication3</description>
<offline-allowed/>
<shortcut>
<desktop/>
</shortcut>
</information>
<resources>
<j2se version="1.5+"/>
<extension name="JavaFX Runtime" href="/PiFx/FxFiles/javafx-rt.jnlp"/>
<jar href="/PiFx/FxFiles/JavaFXApplication3.jar" main="true"/>
<jar href="/PiFx/FxFiles/lib/jdom.jar"/>
</resources>
<applet-desc name="JavaFXApplication3" main-class="com.sun.javafx.runtime.adapter.Applet" width="500" height="500">
<param name="MainJavaFXScript" value="misc.MyChart">
</applet-desc>
<update check="background">
</jnlp>
where PiFx is our project Name

We have tried few things given in thread : http://forums.sun.com/thread.jspa?threadID=5401999
Now it is not able to get the external jar file only
exception: Cannot find cached resource for URL: http://192.168.0.111:8086/PiFx/FxFiles/lib/jdom.jar.
java.io.IOException: Cannot find cached resource for URL: http://192.168.0.111:8086/PiFx/FxFiles/lib/jdom.jar
     at com.sun.deploy.net.DownloadEngine.getCachedResourceFilePath(Unknown Source)
     at com.sun.javaws.LaunchDownload.getSignedJNLPFile(Unknown Source)
     at com.sun.javaws.LaunchDownload.checkSignedLaunchDescHelper(Unknown Source)
     at com.sun.javaws.LaunchDownload.checkSignedLaunchDesc(Unknown Source)
     at sun.plugin2.applet.JNLP2Manager.prepareLaunchFile(Unknown Source)
     at sun.plugin2.applet.JNLP2Manager.loadJarFiles(Unknown Source)
     at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
     at java.lang.Thread.run(Unknown Source)
Exception: java.io.IOException: Cannot find cached resource for URL: http://192.168.0.111:8086/PiFx/FxFiles/lib/jdom.jar
exception: Cannot find cached resource for URL: http://192.168.0.111:8086/PiFx/FxFiles/lib/jdom.jar.
java.io.IOException: Cannot find cached resource for URL: http://192.168.0.111:8086/PiFx/FxFiles/lib/jdom.jar
     at com.sun.deploy.net.DownloadEngine.getCachedResourceFilePath(Unknown Source)
     at com.sun.javaws.LaunchDownload.getSignedJNLPFile(Unknown Source)
     at com.sun.javaws.LaunchDownload.checkSignedLaunchDescHelper(Unknown Source)
     at com.sun.javaws.LaunchDownload.checkSignedLaunchDesc(Unknown Source)
     at sun.plugin2.applet.JNLP2Manager.prepareLaunchFile(Unknown Source)
     at sun.plugin2.applet.JNLP2Manager.loadJarFiles(Unknown Source)
     at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
     at java.lang.Thread.run(Unknown Source)
Exception: java.io.IOException: Cannot find cached resource for URL: http://192.168.0.111:8086/PiFx/FxFiles/lib/jdom.jar
JavaFXApplication3.jnlp
<?xml version="1.0" encoding="UTF-8"?>
<jnlp spec="1.0+" codebase="/PiFx/FxFiles/" href="JavaFXApplication3.jnlp">
    <information>
        <title>JavaFXApplication3</title>
        <vendor>Saurabh</vendor>
        <homepage href="/PiFx/FxFiles/"/>
        <description>JavaFXApplication3</description>
        <offline-allowed/>
        <shortcut>
            <desktop/>
        </shortcut>
    </information>
    <resources>
        <j2se version="1.5+"/>
        <extension name="JavaFX Runtime" href="/PiFx/FxFiles/javafx-rt.jnlp"/>
        <jar href="/PiFx/FxFiles/JavaFXApplication3.jar" main="true"/>
        <jar href="/PiFx/FxFiles/lib/jdom.jar" main="true" />
    </resources>
    <application-desc main-class="com.sun.javafx.runtime.main.Main">
        <argument>MainJavaFXScript=misc.MyChart</argument>
    </application-desc>
    <update check="background">
</jnlp>JavaFXApplication3_browser.jnlp
<?xml version="1.0" encoding="UTF-8"?>
<jnlp spec="1.0+" codebase="/PiFx/FxFiles/" href="JavaFXApplication3_browser.jnlp">
    <information>
        <title>JavaFXApplication3</title>
        <vendor>Saurabh</vendor>
        <homepage href="/PiFx/FxFiles/"/>
        <description>JavaFXApplication3</description>
        <offline-allowed/>
        <shortcut>
            <desktop/>
        </shortcut>
    </information>
    <resources>
        <j2se version="1.5+"/>
        <extension name="JavaFX Runtime" href="/PiFx/FxFiles/javafx-rt.jnlp"/>
       <jar href="/PiFx/FxFiles/JavaFXApplication3.jar"  main="true"/>
        <jar href="/PiFx/FxFiles/lib/jdom.jar" main="true"/>
    </resources>
    <applet-desc name="JavaFXApplication3" main-class="com.sun.javafx.runtime.adapter.Applet" width="500" height="500">
        <param name="MainJavaFXScript" value="misc.MyChart">
    </applet-desc>
    <update check="background">
</jnlp>Applet Code
javafx({
archive: "../FxFiles/JavaFXApplication3.jar",
draggable: true,
height:hgt,
width:wdt,
code: "misc.MyChart",
name: appletName,
id: appletName
});

Similar Messages

  • Not able to access Site logo from layout and css After removing all the permission from site

    Hi Techis,
    I have stucked here, actually I have removed permissions from all the users from the site and after sometime I got the mails from client that they are not able to access the Site logo and css in the site.
    When I logged from Farm account and checked I can see everything working fine.Also the masterpage and all are checked in
    I am not getting whats the exact issue.I stucked here from last one day Please help me to solve this issue.
    Thanks Regards,
    Simanchal

    Hello,
    Is it the publishing site? If so then go to site permission and provide permission to "NT AUTHORITY\authenticated users" to "Style Resource Readers" group.
    You also need to make sure that "style library" is inheriting permission from parent otherwise you need to give at least read permission to library for all users. To verify this, just open view all site content page-->then click on style library,then
    check permission.
    Let us know your result
    Hemendra:Yesterday is just a memory,Tomorrow we may never see<br/> Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • After upgrading to Mountain Lion I am not able to access "security and privacy" button under "system preferences". I like to activate "find my mac" but cannot access privacy setting after upgrade. Kindly advice.

    After upgrading to Mountain Lion I am not able to access "security and privacy" button under "system preferences". I like to activate "find my mac" but cannot access privacy setting after upgrade. Kindly advice.

  • HT204406 I am not able to download my files from iCloud to my iPad using iTunes Match, my internet connection is alive as I tested with Safari, I have enabled iTunes Match on and off to be usre is active..but still  cannot download....my music

    I am not able to download my files from iCloud to my iPad using iTunes Match, my internet connection is alive as I tested with Safari, I have enabled iTunes Match on and off to be usre is active..but still  cannot download....my music

    I have the same problem on my Windows 7 computer. In the right-click menu for a song one option is DELETE. However when I click that option the next window is to HIDE instead of DELETE. Apple, please help us with this.

  • Not able to access the Date variable in Bex report after SP upgrade

    Hell Experts,
    We have upgraded the support pack to 27 and after that we are not able to access date variable in Bex report.
    We are not able to restrict the Posting date on variable, we are getting the message "Operation failed! No detailed error information from backend available".
    Thanks
    Chetan

    Hi,
    carry out basic checks like RSRV for the field,query ,Infoprovider on which this query is based..
    Check whether there is any in consistent value in the posting date..
    check whether objects are active correctly..
    else serach for SAP note or raise OSS to SAP..
    Thanks and regards
    Kiran

  • Not able to access virtual machine applications in remote server.

    Hi All,
    I am using Oracle Linux server 5.6 - 64 bit and installed all IAM 11gr2 stack and Oracle data base. I am not able to access the any Identity Management applications in remote servers (able to access in local virtual machine) but i can able to access Database Enterprise Manager application which is running in the same machine. If any one can help me on how to fix the issue really appreciate your help.
    Thanks
    Kiran Pokuri

    It should work with adapter in bridged mode and firewall down. (you should however check and confirm this is the case)
    A reason for why local client connections to the server s/w works, and remote ones not, can be due to IP/port binding. If the server binds its listening port on an IP (such as localhost) that is not accessible to remote clients, those clients will not be able to connect.
    Have a look at what IP address(es) the listening port(s) are on: netstat -l -t -p
    You should see a *:7001 entry for the relevant server process - meaning that it used INADDR_ANY when it did the port bind (binds port to all existing and future IP addresses of that platform).
    If not, it means the port bind was done to a single specific IP address - and that the clients  need to be able to route and connect to that specific IP in order to get a connection with the server process.

  • I have LR2 but not able to access nef files from my Nikon D800

    Unable to access nef files from my Nikon D800.

    You need Lightroom 4.1 or later (the current version is 5.7.1 but will not run on Windows Vista or XP and certain Mac operating systems, if that's an issue)
    You could also download the FREE Adobe DNG Converter version 7.1 or later and convert your RAWs to DNG and import those into your Lightroom 2.

  • I am not able to answer the call from i phone 5 after updating ios7 can u assist me to solve

    after updating while ringing call not able to answer i restart and reset but still some call  scren is hanging not able to answer
    can u assist me what to do next please

    The Basic Troubleshooting Steps as outlined in the User Guide are:
    Restart... Reset... Restore from Backup...  Restore as New...
    Restart / Reset   >  http://support.apple.com/kb/ht1430
    Backing up, Updating and Restoring  >  http://support.apple.com/kb/HT1414

  • I am not able to access the application from other PCs in network

    Hi Friends,
    I am a newbie in this field and building an internal application for employees of my org. The HR will enter all the informations regarding a particular employee and it will get stored in the Oracle DataBase(10g).When the admin users will want to know information about a particular emp they will put the emp_code and it will retrieve all the information of that particular emp.For that I am using Oracle AS(10g).After the deployment of the apllication(.war file) in the AS(10g), when I access the URl- http://10.0.37.51:7777/emp/... from my machine (where 10.0.37.51 is the IP Address of my system where server is installed) the application runs properly but when i give the same url from other pcs the whole application does not run properly it gives an error msg http://d6z5sb1s:7777/...not accessible.. can any of my forum friend help me out to solve the problem.I will be thankful to you..
    Regards,
    Prasenjit Biswas
    [email protected]

    Here I am using Java Type IV for database
    connection.
    So,there was no necessity of creating DNS.How your app communicates with db shouldn't matter for the end user. Still, you may want to use a functional network name also for the thin client driver connection string.
    So,is there any other way to solve this problem.What is the problem really? Do you not use dns for network naming? Maybe you have to manage the hosts file on every client then.

  • Not able to access the module from user level i.e., other than Super user.

    Hello Friends,
    I created company with super user and normal user, for a normal user gave the rights of sales. When logged in with normal user try to create sales order i am experiencing following system message "To generate this document, first define the numbering series in Administration module [Message 131-3]".
    Could you please advise me in this regard.
    Thanks,
    Rayudu

    Hi,
    Please check the following thread which is being discussed:
    Re: "Define the numbering series in Admin module"
    For the issue you have reported, kindly refer Note 1057873, which will resolve your issue.
    Note says:-
    Symptom
    When trying to open a document a user gets the system message:
    'To Generate this document, first define the numbering series in the Administration module'
    Other terms
    Authorizations, Document Numbering, Series, access
    Reason and Prerequisites
    SAP Business One Functionality, Consulting
    Solution
    A document numbering series have been defined and the user have authorisation to the document type in:
    Administration -> System Initialisation -> General Authorisations -> Sales-AR/Purchasing-AP
    All document numbering series are also given a Group.
    Administration -> System Initialisation -> Document Numbering
    Double click to the left of the row to view the existing numbering
    series for the document type. The field 'Group' is here. By default this value is 1.
    For the Groups there is a separate authorisation.
    Administration -> System Initialisation -> Authorisations -> General Authorisations -> Administration -> System Initialisation -> Series
    After expanding the 'Series', give the user authorisation to the
    Serie/Group that is defined for the document numbering serie it is trying to open.
    Also, check for more similar threads in the forum which could help you.
    Regards,
    Jitin

  • Guys i am not able to access my photos from my iphone when i synchronize it with my mac! what should i do?!

    i cannot see my photos that are on the iphone (4s) on itunes (when i synch) -i use a mac- why is that and what should i do?
    thnx

    i don't seem to have it on my mac! kinldy note that i upated to lion 3 week ago and as i recall i used to have it!!
    how shall i proceed?
    thnx

  • Not able to access webservice after migrating from 8.1 to 10.3,plz help

    Hi All,
    Prev our application was running in weblogic 8.1 and now we moved to 10.3
    We are able to deploy our webservice in 10.3 and access the wsdl but we are not able to access the webservice from the client.
    Even the testclient is not comming up.
    After spending long time in that,now i dont have any clue on this issue.
    Plz help on this
    Thanks ni advance,
    Mouli

    Sunil,
    We are not seeing any exception.We regenerated the webservice and then deployed in the 10.3
    When we make req from the client ,we are getting null response but thing is there are no log trace in the server side for that
    folllowing is the input string we are pasing to the method notifyservice
    IN the client we pass the wsdl url and then pass the following input string and hit the notifySerivce method
    Req:
    <?xml version="1.0" encoding="UTF-8" standalone="no"?><object><GLCCode>102431</GLCCode><callBackNumber>888256798</callBackNumber></object>
    Res:
    <m:notifyService xmlns:m="http://www.testportal.com/outbound/tsp/WowWebservices">
    <result xsi:nil="true"/>
    </m:notifyservice>
    Therre was an exception in the client side,plz check below
    javax.xml.rpc.soap.SOAPFaultException: Failed to get operation name from incoming request
    at weblogic.webservice.core.ClientDispatcher.receive(ClientDispatcher.java:317)
    at weblogic.webservice.core.ClientDispatcher.dispatch(ClientDispatcher.java:147)
    at weblogic.webservice.core.DefaultOperation.invoke(DefaultOperation.java:473)
    at weblogic.webservice.core.DefaultOperation.invoke(DefaultOperation.java:459)
    at weblogic.webservice.core.rpc.CallImpl.invoke(CallImpl.java:569)
    at weblogic.webservice.core.rpc.CallImpl.invoke(CallImpl.java:422)
    Thanks For your time,
    Mouli

  • I am not able to open pdf files from any web through Firefox. Internet explorer opens those pdf files

    I am not able to open pdf files from any web when I use FireFox.
    I am able to open pdf files when I use internet explorer.

    For the settings to check, see the [[opening PDF files within Firefox]] article.

  • I have an iphone6. I am unsure whether to go from 8.1.3 operating system and switch to  ICloud Drive or not?  Has anyone done this?  Is it awesome?  I need to be able to access my resume from phone. I think this will help me achieve this.am i right?

    I have an iphone6. I am unsure whether to go from 8.1.3 operating system and switch to  ICloud Drive or not?  Has anyone done this?  Is it awesome?  I need to be able to access my resume from phone. I think this will help me achieve this?  Am i right?  Is there any body out there right now that could help me?  I'm thinking about going from 8.1.3 to I guess yosemite?  Or is that for Mac computers?  I don't understand the language entirely on the help page.   Anyone's straight forward and easy stepped advice would be much appreciated.  I'm so frustrated and I need a job so badly!  Drowning in debt.  Any help appreciated!
    Thanks,
    A

    You're a Windows user, correct? If so, read here:
    http://support.apple.com/kb/DL1455

  • Not able to access the result set from one member function to another

    Im new to jdbc
    I have declared a connection object , a result set object and statement object in one member function and i am not able to access these in another member function. But both are in the same class
    Kindly help
    Thanks
    Shasi

    Kindly refrain from double-posting:
    http://forum.java.sun.com/thread.jspa?threadID=700659&tstart=0
    - Saish

Maybe you are looking for

  • Multiple users on one license?

    How's it going? So at the moment, we have 3 admin licenses, and all 3 are taken. 2 for the managers, and then the last one floats between who needs it. At the moment, if somebody in accounting (3 people) is using it, the other 2 can't be on at the sa

  • Accessing The Chooser In Os9 Classic

    How does one access the chooser to change the printers in os9 classic from panther? (assuming the computer is NOT dual bootable in 9) basically I want to be able to switch from 2 different OS9 printers

  • File name naming convention in File Adapter configuration in ID

    Hi All , I have a query related to xml filename created in IDOC-XI-FILE scenario based on value of one of IDOC field . The scenario is like this : I have to send one xml file per store for material master . In this case how can I define my file name

  • Gray scale images – too dark

    CS5.5 or CC – I have experienced several times that flat grayscale imaged - corrected and nice in PhotoShop turns up much too dark when placed in InDesign. I make sure no effect or colors are applied to the frame or picture, but still no effect. If I

  • External mapping context

    Hello. I have one problem. I have 2 components? for example compA and compB. In compB I used compA. From compB I give parameters to compA throuth Context mapping and in compA execute RFC using this parameters. After execute I want to mapping result c