Wowza Community

Custom http provider error

I created a custom http provider but get this error on launch…

error: java.lang.IllegalAccessException: Class com.wowza.wms.util.VHostUtils can not access a member of class com.myhttpprovider.wms.module.myhttpclass with modifiers “”

I get the same error. Anybody know about this?

Hello @Michael Wedderburn

This can be cause by your class not being public.

e.g. needs to be

public myhttpclass() {

}

-JasonT

Argh, should I have seen that. Saw the method was public, missed the class. Works now, good call

Great to hear it’s working now.