Vert.x is an event driven application framework that runs on the JVM allowing the development of asynchronous web applications in Java, Javascript, Ruby and Groovy.

learn more… | top users | synonyms

3
votes
1answer
100 views

How to get server notification(push notification) to client using vert.x java api

I've been struggling from past 4 days to implement push notification in vert.x framework using java(at server side) and javascript(client side). I've been studying example from this link. I am not ...
1
vote
2answers
328 views

Vertx SockJS server vs sockjs-tornado

I've been inspecting two similar solutions for supporting web sockets via sockJS using an independent Python server, and so far I found two solutions. I need to write a complex, scalable web socket ...
1
vote
1answer
90 views

how to implement connection timeout in vert.x socket server?

I am working on a project using vert.x. In this project, I want to implement a function: when a client sends nothing in 15 seconds, server will mark that connection as unused and release it. I found ...
0
votes
1answer
70 views

How can I get data from JDBC + Java to Javascript with Vert.x?

I'm a noob with vertx, but I have already created the JDBC connection manager using a java class where I can print data from the result set: ConnectionManager cm=ConnectionManager.getInstance(); ...
0
votes
1answer
79 views

REST framework for Vert.x using Javascript

I recently started to use Node.js to develop a simple REST server for a TODO application using the restify framework. Now I want to rebuild my application using Vert.x with JS. Unfortunately, I could ...
0
votes
0answers
33 views

what it mean in logging.properties at vert.x?

it is default logging.properties. handlers=java.util.logging.ConsoleHandler,java.util.logging.FileHandler java.util.logging.SimpleFormatter.format=%5$s %6$s\n ...
0
votes
1answer
91 views

http basic auth with vert.x

I am using the built in httpclient to issue a "get" query to an external service that needs authentication. More specifically, I am trying to submit queries to splunk from my service. How do I pass in ...
0
votes
2answers
80 views

Use couchDB with vert.x

I'm looking into a NoSQL database for use with Vert.x Based on the not so favorable results mongoDB is out, so I'm looking at CouchDB/CouchBase, not at least since some of our data collection runs on ...
0
votes
3answers
65 views

Should I use fixed or dynamic time step in a networking game?

I am currently developing a online networking game using Box2D JS and Vert.x as the server->client framework. I have searched for pros and cons of each and I really believe that a dynamic time step ...
0
votes
1answer
135 views

Is SockJS EventBus Bridge a right tool for building private chats?

I would like to build a app with private chat powered by SockJS using Vert.X. I quickly ran into limitation of SockJS because of it's simplistic API and multiplexing doesn't seem to be the answer ...
2
votes
0answers
54 views

Vert.x how to deal with missing handler

Originally asked on the forum here - https://groups.google.com/forum/#!topic/vertx/jdNRWlE6v4Y I just read this thread discussing problems with sending out messages over the event bus where there is ...
1
vote
3answers
517 views

How to run embedded vert.x?

I've wrote a very simple Groovy MainApp with main(args). When I launch it, the JVM exit directly ("End of JVM execution !"). import org.vertx.groovy.core.Vertx class MainApp { public static ...
0
votes
0answers
118 views

Java intermitent peer not authenticated exception

So I set up a JMeter test running against my vertx.io server and as the test executes a 'Peer not authenticated' exception gets thrown once in a while. Searching through Google most people suggest ...
0
votes
1answer
210 views

Can I use JDBC blocking call in worker verticle of Vert.x?

I found the following sentence in the manual of Vert.x. Worker verticles are also not allowed to use TCP or HTTP clients or servers. JDBC is also a TCP client, right? Then I can't use JDBC ...
0
votes
1answer
127 views

Can't access web service exposed by application deployed in vert.x from gwt application

I have a REST web service exposed by application deployed in vert.x and I'm trying to access it from a GWT application. Some response is obtained, but with an empty body. It gives the expected ...
1
vote
1answer
130 views

Vert.x - Event bus closes in IE

Running a Vert.x server (Vert.x 1.3.0) in Groovy and deploy our module and the web module, running on port 9099 (not used by anything else I have running). In Firefox and Chrome, the event bus appears ...
1
vote
1answer
307 views

Simple TCP proxy in Vert.x using Pump class (JAVA)

I would like to realize a proof of concept TCP transparent proxy in Vert.x. Requirement A verticle that listens on port X and when somebody connects and sends data it opens a client connection ...
1
vote
1answer
159 views

What is the maximal size for SockJS messages?

I'm using Vert.x and SockJS to transfer data encapsulated in messages. Is there a specification how big the SockJS/Websocket messages can be?
1
vote
1answer
549 views

Vertx.io - how to get count of requests made on a single http connection?

For statistics purposes I want to count how many requests are made on a single Http Connection (how many keep-alive requests are made on one open socket). In node.js I have access to 'socket' in ...
1
vote
0answers
173 views

Framework similar to vert.x for .Net [closed]

Is there a framework that is similar to vert.x (which is build on top of JVM) for .Net?
0
votes
3answers
722 views

Any idea why requests to vertx embedded in grails are synchronously queued up

Environment: Mac osx lion Grails version: 2.1.0 Java: 1.7.0_08-ea If I start up vertx in embedded mode within Bootstrap.groovy and try to hit the same websocket endpoint through multiple browsers, ...
3
votes
1answer
513 views

Clustering and Shared Data in Vert.x

I'm developing in Vert.x (based on Netty and Hazelcast), and I'm trying to share data between to server instances (eache of those instances in different machines, on the same lan). My problem is that ...
2
votes
3answers
558 views

vert.x mySQL Javascript driver library

I just discovered vert.x and am very intrigued by it. The first thing I do when I discover a new framework is seek out a mySQL driver. I've searched all over and it seems there is nothing available. ...
0
votes
0answers
124 views

vert.x soap call

I'm new to vert.x, but it's already rockin' my vurld oh yeah! Can anyone with more experience, make some suggestions about calling a traditional soap based Web Service from vert.x? I understand ...
3
votes
1answer
311 views

How to properly synchronize concurrent reads and writes on a AsynchronousSocketChannel

I am trying to implement a single request/response on a AsynchronousSocketChannel in a vert.x worker verticle using CompletionHandler not Futures. From the vert.x documentation: "Worker verticles ...
1
vote
3answers
904 views

Maven coordinates for vert.x?

I am trying to add vert.x in a maven project, but it seems like it is not in the central repository. Am I wrong? If it is available from Maven, what are the dependency coordinates? Thanks.
0
votes
2answers
393 views

Vert.x and Neo4j in multithread cucumber environment

I try to run cucumber tests in a JRuby environment. I configured the cucumber rake task to startup an embedded Vert.x application server in another thread but in the same JVM. During the application ...
1
vote
2answers
536 views

Jruby/Vert.x, Setup issue

I just recently learned about Vert.x and would like to try it out but I am running into some issues. I can get a server up written in javascript but cannot get the ruby (jruby) version to run. ...
1
vote
2answers
1k views