You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by an...@apache.org on 2019/12/24 14:02:41 UTC

[royale-docs] branch master updated: Update amf.md

This is an automated email from the ASF dual-hosted git repository.

andreww pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/royale-docs.git


The following commit(s) were added to refs/heads/master by this push:
     new 7e7fd7e  Update amf.md
7e7fd7e is described below

commit 7e7fd7e401f7f5e7b449ad1c8351eb0a5044bd13
Author: Andrew Wetmore <an...@cottage14.com>
AuthorDate: Tue Dec 24 10:02:32 2019 -0400

    Update amf.md
    
    Small text changes
---
 features/loading-external-data/amf.md | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/features/loading-external-data/amf.md b/features/loading-external-data/amf.md
index 5c86830..598bb32 100644
--- a/features/loading-external-data/amf.md
+++ b/features/loading-external-data/amf.md
@@ -24,15 +24,15 @@ permalink: /features/loading-external-data/amf
 
 ActionScript Message Format
 
-AMF is a great way to send data between an Apache Royale client and a backend server. The server could be written in Java, PHP, .NET, Ruby, Python and many other backend technologies.
+AMF is a great way to send data between an Apache Royale client and a backend server. The server could be written in Java, PHP, ColdFusion, .NET, Ruby, Python or many other backend technologies.
 
-[Action Message Format (AMF)](https://en.wikipedia.org/wiki/Action_Message_Format){:target='_blank'} is a binary format used to serialize object graphs such as ActionScript objects and XML, or send messages between a client and a remote service. The Actionscript 3 language provides classes for encoding and decoding from the AMF format, also backend servers need to know how to encode and decode AMF.
+[Action Message Format (AMF)](https://en.wikipedia.org/wiki/Action_Message_Format){:target='_blank'} is a binary format used to serialize object graphs such as ActionScript objects and XML, or send messages between a client and a remote service. The ActionScript 3 language provides classes for encoding and decoding from the AMF format. Backend servers need to know how to encode and decode AMF.
 
-Since 2018, Apache Royale is capable to encode/decode AMF3 for all AS3 data types with the exception of flash Dictionary and Vector classes that we expect will be implemented in the future. AMF0 is not supported at this time. Some Applications are currently in production using the Apache Royale implementation.
+Since 2018, Apache Royale has been able to encode/decode AMF3 for all AS3 data types with the exception of Flash Dictionary and Vector classes. We expect to implement those data types the future. Royale does not support AMF0 at this time. Some applications are currently in production using the Apache Royale AMF implementation.
 
 ## Language back-end servers supporting AMF
 
-Here's a list of languages backend that supports AMF that can work with Apache Royale. Only a few has been tested with Apache Royale at this time:
+Here's a list of languages used to create backend servers that support AMF and can, in theory, work with Apache Royale. We have only tested a few of the servers with Apache Royale so far, and welcome learning of developers' experiences.
 
 | Server            | Library Name                                                                          | Royale Tested     | 
 |------------------	|---------------------------------------------------------------------------------- 	|-----------------  | 
@@ -44,11 +44,11 @@ Here's a list of languages backend that supports AMF that can work with Apache R
 | **Ruby**          | [RubyAMF](https://github.com/rubyamf/rubyamf){:target='_blank'}	                    | NO                | 
 | **ColdFusion**    | [Coldfusion](https://www.adobe.com/products/coldfusion/features){:target='_blank'}	| NO                | 
 
-> if you are working with some of the listed languages and can provide information about the working state of the library or want to notify about another new working implementation please let us know in our user or dev [mailing lists](https://royale.apache.org/mailing-lists/).
+> if you are working with any of the listed languages and can provide information about the working state of the library, or want to report other back-end implementations that work with AMF, please let us know in our user or dev [mailing lists](https://royale.apache.org/mailing-lists/).
 
 ## How to use AMF format in Apache Royale
 
-Apache Royale supports AMF protocol through the following implementations:
+Apache Royale supports the AMF protocol through these implementations:
 
 - [RemoteObject](features/loading-external-data/remoteobject)
 - [LocalSharedObject](features/loading-external-data/localsharedobject)