Error on UWP
See original GitHub issueI 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:
- Created 5 years ago
- Comments:12 (6 by maintainers)
Top 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 >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Thanks @juanjoandres ! @TonyHenrique Told you they were good 😃 All sorted!
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");
tovar client = new BoltGraphClient("bolt://hobby-geefdaeefcom.dbs.graphenedb.com:24780/db/data", "v303", "GtGq5rldxu");