You can subscribe to this list here.
| 2003 |
Jan
(14) |
Feb
(14) |
Mar
(58) |
Apr
(6) |
May
(61) |
Jun
(30) |
Jul
(21) |
Aug
(7) |
Sep
|
Oct
|
Nov
(10) |
Dec
(1) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2004 |
Jan
|
Feb
(11) |
Mar
(16) |
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(85) |
| 2005 |
Jan
(31) |
Feb
(5) |
Mar
(18) |
Apr
(7) |
May
(1) |
Jun
(13) |
Jul
(33) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2006 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2007 |
Jan
(1) |
Feb
(2) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
| 2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
| 2010 |
Jan
|
Feb
(2) |
Mar
(21) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: johncowen <joh...@us...> - 2003-05-30 16:21:57
|
CVS commit by johncowen: 1. Added support for setCredentials 2. Added credentials.fla and new services for an example of using setCredentials and roles to restrict access to service methods 3. Left changed a trigger_error in Executive.php because it used headerFilter which has now been replaced with an array of headerFilters M +49 -6 sources/flashservices/app/Executive.php 1.14 M +7 -3 sources/flashservices/app/Gateway.php 1.12 |
|
From: johncowen <joh...@us...> - 2003-05-30 16:21:53
|
CVS commit by johncowen: 1. Added support for setCredentials 2. Added credentials.fla and new services for an example of using setCredentials and roles to restrict access to service methods 3. Left changed a trigger_error in Executive.php because it used headerFilter which has now been replaced with an array of headerFilters A sources/flashservices/util/Authenticate.php 1.1 |
|
From: johncowen <joh...@us...> - 2003-05-30 16:13:28
|
CVS commit by johncowen: 1. Removed the roles key from the method table due to the support for Roles and setCredentials 2. Added AMFPHP example comments M +3 -9 sources/examples/basic/services/AliasedService.php 1.2 M +11 -4 sources/examples/basic/services/CreateObject.php 1.2 M +14 -6 sources/examples/basic/services/DataEcho.php 1.3 M +4 -11 sources/examples/basic/services/RegisteredService.php 1.2 |
|
From: johncowen <joh...@us...> - 2003-05-27 11:46:33
|
CVS commit by johncowen: 1. Checks for _explicitType before using its value (if it has one) 2. The previous version seems to work with some setups, although Luke Kenyon reported an eror on the mailing list... "Code 8 Description Undefined index:_explicitType Detail refers to the Executive.php. Level Notice Line 184 " ...I was unable to check whether this fixes the error as I haven't been able to replicate the error in the first place but this should fix it... M +3 -3 sources/flashservices/app/Executive.php 1.13 |
|
From: johncowen <joh...@us...> - 2003-05-20 13:17:38
|
CVS commit by johncowen: 1. Added support for passing Flash registered objects to PHP 2. At the moment the PHP version of the Flash registered class has to be inside the service class file (or included from there)...although it would be simple enough to look for it in the base class path aswell M +25 -1 sources/flashservices/app/Executive.php 1.12 |
|
From: Devon H. O'D. <do...@si...> - 2003-05-16 14:55:02
|
It's been talked about. It's been suggested. It's been pushed off... AND NOW IT'S DONE YES! AMFPHP Explorer and Local Service Tester has been implemented. Yeah that's possible I implemented it this way for security reasons, but I won't take it out of the gateway or make it that you can just pass a variable to the gateway. Exposing services sucks, and this should only be used for testing, as we all know :). Devon ----- Original Message ----- From: "Klaasjan Tukker" <k.t...@mi...> To: <amf...@li...> Sent: Friday, May 16, 2003 4:47 PM Subject: Re: [amfphp-cvs] sources/flashservices/app > Feature request... > > At this moment you have to "register" your service you want for exploration. > In this cas "com.margrietje.FileService" . > > Is it possible that the explorer detects all available services in the > services/ directory (they can be identified by having a methodtable) and > show them all? > > Klaasjan |
|
From: Klaasjan T. <k.t...@mi...> - 2003-05-16 14:48:53
|
Feature request...
At this moment you have to "register" your service you want for exploration.
In this cas "com.margrietje.FileService" .
Is it possible that the explorer detects all available services in the
services/ directory (they can be identified by having a methodtable) and
show them all?
Klaasjan
----- Original Message -----
From: "dhodell" <dh...@us...>
To: <amf...@li...>
Sent: Friday, May 16, 2003 4:41 PM
Subject: [amfphp-cvs] sources/flashservices/app
> CVS commit by dhodell:
>
> WOOO! Added cool as hell amfphpexplorer! example of explorer:
> $gw = new Gateway();
> $gw->setBaseClassPath('services/');
> $gw->explore('com.margrietje.FileService');
>
>
> M +70 -1 sources/flashservices/app/Executive.php 1.11
> M +6 -1 sources/flashservices/app/Gateway.php 1.11
>
>
>
> -------------------------------------------------------
> Enterprise Linux Forum Conference & Expo, June 4-6, 2003, Santa Clara
> The only event dedicated to issues related to Linux enterprise solutions
> www.enterpriselinuxforum.com
>
> _______________________________________________
> amfphp-cvs mailing list
> amf...@li...
> https://lists.sourceforge.net/lists/listinfo/amfphp-cvs
>
|
|
From: dhodell <dh...@us...> - 2003-05-16 14:41:03
|
CVS commit by dhodell:
WOOO! Added cool as hell amfphpexplorer! example of explorer:
$gw = new Gateway();
$gw->setBaseClassPath('services/');
$gw->explore('com.margrietje.FileService');
M +70 -1 sources/flashservices/app/Executive.php 1.11
M +6 -1 sources/flashservices/app/Gateway.php 1.11
|
|
From: dhodell <dh...@us...> - 2003-05-16 07:59:29
|
CVS commit by dhodell: Changed " to ' in PHP code (it's faster, I know it doesn't matter, but still...) Forward to http://www.amfphp.org if client requests amfphp.sf.net. So people *know* that we've switched (and in case we ever leave sf). M +15 -12 website/index.php 1.6 |
|
From: dhodell <dh...@us...> - 2003-05-15 00:20:49
|
CVS commit by dhodell: Removed trailing spaces in response to bug [ 733160 ] Extra spaces causing downnload dialog. Don't re-add these please ;) M +1 -1 sources/flashservices/util/AMFObject.php 1.3 |
|
From: dhodell <dh...@us...> - 2003-05-15 00:20:35
|
CVS commit by dhodell: Removed trailing spaces in response to bug [ 733160 ] Extra spaces causing downnload dialog. Don't re-add these please ;) M +1 -1 sources/flashservices/io/AMFDeserializer.php 1.5 M +1 -1 sources/flashservices/io/AMFOutputStream.php 1.3 |
|
From: dhodell <dh...@us...> - 2003-05-15 00:18:21
|
CVS commit by dhodell: Removed trailing spaces in response to bug [ 733160 ] Extra spaces causing downnload dialog. Don't re-add these please ;) M +1 -1 sources/flashservices/exception/Exceptions.php 1.5 |
|
From: dhodell <dh...@us...> - 2003-05-14 12:37:25
|
CVS commit by dhodell: Added links to the .doc files. M +6 -0 website/files/documentation.php 1.9 |
|
From: dhodell <dh...@us...> - 2003-05-14 12:25:37
|
CVS commit by dhodell: Added Justin's first draft. Even though it's a draft, the more documentation the sooner the better :) A website/docs/AMFPHP.doc 1.1 M website/docs/ M website/docs/ M website/docs/ M website/docs/ M website/docs/ M website/docs/ |
|
From: dhodell <dh...@us...> - 2003-05-14 12:07:22
|
CVS commit by dhodell: First revision of AMFPHP official documentation A website/docs/AMFPHP.doc 1.1 |
|
From: dhodell <dh...@us...> - 2003-05-14 12:06:13
|
CVS commit by dhodell: Directory /cvsroot/amfphp/website/docs added to the repository |
|
From: Devon H. O'D. <do...@si...> - 2003-05-13 12:03:11
|
Hey I'm documenting AMFPHP and creating a new package; will you explain your = changes to me a little bit so that I can document them. Are these = stable? Can I package them? If so, what version number should I give it? = With object functionality, I want to call this 0.9.0; implementing the = CFCExplorer (my task) will bring this to 0.9.5, when I implement the = roles, this should be 1.0. But are you working on this stuff? Otherwise I'll do something else... Devon |
|
From: johncowen <joh...@us...> - 2003-05-13 11:55:59
|
CVS commit by johncowen: 1. Added new CreateObject class to use for an example of passing Custom Objects to Flash 2. Modified the examples.fla to add examples of using custom objects passed from PHP A sources/examples/basic/services/CreateObject.php 1.1 M +5 -3 sources/examples/basic/services/DataEcho.php 1.2 |
|
From: johncowen <joh...@us...> - 2003-05-13 11:55:59
|
CVS commit by johncowen: 1. Added new CreateObject class to use for an example of passing Custom Objects to Flash 2. Modified the examples.fla to add examples of using custom objects passed from PHP M +250 -177 sources/examples/basic/examples.fla 1.3 |
|
From: johncowen <joh...@us...> - 2003-05-13 11:53:49
|
CVS commit by johncowen: 1. Replaced the 'testing' for return type with a reference to 'returns' in the class method table M +1 -1 sources/flashservices/util/RemotingService.php 1.3 |
|
From: johncowen <joh...@us...> - 2003-05-13 11:52:20
|
CVS commit by johncowen: 1. Added support for sending Custom Objects from PHP to the Flash Client M +6 -1 sources/flashservices/io/AMFSerializer.php 1.15 |
|
From: johncowen <joh...@us...> - 2003-05-13 09:43:00
|
CVS commit by johncowen: Corrected typo in manualType for writing dates M +1 -1 sources/flashservices/io/AMFSerializer.php 1.14 |
|
From: johncowen <joh...@us...> - 2003-05-13 09:19:48
|
CVS commit by johncowen: Corrected wrong use of strrpos (should have been strpos as this can take a full string as a needle and not just one character) M +1 -1 sources/flashservices/app/Executive.php 1.10 |
|
From: dhodell <dh...@us...> - 2003-05-13 06:55:18
|
CVS commit by dhodell: class path directory A website/examples/pizzaservice/org/amfphp/examples/pizzaService.php 1.1 A website/examples/pizzaservice/org/amfphp/examples/pizzaService.phps 1.1 |
|
From: dhodell <dh...@us...> - 2003-05-13 06:54:56
|
CVS commit by dhodell:
.SWF -> _global.pizzaService = my_conn.getService("org.amfphp.examples.pizzaService");
M +238 -224 website/examples/pizzaservice/pizzaServiceClient.swf 1.2
|