Have anyone encountered this Error message, when trying to connect to ArangoDB from a React application [See first attached photo]? It seemed like, it could be an issue related to authentication... but I've tried using "_system" and my own databases, with booth "root" as username and with "root" as password as well as setting the password to "null". I've tried to create new users and tried to connect to the database... Nothing works... (what am I doing wrong? - I've gone through the documentation a billion times at this point). I will attach a photo of my code as well. Image of error, Image of my code
ArangoDB: sends "statusCode: 0"
84 Views Asked by morgietalkie At
1
There are 1 best solutions below
Related Questions in JAVASCRIPT
- Angular Show All When No Filter Is Supplied
- Why does a function show up as not defined
- I count the time the user takes to solve my quiz using Javascript but I want the same time displayed on another page
- Set "More" "Less" font size
- Using pagination on a table in AngularJS
- How to sort these using Javascript or Jquery Most effectively
- how to fill out the table with next values in array with one button
- State with different subviews
- Ajax jQuery firing multiple time display event for the same result
- Getting and passing MVC Model data to AngularJS controller
- Disable variable in eval
- javascript nested loops waiting for user input
- .hover() seems to overwrite .click()
- How to sort a multi-dimensional array by the second array in descending order?
- How do I find the fonts that are not loading in a CORS situation ( MoovWeb )?
Related Questions in REACTJS
- What is `_dereq_()` inside React?
- React TypeError: React.renderComponent is not a function
- React - saving a component in the ref callback
- React Rails component: manually triggering a re-render
- React, ES6 - getInitialState was defined on a plain JavaScript class
- How to get multiple selected options value in React JS?
- React.render replace container instead of inserting into
- reactjs datagrid use html
- props is not initialized in react component
- How to display xml data using Reactjs
- hooking up the data model in ReactJS - syntax
- ReactJS: How to use an immutable empty array or object
- How to use Sinon.js FakeXMLHttpRequest with superagent?
- React select onChange is not working
- ReactJS - Tutorial Comment System > Threaded commenting
Related Questions in ASYNC-AWAIT
- Task await fails
- Would async/await provide benefit over Task for intertwined statements?
- Windows Phone 8.1 - HttpClient SendRequestAsync will never return with a response
- Where do I call an async method from?
- How to run 2 StreamWriters in parallel
- Asynchronous MVVM commands
- Cancel task.delay without exception or use exception to control flow?
- Merge asyc method into one task
- Loading design time data from file into Blend in code in WinRT
- Save Task<string> type to String giving Catastrophic failure
- Multithreading and TPL do not speed up execution C#
- Wrapping events with TaskCompletionSource vs. BufferBlock<T>
- When is "too much" async and await? Should all methods return Task?
- How to 'await' a listener properly? Replacing a hacky spin-lock solution
- WPF calling asynchronous code with out locking on Task..WhenAny()
Related Questions in ARANGODB
- ArangoDb get latest document from all collections
- ArangoDB graph operations via REST API
- Opening Foxx API to local network
- How do I access inserted document's _id within a transaction in ArangoDB
- How to approximate execution time of ArangoDB count function
- How to read data from collection in an ArangoDB Foxx app?
- ArangoDB document database and also a graph database? How is it possible?
- Validating array items with joi in a Foxx app
- GRAPH_TRAVERSAL result enclosed in (Array of) Array of Array in Arangodb
- number of 'graphs' in a ArangoDB database
- In Python, how do I create an edge collection and document for an arangodb?
- Arangodb import via http api using node.js
- Is ArangoDB edge document right place to put additional key-value?
- How to call external function in background tasks in arangodb
- ArangoDB create Vertex REST API without knowing the vertex id's
Related Questions in ARANGOJS
- Strategy for arangodb data backup in docker container
- difference between ordinary collection and vertex collection
- I am getting connection reset error when trying execute two queries at the same time in arangodb?
- I am unable to connect Node to ArangoGraph
- How to write custom graph algorithms in arangodb, this must run internally?
- Arango DB Replication applier not working
- ArangoDB: sends "statusCode: 0"
- How to execute generic query in ArangoJs?
- How to get the data of a query in arangojs
- How to move the code to set ut DB and collection out from my file and just requre it?
- How to get filtered result by using Hash Index in ArangoDB?
- Example of complex similarity computations in ArangoDB?
- How to perform a bidirectional upsert in ArangoDB
- How to unwind data held in edges with a "common neighbors" style query?
- Using ArangoSearch LIKE to search for a string with space
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Here is a link to the list of error codes. Unfortunately, "error 0" is extremely unhelpful. However, I see two potential issues.
First is with your use of HTTPS - normally, you use would use HTTP to connect to port 8529. One caveat would be TLS (like
--server.endpoint "http+tcp://127.0.0.1:8529"with arangosh), but that's not the same as HTTPS.Second, your AQL query seems to be attempting to return an entire collection, which is not how AQL works. Try returning a static like
RETURN 'yes'or use the format: