skip to Main Content

Azure Functions runtime is unreachable

My azure function is returning error: Azure Functions runtime is unreachable System.Reflection.ReflectionTypeLoadException : Unable to load one or more of the requested types. Method 'LogFunctionStarted' in type 'WebJobs.Host.Storage.Logging.PersistentQueueLogger' from assembly 'Microsoft.Azure.WebJobs.Host.Storage, Version=4.0.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' does not have an implementation. at…

VIEW QUESTION

Azure – Exception binding parameter 'message'

I am trying to run the Human interaction in Durable Functions and i got the sample from the microsoft doc page. You can get the code @ https://learn.microsoft.com/en-us/azure/azure-functions/durable/durable-functions-phone-verification?tabs=csharp I got the following error. Method not found: 'Void Twilio.Clients.TwilioRestClient..ctor(System.String, System.String, System.String,…

VIEW QUESTION

Azure – How to return the list of Roles that the user has?

I followed the article, https://learn.microsoft.com/en-us/azure/developer/java/spring-framework/configure-spring-boot-starter-java-app-with-azure-active-directory and created an App role The below endpoint uses users role to authorize @CrossOrigin(origins = "http://localhost:8080") @RestController @RequestMapping("/api") public class TutorialController { @Autowired TutorialRepository tutorialRepository; @PreAuthorize("hasAnyAuthority('APPROLE_Admin', 'APPROLE_Contributor')") @GetMapping("/tutorials") public ResponseEntity<List<Tutorial>> getAllTutorials(@RequestParam(required = false) String title)…

VIEW QUESTION
Back To Top
Search