I want to run a cyc (opencyc) Java class, but when I run this class I got an error mentioning that the network is unreachable. I am working on NetBeans 7.0 and opencyc 2.0 win 32 version. I am using localhost (127.0.0.1) to test. The error is below.
Network is unreachable: connect java.net.SocketException: Network is unreachable: connect at java.net.PlainSocketImpl.socketConnect(Native Method) at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333) at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195) at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182) at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:366) at java.net.Socket.connect(Socket.java:519) at java.net.Socket.connect(Socket.java:469) at java.net.Socket.<init>(Socket.java:366) at java.net.Socket.<init>(Socket.java:180) at org.opencyc.api.CycConnection.initializeApiConnections(CycConnection.java:223) at org.opencyc.api.CycConnection.<init>(CycConnection.java:199) at org.opencyc.api.CycAccess.<init>(CycAccess.java:121) at org.opencyc.api.CycAccess.<init>(CycAccess.java:61) at org.opencyc.api.ApiDemo.<init>(ApiDemo.java:50) at org.opencyc.api.ApiDemo.main(ApiDemo.java:147) Exception in thread "main" java.lang.NullPointerException at org.opencyc.api.ApiDemo.<init>(ApiDemo.java:56) at org.opencyc.api.ApiDemo.main(ApiDemo.java:147) Interruption while waiting Cyc connection establishment, closing sockets Exception in thread "Thread-1" java.lang.NullPointerException at org.opencyc.api.CycConnection$TaskProcessorBinaryResponseHandler.access$002(CycConnection.java:988) at org.opencyc.api.CycConnection.close(CycConnection.java:268) at org.opencyc.api.CycConnection$ConnectionTimer.run(CycConnection.java:1351)
Why is this happening? How can I connect to the cyc?
Advertisement
Answer
If you have the same version I have, it’s trying to establish a connection to a Cyc image with the hostname and port defined by
CycConnection.DEFAULT_HOSTNAME
CycConnection.DEFAULT_BASE_PORT
You can find the proper values to use by evaluating the following in your Cyc image:
(get-machine-name) *BASE-TCP-PORT*
Hope this works for you.