Notice: This forum has been recovered from an old backup, so some content, links, and dates may be outdated. The forum is currently read-only while we restore sign-in and registration functionality. Details
If you find this forum valuable and would like to help keep it online, donations to help cover hosting and domain costs are greatly appreciated, but never expected. You can support the forum through Buy Me a Coffee or Ko-fi. Thank you for helping preserve the EventGhost community.
If you find this forum valuable and would like to help keep it online, donations to help cover hosting and domain costs are greatly appreciated, but never expected. You can support the forum through Buy Me a Coffee or Ko-fi. Thank you for helping preserve the EventGhost community.
can eventghost pass information back and forth between...
can eventghost pass information back and forth between...
can eventghost running on one machine forward requests/return info from eventghost running on another machine?
Re: can eventghost pass information back and forth between...
I believe this is done used Network Event plugins - not positive
setup... XBMC, W7MC for DVR & Live OTA TV, JRMC for multi-zone audio, EG, MiCasaVerde Vera3, USB-UIRT IR receiver, Harmony remote, 5.2 home theater system
Re: can eventghost pass information back and forth between...
I'm running into a big problem with my remote.
There are 5 XBMC servers, each running eventghost and the lutron homeworks processors.
I want to be able to load data from any given eventghost in one interface on my iphone.
The problem is that javascript/browsers won't let you load (using XMLHttpRequest function) a page from any server other then the one that the page you are viewing originated on.
It's really pissing me off!
There are 5 XBMC servers, each running eventghost and the lutron homeworks processors.
I want to be able to load data from any given eventghost in one interface on my iphone.
The problem is that javascript/browsers won't let you load (using XMLHttpRequest function) a page from any server other then the one that the page you are viewing originated on.
It's really pissing me off!
Re: can eventghost pass information back and forth between...
I ended up installing apache and activeperl on the main XBMC/Eventghost server and wrote a quick perl script to act as a proxy to get around the above problem.
Re: can eventghost pass information back and forth between...
had a similar problem recently and used mod_rewrite in apache. http://doghouselabs.blogspot.com/2009/0 ... olved.html
Re: can eventghost pass information back and forth between...
I'll have to try that out. Looks to be a lighter weight solution the having perl act as a proxy
Re: can eventghost pass information back and forth between...
damage you rock. That worked perfectly and it greatly accelerated the load time of my remote screens.
The only issue I ran into was variable updates. For example, with lutron lighting controls I push a virtual button on my remote then make a call to the lutron processor for the buttons LED state. I had to put a setTimeout function (200ms) on the call to the LED State update because Apache was returning a 200 (ready) too fast and I was getting out of date LED info.
Sometimes it was taking my remote from 25-40 seconds to load up and now it takes 5 tops.
The only issue I ran into was variable updates. For example, with lutron lighting controls I push a virtual button on my remote then make a call to the lutron processor for the buttons LED state. I had to put a setTimeout function (200ms) on the call to the LED State update because Apache was returning a 200 (ready) too fast and I was getting out of date LED info.
Sometimes it was taking my remote from 25-40 seconds to load up and now it takes 5 tops.
Re: can eventghost pass information back and forth between...
glad i could help
Re: can eventghost pass information back and forth between...
Got an apache ? for you damage.
Can I set apache to automagically change the extension on a file before serving it.
The thumbnails on XBMC have a .tbn extension. I would like to be able to request 1323232.jpg and have apache find and return 1323232.jpg
Can I set apache to automagically change the extension on a file before serving it.
The thumbnails on XBMC have a .tbn extension. I would like to be able to request 1323232.jpg and have apache find and return 1323232.jpg
Re: can eventghost pass information back and forth between...
figured it out (mime type) works like a champ now.