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
-1
votes
1 answer

How connect only localhost to MySQL in Loopback 4?

I can't connect to MySQL database via 127.0.0.1. My provider says could connect via localhost. In mysql.datasource.config.json writed localhost, but loopback try connect to 127.0.0.1. How connect only to localhost? Version loopback: 4
-1
votes
1 answer

Microsoft Edge : Cross zone connection error

I have a script that uses WebSocket on loopback. Edge shows the following error when script try to connect to 127.0.0.1:4530. "SCRIPT12017: WebSocket Error: SECURITY_ERR, Cross zone connection not allowed" Solution : I have made the following…
Munavvar
  • 802
  • 1
  • 11
  • 33
-1
votes
1 answer

how to reset password of users whose email is not verified in loopback?

So I ran into this issue. I have a user who has emailedVerified as false. So, when I try to reset password for that user as follows it gives me user unverified error. Person.resetPassword({ email: email }, function (err) { if (err) return…
-1
votes
1 answer

How loopback to provide values for mandril template placeholder

From loopback How to provide values for placeholder for mandril template
Lux
  • 9
  • 3
-1
votes
1 answer

upload file greater than 10MB

I am trying to upload a file>10MB in a web project and i get this error maxFileSize exceeded, 10551296 bytes of zone data received (max is 10485760) so how can I upload a file greater than 10MB? help me please
san
  • 7
  • 3
-1
votes
2 answers

502 (Bad Gateway) error while listening to operation hook on Loopback 3 using MongoDB

Here's the situation: I have a client application (Angular 8/Ionic 4) that is calling a API (Loopback) with a PATCH. I listen to the "after save" hook of a certain model, which the datasource is PostgreSQL. When this hook gets triggered, I call a…
-1
votes
1 answer

loopback referencesMany relations with array not working

when i use relation referencesMAny with array in loopback. i have got error when i remove referencesMAny relation it's working. i am using loopback 3 { "error": { "statusCode": 500, "name": "Error", "message":…
imran ali
  • 383
  • 1
  • 13
-1
votes
1 answer

How can I get response from loopback in Angular7

I'm using angular7 with loopback. I can get the only data. can anyone tell me how to get the error and response status. I want know what is my response code on request time. output of data [ { "name": "karthik", "lastname": "Selvakumar", "course":…
Mokka soru
  • 503
  • 2
  • 4
  • 12
-1
votes
1 answer

I Don't know how to delete values using angular7

I'm using angular7 with loopback API. I want make delete code in tables. Can you suggest me. But I tried some code it's not working. I have attached my code here.. file.component.html
-1
votes
2 answers

loopback4 change the model datatype

I have a loopback4 model where am defining the property with type, required and it is connected with mysql database.Now for the description column i have defined as string and in the table it shows varchar(512). For the description i have more than…
Sam
  • 1,381
  • 4
  • 30
  • 70
-1
votes
1 answer

LoopBack 3 and SPA - where should I store the token?

I have some questions about the login process in LoopBack 3 and modern SPA The access token generated from users/login is JWT? How to properly (safely) store a token generated from users/login on the modern SPA side? Just save them in localStorage…
Adee
  • 357
  • 1
  • 3
  • 13
-1
votes
2 answers

Loopback is not defined

Web server listening at: http://localhost:3000 Browse your REST API at http://localhost:3000/explorer D:\PPL\Laundry\Front\api\node_modules\mysql\lib\protocol\Parser.js:80 throw err; // Rethrow non-MySQL errors ^ ReferenceError:…
-1
votes
1 answer

Angular6 + Loopback : "isAuth" What the best way to not write the same code in each component ?

I'm testing angular6 + loopback... At my step, I'm able to create my account and login, so I get back an user object with the informations of the logged user... In my templates, I have some items I want to show only for logged users. So I make a…
Mike5
  • 61
  • 11
-1
votes
1 answer

Why irrelevant network activity improves slow loopback performance?

I have a java application (based on dropwizard) that accepts HTTP requests, performs some in memory computations and returns HTTP responses. I have another java application (jmeter) which load tests the first one by sending requests with random…
Yaroslav
  • 4,543
  • 5
  • 26
  • 36
-1
votes
1 answer

Loopback - mapping /user/login to /login

For the purposes of a published API, I would like to direct the client to /api/login to login rather than /api/user/login The login process works perfectly when /api/user/login is called - My question: is it simple to map this functionality to a…
Don
  • 1
  • 3