Archive for category Oregano

Oregano – Forum online

Hello,

Yes Eric Priou (aka erixtekila) who has done the AS2 API for Oregano ( so he knows what he’s talking about when talking about Oregano ) has ( re ) open a forum for Oregano.
Here is the link http://www.v-i-a.net/forum/

Some other links you may like:
Articles : http://www.v-i-a.net/forum/

Some other links you may like:
Articles : http://www.v-i-a.net/inprogress/doku.php/oregano

C you and thx Eric for that ;)

, , ,

No Comments

Oregano – how to run the server

Hello there,

First, check this post if you dunno Oregano.

This one looks kinda easy, but I took some times to get the server running and the basic example provided working, cause of some stuff not written in the manual.

I'm using mysql. I've downloaded the JDBC connector from the mysql.com website. Do as described in the manual and put this in your config

XML:
  1. <database
  2.     url="jdbc:mysql://localhost/oregano?auto-reconnect=true"
  3.     driver="com.mysql.jdbc.Driver"
  4.     userID="root"
  5.     password=""
  6.     connectionLimit="20"
  7.     transactions="false"
  8.     >

Continue to follow the manual.
When you are creating the table you need to insert a record in the mode table, otherwise when oregano will want to update the value, you'll get an error ( as no record is in the table yet ).
If you are using mysql that support innoDB use innoDB and put transaction="true" in your config file.
If so instead of using the oregano.sql provided in the zip downloaded on their website you can use this file which create all the table in innoDB and insert the missing record

I got an error with the server ID too so I've changed it. If you do so, remember to change it everywhere in the config file ( here in the node ) otherwise your basic example will not work...

That's all for now...

More will come as I will go further in the development with this socket server.

And thx to Eric who helped me to find my way...

12 Comments