Wowza Community

Constructor of HTTProvider2Base launch 2 times

Dear All,

I created a class who extends HTTProvider2Base called VODlist.

public class VODlist extends HTTProvider2Base

I need to initialize the class so i created a method VODlist who I think overide the constructor of the HTTProvider2Base.

  
public VODlist() {
    	System.out.println("CONSTRUCTOR");
}

The strange thing is that it seems that the constructor is called two times (because i see the message “CONSTRUCTOR” tow times in a row in the console).

Somebody knows how to solve this problem?

Best regards

Richard

Ok I solved my problem.

In fact the application was running on two host ports at the same time…

Thx all