36 lines
1017 B
Markdown
36 lines
1017 B
Markdown
Corso di Programmazione Distribuita, Unisa 2015-2015 con Scarano.
|
|
|
|
|
|
Vm arguments:
|
|
-Djava.security.policy=F:\Codes\Java\Programmazione_Distribuita\policy
|
|
-Djava.rmi.server.codebase=http://localhost/java_classes_pd_server/
|
|
_____
|
|
|
|
http server by wamp with aliases
|
|
Alias /java_classes_pd_server "F:/Codes/Java/Programmazione_Distribuita_Server/out/production/Programmazione_Distribuita_Server/"
|
|
|
|
<Directory "F:/Codes/Java/Programmazione_Distribuita_Server/out/production/Programmazione_Distribuita_Server/">
|
|
Options Indexes FollowSymLinks MultiViews
|
|
AllowOverride all
|
|
<IfDefine APACHE24>
|
|
Require local
|
|
</IfDefine>
|
|
<IfDefine !APACHE24>
|
|
Order Deny,Allow
|
|
Deny from all
|
|
Allow from localhost ::1 127.0.0.1
|
|
</IfDefine>
|
|
</Directory>
|
|
|
|
|
|
|
|
|
|
____
|
|
policy
|
|
grant {
|
|
permission java.security.AllPermission;
|
|
|
|
};
|
|
|
|
____
|
|
rmiregistry launched in F:/Codes/Java/Programmazione_Distribuita/out/production/Programmazione_Distribuita/ for server/client executed from the same project |