小编and*_*dre的帖子

IIS服务器和ASP.Net核心 - 页面无法访问,因为页面的相关配置数据无效

当我尝试使用IIS Server v7.5启动我的ASP.Net核心应用程序时出现以下错误...我已成功将网站(Visual Studio中的文件系统选项)发布到特定目录.它从approot/web.cmd文件启动正常.但是,当我尝试将其连接到IIS服务器并将其指向wwwroot文件夹时,我收到以下错误:

HTTP错误500.19 - 内部服务器错误

无法访问请求的页面,因为页面的相关配置数据无效.

  • 详细的错误信息
  • 模块IIS Web核心
  • 通知未知
  • 处理程序尚未确定
  • 错误代码0x8007000d
  • 配置错误
  • 配置文件\?\ D:\ WebDevelopment\UAT\creativeNamePROD\wwwroot\web.config
  • 请求的URL http://10.2.177.226:59/
  • 物理路径
  • 登录方法尚未确定
  • 登录用户尚未确定
  • 请求跟踪日志目录失败

下面是我试过的两个不同的web.config文件.当我尝试进入IIS中的配置编辑器时,我也会得到一个不明确的错误.任何帮助将不胜感激!!!

<configuration>
<system.web>
  <httpRuntime maxQueryStringLength="64768" maxUrlLength="65536" />
</system.web>
<system.webServer>
<security>
  <requestFiltering>
    <requestLimits maxQueryString="64768" />
  </requestFiltering>
</security>
<handlers>
  <add name="httpplatformhandler" path="*" verb="*" modules="httpPlatformHandler" resourceType="Unspecified" />
</handlers>
<httpPlatform processPath="..\approot\web.cmd" arguments="" stdoutLogEnabled="false" stdoutLogFile="..\logs\stdout.log" startupTimeLimit="3600"></httpPlatform>
</system.webServer>
</configuration>
Run Code Online (Sandbox Code Playgroud)

Web.config#2 - 设置相同的错误

<configuration>
  <system.webServer>
    <handlers>
      <add name="httpplatformhandler" path="*" verb="*" modules="httpPlatformHandler" resourceType="Unspecified" />
    </handlers>
    <httpPlatform processPath="..\approot\web.cmd" arguments="" stdoutLogEnabled="false" stdoutLogFile="..\logs\stdout.log" startupTimeLimit="3600"></httpPlatform>
  </system.webServer>
</configuration>
Run Code Online (Sandbox Code Playgroud)

c# asp.net web-config iis-7.5

38
推荐指数
3
解决办法
4万
查看次数

在AWS Cognito中 - 如何仅允许特定电子邮件地址注册?

我在javascript中使用AWS Cognito与amazon-cognito-identity-js包,它一直很棒.

我想知道,如何只允许具有某些电子邮件地址结尾的用户通过注册流程?

例如,只有输入以.... @ companyABC.com结尾的电子邮件地址的人才可以注册并获取发送到该电子邮件地址的确认码.这将阻止公司外部的人访问该应用程序.该应用程序没有任何绝密信息,但我们只希望公司内的用户访问它.

我期待用户池设置和在线,但无法找到解决方案.

谢谢!

amazon-web-services amazon-cognito aws-sdk aws-cognito

8
推荐指数
2
解决办法
1760
查看次数

在Visual Studio代码中设置正确的React Code突出显示?

我一直在尝试找到一种正确的方法来突出显示'.js'文件中的React Code,以便在Visual Studio Code中更容易阅读.下面的照片显示了一个样本文件,其中有很多是一种颜色,使其难以阅读.

我尝试使用TwentyChung的"jsx"扩展和"react-beautify",但它们都没有奏效.有人可以帮忙吗?:-)

在此输入图像描述

javascript reactjs visual-studio-code

7
推荐指数
4
解决办法
5956
查看次数

JestJS - 尝试在 Node JS 测试中模拟 Async Await

我正在尝试将 Jest 用于我的 Node Js 测试(特别是 AWS 的 Lambda),但我很难模拟异步等待功能。

我正在使用 babel-jest 和 jest-cli。下面是我的模块。我正在访问第一个 console.log,但第二个 console.log 返回 undefined 并且我的测试崩溃。

关于如何实现这一点的任何想法?

下面是我的模块:

import {callAnotherFunction} from '../../../utils';

  export const handler = async (event, context, callback) => {

  const {emailAddress, emailType} = event.body;
  console.log("**** GETTING HERE = 1")
  const sub = await callAnotherFunction(emailAddress, emailType);
  console.log("**** Not GETTING HERE = 2", sub) // **returns undefined**

  // do something else here
  callback(null, {success: true, returnValue: sub})

}
Run Code Online (Sandbox Code Playgroud)

我的测试

import testData from '../data.js';
import { handler …
Run Code Online (Sandbox Code Playgroud)

javascript unit-testing node.js jestjs aws-lambda

6
推荐指数
2
解决办法
1万
查看次数

如何在 Javascript 中设置 JPEG/PNG 图像的分辨率/密度?

我需要在 javascript 中更改 JPG/PNG 类型图像的分辨率/密度。我需要这样做的原因是我可以将图像发送到第三方 API,然后第三方 API 将根据分辨率/密度元数据知道每英寸有多少像素 (DPI/PPI) 进行打印。

javascript中有没有这样的解决方案?

javascript jpeg resolution image node.js

4
推荐指数
2
解决办法
5980
查看次数

使用Mocha&Chai进行节点测试 - >错误.. TypeError:app.address不是函数

尝试在节点中测试基本GET路由时,我收到以下错误

TypeError: app.address is not a function
Run Code Online (Sandbox Code Playgroud)

我正在检索我想要测试的应用程序代码,但我在代码中没有看到任何对"地址"错误的引用,所以我不知道要修复什么.

任何人的建议?

以下是我的单元测试

let chai = require('chai');
let chaiHttp = require('chai-http');
let app = require('../src/app');
let should = chai.should();

chai.use(chaiHttp);
describe('/POST getRating', () => {
      it('it should not POST a book without pages field', (done) => {
        chai.request(app)
            .get('/')
            // .send(testData1)
            .end((err, res) => {
                console.log('ERROR', err);
                res.should.have.status(200);
                res.body.should.be.a('string');
              done();
            });
      });

  });
Run Code Online (Sandbox Code Playgroud)

下面是我的app.js代码

import express from 'express';
import mongoose from 'mongoose';
import bodyParser from 'body-parser';
import config from  './config';
import http from …
Run Code Online (Sandbox Code Playgroud)

javascript mocha.js node.js express chai

0
推荐指数
1
解决办法
4102
查看次数