Я использую asp.net core 2.2 и INodeServices для взаимодействия между C # и Node.Проблема в том, что мой вызов Node отлично работает в моей среде разработки, но как только я отправляю свой код в службу приложений Azure, а затем выполняю вызов (через контроллер MVC), кажется, что он не может найти код Node для выполнения и после ожиданиянемного, это выдает ошибку.
Я нашел с помощью Kudu, что моя папка node_modules, а также папка Node не копируются в каталог публикации при развертывании, если я не настрою их на это.установив следующий код в моем файле .csproj.
это, похоже, не решает проблему, но я думаю, что моя папка NodeCode должна быть развернута рядом с моими узлами node_nodules из-за зависимостей.
Спасибо за ваше время.
На данный момент вызов INodeServices прекрасно работает в моей среде разработки, но после развертывания в Azure он завершается неудачно после длительного ожидания.
<Content Include="NodeCode\ePaycoCash.js">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="NodeCode\ePaycoCustomers.js">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="NodeCode\ePaycoPayments.js">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="NodeCode\ePaycoPlans.js">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="NodeCode\ePaycoPSE.js">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="NodeCode\ePaycoSubscriptions.js">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="NodeCode\ePaycoTokens.js">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="node_modules\**">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>`
Update:
under LogFiles/DetailedErrors I found this:
Most likely causes:
IIS received the request; however, an internal error occurred during the processing of the request. The root cause of this error depends on which module handles the request and what was happening in the worker process when this error occurred.
IIS was not able to access the web.config file for the Web site or application. This can occur if the NTFS permissions are set incorrectly.
IIS was not able to process configuration for the Web site or application.
The authenticated user does not have permission to use this DLL.
The request is mapped to a managed handler but the .NET Extensibility Feature is not installed.
Things you can try:
Ensure that the NTFS permissions for the web.config file are correct and allow access to the Web server's machine account.
Check the event logs to see if any additional information was logged.
Verify the permissions for the DLL.
Install the .NET Extensibility feature if the request is mapped to a managed handler.
Create a tracing rule to track failed requests for this HTTP status code. For more information about creating a tracing rule for failed requests, click here.