Questions tagged [immutant]

Immutant is an application server for Clojure

Immutant is an application server for Clojure. It's an integrated platform built on JBoss AS7 providing support for Ring handlers, asynchronous messaging, caching, scheduled jobs, XA transactions, clustering, daemons and more.

The official website can be found here.

24 questions
1
vote
0 answers

Preferred way to connect to Immutant Message Queuing service from eg C# application

Title does not include this constraint: the Broker needs to be embedded. With straight HornetQ I would just use StompConnect to expose the service to the outside world and that would allow .NET clients to connect pretty easily. There's also the…
crinklywrappr
  • 588
  • 5
  • 18
1
vote
1 answer

Deploying Immutant to WildFly with several contexts

I have an Undertow web server with Immutant (Clojure), my main- looks like this: (run (-> routes/app wrap-something-app-specific wrap-params) (options {:path "/" :port 8080})) (run (-> routes/billing …
lobanovadik
  • 1,018
  • 8
  • 14
1
vote
2 answers

Multiple ring sites on one immutant?

Immutant allows applications to respond to web requests via Ring handlers. Each application can dynamically register any number of handlers, each with a unique context path. This allows you to have multiple Ring webapps that share the same…
deadghost
  • 5,017
  • 3
  • 34
  • 46
0
votes
1 answer

XA context for immutant listener

I am trying to use immutant to manage transactions across HornetQ and mysql. As I understand the docs, to do this I must use XA transactions, because I am running a standalone app and not inside an app server. However when I try and set :xa? for the…
clumsyjedi
  • 477
  • 6
  • 15
0
votes
0 answers

How do I configure HornetQ for STOMP in Immutant 2

My ultimate purpose is to make WebSocket clients participate in messaging. This seems to be supported and well documented in the sibling project TorqueBox but I can't find any information in the Immutant docs.
kliron
  • 4,383
  • 4
  • 31
  • 47
0
votes
1 answer

How to use config immutant to implement quartz cluster?

I want to start several web-server, and every server has a quartz instance for avoiding the job being interrupted by restarting the server. I found that immutant can config the single job .But when i run the server i found that the scheme use the…
savior
  • 802
  • 6
  • 14
0
votes
1 answer

Sending an HTTP request while running Immutant

I'm running Immutant. Can/should I use clj-http to send requests, or is there a better way of going about this?
pickwick
  • 3,134
  • 22
  • 30
0
votes
2 answers

how can immutant be configured to serve ips other than localhost (127.0.0.1)

I'm not sure how to configure my immutant installation to serve webpages when I do: >> lein immutant run >> curl http://127.0.0.1:8080/testing it works, but >> curl http://172.20.10.3:8080/testing which is an alternative ip on my computer does…
zcaudate
  • 13,998
  • 7
  • 64
  • 124
0
votes
1 answer

how can lein midje :autotest be made to work with immutant?

I'm migrating a application I did in ring over to immutant and and a bit lost as to what to do with all my tests. Because immutant projects are required to be deployed, what is the best strategy to test the functionality?
zcaudate
  • 13,998
  • 7
  • 64
  • 124
1
2