Questions tagged [loopback]

In telecommunications, loopback, or a loop, is a hardware or software method which feeds a received signal or data back to the sender.

In telecommunications, loopback, or a loop, is a hardware or software method which feeds a received signal or data back to the sender. It is used as an aid in debugging physical connection problems. As a test, many data communication devices can be configured to send specific patterns (such as all ones) on an interface and can detect the reception of this signal on the same port. This is called a loopback test and can be performed within a modem or transceiver by connecting its output to its own input. A circuit between two points in different locations may be tested by applying a test signal on the circuit in one location, and having the network device at the other location send a signal back through the circuit. If this device receives its own signal back, this proves that the circuit is functioning.

1273 questions
4
votes
2 answers

how to use storage components in loopback 4.0?

i am using storage components in loopback 3.0 to accessing the cloud storage's. but i need how do implement in loopback 4.0.The below link to make it sample in 3.0. https://github.com/strongloop/loopback-example-storage
Santhosh
  • 140
  • 2
  • 13
4
votes
3 answers

Trying to post data with Request NPM from NodeJS to localhost (Loopback Swagger API)

When I try to post an instance to loopback from within nodejs using this code I don't get any errors but I don't get any data posted either? //NPM Package (request) var request = require('request'); // Address of Loopback API on the same…
mitchelangelo
  • 851
  • 4
  • 16
  • 42
4
votes
1 answer

Loopback 4 test configurations are not picked up

I followed Loopback4 datasources documentation and placed sample.datasource.json and sample.test.datasource.json files under src/datasources. Whenever I run npm run test my repository is injected with original datasource but not the test…
Raj B6
  • 41
  • 3
4
votes
2 answers

Pinging personal IP versus pinging loopback

What's the conceptual difference? Yes I realize they're both supposed to produce similar results but I thought the idea with the loopback was that it doesn't actually reach the transmission step of the stack. If that's true then why does pinging…
Jon Phenow
  • 3,974
  • 5
  • 26
  • 30
4
votes
2 answers

How to automate the build from the following configuration using gulp

Backdrop I have a loopback and Angular app, Loopback gives use the server models and api's and using its sdk we are able to get client services. Now i am planning to automate the following build process using gulp. If any changes in the model is…
INFOSYS
  • 1,465
  • 9
  • 23
  • 50
4
votes
2 answers

Loopback timeout(no response from server) when make a time consume request

I have a request which processes thousands of data. So sometimes It takes more then 5 minutes to complete. But unfortunately loopback returns timeout(no response from server) before process is completed. In nodejs request. You can remove request…
Ankur Akvaliya
  • 2,989
  • 4
  • 28
  • 53
4
votes
1 answer

Filter Remote Method in loopback

I have created a remote method in loopback XXX.remoteMethod('getAllGlobalFilters', { 'description': 'List of all GlobalFilters', 'http': { 'path': '/getAllGlobalFilters', 'verb': 'get' }, 'accepts': [ {'arg':…
INFOSYS
  • 1,465
  • 9
  • 23
  • 50
4
votes
2 answers

Loopback Error: connect ECONNREFUSED 127.0.0.1:3306 (MAMP)

So I am working with Loopback (Node.js framework) for the first time and I tried to set up a Mysql model. I've installed Loopback globally, and also installed the mysql connector with npm. After that, I tried to add a datasource with the mysql…
Giesburts
  • 6,879
  • 15
  • 48
  • 85
4
votes
3 answers

Nodejs Https get Error: getaddrinfo ENOTFOUND

I'm trying to get a filtered record from loopback, but I don't understand why nodejs gives error on fallowing commands: const https = require('https'); var uid = '02644da038b37d7ba70b7ee1a92ba1d9'; var URL =…
RSA
  • 1,417
  • 4
  • 22
  • 37
4
votes
1 answer

How can I use aws cognito with Loopback

I want to use Aws Cognito JavaScript SDK for sigining up User Pool through Loopback Rest Points. User can also enter the Otp for confirming through a loopback model
Ayush
  • 41
  • 3
4
votes
1 answer

How to override the default password hashing method and validation method of loopback?

I am very new to Loopback and i want to override the default hashing of password method of loopback to the one that is currently used in my backend so that i can sync this application with that database . i read this link…
INFOSYS
  • 1,465
  • 9
  • 23
  • 50
4
votes
2 answers

Filter for array type of field in loopback

I am using loopback v3 with mongodb database and implementing filter for array type of field. inq operator is not working. I have an array of object like below [ { "name":"name1", "title": "title1", "category": ["a", "b","c"] }, …
Shyam Kumar
  • 586
  • 3
  • 17
4
votes
2 answers

Loopback where filter on an array type field

I'm working on a loopback project, I have a model called Depot which has a field likersList, that fiels is an array of string (user id) I want to find all Depots which has not a specific userId in it's likersList , I tried that filter, but it…
4
votes
1 answer

Nested Queries not working in iOS sdk, but works fine in loopback explorer

Currently I'm working on a project that gets values using iOS loopback sdk. Everything works by the book if its is one query. But when nested query, like below, occurs it shows error Error Domain=AFNetworkingErrorDomain Code=-1011 "Expected status…
Vishnu Prasannan
  • 231
  • 1
  • 11
4
votes
0 answers

Bundle loopback with webpack

Is there a way to bundle the loopback server with Webpack? I tried but it does not work at all. My guess is that it is something related with the way loopback boots. And also about all .json and .js configuration files (e.g. config.json) that are…
vital
  • 1,308
  • 3
  • 13
  • 28