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

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


The following commit(s) were added to refs/heads/master by this push:
     new cba58ac  Created Communication with AMF and RemoteObject (markdown)
cba58ac is described below

commit cba58acad6ff045e9888e7b7fbf13b3bedf851f4
Author: Carlos Rovira <[email protected]>
AuthorDate: Tue Apr 24 18:32:50 2018 +0200

    Created Communication with AMF and RemoteObject (markdown)
---
 Communication-with-AMF-and-RemoteObject.md | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/Communication-with-AMF-and-RemoteObject.md 
b/Communication-with-AMF-and-RemoteObject.md
new file mode 100644
index 0000000..48977d5
--- /dev/null
+++ b/Communication-with-AMF-and-RemoteObject.md
@@ -0,0 +1,23 @@
+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.
+
+Read more about AMF here :https://en.wikipedia.org/wiki/Action_Message_Format
+
+Apache Royale supports AMF protocol and you to demonstrate it we provide two 
projects:
+
+* RemoteObjectAMFTest: Is the Apache Royale Client that uses RemoteObject to 
communicate with the backend server to send and receive data via AMF.
+
+* SampleAmfWebApp: Is a Java WebApp that uses Apache Flex BlazeDS to expose 
some data and objects through an AMF endpoint.
+
+To run this example localy you can follow this steps. Note: At this time some 
parts of the example only can be build with maven, we'll be providing at same 
time ANT build, but this is not priority. If you're interested in ANT build you 
can submit a PR)
+
+1. Build RemoteObjectAMFTest with maven using "mvn clean install". This 
generates the Apache Royale client.
+
+2. Build SampleAmfWebApp with maven using "mvn clean install". This generates 
the Java Web App with AMF support and will overlay the RemoteObjectAMFTest 
client compiled in the previous step
+
+3. Launch SampleAmfWebApp in the embedded Jetty web server with "java -jar 
target/sampleamfwebapp-0.9.3-SNAPSHOT-exec.war" (you should be in root 
SampleAmfWebApp folder)
+
+4.- In a browser launch "http://localhost:8080"; and you would see the 
following:
+
+
+Enjoy!
+

-- 
To stop receiving notification emails like this one, please contact
[email protected].

Reply via email to