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

1
vote
2answers
72 views

Server/Client side event bus for GWT

I experimented with JBoss Errai and it looked great. Especially its errai event bus part. Does anybody aware of other similar libraries? Are there any articles which describe this pattern in detail, ...
0
votes
1answer
68 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
59 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
48 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 ...
2
votes
0answers
41 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 ...
0
votes
1answer
81 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 ...
0
votes
0answers
91 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
172 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
120 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
113 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
3answers
428 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 ...
1
vote
1answer
259 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
146 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
0answers
158 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
0answers
119 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 ...
1
vote
1answer
289 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
540 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 ...
3
votes
1answer
297 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 ...
3
votes
1answer
476 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 ...
0
votes
3answers
660 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, ...
0
votes
2answers
381 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 ...
0
votes
2answers
1k views

Will Vert.x pose a threat to Node.js's user base due to it's much better performance? [closed]

Benchmark Hacker News Discussion Hacker News Discussion 2
2
votes
3answers
500 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. ...
1
vote
2answers
508 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
3answers
868 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.