Re: Is Apache Ignite can host in Winform(.Net)?

2017-08-01 Thread ptupitsyn
Hi Eric,

Please properly subscribe to the mailing list so that the community can
receive email notifications for your messages. To subscribe, send empty
email to user-subscr...@ignite.apache.org and follow simple instructions in
the reply.

You code works fine, can you re-check it?
I've copied it directly into an empty console application and it runs
without errors.

I have also seen your question on StackOverflow
(https://stackoverflow.com/questions/45411142/can-apache-ignite-net-be-used-in-winforms),
and in the screenshot that you attached
(https://i.stack.imgur.com/ZlgNU.png) there "config" variable is not used.
ConfigManager.GetCustomConfig() call is used instead. This is suspicious,
make sure you use correct configuration.

Thanks,
Pavel




--
View this message in context: 
http://apache-ignite-users.70518.x6.nabble.com/Is-Apache-Ignite-can-host-in-Winform-Net-tp15846p15866.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.


Re: Apache Ignite.Net Config File

2017-03-24 Thread ptupitsyn
Hi,

Please properly subscribe to the mailing list so that the community can
receive email notifications for your messages. To subscribe, send empty
email to user-subscr...@ignite.apache.org and follow simple instructions in
the reply.

> Apache.Ignite.Core.Binary.BinaryObjectException: Conflicting type IDs
Error message is misleading here; Ignite can't resolve your binary types
because you
have not loaded your assemblies with "-assembly" switch:

Apache.Ignite.exe -ConfigFileName=D:\PCC.xml
-Assembly=d:\...\IgnitePOC.Objects.dll



--
View this message in context: 
http://apache-ignite-users.70518.x6.nabble.com/Apache-Ignite-Net-Config-File-tp11327p11410.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.


Re: Integrate DB transactions with ApacheIgnite transactions ?

2017-02-06 Thread ptupitsyn
Hi David,

Please properly subscribe to the mailing list so that the community can
receive email notifications for your messages. To subscribe, send empty
email to user-subscr...@ignite.apache.org and follow simple instructions in
the reply.

> anything similar to functionality of TransactionScope

TransactionScope integration is implemented and will be released in upcoming
1.9.

For now you can try this in nightly builds:
https://cwiki.apache.org/confluence/display/IGNITE/Nightly+Builds

Pavel



--
View this message in context: 
http://apache-ignite-users.70518.x6.nabble.com/Integrate-DB-transactions-with-ApacheIgnite-transactions-tp10434p10453.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.


Re: rest-http can't get data if key is Integer or others

2016-11-10 Thread ptupitsyn
Hi Victor,

Please have a look at our contribution guidelines:
https://cwiki.apache.org/confluence/display/IGNITE/How+to+Contribute

* You are writing to user list, but this discussion should be on the dev
list (d...@ignite.apache.org)
* Pull request name should include JIRA ticket (IGNITE-4195)
* JIRA ticket should be moved to Patch Available status
* Make sure you follow the coding guidelines

Thank you for your interest in Ignite,

Pavel



--
View this message in context: 
http://apache-ignite-users.70518.x6.nabble.com/rest-http-can-t-get-data-if-key-is-Integer-or-others-tp8762p8883.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.


Re: How to implement SSL/TLS in Ignite using .NET code.

2016-06-23 Thread ptupitsyn
Hi,

Please properly subscribe to the user list (this way we will not have to
manually approve your emails). All you need to do is send an email to ì
user-subscr...@ignite.apache.orgî and follow simple instructions in the
reply.

---

You can configure SSL in Ignite.NET via Spring XML
(IgniteConfiguration.SpringConfigUrl property) like this:












Pavel.



--
View this message in context: 
http://apache-ignite-users.70518.x6.nabble.com/How-to-implement-SSL-TLS-in-Ignite-using-NET-code-tp5752p5832.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.


Re: Ignite support for .net and Java Cross Platform

2016-06-23 Thread ptupitsyn
Hi,

Please properly subscribe to the user list (this way we will not have to
manually approve your emails). All you need to do is send an email to
user-subscr...@ignite.apache.org and follow simple instructions in the
reply.

---

Ignition.allGrids returns a list of nodes started within current process.
There can be multiple nodes per machine and per process.
Nodes join in a cluster. Nodes within the same process are not necessary in
the same cluster (this depends on the discovery configuration, see [1]).

So instead of Ignition.allGrids, please use Ignite.cluster().nodes().

[1] https://apacheignite.readme.io/docs/clustering

Pavel.



--
View this message in context: 
http://apache-ignite-users.70518.x6.nabble.com/Ignite-support-for-net-and-Java-Cross-Platform-tp5797p5830.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.