question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

I trying to use neo4j from .Net UWP using this:

var client = new Neo4jClient.GraphClient(new Uri("https://hobby-alhfhhnihcnjgbkefomolcal.dbs.graphenedb.com:24786"), "label-tony", "mypassword");
client.Connect();

But it is throwing this Exception:

System.InvalidOperationException
  HResult=0x80131509
  Message=While trying to map some JSON into an object of type Neo4jClient.ApiModels.RootApiResponse, we failed to find an expected property (transaction) in the JSON at path data.

The JSON block for this token was:

https://hobby-alhfhhnihcnjgbkefomolcal.dbs.graphenedb.com:24786/db/data/
  Source=Neo4jClient
  StackTrace:
   at Neo4jClient.GraphClient.Connect(NeoServerConfiguration configuration)
   at UWPApp3.Estoque.<Button_Click>d__2.MoveNext() in C:\temp\UWPApp3\UWPApp3\Estoque.xaml.cs:line 51

Inner Exception 1:
InvalidOperationException: Cannot access child value on Newtonsoft.Json.Linq.JValue.

Issue Analytics

  • State:closed
  • Created 5 years ago
  • Comments:12 (6 by maintainers)

github_iconTop GitHub Comments

2reactions
cskardoncommented, Apr 5, 2018

Thanks @juanjoandres ! @TonyHenrique Told you they were good 😃 All sorted!

2reactions
cskardoncommented, Apr 5, 2018

Hey @juanjoandres the bolt one needs to use the bolt protocol:

From: var client = new BoltGraphClient(new Uri("https://hobby-geefdaeefcom.dbs.graphenedb.com:24780/db/data"), "v303", "GtGq5rldxu"); to var client = new BoltGraphClient("bolt://hobby-geefdaeefcom.dbs.graphenedb.com:24780/db/data", "v303", "GtGq5rldxu");

Read more comments on GitHub >

github_iconTop Results From Across the Web

Resolve submission errors - Windows apps
If you are submitting a UWP app, you may see an error during preprocessing if your package file is not a .msixupload or...
Read more >
error when updating UWP apps.
Error code 0x8007000a usually indicates a problem with the operating system installation, but it can also affect the installation of UWP apps.
Read more >
UWP: Package is not getting generated with error
I packaged a UWP app with the Packaging project. But the result shows that my app is packaged successfully. Based on your description,...
Read more >
UWP Error Failed to sign - Developer Community
(Project Publish Create App Package) VS 2019 16.4.5. All my app same : Error Failed to sign 'C:\Users\Fernand\source\repos\UWP Microsoft ...
Read more >
Question - UWP errors in visual studio
When I build in visual studio, I get the following errors. Any ideas?... ... Question UWP errors in visual studio.
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found