Subject FBEventManager Unable to complete network request to host "0.0.0.0".
Author nagypapi
We are using:
Firebird 2.1.0 RC2 SS on WinXP
Jaybird 2.1.3

Everything works fine in our local environment with fb 2.0.3 SS on winXP

but if we connect to the fb 2.1.0 RC2 server on our client's network
FBEventManager throws the following exception:

org.firebirdsql.jdbc.FBSQLException: GDS Exception. 335544721. Unable
to complete network request to host "0.0.0.0".
at
org.firebirdsql.event.FBEventManager.addEventListener(FBEventManager.java:266)
at
woodpecker.holgyvalasz.data.DataChangeMonitor.init(DataChangeMonitor.java:94)
at

..... our classes .......

at org.firebirdsql.gds.GDSException: Unable to complete network
request to host "0.0.0.0".
at
org.firebirdsql.gds.impl.wire.AbstractJavaGDSImpl$EventCoordinatorImp.connect(AbstractJavaGDSImpl.java:3135)
at
org.firebirdsql.gds.impl.wire.AbstractJavaGDSImpl$EventCoordinatorImp.<init>(AbstractJavaGDSImpl.java:3044)
at
org.firebirdsql.gds.impl.wire.AbstractJavaGDSImpl.iscQueueEvents(AbstractJavaGDSImpl.java:2962)
at
org.firebirdsql.event.FBEventManager$GdsEventHandler.register(FBEventManager.java:385)
at
org.firebirdsql.event.FBEventManager.registerListener(FBEventManager.java:359)
at
org.firebirdsql.event.FBEventManager.addEventListener(FBEventManager.java:264)


The code that throws this is:

eventManager=new FBEventManager();
// host is an IP or a host name, definitly not 0.0.0.0
eventManager.setHost(host);
eventManager.setDatabase(db);
eventManager.setUser(user);
eventManager.setPassword(pass);
eventManager.connect();
//Exception gets thrown here:
eventManager.addEventListener("DATA_EVENT",this);


Do you have any idea what causes this and what we can do to make it
work everywhere?

Thank you,
John