Re: ignite.net config (applying spring and .net config)

2018-08-31 Thread wt
Its working - Thanks a million Ilya Regards Wayne -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: ignite.net config (applying spring and .net config)

2018-08-30 Thread wt
Super, that looks like the solution. Thank you so much for this. It's been so difficult navigating without complete documentation. Will give it a whirl. -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: ignite.net config (applying spring and .net config)

2018-08-30 Thread Ilya Kasnacheev
Hello! I think you should be using IgniteConfiguration cfg = Ignition.loadSpringBean(/* rel path, abs path or url */ "server.xml", /* bean name */"grid.cfg"); TcpDiscoverySpi spi = new TcpDiscoverySpi(); spi.setAuthenticator(new CustomSecurityProcessor()); cfg.setDiscoverySpi( spi);

Re: ignite.net config (applying spring and .net config)

2018-08-30 Thread wt
by the way i am doing all this in Java -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: ignite.net config (applying spring and .net config)

2018-08-30 Thread wt
I need to use the web console for rmdbs integration so i am using the config file that is generated and the project. What i am busy working on is writing a custom plugin that authenticates users. I need to setDiscoverySpi with the new authenticator but there doesn't seem to be a method in the

Re: ignite.net config (applying spring and .net config)

2018-08-30 Thread Ilya Kasnacheev
Hello! Can you please elaborate which settings you want to transfer to Java? Note that you do have to configure binary marshaller in Java to use it together with .Net: https://apacheignite-net.readme.io/docs/platform-interoperability Regards, -- Ilya Kasnacheev чт, 30 авг. 2018 г. в 11:05,

Re: ignite.net config (applying spring and .net config)

2018-08-30 Thread wt
hi Ilya Is there a way to do this in java? -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: ignite.net config (applying spring and .net config)

2018-08-21 Thread wt
Brilliant thanks a million Ilya. pts working with the plugin -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: ignite.net config (applying spring and .net config)

2018-08-21 Thread Ilya Kasnacheev
Hello! Here's the sample snippet: var cfg = new IgniteConfiguration() { SpringConfigUrl = "ignite-config.xml", BinaryConfiguration = new BinaryConfiguration

ignite.net config (applying spring and .net config)

2018-08-21 Thread wt
Hi I am trying to work out if i can start ignite using the spring config but then register a custom .net plugin through .net but i can't find any documentation on how this can be done apart from this section from the following documentation (see in bold for the specific reference to this)