Thanks Ilya

So i need a little guidance here if you don't mind i am just throwing
together a quick test as a precursor to a new project. 

I have a .net ignite service wrapper


----
 var cfg = new IgniteConfiguration()
                {
                    SpringConfigUrl = "/ignitecfg.xml",
                    DiscoverySpi = new TcpDiscoverySpi
                    {
                        IpFinder = new TcpDiscoveryStaticIpFinder
                        {
                            Endpoints = new[] { "127.0.0.1:47500..47509" }
                        },
                        SocketTimeout = TimeSpan.FromSeconds(0.3)
                    }

                };

                Ignition.Start(cfg);

-----

i am using the spring xml section to register the custom sql functions which
i have written in java and compiled to a jar file. I have found several
examples in java code for registering the custom function but nothing
showing how to do it in the xml config file. Also i am unsure where the
classpath will be given that this is all running with a .net wrapper. Any
guidance here will be super awesome.

thanks
Wayne



--
Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Reply via email to