#!/usr/bin/env ruby require 'VideoServiceDriver.rb' endpoint_url = ARGV.shift obj = IVideoService.new(endpoint_url) # run ruby with -d to see SOAP wiredumps. obj.wiredump_dev = STDERR if $DEBUG # SYNOPSIS # GetRating(parameters) # # ARGS # parameters GetRating - {http://fliqz.com/services/080107}GetRating # # RETURNS # parameters GetRatingResponse - {http://fliqz.com/services/080107}GetRatingResponse # # RAISES # detail Guid - {http://schemas.microsoft.com/2003/10/Serialization/}guid # parameters = nil puts obj.getRating(parameters) # SYNOPSIS # GetRatingByIndex(parameters) # # ARGS # parameters GetRatingByIndex - {http://fliqz.com/services/080107}GetRatingByIndex # # RETURNS # parameters GetRatingByIndexResponse - {http://fliqz.com/services/080107}GetRatingByIndexResponse # # RAISES # detail Guid - {http://schemas.microsoft.com/2003/10/Serialization/}guid # detail ValidationFault - {http://www.microsoft.com/practices/EnterpriseLibrary/2007/01/wcf/validation}ValidationFault # parameters = nil puts obj.getRatingByIndex(parameters) # SYNOPSIS # UpdateRating(parameters) # # ARGS # parameters UpdateRating - {http://fliqz.com/services/080107}UpdateRating # # RETURNS # parameters UpdateRatingResponse - {http://fliqz.com/services/080107}UpdateRatingResponse # # RAISES # detail Guid - {http://schemas.microsoft.com/2003/10/Serialization/}guid # detail ValidationFault - {http://www.microsoft.com/practices/EnterpriseLibrary/2007/01/wcf/validation}ValidationFault # parameters = nil puts obj.updateRating(parameters) # SYNOPSIS # UpdateRatingByIndex(parameters) # # ARGS # parameters UpdateRatingByIndex - {http://fliqz.com/services/080107}UpdateRatingByIndex # # RETURNS # parameters UpdateRatingByIndexResponse - {http://fliqz.com/services/080107}UpdateRatingByIndexResponse # # RAISES # detail Guid - {http://schemas.microsoft.com/2003/10/Serialization/}guid # detail ValidationFault - {http://www.microsoft.com/practices/EnterpriseLibrary/2007/01/wcf/validation}ValidationFault # parameters = nil puts obj.updateRatingByIndex(parameters) # SYNOPSIS # GetPermalink(parameters) # # ARGS # parameters GetPermalink - {http://fliqz.com/services/080107}GetPermalink # # RETURNS # parameters GetPermalinkResponse - {http://fliqz.com/services/080107}GetPermalinkResponse # # RAISES # detail Guid - {http://schemas.microsoft.com/2003/10/Serialization/}guid # parameters = nil puts obj.getPermalink(parameters) # SYNOPSIS # GetPermalinkByIndex(parameters) # # ARGS # parameters GetPermalinkByIndex - {http://fliqz.com/services/080107}GetPermalinkByIndex # # RETURNS # parameters GetPermalinkByIndexResponse - {http://fliqz.com/services/080107}GetPermalinkByIndexResponse # # RAISES # detail Guid - {http://schemas.microsoft.com/2003/10/Serialization/}guid # detail ValidationFault - {http://www.microsoft.com/practices/EnterpriseLibrary/2007/01/wcf/validation}ValidationFault # parameters = nil puts obj.getPermalinkByIndex(parameters) # SYNOPSIS # GetPermalinkByProfile(parameters) # # ARGS # parameters GetPermalinkByProfile - {http://fliqz.com/services/080107}GetPermalinkByProfile # # RETURNS # parameters GetPermalinkByProfileResponse - {http://fliqz.com/services/080107}GetPermalinkByProfileResponse # # RAISES # detail Guid - {http://schemas.microsoft.com/2003/10/Serialization/}guid # parameters = nil puts obj.getPermalinkByProfile(parameters) # SYNOPSIS # GetPermalinkByProfileAndIndex(parameters) # # ARGS # parameters GetPermalinkByProfileAndIndex - {http://fliqz.com/services/080107}GetPermalinkByProfileAndIndex # # RETURNS # parameters GetPermalinkByProfileAndIndexResponse - {http://fliqz.com/services/080107}GetPermalinkByProfileAndIndexResponse # # RAISES # detail Guid - {http://schemas.microsoft.com/2003/10/Serialization/}guid # detail ValidationFault - {http://www.microsoft.com/practices/EnterpriseLibrary/2007/01/wcf/validation}ValidationFault # parameters = nil puts obj.getPermalinkByProfileAndIndex(parameters) # SYNOPSIS # GetEmbedByProfile(parameters) # # ARGS # parameters GetEmbedByProfile - {http://fliqz.com/services/080107}GetEmbedByProfile # # RETURNS # parameters GetEmbedByProfileResponse - {http://fliqz.com/services/080107}GetEmbedByProfileResponse # # RAISES # detail Guid - {http://schemas.microsoft.com/2003/10/Serialization/}guid # parameters = nil puts obj.getEmbedByProfile(parameters) # SYNOPSIS # GetEmbedByProfileAndIndex(parameters) # # ARGS # parameters GetEmbedByProfileAndIndex - {http://fliqz.com/services/080107}GetEmbedByProfileAndIndex # # RETURNS # parameters GetEmbedByProfileAndIndexResponse - {http://fliqz.com/services/080107}GetEmbedByProfileAndIndexResponse # # RAISES # detail ValidationFault - {http://www.microsoft.com/practices/EnterpriseLibrary/2007/01/wcf/validation}ValidationFault # detail Guid - {http://schemas.microsoft.com/2003/10/Serialization/}guid # parameters = nil puts obj.getEmbedByProfileAndIndex(parameters) # SYNOPSIS # GetEmbed(parameters) # # ARGS # parameters GetEmbed - {http://fliqz.com/services/080107}GetEmbed # # RETURNS # parameters GetEmbedResponse - {http://fliqz.com/services/080107}GetEmbedResponse # # RAISES # detail Guid - {http://schemas.microsoft.com/2003/10/Serialization/}guid # parameters = nil puts obj.getEmbed(parameters) # SYNOPSIS # GetEmbedByIndex(parameters) # # ARGS # parameters GetEmbedByIndex - {http://fliqz.com/services/080107}GetEmbedByIndex # # RETURNS # parameters GetEmbedByIndexResponse - {http://fliqz.com/services/080107}GetEmbedByIndexResponse # # RAISES # detail ValidationFault - {http://www.microsoft.com/practices/EnterpriseLibrary/2007/01/wcf/validation}ValidationFault # detail Guid - {http://schemas.microsoft.com/2003/10/Serialization/}guid # parameters = nil puts obj.getEmbedByIndex(parameters) # SYNOPSIS # Flag(parameters) # # ARGS # parameters Flag - {http://fliqz.com/services/080107}Flag # # RETURNS # parameters FlagResponse - {http://fliqz.com/services/080107}FlagResponse # # RAISES # detail Guid - {http://schemas.microsoft.com/2003/10/Serialization/}guid # detail ValidationFault - {http://www.microsoft.com/practices/EnterpriseLibrary/2007/01/wcf/validation}ValidationFault # parameters = nil puts obj.flag(parameters) # SYNOPSIS # FlagByIndex(parameters) # # ARGS # parameters FlagByIndex - {http://fliqz.com/services/080107}FlagByIndex # # RETURNS # parameters FlagByIndexResponse - {http://fliqz.com/services/080107}FlagByIndexResponse # # RAISES # detail ValidationFault - {http://www.microsoft.com/practices/EnterpriseLibrary/2007/01/wcf/validation}ValidationFault # detail Guid - {http://schemas.microsoft.com/2003/10/Serialization/}guid # parameters = nil puts obj.flagByIndex(parameters) # SYNOPSIS # GetFlagReport(parameters) # # ARGS # parameters GetFlagReport - {http://fliqz.com/services/080107}GetFlagReport # # RETURNS # parameters GetFlagReportResponse - {http://fliqz.com/services/080107}GetFlagReportResponse # # RAISES # detail Guid - {http://schemas.microsoft.com/2003/10/Serialization/}guid # parameters = nil puts obj.getFlagReport(parameters) # SYNOPSIS # GetFlagReportByIndex(parameters) # # ARGS # parameters GetFlagReportByIndex - {http://fliqz.com/services/080107}GetFlagReportByIndex # # RETURNS # parameters GetFlagReportByIndexResponse - {http://fliqz.com/services/080107}GetFlagReportByIndexResponse # # RAISES # detail Guid - {http://schemas.microsoft.com/2003/10/Serialization/}guid # detail ValidationFault - {http://www.microsoft.com/practices/EnterpriseLibrary/2007/01/wcf/validation}ValidationFault # parameters = nil puts obj.getFlagReportByIndex(parameters) # SYNOPSIS # ShareByProfile(parameters) # # ARGS # parameters ShareByProfile - {http://fliqz.com/services/080107}ShareByProfile # # RETURNS # parameters ShareByProfileResponse - {http://fliqz.com/services/080107}ShareByProfileResponse # # RAISES # detail Guid - {http://schemas.microsoft.com/2003/10/Serialization/}guid # detail ValidationFault - {http://www.microsoft.com/practices/EnterpriseLibrary/2007/01/wcf/validation}ValidationFault # parameters = nil puts obj.shareByProfile(parameters) # SYNOPSIS # ShareByProfileAndIndex(parameters) # # ARGS # parameters ShareByProfileAndIndex - {http://fliqz.com/services/080107}ShareByProfileAndIndex # # RETURNS # parameters ShareByProfileAndIndexResponse - {http://fliqz.com/services/080107}ShareByProfileAndIndexResponse # # RAISES # detail ValidationFault - {http://www.microsoft.com/practices/EnterpriseLibrary/2007/01/wcf/validation}ValidationFault # detail Guid - {http://schemas.microsoft.com/2003/10/Serialization/}guid # parameters = nil puts obj.shareByProfileAndIndex(parameters) # SYNOPSIS # Share(parameters) # # ARGS # parameters Share - {http://fliqz.com/services/080107}Share # # RETURNS # parameters ShareResponse - {http://fliqz.com/services/080107}ShareResponse # # RAISES # detail Guid - {http://schemas.microsoft.com/2003/10/Serialization/}guid # detail ValidationFault - {http://www.microsoft.com/practices/EnterpriseLibrary/2007/01/wcf/validation}ValidationFault # parameters = nil puts obj.share(parameters) # SYNOPSIS # ShareByIndex(parameters) # # ARGS # parameters ShareByIndex - {http://fliqz.com/services/080107}ShareByIndex # # RETURNS # parameters ShareByIndexResponse - {http://fliqz.com/services/080107}ShareByIndexResponse # # RAISES # detail ValidationFault - {http://www.microsoft.com/practices/EnterpriseLibrary/2007/01/wcf/validation}ValidationFault # detail Guid - {http://schemas.microsoft.com/2003/10/Serialization/}guid # parameters = nil puts obj.shareByIndex(parameters) # SYNOPSIS # GetShares(parameters) # # ARGS # parameters GetShares - {http://fliqz.com/services/080107}GetShares # # RETURNS # parameters GetSharesResponse - {http://fliqz.com/services/080107}GetSharesResponse # # RAISES # detail Guid - {http://schemas.microsoft.com/2003/10/Serialization/}guid # parameters = nil puts obj.getShares(parameters) # SYNOPSIS # GetSharesByIndex(parameters) # # ARGS # parameters GetSharesByIndex - {http://fliqz.com/services/080107}GetSharesByIndex # # RETURNS # parameters GetSharesByIndexResponse - {http://fliqz.com/services/080107}GetSharesByIndexResponse # # RAISES # detail Guid - {http://schemas.microsoft.com/2003/10/Serialization/}guid # detail ValidationFault - {http://www.microsoft.com/practices/EnterpriseLibrary/2007/01/wcf/validation}ValidationFault # parameters = nil puts obj.getSharesByIndex(parameters) # SYNOPSIS # GetAllShares(parameters) # # ARGS # parameters GetAllShares - {http://fliqz.com/services/080107}GetAllShares # # RETURNS # parameters GetAllSharesResponse - {http://fliqz.com/services/080107}GetAllSharesResponse # # RAISES # detail Guid - {http://schemas.microsoft.com/2003/10/Serialization/}guid # parameters = nil puts obj.getAllShares(parameters) # SYNOPSIS # GetAllSharesByIndex(parameters) # # ARGS # parameters GetAllSharesByIndex - {http://fliqz.com/services/080107}GetAllSharesByIndex # # RETURNS # parameters GetAllSharesByIndexResponse - {http://fliqz.com/services/080107}GetAllSharesByIndexResponse # # RAISES # detail Guid - {http://schemas.microsoft.com/2003/10/Serialization/}guid # detail ValidationFault - {http://www.microsoft.com/practices/EnterpriseLibrary/2007/01/wcf/validation}ValidationFault # parameters = nil puts obj.getAllSharesByIndex(parameters) # SYNOPSIS # GetTitle(parameters) # # ARGS # parameters GetTitle - {http://fliqz.com/services/080107}GetTitle # # RETURNS # parameters GetTitleResponse - {http://fliqz.com/services/080107}GetTitleResponse # # RAISES # detail Guid - {http://schemas.microsoft.com/2003/10/Serialization/}guid # parameters = nil puts obj.getTitle(parameters) # SYNOPSIS # GetTitleByIndex(parameters) # # ARGS # parameters GetTitleByIndex - {http://fliqz.com/services/080107}GetTitleByIndex # # RETURNS # parameters GetTitleByIndexResponse - {http://fliqz.com/services/080107}GetTitleByIndexResponse # # RAISES # detail ValidationFault - {http://www.microsoft.com/practices/EnterpriseLibrary/2007/01/wcf/validation}ValidationFault # detail Guid - {http://schemas.microsoft.com/2003/10/Serialization/}guid # parameters = nil puts obj.getTitleByIndex(parameters) # SYNOPSIS # GetDuration(parameters) # # ARGS # parameters GetDuration - {http://fliqz.com/services/080107}GetDuration # # RETURNS # parameters GetDurationResponse - {http://fliqz.com/services/080107}GetDurationResponse # # RAISES # detail Guid - {http://schemas.microsoft.com/2003/10/Serialization/}guid # parameters = nil puts obj.getDuration(parameters) # SYNOPSIS # GetDurationByIndex(parameters) # # ARGS # parameters GetDurationByIndex - {http://fliqz.com/services/080107}GetDurationByIndex # # RETURNS # parameters GetDurationByIndexResponse - {http://fliqz.com/services/080107}GetDurationByIndexResponse # # RAISES # detail ValidationFault - {http://www.microsoft.com/practices/EnterpriseLibrary/2007/01/wcf/validation}ValidationFault # detail Guid - {http://schemas.microsoft.com/2003/10/Serialization/}guid # parameters = nil puts obj.getDurationByIndex(parameters) # SYNOPSIS # UpdateAndGetPlays(parameters) # # ARGS # parameters UpdateAndGetPlays - {http://fliqz.com/services/080107}UpdateAndGetPlays # # RETURNS # parameters UpdateAndGetPlaysResponse - {http://fliqz.com/services/080107}UpdateAndGetPlaysResponse # # RAISES # detail Guid - {http://schemas.microsoft.com/2003/10/Serialization/}guid # parameters = nil puts obj.updateAndGetPlays(parameters) # SYNOPSIS # UpdateAndGetPlaysByIndex(parameters) # # ARGS # parameters UpdateAndGetPlaysByIndex - {http://fliqz.com/services/080107}UpdateAndGetPlaysByIndex # # RETURNS # parameters UpdateAndGetPlaysByIndexResponse - {http://fliqz.com/services/080107}UpdateAndGetPlaysByIndexResponse # # RAISES # detail Guid - {http://schemas.microsoft.com/2003/10/Serialization/}guid # detail ValidationFault - {http://www.microsoft.com/practices/EnterpriseLibrary/2007/01/wcf/validation}ValidationFault # parameters = nil puts obj.updateAndGetPlaysByIndex(parameters) # SYNOPSIS # GetPlays(parameters) # # ARGS # parameters GetPlays - {http://fliqz.com/services/080107}GetPlays # # RETURNS # parameters GetPlaysResponse - {http://fliqz.com/services/080107}GetPlaysResponse # # RAISES # detail Guid - {http://schemas.microsoft.com/2003/10/Serialization/}guid # parameters = nil puts obj.getPlays(parameters) # SYNOPSIS # GetPlaysByIndex(parameters) # # ARGS # parameters GetPlaysByIndex - {http://fliqz.com/services/080107}GetPlaysByIndex # # RETURNS # parameters GetPlaysByIndexResponse - {http://fliqz.com/services/080107}GetPlaysByIndexResponse # # RAISES # detail ValidationFault - {http://www.microsoft.com/practices/EnterpriseLibrary/2007/01/wcf/validation}ValidationFault # detail Guid - {http://schemas.microsoft.com/2003/10/Serialization/}guid # parameters = nil puts obj.getPlaysByIndex(parameters) # SYNOPSIS # GetAllPlays(parameters) # # ARGS # parameters GetAllPlays - {http://fliqz.com/services/080107}GetAllPlays # # RETURNS # parameters GetAllPlaysResponse - {http://fliqz.com/services/080107}GetAllPlaysResponse # # RAISES # detail Guid - {http://schemas.microsoft.com/2003/10/Serialization/}guid # parameters = nil puts obj.getAllPlays(parameters) # SYNOPSIS # GetAllPlaysByIndex(parameters) # # ARGS # parameters GetAllPlaysByIndex - {http://fliqz.com/services/080107}GetAllPlaysByIndex # # RETURNS # parameters GetAllPlaysByIndexResponse - {http://fliqz.com/services/080107}GetAllPlaysByIndexResponse # # RAISES # detail ValidationFault - {http://www.microsoft.com/practices/EnterpriseLibrary/2007/01/wcf/validation}ValidationFault # detail Guid - {http://schemas.microsoft.com/2003/10/Serialization/}guid # parameters = nil puts obj.getAllPlaysByIndex(parameters) # SYNOPSIS # GetVideoInfoByProfile(parameters) # # ARGS # parameters GetVideoInfoByProfile - {http://fliqz.com/services/080107}GetVideoInfoByProfile # # RETURNS # parameters GetVideoInfoByProfileResponse - {http://fliqz.com/services/080107}GetVideoInfoByProfileResponse # # RAISES # detail Guid - {http://schemas.microsoft.com/2003/10/Serialization/}guid # parameters = nil puts obj.getVideoInfoByProfile(parameters) # SYNOPSIS # GetVideoInfoByProfileAndIndex(parameters) # # ARGS # parameters GetVideoInfoByProfileAndIndex - {http://fliqz.com/services/080107}GetVideoInfoByProfileAndIndex # # RETURNS # parameters GetVideoInfoByProfileAndIndexResponse - {http://fliqz.com/services/080107}GetVideoInfoByProfileAndIndexResponse # # RAISES # detail ValidationFault - {http://www.microsoft.com/practices/EnterpriseLibrary/2007/01/wcf/validation}ValidationFault # detail Guid - {http://schemas.microsoft.com/2003/10/Serialization/}guid # parameters = nil puts obj.getVideoInfoByProfileAndIndex(parameters) # SYNOPSIS # GetVideoInfo(parameters) # # ARGS # parameters GetVideoInfo - {http://fliqz.com/services/080107}GetVideoInfo # # RETURNS # parameters GetVideoInfoResponse - {http://fliqz.com/services/080107}GetVideoInfoResponse # # RAISES # detail Guid - {http://schemas.microsoft.com/2003/10/Serialization/}guid # parameters = nil puts obj.getVideoInfo(parameters) # SYNOPSIS # GetVideoInfoByIndex(parameters) # # ARGS # parameters GetVideoInfoByIndex - {http://fliqz.com/services/080107}GetVideoInfoByIndex # # RETURNS # parameters GetVideoInfoByIndexResponse - {http://fliqz.com/services/080107}GetVideoInfoByIndexResponse # # RAISES # detail Guid - {http://schemas.microsoft.com/2003/10/Serialization/}guid # detail ValidationFault - {http://www.microsoft.com/practices/EnterpriseLibrary/2007/01/wcf/validation}ValidationFault # parameters = nil puts obj.getVideoInfoByIndex(parameters)