홈>
IIS에서 angular 2+ 응용 프로그램을 실행하려고합니다. https://angular.io/guide/deployment 와 같은 모든 작업을 수행했습니다. dist 폴더의 내용을 서버 루트의 하위 폴더 (테스트) 내부로 복사하고 base href를/test /로 설정하고 URL 다시 쓰기 규칙을 추가했습니다.
그러나 찾아보기를 시도하면 다음 오류가 발생합니다.
Server Error in '/test' Application.
Could not load file or assembly 'Microsoft.AI.Web' or one of its dependencies. The system cannot find the file specified.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.IO.FileNotFoundException: Could not load file or assembly 'Microsoft.AI.Web' or one of its dependencies. The system cannot find the file specified.
Source Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
Assembly Load Trace: The following information can be helpful to determine why the assembly 'Microsoft.AI.Web' could not be loaded.
WRN: Assembly binding logging is turned OFF.To enable assembly bind failure logging, set the registry value [HKLM\Software\Microsoft\Fusion!EnableLog (DWORD) to 1.
Note: There is some performance penalty associated with assembly bind failure logging. To turn this feature off, remove the registry value [HKLM\Software\Microsoft\Fusion!EnableLog].
이런 종류의 문제에 직면 한 사람이 있습니까?
다른 앱의 서버 루트와 angular 2+ 앱의 web.config 파일이 충돌 할 수 있습니까?
-
답변 # 1
관련 자료
- .htaccess - 내부 서버 오류를 일으키는 모드 다시 쓰기, 오류 500
- python - 다차원 데이터 훈련 중 오류
- join - SQL Server는 COUNT ()를 사용하는 동안 모든 레코드를 표시합니다
- CentOS 6에 postfix를 설치하는 동안 오류가 발생했습니다
- c - Break out을 시도하더라도 루프 구문 오류가 컴파일되지 않습니다
- .net - 씨# - 콘텐츠를 스트림에 복사하는 동안 오류가 발생했습니다(비동기 http 요청)
- reactjs - redux-saga 설치 후 저장소 생성 중 redux 저장소 오류
- c - 조건부 컴파일을 만드는 동안 오류가 발생했습니다
- java - WebSphere Application Server의 MTOM 첨부 크기 제한
- sql server로 powershell 가져 오기 - 견적 오류
- python - json을로드하는 동안 오류가 발생 했습니까? 키는 문자열이어야합니다
- database - 올바른 자격 증명에도 불구하고 azure sql server 연결 오류 - 오류 번호 : 18456, 상태 : 1, 클래스 : 14
- spring - Vault 오류, 서버가 HTTPS 클라이언트에 HTTP 응답을 제공했습니다
- ubuntu - riscV로 gem5를 빌드하는 동안 빌드 오류가 발생합니다
- javascript - Linux 우분투에서 npm 명령을 사용하는 동안 npm 오류
- java - Spring Boot MiroService에서 Jackson API를 사용하는 동안 JSON 변환 오류
- go - http 요청 오류가 내 응용 프로그램을 중지하는 이유는 무엇입니까?
- python - fxcm 연결 오류 - 서버에 연결할 수 없습니다
- python - Scikit-learn 패키지를 가져 오는 동안 오류가 발생하는 이유는 무엇입니까?
- node.js - appjs를 실행하는 동안 콘솔에 오류가 발생합니다
트렌드
- OpenCv의 폴더에서 여러 이미지 읽기 (python)
- 파이썬 셀레늄 모든 "href"속성 가져 오기
- git commit - 자식 - 로컬 커밋 된 파일에 대한 변경을 취소하는 방법
- html - 자바 스크립트 - 클릭 후 변경 버튼 텍스트 변경
- JSP에 대한 클래스를 컴파일 할 수 없습니다
- javascript - 현재 URL에서 특정 div 만 새로 고침/새로 고침
- jquery - JavaScript로 현재 세션 값을 얻으시겠습니까?
- javascript - swiperjs에서 정지, 재생 버튼 추가
- vue.js - axios를 사용하여 서버에 이미지를 업로드하는 방법
- python - 문자열에서 특정 문자 제거
IIS의 테스트 응용 프로그램 모듈 부분에서 ApplicationInsightsWebTracking Module을 제거하여 해결했습니다.