
Tag: AZURE
node.js – Node JS TypeError: Cannot read properties of undefined (reading ‘sort’) at Customvision
I make a Tutorial for Azure with customvision and Node.js. Link to tutorial: github.com/Azure-Samples/rock-paper-scissors-customvision I have gone through the tutorial several times and always get the same error. Also I…
asp.net core – View application logs in azure
I have asp.net core 3.1 application. These are my settings for logging: public static IWebHostBuilder CreateWebHostBuilder(string[] args) => WebHost.CreateDefaultBuilder(args) .ConfigureLogging(logging => { logging.AddAzureWebAppDiagnostics(); logging.AddConsole(); logging.AddDebug(); }) .UseStartup<Startup>(); And in code…
python – I have a KeyError: ‘location’ in API Azure Speech
I am using the cognitives services from Azure. I need long audios (more than 10 minutes) and that is why I am following the guide “Long Audio API ” (docs.microsoft.com/en-us/azure/cognitive-services/speech-service/long-audio-api).…
Visual Studio 2017 build – Community
Trying to build a software using VS2017 but cannot get past the following unresolved externals at the linking: link @C:UsersAlAppDataLocalTemp34tmpp7ye5kme.lnkCreating library buildWindows32DebugbinintelC3070030_License.lib and object buildWindows32DebugbinintelC3070030_License.explibpwcflexlm.lib(cfflex.obj) : error LNK2001: unresolved…
azure api management – I want to convert xml to json using apim policies
Sample xml request : <env:Body xmlns:xsd=”http://www.w3.org/2001/XMLSchema” xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” <ns5:CreateCustomerProfileRequest> <ns5:SourceApplication> <ns3:ApplicationID>HYBRIS_01</ns3:ApplicationID> <ns3:ApplicationName>Hybris</ns3:ApplicationName> </ns5:SourceApplication> <ns5:CustomerProfile> <ns5:CustomerIdentification> <ns5:CustomerIDType>bill-to</ns5:CustomerIDType> <ns5:CustomerID>618a18b3f33fa4007f2e76be</ns5:CustomerID> <ns5:CustomerNumber/> </ns5:CustomerIdentification> <ns5:UserId>franlopue@icloud.com</ns5:UserId> <ns5:CustomerType>Customer</ns5:CustomerType> <ns5:CustomerAddressBook> <ns3:Email> <ns3:EmailAddress>franlopue@icloud.com</ns3:EmailAddress> </ns3:Email> </ns5:CustomerAddressBook> <ns5:CustomerName> <ns3:FirstName>Francisco</ns3:FirstName> <ns3:LastName>Lopez-puente</ns3:LastName> </ns5:CustomerName> <ns5:CustomerSleep>35</ns5:CustomerSleep>…
Azure Application Insights Articles – Perficient Blogs
Azure Application Insights, a feature of Azure Monitor, is a platform as a service (PaaS) offering from Microsoft Azure. It’s a lightweight Application Performance Management (APM) service for web applications used to monitor the live application, automatically detect performance anomalies, and provide analytic tools…
Azure App Service – What modified my web.config?
I have an ASP.NET Core website running from Kestrel. It is deployed to Azure App Service in production and another as staging. I like to configure staging as “production-like” so…