Java-Gaming.org
Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
Featured games (78)
games approved by the League of Dukes
Games in Showcase (416)
games submitted by our members
Games in WIP (307)
games currently in development
News: Read the Java Gaming Resources, or peek at the official Java tutorials
 
    Home     Help   Search   Login   Register   
Pages: [1]
  ignore  |  Print  
  How to run Applet outside NetBeans  (Read 246 times)
0 Members and 1 Guest are viewing this topic.
Offline JanNovak18

Junior Newbie





« Posted 2013-02-25 20:12:10 »

Hi,

I have problem with playing my Applet game. Currently I can run game only in NetBeans. When trying to manually run NetBeans generated file launch.jnlp there comes the AccessControlException error ("java.lang.RuntimePermission" "preferences").I was looking how to solve problem but I couldn´t find anything usefull. I am confused about this permissions, signing jars and so on... I cant understand how my mates will play my game if even I cant play it outside IDE.  Huh

Regards
Jan
Offline tyeeeee1

Senior Member


Medals: 3
Projects: 1



« Reply #1 - Posted 2013-02-25 21:04:56 »

Hi,

I have problem with playing my Applet game. Currently I can run game only in NetBeans. When trying to manually run NetBeans generated file launch.jnlp there comes the AccessControlException error ("java.lang.RuntimePermission" "preferences").I was looking how to solve problem but I couldn´t find anything usefull. I am confused about this permissions, signing jars and so on... I cant understand how my mates will play my game if even I cant play it outside IDE.  Huh

Regards
Jan

Try compiling the .java file into a .class file using the cmd and then create an .html document like this:
1  
2  
3  
4  
5  
6  
<html>
 <body>
 <applet code = "MYCLASSNAME.class" width=300 height=300>
 </applet>
 </body>
 </html>


Just replace MYCLASSNAME with the class' name and the width and height with it's width and height. After that just save it as .html and double click to play your applet.
Offline philfrei
« Reply #2 - Posted 2013-02-25 21:08:10 »

I went to find the tutorial section, and am discovering *things have changed* since I last deployed applets.

Here is the section in the tutorials:
http://docs.oracle.com/javase/tutorial/deployment/applet/getStarted.html

Via "view source" (edit/find: HelloWorld) on that page, here is a quickie template that you can possibly use. That looks a lot like what I've done in the past.

1  
2  
3  
4  
5  
6  
7  
8  
9  
10  
<script src="http://www.java.com/js/deployJava.js" type="text/javascript"> 
</script><script type="text/javascript">
 
        var attributes = { code:'HelloWorld.class',
                           archive:'examples/dist/applet_HelloWorld/applet_HelloWorld.jar',  
                           width:150, height:30} ;
        var parameters = {} ;
        deployJava.runApplet(attributes, parameters, '1.4');

</script><


JNLP is needed if you want the Applet to make use of the client computer. If you are not attempting to save or load anything to the client, I think you can safely bypass the JNLP requirements.

If you DO want to allow client access, you don't have to go as far as getting signing to work, but you will need JNLP and will have to go through steps of asking the client user to OK the access. Signing adds a level of security.

In the only casual applet I wrote which accesses the client, I didn't bother with Signing as it was taking a fair bit of effort for me to figure it out. The only people who were going to look at the applet knew me personally, or via this site, and trusted I hadn't embedded a virus.

"Greetings my friends! We are all interested in the future, for that is where you and I are going to spend the rest of our lives!" -- The Amazing Criswell
Games published by our own members! Check 'em out!
Legends of Yore - The Casual Retro Roguelike
Offline JanNovak18

Junior Newbie





« Reply #3 - Posted 2013-02-25 21:43:42 »


If you DO want to allow client access, you don't have to go as far as getting signing to work, but you will need JNLP and will have to go through steps of asking the client user to OK the access. Signing adds a level of security.


The applet is only asking me for permission to run it, than don´t ask me for any further permission, just throw error. My game is using API preferences for savegame and also is reading some text files,... So there is no problem how I run code in browser or appletviewer, it is the same,... Should I add some code for required permission or what?
Offline philfrei
« Reply #4 - Posted 2013-02-25 21:52:09 »

What applets can and can't do:
http://docs.oracle.com/javase/tutorial/deployment/applet/security.html

Permission to run is different from permission to read or write to the client computer. The latter requires at least JNLP, and the use of classes such as FileOpenService and FileSaveService.

JNLP Api:
http://docs.oracle.com/javase/tutorial/deployment/doingMoreWithRIA/jnlpAPI.html

"Greetings my friends! We are all interested in the future, for that is where you and I are going to spend the rest of our lives!" -- The Amazing Criswell
Pages: [1]
  ignore  |  Print  
 
 

Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
 
Browse for soundtracks for your game!

Add your game by posting it in the WIP section,
or publish it in Showcase.

The first screenshot will be displayed as a thumbnail.

The invasion has landed! On Mars! And you're there to beat 'em!
mrbenebob (19 views)
2013-06-19 14:55:23

BrassApparatus (29 views)
2013-06-19 08:52:37

NegativeZero (32 views)
2013-06-19 03:31:52

NegativeZero (34 views)
2013-06-19 03:24:09

Jesse_Attard (38 views)
2013-06-18 22:03:02

HeroesGraveDev (75 views)
2013-06-15 23:35:23

Vermeer (76 views)
2013-06-14 20:08:06

davedes (77 views)
2013-06-14 16:03:55

alaslipknot (69 views)
2013-06-13 07:56:31

Roquen (92 views)
2013-06-12 04:12:32
Smoothing Algorithm Question
by UprightPath
2013-05-28 02:58:26

Smoothing Algorithm Question
by UprightPath
2013-05-28 02:57:33

Complex number cookbook
by Roquen
2013-04-24 12:47:31

2D Dynamic Lighting
by Oskuro
2013-04-17 16:46:12

2D Dynamic Lighting
by Oskuro
2013-04-17 16:45:57

2D Dynamic Lighting
by Oskuro
2013-04-17 16:23:20

Noise (bandpassed white)
by Roquen
2013-04-05 17:36:01

Noise (bandpassed white)
by Roquen
2013-04-03 16:17:38
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines | Managed by Enhanced Four Valid XHTML 1.0! Valid CSS!