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.
1
vote
3answers
423 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
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
1answer
67 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
1answer
169 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 ...
2
votes
0answers
40 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
0answers
89 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
0answers
118 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 ...