28 Replies Last post: Feb 25, 2008 11:33 AM by Ole Rühaak  
Daniel Henninger Jiver 2,933 posts since
Aug 10, 2005
Currently Being Moderated

Feb 7, 2008 2:30 PM

Openfire 3.4.5 has been released

We are pleased to announce the release of Openfire 3.4.5!  This release includes a brand new database connection pool implementation, which handles database outages in a much smoother manner.  It also includes some admin interface robustness improvements and a small memory leak fix.  You can view the full change log here.

 

The SparkWeb client included in the Enterprise edition has been updated too.  A wealth of bug fixes and improvements have been made, including support for configuration of MUC rooms, MUC room search support, and autologin improvements. You can use the SparkWeb client from here.

 

Download Openfire from here.

Download Openfire Enterprise from here.

Download Connection Manager from here

Enjoy!

 

Openfire Team

Michael83 Bronze 3 posts since
Feb 9, 2008
Currently Being Moderated
Feb 9, 2008 7:56 AM in response to: Daniel Henninger
Re: Openfire 3.4.5 has been released

Hi,

 

i just updated from 3.4.4 and I have a small problem: The version shown in the admin panel is still 3.4.4. I never had that problem before and I just followed the steps in the upgrade guide in the documentation. Is this a problem with my installation or is there's something wrong in the download package?

 

Thanks!

Michael

wroot KeyContributor 3,293 posts since
Jan 24, 2005
Currently Being Moderated
Feb 10, 2008 7:56 AM in response to: Michael83
Re: Openfire 3.4.5 has been released

Well, it shows 3.4.5 for me in Admin Console. Either with tar.gz or exe installation.

Gaston Dombiak Jiver 3,771 posts since
Sep 26, 2001
Currently Being Moderated
Feb 10, 2008 11:22 AM in response to: Michael83
Re: Openfire 3.4.5 has been released

Hey Michael,

 

What do you see in the info.log? If you see there 3.4.5 but 3.4.4 in the admin console then your browser is caching an old page. To force a refresh press Shift-F5. Otherwise, for some reason the lib/openfire.jar file was not replaced with the new one.

 

Regards,

 

  -- Gato

Michael83 Bronze 3 posts since
Feb 9, 2008
Currently Being Moderated
Feb 10, 2008 11:31 AM in response to: Daniel Henninger
Re: Openfire 3.4.5 has been released

The info.log shows this line:

"2008.02.09 14:40:42 Openfire 3.4.5 09.02.2008 14:40:42"

 

But on the entry page of the admin panel version 3.4.4 is shown and there's the message that a new version is available. I'm using the tar.gz package and I followed the steps in the dokumentation: http://www.igniterealtime.org/builds/openfire/docs/latest/documentation/upgrade- guide.html

 

I updated several times before without any problems.

 

Thanks,

Michael

Michael83 Bronze 3 posts since
Feb 9, 2008
Currently Being Moderated
Feb 10, 2008 12:21 PM in response to: Daniel Henninger
Re: Openfire 3.4.5 has been released

No, I'm running the GPL version. I already restarted the server but the problem still exists. I deleted the entire folder of the former version it's really weired.

Aleksandr Bronze 2 posts since
Feb 11, 2008
Currently Being Moderated
Feb 11, 2008 5:52 AM in response to: Daniel Henninger
Re: Openfire 3.4.5 has been released

 

with openfire 3.4.5 GPL ver. i have a problem connecting (or creating a fresh new)  to Oracle DB. with openfire 3.4.4 it's OK.

 

 

 

 

 

 

Database and Version:

Oracle

Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - Production

With the Partitioning, OLAP and Data Mining options

 

 

JDBC Driver:

Oracle JDBC driver

 

 

JDBC Driver Version:

10.2.0.3.0

 

 

 

va Version:

1.6.0_04 Sun Microsystems Inc. -- Java HotSpot(TM) Server VM

Appserver:

jetty-6.1.x

OS / Hardware:

Linux / i386

 

 

error.log is attached.

 

 

 

thanks for help.

 

 

Attachments:
Andrew Bronze 4 posts since
Feb 11, 2008
Currently Being Moderated
Feb 11, 2008 7:12 AM in response to: Aleksandr
Re: Openfire 3.4.5 has been released

I am have the exact same issue with Oracle on the mac, tried several Oracle JDBC driver versions. 

 

Java HotSpot(TM) Client VM (build 1.5.0_13-121, mixed mode, sharing)

 

Not attaching a log, as it matches azagzin's log file almost verbatim.

 

Help...

Andrew Bronze 4 posts since
Feb 11, 2008
Currently Being Moderated
Feb 11, 2008 9:06 AM in response to: Andrew
Re: Openfire 3.4.5 has been released

putting openfire in debug nets:

 

2008.02.11 10:03:58 Proxool statistics legend: "s - r  (a/t/o)" > s=served, r=refused (only shown if non-zero), a=active, t=total, o=offline (being tested)

2008.02.11 10:03:58 000000 (01/01/00) - Connection #1 created on demand = ACTIVE

2008.02.11 10:03:58 A connection failed the validation test with error: java.sql.SQLException: ORA-00923: FROM keyword not found where expected

 

Seems that there is an issue with whatever SQL is being used to TEST the connection.

Andrew Bronze 4 posts since
Feb 11, 2008
Currently Being Moderated
Feb 11, 2008 9:34 AM in response to: Daniel Henninger
Re: Openfire 3.4.5 has been released

that did it, i ended up using "select * from dual" for testSQL.

 

thanks for the help.

Andrew Bronze 4 posts since
Feb 11, 2008
Currently Being Moderated
Feb 11, 2008 9:41 AM in response to: Daniel Henninger
Re: Openfire 3.4.5 has been released

actually, one could do a select 1 from dual as well.

 

DUAL is a table which is created by oracle along with the data dictionary. It consists of exactly one column whose name is dummy and one record. The value of that record is X.  The owner of dual is SYS but dual can be accessed by every user.  As dual contains exactly one row (unless someone fiddled with it), it is guaranteed to return exactly one row in select statements. Therefor, dual is the prefered table to select a pseudo column (such as sysdate

select sysdate from dual).

 

above paraphrased from:

http://www.adp-gmbh.ch/ora/misc/dual.html

Michael Fabianski Bronze 7 posts since
Dec 1, 2003
Currently Being Moderated
Feb 11, 2008 10:10 AM in response to: Daniel Henninger
Re: Openfire 3.4.5 has been released

I encountered the same problem with Oracle and was about to post my findings here - shame I didn't wait till tomorrow to perform the upgrade!

 

 

 

 

I added <testSQL>SELECT 1 FROM DUAL</testSQL> to the defaultProvider configuration.

Ole Rühaak Bronze 5 posts since
Feb 21, 2008
Currently Being Moderated
Feb 21, 2008 7:01 AM in response to: Daniel Henninger
Re: Openfire 3.4.5 has been released

 

Nope - same trouble with DB2 9. Tried updating an Openfire 3.3.3 to 3.4.5.

 

 

I've spent some hours trying to make the update run. A little bit more testing before getting the release out would have been nice ...

 

 

I will try the workaround mentioned above. Hope it'll to the trick.

 

 

Ole Rühaak Bronze 5 posts since
Feb 21, 2008
Currently Being Moderated
Feb 21, 2008 9:35 AM in response to: Daniel Henninger
Re: Openfire 3.4.5 has been released