sudo tv_grab_na_dd --configure not working
Added by Patlach 13 almost 9 years ago
I am trying to setup my egg whit sudo tv_grab_na_dd --configure, but at the end I get.
Service description 'http://docs.tms.tribune.com/tech/tmsdatadirect/schedulesdirect/tvDataDelivery.wsdl' can't be loaded: 500 Can't connect to docs.tms.tribune.com:80 (Connection timed out).
need help please.
Replies (3)
RE: sudo tv_grab_na_dd --configure not working - Added by Patlach 13 almost 9 years ago
I found the problem, I need to replace the Service adresse whit the new one from Schedulesdirect.
Service: http://dd.schedulesdirect.org/schedulesdirect/tvlistings/xtvdService.
[[http://forums.schedulesdirect.org/viewtopic.php?f=5&t=2652]]
RE: sudo tv_grab_na_dd --configure not working - Added by Patlach 13 almost 9 years ago
Find the solution. you need to change somme link in the file tv_grap_na_dd
you need to go to
cd /usr/bin
change your self to ave root password whit su
next edit the file
nano tv_grap_na_dd
look for the line
my $dd_service='http://docs.tms.tribune.com/tech/tmsdatadirect/schedulesdirect/tvDataDelivery.wsdl';
$dd_service='http://docs.tms.tribune.com/tech/tmsdatadirect/schedulesdirect/stage/tvDataDelivery.wsdl' if $opt_beta_data;
and change for
my $dd_service='dd.schedulesdirect.org/tech/tmsdatadirect/schedulesdirect/tvDataDelivery.wsdl';
$dd_service='dd.schedulesdirect.org/tech/tmsdatadirect/schedulesdirect/stage/tvDataDelivery.wsdl' if $opt_beta_data;
RE: sudo tv_grab_na_dd --configure not working - Added by Mark Walker almost 9 years ago
Hero points for you!
Thanks.