Can we please have a notification scheme enabled for Undertow Jira?
by Darran Lofthouse
Can we please have a notification scheme enabling for the Undertow Jira
project so that we can receive e-mail notifications.
I would suggest just use the same one as is used for Remoting JMX, it
should be sufficient to have the notifications go to the general mailing
list and interested individuals.
Regards,
Darran Lofthouse.
10 years, 3 months
Running the Autobahn Testsuite as part of the build
by Norman Maurer
Hi there,
many of you may know the Autobahn Testsuite[1] which tests WebSocket Servers to be RFC compliant. Until today the testing was a manual process .
During the last weeks I did some work to transform this into a maven plugin which use jython to actual run the Testsuite (as it is written in python). This way you can integrate it in the maven build and make sure no regressions are
introduced during code changes etc.
Hopefully this is also useful for Undertow, as I ran the testsuite by hand while working on the WebSockets implementation in the past :-)
For more infos how to use it see the website [2].
[1] http://autobahn.ws/testsuite/
[2] http://normanmaurer.github.io/autobahntestsuite-maven-plugin/
---
Norman Maurer
nmaurer(a)redhat.com
JBoss, by Red Hat
11 years
Customized Session Management?
by Marc Boorshtein
Is it possible to dynamicly control session cookies (scope, domain, name,
value) on the fly based on the URL in a session handler or is the cookie
managed by the web server?
For instance if I want to generate a different cookie depending on the URL
with differeny keys, I generate a cookie based on the URL name that could
be scoped at different levels. I could have a url calls
https://apps.company.com/ and decide I want to scope the cookie at
company.com. Is this something I can do pragmatically?
Thanks
--
Marc Boorshtein
CTO Tremolo Security
marc.boorshtein(a)tremolosecurity.com
<marc.boorshtein(a)tremolosecurity.com>
11 years, 1 month
Websockets API
by Eitan Yarden
Hi,
I'm trying to run the websockets example with undertow-core-1.0.0.Beta18
but it doesn't seem to work.
I simplified the code:
public class WebSocketServer {
public static void main(final String[] args) {
Undertow.builder().addListener(8080,
"localhost").setHandler(path().addPath("/myapp", websocket(new
WebSocketConnectionCallback() {
@Override
public void onConnect(WebSocketHttpExchange exchange,
WebSocketChannel channel) {
System.out.println("**** onConnect ********");
channel.getReceiveSetter().set(new
AbstractReceiveListener() {
@Override
protected void onFullTextMessage(WebSocketChannel
channel, BufferedTextMessage message) {
System.out.println("**** onFullTextMessage
********");
WebSockets.sendText(message.getData(), channel,
null);
}
});
}
}))).build().start();
}
}
Although the "OnConnect" handler is called, the "onFullTextMessage" is
never called.
Do someone know why ?
Thanks
Eitan
11 years, 1 month
Target Java version of Undertow
by Andrej Golovnin
Hi all,
what is the target Java version of Undertow?
I'm asking it because the main pom file defines
for the compiler the source and target versions to be 1.6.
But you use in some classes already APIs from JDK 7.
Best regards
Andrej Golovnin
11 years, 1 month
I can not join the IRC channel: #undertow of freenode
by Lin Gao
Hi all,
I can't join the channel: #undertow of freenode with message:
#undertow :Cannot join channel (+r) - you need to be identified with services
but other channels like: #wildfly is fine to join.
Do we have access control for this channel?
--
Lin Gao
Software Engineer
JBoss by Red Hat
11 years, 1 month
Recommended Beta Version
by Moore, Ryan
I'm beginning to look at using undertow and I'm wondering what the best
'Beta' version to use is? I've looked at the Github and it's on version
Beta14, MavenCentral has Beta13, and the website says to use Beta1. I'm
assuming that the website is out of date with it specifying Beta1.
Also when is Version 1 going to go GA?
Thanks!
--
Ryan Moore
11 years, 1 month