Tjeerd Maas wrote: > run-config.sh: > > # Domain name of the wave server > WAVE_SERVER_DOMAIN_NAME=dev.cognito.nl > > # Host name and port the wave server's client frontend listens on > WAVE_SERVER_HOSTNAME=localhost > WAVE_SERVER_PORT=9876 > > # The version of FedOne, extracted from the build.properties file > FEDONE_VERSION=`grep ^fedone.version= build.properties | cut -f2 -d=` > > ### Server-specific variables > ### > > # These will probably need to be changed > XMPP_SERVER_SECRET=********* > PRIVATE_KEY_FILENAME=wavecert.key > CERTIFICATE_FILENAME_LIST=wavecert.cert > > # Set XMPP_SERVER_IP to localhost if the XMPP and FedOne servers are > # running on the same host > XMPP_SERVER_IP=$XMPP_SERVER_HOSTNAME > > # These should be okay to leave alone > CERTIFICATE_DOMAIN_NAME=$WAVE_SERVER_DOMAIN_NAME > XMPP_SERVER_HOSTNAME=$WAVE_SERVER_DOMAIN_NAME > XMPP_SERVER_PORT=5275 > > WAVESERVER_DISABLE_VERIFICATION=TRUE > > Tjeerd > Okay,
There was a bug in the run-config.sh file. If you have a look XMPP_SERVER_IP is set to XMPP_SERVER_HOSTNAME before XMPP_SERVER_HOSTNAME is set. Try either setting XMPP_SERVER_HOSTNAME before XMPP_SERVER_IP or setting XMPP_SERVER_IP to your machines network facing IP Address. -- James Purser Collaborynth http://collaborynth.com.au Mob: +61 406 576 553 Skype: purserj1977 twitter: www.twitter.com/purserj GTalk: [email protected] --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Wave Protocol" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/wave-protocol?hl=en -~----------~----~----~----~------~----~------~--~---
