thanks for your answer ; clicking on your link doesn't seem to work for the moment ; may be a connection problem, I'll try later
anyway I tested the Controller demo which seems to correspond to our need ; my goal is to broadcast data from a server to several web clients ; so I developped a loop sending a message at regular intervals from the basis of the Controller example ; I don't know if it's the right method to solve my problem but it seems to work except that each time a new client connects, there is an incrementation in the POST address passing from http://i.ape.ape-test.local:6969/0/? to http://(i+1).ape.ape-test.local:6969/0/? requiring to add a new address in /etc/hosts such as : IP_address 10.ape.ape-test.local etc. how can I solve this problem ? thanks for your help Jean-Marie On Dec 10, 7:35 pm, Felix Filozov <[email protected]> wrote: > You can write your own APE client by implementing the APE Protocol. It's > described in the wiki > (http://www.ape-project.org/wiki/index.php/Protocol_Basics). > > On Fri, Dec 10, 2010 at 9:37 AM, Jean-Marie <[email protected]> wrote: > > Hello > > > I tested the HelloWorld example with success : > >http://www.ape-project.org/wiki/index.php/Tutorial:Hello_world > > starting HelloWorld a second time will send message received by the > > first HelloWorld > > > my goal now is to replace this second HelloWorld by a simple > > application (not running in a web browser) > > sending messages that are received and displayed by the first > > HelloWorld thanks to the code : > > //4) Intercept receipt of the new message. > > client.onRaw('data', function(raw, pipe) { > > console.log('Receiving : ' + > > unescape(raw.data.msg)); > > }); > > > How can I make the pipe link ? > > > thanks in advance > > > Jean-Marie > > > -- > > You received this message because you are subscribed to the Google > > Groups "APE Project" group. > > To post to this group, send email to [email protected] > > To unsubscribe from this group, send email to > > [email protected]<ape-project%[email protected]> > > For more options, visit this group at > >http://groups.google.com/group/ape-project?hl=en > > --- > > APE Project (Ajax Push Engine) > > Official website :http://www.ape-project.org/ > > Git Hub :http://github.com/APE-Project/ -- You received this message because you are subscribed to the Google Groups "APE Project" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/ape-project?hl=en --- APE Project (Ajax Push Engine) Official website : http://www.ape-project.org/ Git Hub : http://github.com/APE-Project/
