# where to start create server module?

**URL:** https://community.wowza.com/t/where-to-start-create-server-module/36617
**Category:** Wowza Streaming Engine
**Created:** [May 17, 2011, 3:49pm UTC](https://community.wowza.com/t/where-to-start-create-server-module/36617 "2011-05-17T15:49:11Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![Ryudith\_Anggriawan](https://avatars.discourse-cdn.com/v4/letter/r/bb73d2/32.png) [@Ryudith\_Anggriawan](https://community.wowza.com/u/Ryudith_Anggriawan)
#### Post date: [May 17, 2011, 3:49pm UTC](https://community.wowza.com/t/where-to-start-create-server-module/36617/1 "2011-05-17T15:49:11Z")

</div>

hello,

for while, i search on google about tutorial to create server module in wowza. but i never found, so i try write own with eclipse + wowza plugin. but never work ☹

any one can tell me where i can start(tutorial) ? at this time, i just want to write helloworld application that write string data(“hello world !!”) on log files or just print out to console. just to check that i go to right way 🙂

Thank you and sorry if i had mistake 🙂

I use Wowza 2.2.4 free edition, eclipse + wowza plugin, and linux

---

<div class="post-metadata">

### Author: ![Roman\_Pekarek](https://avatars.discourse-cdn.com/v4/letter/r/ac8455/32.png) [@Roman\_Pekarek](https://community.wowza.com/u/Roman_Pekarek)
#### Post date: [May 17, 2011, 11:58am UTC](https://community.wowza.com/t/where-to-start-create-server-module/36617/2 "2011-05-17T11:58:54Z")

</div>

here is tutorial how to install eclipse + wowza … [https://www.wowza.com/ide.html](https://www.wowza.com/ide.html)

and how to start creating modules is here [https://www.wowza.com/downloads/WowzaIDE-2-0-0/WowzaIDE\_UsersGuide.pdf](https://www.wowza.com/downloads/WowzaIDE-2-0-0/WowzaIDE_UsersGuide.pdf)

---

<div class="post-metadata">

### Author: ![Richard\_Lanham](https://avatars.discourse-cdn.com/v4/letter/r/c68b51/32.png) [@Richard\_Lanham](https://community.wowza.com/u/Richard_Lanham)
#### Post date: [May 17, 2011, 3:29pm UTC](https://community.wowza.com/t/where-to-start-create-server-module/36617/3 "2011-05-17T15:29:03Z")

</div>

Take a look at this example:

[https://www.wowza.com/docs/how-to-do-user-authentication-for-flash-rtmp-client-using-jdbc-connection-to-mysql-database](https://www.wowza.com/docs/how-to-do-user-authentication-for-flash-rtmp-client-using-jdbc-connection-to-mysql-database)

Richard

---

<div class="post-metadata">

### Author: ![Ryudith\_Anggriawan](https://avatars.discourse-cdn.com/v4/letter/r/bb73d2/32.png) [@Ryudith\_Anggriawan](https://community.wowza.com/u/Ryudith_Anggriawan)
#### Post date: [May 17, 2011, 10:05pm UTC](https://community.wowza.com/t/where-to-start-create-server-module/36617/4 "2011-05-17T22:05:17Z")

</div>

thanks, I have try and work. but, can you tell me why when i add this code

> public void onConnect(IClient client, RequestFunction function,
> 
> AMFDataList params) {
> 
> getLogger().info("onConnect: " + client.getClientId());
> 
> System.exit(0);
> 
> }
> 
> nothing happen. ☹
> 
> here i want is, when connection create, wowza check channel list on database. if no exists on database, then kick out connection. code above i write is just test what method call when connection establish. 🙂
> 
> Thank you and sorry i had mistake, especialy my english 🙂

---

<div class="post-metadata">

### Author: ![Ryudith\_Anggriawan](https://avatars.discourse-cdn.com/v4/letter/r/bb73d2/32.png) [@Ryudith\_Anggriawan](https://community.wowza.com/u/Ryudith_Anggriawan)
#### Post date: [May 20, 2011, 8:55pm UTC](https://community.wowza.com/t/where-to-start-create-server-module/36617/5 "2011-05-20T20:55:34Z")

</div>

Thanks a lot 🙂
