• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..21-Jul-2016-

Dejagnu.cH A D21-Jul-20162.2 KiB9635

Makefile.amH A D21-Jul-20165.6 KiB180120

SharedObject_as.hxH A D21-Jul-20163.8 KiB138115

client.pemH A D21-Jul-20162.9 KiB5250

clientcert.pemH A D21-Jul-2016891 1615

clientkey.pemH A D21-Jul-2016963 1917

clientreq.pemH A D21-Jul-2016733 1413

dh1024.pemH A D21-Jul-2016245 65

dh512.pemH A D21-Jul-2016466 1312

http.asH A D21-Jul-201612.6 KiB566512

netstream.asH A D21-Jul-2016645 2918

network.expH A D21-Jul-20168 KiB282180

remoting.READMEH A D21-Jul-20161.7 KiB5234

root.pemH A D21-Jul-20162 KiB3735

rootcert.pemH A D21-Jul-20161 KiB1918

rootkey.pemH A D21-Jul-2016963 1917

rootreq.pemH A D21-Jul-2016627 1211

rtmp.asH A D21-Jul-201612.3 KiB545496

server.pemH A D21-Jul-20164 KiB7270

serverCA.pemH A D21-Jul-20163.1 KiB5654

serverCAcert.pemH A D21-Jul-20161.1 KiB2019

serverCAkey.pemH A D21-Jul-2016963 1917

serverCAreq.pemH A D21-Jul-2016668 1312

servercert.pemH A D21-Jul-2016932 1716

serverkey.pemH A D21-Jul-2016963 1917

serverreq.pemH A D21-Jul-2016733 1413

test_ssh.cppH A D21-Jul-20167.4 KiB264208

test_ssl.cppH A D21-Jul-20168.7 KiB303241

remoting.README

1Test for remoting trough NetConnection and http.
2
3SERVER
4------
5
6The server part of the test is a PHP file.
7There's one copy available at
8http://www.gnashdev.org/testcases/remoting.php
9
10If you want to test offline you can copy remoting.php
11somewhere in your web server directories and specify
12the base url at configure time, for example:
13
14 $ ./configure --enable-http-testsuite=http://localhost/gnashtests/
15 $ cp remoting.php /var/www/gnashtests/
16
17Note that in order for the php file to work you might need to
18add the following line to your .htaccess file:
19
20  php_flag always_populate_raw_post_data on in place
21
22Also, if you run the client (remote.swf) from a different domain
23then the one the server is on, you'll need a crossdomain.xml file
24on the web root of the server.
25
26The most open version of a crossdomain.xml only contains this line:
27
28 <cross-domain-policy> <allow-access-from domain="*" /> </cross-domain-policy>
29
30CLIENT
31------
32
33The client part is an SWF, compiled by Ming from remoting.as.
34The SWF will embed the url to the remoting.php file.
35This is for convenience to allow testing it with the proprietary
36player to verify it expects the correct behaviour.
37
38The embedded url is set at configure time (--enable-http-testsuite)
39but can be overridden by a query string, for example:
40
41    $ gnash -v remoting.swf?url=remoting.php # relative url
42
43The generated remoting.swf is set to have "network" sandbox so
44you'll be able to run it from the filesystem and have it access
45network resources (as long as crossdomain.xml file is in place).
46
47Note that the proprietary player doesn't let you specify a query
48string for a filesystem-loaded file, so use --enable-http-testsuite
49to specify the embedded (default) url.
50
51
52