Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 12 months ago.
Improve this question
Are vertex programs / graph computers supported by Gremlin.Net?
Or is it only supported on JVM Gremlin implementations?
You cannot write a VertexProgram in Gremlin.NET. Those must be written in Java. You could however execute that JVM-written VertexProgram with .NET if you submit a script with your traversal referencing that program. There is an example of that approach here with more details, but I'll paste some code here:
gremlin> result = graph.compute().program(PageRankVertexProgram.build().create()).submit().get()
==>result[tinkergraph[vertices:6 edges:0],memory[size:0]]
gremlin> g = traversal().withEmbedded(result.graph())
==>graphtraversalsource[tinkergraph[vertices:6 edges:0], standard]
gremlin> g.V().elementMap()
==>[id:1,label:person,gremlin.pageRankVertexProgram.pageRank:0.11375510357865541,name:marko,age:29]
==>[id:2,label:person,gremlin.pageRankVertexProgram.pageRank:0.14598540152719106,name:vadas,age:27]
==>[id:3,label:software,gremlin.pageRankVertexProgram.pageRank:0.3047200907912249,name:lop,lang:java]
==>[id:4,label:person,gremlin.pageRankVertexProgram.pageRank:0.14598540152719106,name:josh,age:32]
==>[id:5,label:software,gremlin.pageRankVertexProgram.pageRank:0.17579889899708231,name:ripple,lang:java]
==>[id:6,label:person,gremlin.pageRankVertexProgram.pageRank:0.11375510357865541,name:peter,age:35]
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 6 years ago.
Improve this question
I have simple program to install packages on computer.
User select package in GUI by pressing button and then "Installer" run installing thread. When installation is finished "View" show succes or error text.
How can I send information directly between "View" and "Installer?
Or I always have to use all intermediary objects like:
View>Controller>ThisComputer>Instaler
Instaler>ThisComputer>Controller>View
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 6 years ago.
Improve this question
I am looking for approach and not any code here - What is the best method to implement ajax like content fetch (from DB) in WinForms ?
AJAX is a web term. Retrieve your data via an API.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I have shard hosting like GoDaddy with Windows. I am writing in ASP.NET c#. Can I use it from c# on the shared hosting?
If you can get them to install Imagemagick, then yes.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
I have to create a module using c# to consume Zimbra Webservice (soap protocol)
I wonder if anybody has already done this kind of project (talking about the Zimbra part)?
Regards,
you can find it here:
http://zimbra.svn.sourceforge.net/viewvc/zimbra/trunk/ZimbraCSharpClient/
and how to use it ... here :
http://www.zimbra.com/forums/developers/14017-zimbra-csharp-client-library.html