Wowza Community

Wowza IDE 2 - eclipse plugin

Hi,

I’ve just started with Wowza Media Server and faced some problem :(. I installed Wowza IDE 2 plugin in eclipse according to the instruction and tried to compile example program from users manual:

package com.mycompany.module;

import com.wowza.wms.module.*;

import com.wowza.wms.client.*;

import com.wowza.wms.amf.*;

import com.wowza.wms.request.*;

public class MyModule extends ModuleBase

{

public void onAppStart(IApplicationInstance appInstance)

{

getLogger().info(“onAppStart”);

}

public void doSomething(IClient client, RequestFunction function,AMFDataList params)

{

getLogger().info(“doSomething”);

}

}

I receive following errors:

“The import com.wowza cannot be resolved”

I suppose eclipse cannot find some wowza archives but I don’t know how to solve it.

Anyone could help with this issue?

Thanks in advance.

Reinstall.

Hi,

Thanks. Now I can see “Wowza Media Server Project” in my File->New menu and I’m able to manage with example code.

Regards,