Questions tagged [ape]

APE is a full-featured open source solution designed for Ajax push. It includes a webserver and a JavaScript framework. APE allows to implement any kind of real-time data streaming to a web browser, without having to install anything on the client-side.

Ajax Push Engine (APE) is a full-featured open source solution designed for Ajax push. It includes a webserver and a JavaScript framework. APE allows to implement any kind of real-time data streaming to a web browser, without having to install anything on the client-side.

APE project: http://www.ape-project.org Related: http://en.wikipedia.org/wiki/Comet_(programming)‎ also: http://ajaxpatterns.org/HTTP_Streaming

102 questions
1
vote
2 answers

Can not use ajax-upload because of ape comet server

First part of description is in Unsafe JavaScript attempt to access frame, when try to upload file with ajax Problem is that I get access denied error, when try to upload file with ajax-way. After long debugging I have discovered that everything is…
Alexei
  • 231
  • 1
  • 2
  • 11
1
vote
1 answer

APE engine Mysql push data to channel on insert

I am working with APE Engine (http://www.ape-project.org) and up until now I had no actual problem. The problem is that I would like to use the MySQL module and push data to a channel each time a row is inserted into a table. I've tried to setup a…
Fotis
  • 1,322
  • 16
  • 30
1
vote
2 answers

Jackson - cannot seserialize array, UnknownLengthHttpInputStream

I am writing an implementation of APE protocol for chat on Android. When I send request to connect the answer is: [ { "time": "1396265282", "raw": "LOGIN", "data": { "sessid":…
marcinm
  • 281
  • 1
  • 2
  • 11
1
vote
1 answer

Great difficulty setting up Ajax Push Engine(APE) in my Virtual Box

Is there any kind fellow windows user who had faced similar problems that can provide me some concrete ways in setting up the APE?
p0larBoy
  • 1,312
  • 5
  • 15
  • 24
1
vote
1 answer

URL rewriting won't work unless I add index.php to the query string?

I've been struggling forever trying to understand why I can't get this to work. I have Windows Server 2008 r2 with Helicon APE installed and having several rewrite errors. Currently, the frontpage and blog articles are working (even with the pretty…
1
vote
0 answers

Ajax push engine chunked data

I use ajax push engine(APE) and i want to post a data to the server in chunks. Is it possible to send chunked data in the pipes.
skoovill
  • 1,069
  • 2
  • 12
  • 22
1
vote
1 answer

IRC Server configuration possibilities

I need to know a couple of things, concerning IRC servers that I couldnt directly find out over google (or werent clear enough for me to be sure if it actually works) I'm working at a larger community site, and wanted to deliver an in-page chat.…
Katai
  • 2,773
  • 3
  • 31
  • 45
0
votes
1 answer

How Notifications Mechanism Works

I am working on an application using MongoDB and PHP, wherein the user receives notification updates for various events(something like FB Notifications). I have read something about APE, node.js, and Comet Server Push Technology. But being new to…
Ashish
  • 373
  • 1
  • 5
  • 15
0
votes
1 answer

Can you upload files on a Comet/APE environment?

In a simple chat example using an APE Server and JavaScript on the client side which is pushing/polling information, is it possible to allow one user to upload a file (for example an image) and make the other users see that uploaded image, all in…
Beldar
  • 421
  • 1
  • 5
  • 10
0
votes
1 answer

Ajax Push Engine (APE): How to Send Binary Data or Special Characters

This code example is from the APE official website: http://www.ape-project.org/ var client = new APE.Client(); client.load(); client.core.join('testChannel'); client.request.send('foo', {ping: 'ho hey', fieldWidthBinaryDataOrSpecialCharacters:…
Peter Lee
  • 12,931
  • 11
  • 73
  • 100
0
votes
0 answers

Errors with tree construct by [ape]

I am trying to plot an MSA tree for my nucleotide sequences. I used toparslan's script. It worked on other files but with the current file, it won't work. Error on distance information? How do I fix this? > [1] "DNAbin" dnbin<-dist.dna(nbin, model =…
0
votes
0 answers

In R, how can I identify tips of a phylogeny that share an ancestor at the current timestep?

I'm trying to simulate binary trait evolution along phylogenies in R. I'm simulating it with a matrix with species (final tree tips) as rows, and timesteps as columns. In each cell is a vector of traits- the position indicates the trait, and the…
0
votes
0 answers

Phylogeny Building in R from FASTA files error with msa function

Im working on building a phylogeny from scratch with downloaded FASTA sequences from GeneBank. I think Im doing alright up until the multi sequence alignment in the msa package where I get an error Error in convertAlnRows(result$msa, type) : There…
I Del Toro
  • 913
  • 4
  • 15
  • 36
0
votes
0 answers

How to export a minimum spanning tree created with R ape package in newick format?

I have been using the R ape package to create a minimum spanning tree from a distance matrix. if my distance matrix is, for example: distmat sample1 sample2 sample3 sample4 sample5 sample1 0 5 4 4 6 sample2 5 …
0
votes
0 answers

How to get record from query using AggregateResult

I am trying to get the record from query from below soql query. I am getting "Variable does not exist: Question__c" Below is my code public pagereference loginflowsexornot() { List ratobj1 = [SELECT…
Tara
  • 11
  • 2