chyz 1.0.12-rc.24 → 1.0.12-rc.28

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. package/BaseChyz.ts +46 -9
  2. package/Examples/Controllers/KeyCloakController.ts +102 -0
  3. package/Examples/Models/KeycloakUser.ts +66 -0
  4. package/Examples/index.ts +48 -8
  5. package/Examples/keycloak.json +7 -0
  6. package/Examples/log/app.log +5423 -0
  7. package/Examples/log/errors.log +1139 -0
  8. package/Examples/package.json +46 -45
  9. package/Examples/yarn.lock +354 -7
  10. package/base/BaseError.ts +2 -2
  11. package/base/DataErrorDbException.ts +1 -1
  12. package/base/ForbiddenHttpException.ts +1 -1
  13. package/base/InvalidConfigException.ts +1 -1
  14. package/base/Model.ts +13 -2
  15. package/base/NotFoundHttpException.ts +1 -1
  16. package/base/UnauthorizedHttpException.ts +2 -1
  17. package/base/ValidationHttpException.ts +1 -1
  18. package/base/index.ts +1 -1
  19. package/dist/BaseChyz.js +32 -3
  20. package/dist/BaseChyz.js.map +1 -1
  21. package/dist/base/BaseError.js +2 -2
  22. package/dist/base/BaseError.js.map +1 -1
  23. package/dist/base/DataErrorDbException.js +1 -1
  24. package/dist/base/DataErrorDbException.js.map +1 -1
  25. package/dist/base/ForbiddenHttpException.js +1 -1
  26. package/dist/base/ForbiddenHttpException.js.map +1 -1
  27. package/dist/base/InvalidConfigException.js +1 -1
  28. package/dist/base/InvalidConfigException.js.map +1 -1
  29. package/dist/base/Model.js +13 -0
  30. package/dist/base/Model.js.map +1 -1
  31. package/dist/base/NotFoundHttpException.js +1 -1
  32. package/dist/base/NotFoundHttpException.js.map +1 -1
  33. package/dist/base/UnauthorizedHttpException.js +1 -1
  34. package/dist/base/UnauthorizedHttpException.js.map +1 -1
  35. package/dist/base/ValidationHttpException.js +1 -1
  36. package/dist/base/ValidationHttpException.js.map +1 -1
  37. package/dist/base/index.js.map +1 -1
  38. package/dist/filters/auth/JwtHttpBearerAuth.js.map +1 -1
  39. package/dist/filters/auth/KeyCloakHttpBearerAuth.js +117 -0
  40. package/dist/filters/auth/KeyCloakHttpBearerAuth.js.map +1 -0
  41. package/dist/index.js +40 -8
  42. package/dist/index.js.map +1 -1
  43. package/dist/web/User.js +8 -3
  44. package/dist/web/User.js.map +1 -1
  45. package/filters/auth/JwtHttpBearerAuth.ts +1 -3
  46. package/filters/auth/KeyCloakHttpBearerAuth.ts +115 -0
  47. package/index.ts +22 -6
  48. package/package.json +2 -1
  49. package/web/User.ts +9 -5
@@ -1554,3 +1554,1142 @@
1554
1554
  at Generator.next (<anonymous>)
1555
1555
  at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts:5:58)
1556
1556
  at processTicksAndRejections (internal/process/task_queues.js:93:5)
1557
+ [2021-11-23T16.27.39.625] [ERROR] BaseChyz [180] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
1558
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
1559
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
1560
+ at JwtHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
1561
+ at JwtHttpBearerAuth.fail (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\JwtHttpBearerAuth.ts:79:14)
1562
+ at JwtHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\JwtHttpBearerAuth.ts:67:36)
1563
+ at Generator.next (<anonymous>)
1564
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\JwtHttpBearerAuth.ts:5:58)
1565
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
1566
+ statusCode: 401
1567
+ }
1568
+ [2021-11-23T16.29.21.685] [ERROR] BaseChyz [180] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
1569
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
1570
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
1571
+ at JwtHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
1572
+ at JwtHttpBearerAuth.fail (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\JwtHttpBearerAuth.ts:79:14)
1573
+ at JwtHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\JwtHttpBearerAuth.ts:67:36)
1574
+ at Generator.next (<anonymous>)
1575
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\JwtHttpBearerAuth.ts:5:58)
1576
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
1577
+ statusCode: 401
1578
+ }
1579
+ [2021-11-23T16.30.07.150] [ERROR] BaseChyz [180] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
1580
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
1581
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
1582
+ at JwtHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
1583
+ at JwtHttpBearerAuth.fail (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\JwtHttpBearerAuth.ts:79:14)
1584
+ at JwtHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\JwtHttpBearerAuth.ts:67:36)
1585
+ at Generator.next (<anonymous>)
1586
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\JwtHttpBearerAuth.ts:5:58)
1587
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
1588
+ statusCode: 401
1589
+ }
1590
+ [2021-11-24T09.15.23.476] [ERROR] BaseChyz [180] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
1591
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
1592
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
1593
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
1594
+ at KeyCloakHttpBearerAuth.fail (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:81:14)
1595
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:43:36)
1596
+ at Generator.next (<anonymous>)
1597
+ at C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:8:71
1598
+ at new Promise (<anonymous>)
1599
+ at __awaiter (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:4:12)
1600
+ at KeyCloakHttpBearerAuth.authenticate (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:35:16) {
1601
+ statusCode: 401
1602
+ }
1603
+ [2021-11-24T09.22.38.613] [ERROR] BaseChyz [180] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
1604
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
1605
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
1606
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
1607
+ at KeyCloakHttpBearerAuth.fail (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:106:14)
1608
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:52:36)
1609
+ at Generator.next (<anonymous>)
1610
+ at C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:8:71
1611
+ at new Promise (<anonymous>)
1612
+ at __awaiter (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:4:12)
1613
+ at KeyCloakHttpBearerAuth.authenticate (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:43:16) {
1614
+ statusCode: 401
1615
+ }
1616
+ [2021-11-24T09.24.35.431] [ERROR] BaseChyz [180] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
1617
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
1618
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
1619
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
1620
+ at KeyCloakHttpBearerAuth.fail (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:106:14)
1621
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:52:36)
1622
+ at Generator.next (<anonymous>)
1623
+ at C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:8:71
1624
+ at new Promise (<anonymous>)
1625
+ at __awaiter (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:4:12)
1626
+ at KeyCloakHttpBearerAuth.authenticate (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:43:16) {
1627
+ statusCode: 401
1628
+ }
1629
+ [2021-11-24T09.24.36.364] [ERROR] BaseChyz [180] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
1630
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
1631
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
1632
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
1633
+ at KeyCloakHttpBearerAuth.fail (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:106:14)
1634
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:52:36)
1635
+ at Generator.next (<anonymous>)
1636
+ at C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:8:71
1637
+ at new Promise (<anonymous>)
1638
+ at __awaiter (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:4:12)
1639
+ at KeyCloakHttpBearerAuth.authenticate (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:43:16) {
1640
+ statusCode: 401
1641
+ }
1642
+ [2021-11-24T09.24.37.044] [ERROR] BaseChyz [180] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
1643
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
1644
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
1645
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
1646
+ at KeyCloakHttpBearerAuth.fail (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:106:14)
1647
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:52:36)
1648
+ at Generator.next (<anonymous>)
1649
+ at C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:8:71
1650
+ at new Promise (<anonymous>)
1651
+ at __awaiter (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:4:12)
1652
+ at KeyCloakHttpBearerAuth.authenticate (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:43:16) {
1653
+ statusCode: 401
1654
+ }
1655
+ [2021-11-24T09.24.37.682] [ERROR] BaseChyz [180] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
1656
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
1657
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
1658
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
1659
+ at KeyCloakHttpBearerAuth.fail (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:106:14)
1660
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:52:36)
1661
+ at Generator.next (<anonymous>)
1662
+ at C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:8:71
1663
+ at new Promise (<anonymous>)
1664
+ at __awaiter (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:4:12)
1665
+ at KeyCloakHttpBearerAuth.authenticate (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:43:16) {
1666
+ statusCode: 401
1667
+ }
1668
+ [2021-11-24T09.25.52.032] [ERROR] BaseChyz [180] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
1669
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
1670
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
1671
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
1672
+ at KeyCloakHttpBearerAuth.fail (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:106:14)
1673
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:52:36)
1674
+ at Generator.next (<anonymous>)
1675
+ at C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:8:71
1676
+ at new Promise (<anonymous>)
1677
+ at __awaiter (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:4:12)
1678
+ at KeyCloakHttpBearerAuth.authenticate (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:43:16) {
1679
+ statusCode: 401
1680
+ }
1681
+ [2021-11-24T09.26.29.576] [ERROR] BaseChyz [180] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
1682
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
1683
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
1684
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
1685
+ at KeyCloakHttpBearerAuth.fail (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:106:14)
1686
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:52:36)
1687
+ at Generator.next (<anonymous>)
1688
+ at C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:8:71
1689
+ at new Promise (<anonymous>)
1690
+ at __awaiter (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:4:12)
1691
+ at KeyCloakHttpBearerAuth.authenticate (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:43:16) {
1692
+ statusCode: 401
1693
+ }
1694
+ [2021-11-24T09.27.03.873] [ERROR] BaseChyz [180] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
1695
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
1696
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
1697
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
1698
+ at KeyCloakHttpBearerAuth.fail (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:107:14)
1699
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:52:36)
1700
+ at Generator.next (<anonymous>)
1701
+ at C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:8:71
1702
+ at new Promise (<anonymous>)
1703
+ at __awaiter (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:4:12)
1704
+ at KeyCloakHttpBearerAuth.authenticate (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:43:16) {
1705
+ statusCode: 401
1706
+ }
1707
+ [2021-11-24T09.27.07.762] [ERROR] BaseChyz [180] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
1708
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
1709
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
1710
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
1711
+ at KeyCloakHttpBearerAuth.fail (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:107:14)
1712
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:52:36)
1713
+ at Generator.next (<anonymous>)
1714
+ at C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:8:71
1715
+ at new Promise (<anonymous>)
1716
+ at __awaiter (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:4:12)
1717
+ at KeyCloakHttpBearerAuth.authenticate (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:43:16) {
1718
+ statusCode: 401
1719
+ }
1720
+ [2021-11-24T09.27.08.971] [ERROR] BaseChyz [180] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
1721
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
1722
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
1723
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
1724
+ at KeyCloakHttpBearerAuth.fail (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:107:14)
1725
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:52:36)
1726
+ at Generator.next (<anonymous>)
1727
+ at C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:8:71
1728
+ at new Promise (<anonymous>)
1729
+ at __awaiter (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:4:12)
1730
+ at KeyCloakHttpBearerAuth.authenticate (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:43:16) {
1731
+ statusCode: 401
1732
+ }
1733
+ [2021-11-24T09.27.33.873] [ERROR] BaseChyz [180] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
1734
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
1735
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
1736
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
1737
+ at KeyCloakHttpBearerAuth.fail (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:107:14)
1738
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:52:36)
1739
+ at Generator.next (<anonymous>)
1740
+ at C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:8:71
1741
+ at new Promise (<anonymous>)
1742
+ at __awaiter (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:4:12)
1743
+ at KeyCloakHttpBearerAuth.authenticate (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:43:16) {
1744
+ statusCode: 401
1745
+ }
1746
+ [2021-11-24T09.27.49.379] [ERROR] BaseChyz [180] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
1747
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
1748
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
1749
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
1750
+ at KeyCloakHttpBearerAuth.fail (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:107:14)
1751
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:52:36)
1752
+ at Generator.next (<anonymous>)
1753
+ at C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:8:71
1754
+ at new Promise (<anonymous>)
1755
+ at __awaiter (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:4:12)
1756
+ at KeyCloakHttpBearerAuth.authenticate (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:43:16) {
1757
+ statusCode: 401
1758
+ }
1759
+ [2021-11-24T09.29.43.773] [ERROR] BaseChyz [180] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
1760
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
1761
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
1762
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
1763
+ at KeyCloakHttpBearerAuth.fail (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:109:14)
1764
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:52:36)
1765
+ at Generator.next (<anonymous>)
1766
+ at C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:8:71
1767
+ at new Promise (<anonymous>)
1768
+ at __awaiter (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:4:12)
1769
+ at KeyCloakHttpBearerAuth.authenticate (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:43:16) {
1770
+ statusCode: 401
1771
+ }
1772
+ [2021-11-24T09.30.12.225] [ERROR] BaseChyz [180] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
1773
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
1774
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
1775
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
1776
+ at KeyCloakHttpBearerAuth.fail (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:108:14)
1777
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:52:36)
1778
+ at Generator.next (<anonymous>)
1779
+ at C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:8:71
1780
+ at new Promise (<anonymous>)
1781
+ at __awaiter (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:4:12)
1782
+ at KeyCloakHttpBearerAuth.authenticate (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:43:16) {
1783
+ statusCode: 401
1784
+ }
1785
+ [2021-11-24T09.30.41.078] [ERROR] BaseChyz [180] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
1786
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
1787
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
1788
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
1789
+ at KeyCloakHttpBearerAuth.fail (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:108:14)
1790
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:52:36)
1791
+ at Generator.next (<anonymous>)
1792
+ at C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:8:71
1793
+ at new Promise (<anonymous>)
1794
+ at __awaiter (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:4:12)
1795
+ at KeyCloakHttpBearerAuth.authenticate (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:43:16) {
1796
+ statusCode: 401
1797
+ }
1798
+ [2021-11-24T09.34.16.593] [ERROR] BaseChyz [180] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
1799
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
1800
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
1801
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
1802
+ at KeyCloakHttpBearerAuth.fail (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:109:14)
1803
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:69:55)
1804
+ at Generator.next (<anonymous>)
1805
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:5:58)
1806
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
1807
+ statusCode: 401
1808
+ }
1809
+ [2021-11-24T09.34.40.888] [ERROR] BaseChyz [180] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
1810
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
1811
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
1812
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
1813
+ at KeyCloakHttpBearerAuth.fail (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:109:14)
1814
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:69:55)
1815
+ at Generator.next (<anonymous>)
1816
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:5:58)
1817
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
1818
+ statusCode: 401
1819
+ }
1820
+ [2021-11-24T09.40.09.545] [ERROR] BaseChyz [180] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - TypeError: Cannot read property 'kauth' of undefined
1821
+ at protect (C:\PROJELER\github\Chy-Nodejs-Framework\Examples\node_modules\keycloak-connect\middleware\protect.js:52:17)
1822
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:45:56)
1823
+ at Generator.next (<anonymous>)
1824
+ at C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:8:71
1825
+ at new Promise (<anonymous>)
1826
+ at __awaiter (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:4:12)
1827
+ at KeyCloakHttpBearerAuth.KeyCloakCheck (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:38:16)
1828
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:68:35)
1829
+ at Generator.next (<anonymous>)
1830
+ at C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:8:71
1831
+ [2021-11-24T09.48.40.015] [ERROR] BaseChyz [180] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - TypeError: Cannot read property 'kauth' of undefined
1832
+ at protect (C:\PROJELER\github\Chy-Nodejs-Framework\Examples\node_modules\keycloak-connect\middleware\protect.js:52:17)
1833
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:45:56)
1834
+ at Generator.next (<anonymous>)
1835
+ at C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:8:71
1836
+ at new Promise (<anonymous>)
1837
+ at __awaiter (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:4:12)
1838
+ at KeyCloakHttpBearerAuth.KeyCloakCheck (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:38:16)
1839
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:68:35)
1840
+ at Generator.next (<anonymous>)
1841
+ at C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:8:71
1842
+ [2021-11-24T09.56.26.779] [ERROR] BaseChyz [184] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
1843
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
1844
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
1845
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
1846
+ at KeyCloakHttpBearerAuth.fail (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:112:14)
1847
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:72:55)
1848
+ at Generator.next (<anonymous>)
1849
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:5:58)
1850
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
1851
+ statusCode: 401
1852
+ }
1853
+ [2021-11-24T09.57.27.293] [ERROR] BaseChyz [184] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
1854
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
1855
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
1856
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
1857
+ at KeyCloakHttpBearerAuth.fail (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:112:14)
1858
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:72:55)
1859
+ at Generator.next (<anonymous>)
1860
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:5:58)
1861
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
1862
+ statusCode: 401
1863
+ }
1864
+ [2021-11-24T09.58.57.106] [ERROR] BaseChyz [184] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
1865
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
1866
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
1867
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
1868
+ at KeyCloakHttpBearerAuth.fail (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:112:14)
1869
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:72:55)
1870
+ at Generator.next (<anonymous>)
1871
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:5:58)
1872
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
1873
+ statusCode: 401
1874
+ }
1875
+ [2021-11-24T10.00.09.168] [ERROR] BaseChyz [184] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
1876
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
1877
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
1878
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
1879
+ at KeyCloakHttpBearerAuth.fail (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:112:14)
1880
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:72:55)
1881
+ at Generator.next (<anonymous>)
1882
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:5:58)
1883
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
1884
+ statusCode: 401
1885
+ }
1886
+ [2021-11-24T10.00.12.257] [ERROR] BaseChyz [184] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
1887
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
1888
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
1889
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
1890
+ at KeyCloakHttpBearerAuth.fail (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:112:14)
1891
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:72:55)
1892
+ at Generator.next (<anonymous>)
1893
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:5:58)
1894
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
1895
+ statusCode: 401
1896
+ }
1897
+ [2021-11-24T10.00.27.683] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
1898
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
1899
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
1900
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
1901
+ at KeyCloakHttpBearerAuth.fail (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:112:14)
1902
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:72:55)
1903
+ at Generator.next (<anonymous>)
1904
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:5:58)
1905
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
1906
+ statusCode: 401
1907
+ }
1908
+ [2021-11-24T10.01.01.792] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
1909
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
1910
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
1911
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
1912
+ at KeyCloakHttpBearerAuth.fail (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:112:14)
1913
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:72:55)
1914
+ at Generator.next (<anonymous>)
1915
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:5:58)
1916
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
1917
+ statusCode: 401
1918
+ }
1919
+ [2021-11-24T10.02.25.019] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - TypeError: Cannot read property 'kauth' of undefined
1920
+ at protect (C:\PROJELER\github\Chy-Nodejs-Framework\Examples\node_modules\keycloak-connect\middleware\protect.js:52:17)
1921
+ at KeyCloakHttpBearerAuth.KeyCloakCheck (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:45:51)
1922
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:68:35)
1923
+ at Generator.next (<anonymous>)
1924
+ at C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:8:71
1925
+ at new Promise (<anonymous>)
1926
+ at __awaiter (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:4:12)
1927
+ at KeyCloakHttpBearerAuth.authenticate (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:43:16)
1928
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:35:35)
1929
+ at Generator.next (<anonymous>)
1930
+ [2021-11-24T10.03.46.722] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - TypeError: Cannot read property 'kauth' of undefined
1931
+ at protect (C:\PROJELER\github\Chy-Nodejs-Framework\Examples\node_modules\keycloak-connect\middleware\protect.js:52:17)
1932
+ at KeyCloakHttpBearerAuth.KeyCloakCheck (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:45:51)
1933
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:68:35)
1934
+ at Generator.next (<anonymous>)
1935
+ at C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:8:71
1936
+ at new Promise (<anonymous>)
1937
+ at __awaiter (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:4:12)
1938
+ at KeyCloakHttpBearerAuth.authenticate (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:43:16)
1939
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:35:35)
1940
+ at Generator.next (<anonymous>)
1941
+ [2021-11-24T10.06.22.387] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - TypeError: Cannot read property 'kauth' of undefined
1942
+ at protect (C:\PROJELER\github\Chy-Nodejs-Framework\Examples\node_modules\keycloak-connect\middleware\protect.js:52:17)
1943
+ at KeyCloakHttpBearerAuth.KeyCloakCheck (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:45:51)
1944
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:68:35)
1945
+ at Generator.next (<anonymous>)
1946
+ at C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:8:71
1947
+ at new Promise (<anonymous>)
1948
+ at __awaiter (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:4:12)
1949
+ at KeyCloakHttpBearerAuth.authenticate (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:43:16)
1950
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:35:35)
1951
+ at Generator.next (<anonymous>)
1952
+ [2021-11-24T10.14.46.840] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - TypeError: Cannot read property 'kauth' of undefined
1953
+ at protect (C:\PROJELER\github\Chy-Nodejs-Framework\Examples\node_modules\keycloak-connect\middleware\protect.js:52:17)
1954
+ at KeyCloakHttpBearerAuth.KeyCloakCheck (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:43:51)
1955
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:66:35)
1956
+ at Generator.next (<anonymous>)
1957
+ at C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:8:71
1958
+ at new Promise (<anonymous>)
1959
+ at __awaiter (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:4:12)
1960
+ at KeyCloakHttpBearerAuth.authenticate (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:43:16)
1961
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:35:35)
1962
+ at Generator.next (<anonymous>)
1963
+ [2021-11-24T10.35.14.706] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client
1964
+ at ServerResponse.setHeader (_http_outgoing.js:558:11)
1965
+ at ServerResponse.header (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\express\lib\response.js:771:10)
1966
+ at KeyCloakHttpBearerAuth.challenge (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\HttpBearerAuth.ts:29:18)
1967
+ at KeyCloakHttpBearerAuth.fail (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:109:14)
1968
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:70:57)
1969
+ at Generator.next (<anonymous>)
1970
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:5:58)
1971
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
1972
+ code: 'ERR_HTTP_HEADERS_SENT'
1973
+ }
1974
+ [2021-11-24T10.38.01.456] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client
1975
+ at ServerResponse.setHeader (_http_outgoing.js:558:11)
1976
+ at ServerResponse.header (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\express\lib\response.js:771:10)
1977
+ at KeyCloakHttpBearerAuth.challenge (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\HttpBearerAuth.ts:29:18)
1978
+ at KeyCloakHttpBearerAuth.fail (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:109:14)
1979
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:70:57)
1980
+ at Generator.next (<anonymous>)
1981
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:5:58)
1982
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
1983
+ code: 'ERR_HTTP_HEADERS_SENT'
1984
+ }
1985
+ [2021-11-24T10.38.52.352] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client
1986
+ at ServerResponse.setHeader (_http_outgoing.js:558:11)
1987
+ at ServerResponse.header (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\express\lib\response.js:771:10)
1988
+ at KeyCloakHttpBearerAuth.challenge (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\HttpBearerAuth.ts:29:18)
1989
+ at KeyCloakHttpBearerAuth.fail (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:109:14)
1990
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:70:57)
1991
+ at Generator.next (<anonymous>)
1992
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:5:58)
1993
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
1994
+ code: 'ERR_HTTP_HEADERS_SENT'
1995
+ }
1996
+ [2021-11-24T10.41.40.272] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client
1997
+ at ServerResponse.setHeader (_http_outgoing.js:558:11)
1998
+ at ServerResponse.header (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\express\lib\response.js:771:10)
1999
+ at KeyCloakHttpBearerAuth.challenge (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\HttpBearerAuth.ts:29:18)
2000
+ at KeyCloakHttpBearerAuth.fail (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:109:14)
2001
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:70:57)
2002
+ at Generator.next (<anonymous>)
2003
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:5:58)
2004
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2005
+ code: 'ERR_HTTP_HEADERS_SENT'
2006
+ }
2007
+ [2021-11-24T10.42.57.213] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client
2008
+ at ServerResponse.setHeader (_http_outgoing.js:558:11)
2009
+ at ServerResponse.header (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\express\lib\response.js:771:10)
2010
+ at KeyCloakHttpBearerAuth.challenge (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\HttpBearerAuth.ts:29:18)
2011
+ at KeyCloakHttpBearerAuth.fail (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:109:14)
2012
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:70:57)
2013
+ at Generator.next (<anonymous>)
2014
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:5:58)
2015
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2016
+ code: 'ERR_HTTP_HEADERS_SENT'
2017
+ }
2018
+ [2021-11-24T10.43.21.264] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client
2019
+ at ServerResponse.setHeader (_http_outgoing.js:558:11)
2020
+ at ServerResponse.header (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\express\lib\response.js:771:10)
2021
+ at KeyCloakHttpBearerAuth.challenge (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\HttpBearerAuth.ts:29:18)
2022
+ at KeyCloakHttpBearerAuth.fail (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:109:14)
2023
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:70:57)
2024
+ at Generator.next (<anonymous>)
2025
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:5:58)
2026
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2027
+ code: 'ERR_HTTP_HEADERS_SENT'
2028
+ }
2029
+ [2021-11-24T10.44.03.082] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client
2030
+ at ServerResponse.setHeader (_http_outgoing.js:558:11)
2031
+ at ServerResponse.header (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\express\lib\response.js:771:10)
2032
+ at KeyCloakHttpBearerAuth.challenge (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\HttpBearerAuth.ts:29:18)
2033
+ at KeyCloakHttpBearerAuth.fail (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:109:14)
2034
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:70:57)
2035
+ at Generator.next (<anonymous>)
2036
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:5:58)
2037
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2038
+ code: 'ERR_HTTP_HEADERS_SENT'
2039
+ }
2040
+ [2021-11-24T10.50.58.603] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2041
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2042
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2043
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2044
+ at KeyCloakHttpBearerAuth.fail (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:110:14)
2045
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:70:57)
2046
+ at Generator.next (<anonymous>)
2047
+ at C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:8:71
2048
+ at new Promise (<anonymous>)
2049
+ at __awaiter (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:4:12)
2050
+ at KeyCloakHttpBearerAuth.authenticate (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\KeyCloakHttpBearerAuth.ts:43:16) {
2051
+ statusCode: 401
2052
+ }
2053
+ [2021-11-24T10.51.24.741] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client
2054
+ at ServerResponse.setHeader (_http_outgoing.js:558:11)
2055
+ at ServerResponse.header (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\express\lib\response.js:771:10)
2056
+ at ServerResponse.send (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\express\lib\response.js:170:12)
2057
+ at ServerResponse.json (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\express\lib\response.js:267:15)
2058
+ at ApiController.Index (C:\PROJELER\github\Chy-Nodejs-Framework\Examples\Controllers\KeyCloakController.ts:41:20)
2059
+ at BaseChyz.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts:281:65)
2060
+ at Generator.next (<anonymous>)
2061
+ at C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts:8:71
2062
+ at new Promise (<anonymous>)
2063
+ at __awaiter (C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts:4:12) {
2064
+ code: 'ERR_HTTP_HEADERS_SENT'
2065
+ }
2066
+ [2021-11-24T10.54.50.915] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2067
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2068
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2069
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2070
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2071
+ at Generator.next (<anonymous>)
2072
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2073
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2074
+ statusCode: 401
2075
+ }
2076
+ [2021-11-24T14.19.44.835] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2077
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2078
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2079
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2080
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2081
+ at Generator.next (<anonymous>)
2082
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2083
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2084
+ statusCode: 401
2085
+ }
2086
+ [2021-11-24T14.20.50.891] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2087
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2088
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2089
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2090
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2091
+ at Generator.next (<anonymous>)
2092
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2093
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2094
+ statusCode: 401
2095
+ }
2096
+ [2021-11-24T14.20.58.819] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2097
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2098
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2099
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2100
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2101
+ at Generator.next (<anonymous>)
2102
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2103
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2104
+ statusCode: 401
2105
+ }
2106
+ [2021-11-24T14.21.19.358] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2107
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2108
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2109
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2110
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2111
+ at Generator.next (<anonymous>)
2112
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2113
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2114
+ statusCode: 401
2115
+ }
2116
+ [2021-11-24T14.24.49.629] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2117
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2118
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2119
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2120
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2121
+ at Generator.next (<anonymous>)
2122
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2123
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2124
+ statusCode: 401
2125
+ }
2126
+ [2021-11-24T14.25.01.158] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2127
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2128
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2129
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2130
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2131
+ at Generator.next (<anonymous>)
2132
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2133
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2134
+ statusCode: 401
2135
+ }
2136
+ [2021-11-24T14.27.03.126] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2137
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2138
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2139
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2140
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2141
+ at Generator.next (<anonymous>)
2142
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2143
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2144
+ statusCode: 401
2145
+ }
2146
+ [2021-11-24T14.29.06.246] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2147
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2148
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2149
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2150
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2151
+ at Generator.next (<anonymous>)
2152
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2153
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2154
+ statusCode: 401
2155
+ }
2156
+ [2021-11-24T14.31.36.948] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2157
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2158
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2159
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2160
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2161
+ at Generator.next (<anonymous>)
2162
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2163
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2164
+ statusCode: 401
2165
+ }
2166
+ [2021-11-24T14.32.24.200] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2167
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2168
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2169
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2170
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2171
+ at Generator.next (<anonymous>)
2172
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2173
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2174
+ statusCode: 401
2175
+ }
2176
+ [2021-11-24T14.32.38.292] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2177
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2178
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2179
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2180
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2181
+ at Generator.next (<anonymous>)
2182
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2183
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2184
+ statusCode: 401
2185
+ }
2186
+ [2021-11-24T14.34.41.215] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2187
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2188
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2189
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2190
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2191
+ at Generator.next (<anonymous>)
2192
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2193
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2194
+ statusCode: 401
2195
+ }
2196
+ [2021-11-24T14.35.48.554] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2197
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2198
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2199
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2200
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2201
+ at Generator.next (<anonymous>)
2202
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2203
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2204
+ statusCode: 401
2205
+ }
2206
+ [2021-11-24T14.36.15.435] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2207
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2208
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2209
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2210
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2211
+ at Generator.next (<anonymous>)
2212
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2213
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2214
+ statusCode: 401
2215
+ }
2216
+ [2021-11-24T14.53.22.477] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2217
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2218
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2219
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2220
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2221
+ at Generator.next (<anonymous>)
2222
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2223
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2224
+ statusCode: 401
2225
+ }
2226
+ [2021-11-24T14.53.55.251] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2227
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2228
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2229
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2230
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2231
+ at Generator.next (<anonymous>)
2232
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2233
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2234
+ statusCode: 401
2235
+ }
2236
+ [2021-11-24T14.55.30.326] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2237
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2238
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2239
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2240
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2241
+ at Generator.next (<anonymous>)
2242
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2243
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2244
+ statusCode: 401
2245
+ }
2246
+ [2021-11-24T15.01.46.306] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2247
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2248
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2249
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2250
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2251
+ at Generator.next (<anonymous>)
2252
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2253
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2254
+ statusCode: 401
2255
+ }
2256
+ [2021-11-24T15.04.13.997] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2257
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2258
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2259
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2260
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2261
+ at Generator.next (<anonymous>)
2262
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2263
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2264
+ statusCode: 401
2265
+ }
2266
+ [2021-11-24T15.04.48.614] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2267
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2268
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2269
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2270
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2271
+ at Generator.next (<anonymous>)
2272
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2273
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2274
+ statusCode: 401
2275
+ }
2276
+ [2021-11-24T15.17.48.331] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2277
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2278
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2279
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2280
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2281
+ at Generator.next (<anonymous>)
2282
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2283
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2284
+ statusCode: 401
2285
+ }
2286
+ [2021-11-24T15.18.27.151] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2287
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2288
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2289
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2290
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2291
+ at Generator.next (<anonymous>)
2292
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2293
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2294
+ statusCode: 401
2295
+ }
2296
+ [2021-11-25T09.13.58.819] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2297
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2298
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2299
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2300
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2301
+ at Generator.next (<anonymous>)
2302
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2303
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2304
+ statusCode: 401
2305
+ }
2306
+ [2021-11-25T09.25.34.091] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2307
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2308
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2309
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2310
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2311
+ at Generator.next (<anonymous>)
2312
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2313
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2314
+ statusCode: 401
2315
+ }
2316
+ [2021-11-25T09.45.42.642] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2317
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2318
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2319
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2320
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2321
+ at Generator.next (<anonymous>)
2322
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2323
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2324
+ statusCode: 401
2325
+ }
2326
+ [2021-11-25T09.47.15.489] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2327
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2328
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2329
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2330
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2331
+ at Generator.next (<anonymous>)
2332
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2333
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2334
+ statusCode: 401
2335
+ }
2336
+ [2021-11-25T09.48.32.858] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2337
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2338
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2339
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2340
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2341
+ at Generator.next (<anonymous>)
2342
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2343
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2344
+ statusCode: 401
2345
+ }
2346
+ [2021-11-25T09.53.02.396] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2347
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2348
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2349
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2350
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2351
+ at Generator.next (<anonymous>)
2352
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2353
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2354
+ statusCode: 401
2355
+ }
2356
+ [2021-11-25T09.53.16.332] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2357
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2358
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2359
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2360
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2361
+ at Generator.next (<anonymous>)
2362
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2363
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2364
+ statusCode: 401
2365
+ }
2366
+ [2021-11-25T09.53.50.699] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2367
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2368
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2369
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2370
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2371
+ at Generator.next (<anonymous>)
2372
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2373
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2374
+ statusCode: 401
2375
+ }
2376
+ [2021-11-25T09.54.19.415] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2377
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2378
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2379
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2380
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2381
+ at Generator.next (<anonymous>)
2382
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2383
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2384
+ statusCode: 401
2385
+ }
2386
+ [2021-11-25T09.56.30.288] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2387
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2388
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2389
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2390
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2391
+ at Generator.next (<anonymous>)
2392
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2393
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2394
+ statusCode: 401
2395
+ }
2396
+ [2021-11-25T09.58.05.435] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2397
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2398
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2399
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2400
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2401
+ at Generator.next (<anonymous>)
2402
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2403
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2404
+ statusCode: 401
2405
+ }
2406
+ [2021-11-25T10.05.17.518] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2407
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2408
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2409
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2410
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2411
+ at Generator.next (<anonymous>)
2412
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2413
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2414
+ statusCode: 401
2415
+ }
2416
+ [2021-11-25T10.39.55.227] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2417
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2418
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2419
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2420
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2421
+ at Generator.next (<anonymous>)
2422
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2423
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2424
+ statusCode: 401
2425
+ }
2426
+ [2021-11-25T10.41.00.357] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2427
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2428
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2429
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2430
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2431
+ at Generator.next (<anonymous>)
2432
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2433
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2434
+ statusCode: 401
2435
+ }
2436
+ [2021-11-25T10.43.12.515] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2437
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2438
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2439
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2440
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2441
+ at Generator.next (<anonymous>)
2442
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2443
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2444
+ statusCode: 401
2445
+ }
2446
+ [2021-11-25T10.48.34.636] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2447
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2448
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2449
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2450
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2451
+ at Generator.next (<anonymous>)
2452
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2453
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2454
+ statusCode: 401
2455
+ }
2456
+ [2021-11-25T10.50.27.867] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2457
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2458
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2459
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2460
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2461
+ at Generator.next (<anonymous>)
2462
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2463
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2464
+ statusCode: 401
2465
+ }
2466
+ [2021-11-25T10.56.20.062] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2467
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2468
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2469
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2470
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2471
+ at Generator.next (<anonymous>)
2472
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2473
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2474
+ statusCode: 401
2475
+ }
2476
+ [2021-11-25T10.57.01.171] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2477
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2478
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2479
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2480
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2481
+ at Generator.next (<anonymous>)
2482
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2483
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2484
+ statusCode: 401
2485
+ }
2486
+ [2021-11-25T11.01.50.439] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2487
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2488
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2489
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2490
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2491
+ at Generator.next (<anonymous>)
2492
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2493
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2494
+ statusCode: 401
2495
+ }
2496
+ [2021-11-25T11.03.00.995] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2497
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2498
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2499
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2500
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2501
+ at Generator.next (<anonymous>)
2502
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2503
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2504
+ statusCode: 401
2505
+ }
2506
+ [2021-11-25T11.09.40.446] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2507
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2508
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2509
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2510
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2511
+ at Generator.next (<anonymous>)
2512
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2513
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2514
+ statusCode: 401
2515
+ }
2516
+ [2021-11-25T11.11.14.460] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2517
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2518
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2519
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2520
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2521
+ at Generator.next (<anonymous>)
2522
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2523
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2524
+ statusCode: 401
2525
+ }
2526
+ [2021-11-25T11.12.35.118] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2527
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2528
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2529
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2530
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2531
+ at Generator.next (<anonymous>)
2532
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2533
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2534
+ statusCode: 401
2535
+ }
2536
+ [2021-11-25T11.14.30.571] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2537
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2538
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2539
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2540
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2541
+ at Generator.next (<anonymous>)
2542
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2543
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2544
+ statusCode: 401
2545
+ }
2546
+ [2021-11-25T11.20.01.491] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2547
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2548
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2549
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2550
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2551
+ at Generator.next (<anonymous>)
2552
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2553
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2554
+ statusCode: 401
2555
+ }
2556
+ [2021-11-25T11.21.38.119] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2557
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2558
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2559
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2560
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2561
+ at Generator.next (<anonymous>)
2562
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2563
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2564
+ statusCode: 401
2565
+ }
2566
+ [2021-11-25T11.24.03.609] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2567
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2568
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2569
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2570
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2571
+ at Generator.next (<anonymous>)
2572
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2573
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2574
+ statusCode: 401
2575
+ }
2576
+ [2021-11-25T13.25.47.891] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2577
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2578
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2579
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2580
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2581
+ at Generator.next (<anonymous>)
2582
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2583
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2584
+ statusCode: 401
2585
+ }
2586
+ [2021-11-25T13.29.56.552] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2587
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2588
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2589
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2590
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2591
+ at Generator.next (<anonymous>)
2592
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2593
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2594
+ statusCode: 401
2595
+ }
2596
+ [2021-11-25T13.30.05.977] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2597
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2598
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2599
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2600
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2601
+ at Generator.next (<anonymous>)
2602
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2603
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2604
+ statusCode: 401
2605
+ }
2606
+ [2021-11-25T13.30.33.248] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2607
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2608
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2609
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2610
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2611
+ at Generator.next (<anonymous>)
2612
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2613
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2614
+ statusCode: 401
2615
+ }
2616
+ [2021-11-25T13.42.25.078] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2617
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2618
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2619
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2620
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2621
+ at Generator.next (<anonymous>)
2622
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2623
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2624
+ statusCode: 401
2625
+ }
2626
+ [2021-11-25T13.42.54.869] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2627
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2628
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2629
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2630
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2631
+ at Generator.next (<anonymous>)
2632
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2633
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2634
+ statusCode: 401
2635
+ }
2636
+ [2021-11-25T13.48.57.030] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2637
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2638
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2639
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2640
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2641
+ at Generator.next (<anonymous>)
2642
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2643
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2644
+ statusCode: 401
2645
+ }
2646
+ [2021-11-25T14.18.58.684] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2647
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2648
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2649
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2650
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2651
+ at Generator.next (<anonymous>)
2652
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2653
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2654
+ statusCode: 401
2655
+ }
2656
+ [2021-11-25T14.19.02.969] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2657
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2658
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2659
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2660
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2661
+ at Generator.next (<anonymous>)
2662
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2663
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2664
+ statusCode: 401
2665
+ }
2666
+ [2021-11-25T14.20.45.944] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2667
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2668
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2669
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2670
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2671
+ at Generator.next (<anonymous>)
2672
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2673
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2674
+ statusCode: 401
2675
+ }
2676
+ [2021-11-25T14.21.25.550] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2677
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2678
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2679
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2680
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2681
+ at Generator.next (<anonymous>)
2682
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2683
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2684
+ statusCode: 401
2685
+ }
2686
+ [2021-11-25T14.22.18.471] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2687
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2688
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2689
+ at KeyCloakHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2690
+ at KeyCloakHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:50:14)
2691
+ at Generator.next (<anonymous>)
2692
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:5:58)
2693
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2694
+ statusCode: 401
2695
+ }