Share via

Getting error while running azure function with http trigger

Angshu Bhatt 0 Reputation points
2025-03-01T04:33:00.2766667+00:00

java.lang.SecurityException: class "com.microsoft.azure.functions.WebHookType"'s signer information does not match signer information of other classes in the same package

Azure Functions
Azure Functions

An Azure service that provides an event-driven serverless compute platform.

0 comments No comments

1 answer

Sort by: Most helpful
  1. Achraf Ben Alaya 1,406 Reputation points MVP
    2025-03-01T09:03:38.87+00:00

    Hello ,

    this can be related to :

    1- Dependencies Conflict

    mvn dependency:tree | grep azure-functions

    if you see different vesions , exclude the older one from your pom config file

    2-Try to clean and rebuild the solution
    mvn clean package

    3- try to remove and reinstall the Dependencies

    rm -rf ~/.m2/repository/com/microsoft/azure/functions

    mvn clean install

    If the reply is helpful, please click Accept Answer and kindly upvote it. If you have additional questions about this answer, please click Comment.

    Was this answer helpful?


Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.