Java Client for Event Store?

Okay thanks. I will look at it.

I found a C#-program that works fine with Event Store:

My source code, curl samples and presentation for my @GetEventStore talk at @DareDevsUK are now on github over at https://github.com/westleyl/DareDevsApril2014

If you are interested in self contained executable .jar file, I can provide one.

This is using the native C# client, however it’s dependencies are internalised. Sounds like Yaroslav can do the same for the Java one, but you might want to look into package managers.

Okay, yes that would be really great. Thanks a lot!

I just want to have a simple Java-program that can read from and write to Event Store.

In that case the best solution for you would be to have SBT installed.
And then in shell write:

sbt run

Multiple main classes detected, select one to run:

[1] eventstore.examples.EsConnectionExample

[2] eventstore.examples.CountAll

[3] eventstore.examples.ContinueTransactionExample

[4] eventstore.j.examples.WriteEventExample

[5] eventstore.examples.ReadEventExample

[6] eventstore.examples.StartTransactionExample

[7] eventstore.j.examples.ReadEventExample

[8] eventstore.j.examples.Compatibility

[9] eventstore.examples.WriteEventExample

[10] eventstore.examples.CountStream

[11] eventstore.j.examples.SubscribeToAllExample

[12] eventstore.examples.MessagesPerSecond

Enter number:

**On Sunday, 27 April 2014 16:19:22 UTC+3, mffsupport90 wrote:

Okay thanks a lot!