NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public Add-ons (3rd party plugins, utilities and skins) v
« Previous 1 … 16 17 18 19 20 Next »
Windows Desktop/Sidebar Gadget with Recording Schedule

 
  • 0 Vote(s) - 0 Average
Windows Desktop/Sidebar Gadget with Recording Schedule
cncb
Offline

Senior Member

Posts: 729
Threads: 112
Joined: Aug 2011
#41
2011-10-17, 06:02 PM
Thanks for putting something together so quickly. I am not able to access that URL for some reason. I keep getting this error: Request format is unrecognized for URL unexpectedly ending in '/getGadgetFeed'. If I navigate to 'public/services/manageservice.asmx' in a browser it does show 'getGadgetFeed' as one of the possibilities but it doesn't like that full URL for some reason?
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 53,112
Threads: 957
Joined: May 2006
#42
2011-10-17, 09:56 PM
This is an HTTP POST not a GET function.

Martin
cncb
Offline

Senior Member

Posts: 729
Threads: 112
Joined: Aug 2011
#43
2011-10-17, 10:07 PM
mvallevand Wrote:This is an HTTP POST not a GET function.

I know - I get the same error with either.
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 53,112
Threads: 957
Joined: May 2006
#44
2011-10-17, 10:31 PM
I see yes the xml return is bad

Code:
<?xml version="1.0" encoding="utf-8"?>
<string xmlns="http://tempuri.org/">&lt;?xml version="1.0" encoding="utf-16"?&gt;
&lt;webServiceManage xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"&gt;
  &lt;webServiceManageListing /&gt;
&lt;/webServiceManage&gt;</string>

Martin
UncleJohnsBand
Offline

Posting Freak

U.S.A.
Posts: 5,643
Threads: 258
Joined: Feb 2005
#45
2011-10-17, 10:49 PM
cncb Wrote:I know - I get the same error with either.

What is in the NEWA web log....in the logs directory.....anything there?
Intel Core i7 @ 4.00GHz Skylake 14nm
ASUSTeK COMPUTER INC. Z170-DELUXE
Windows 10 Pro x64
PVR Software: NPVR 5.1.1
SiliconDust HDHomeRun HDHR5-4US Connect Quatro 4 Channel Tuner
Roku Ultra
2 PCH A-100's
cncb
Offline

Senior Member

Posts: 729
Threads: 112
Joined: Aug 2011
#46
2011-10-17, 10:58 PM
UncleJohnsBand Wrote:What is in the NEWA web log....in the logs directory.....anything there?

Code:
2011-10-17 18:47:03.324    [DEBUG][15]    Got Web Request (192.168.1.3): /public/services/manageservice.asmx/getGadgetFeed
2011-10-17 18:47:03.324    [ERROR][15]    System.InvalidOperationException: Request format is unrecognized for URL unexpectedly ending in '/getGadgetFeed'.
   at System.Web.Services.Protocols.WebServiceHandlerFactory.CoreGetHandler(Type type, HttpContext context, HttpRequest request, HttpResponse response)
   at System.Web.Services.Protocols.WebServiceHandlerFactory.GetHandler(HttpContext context, String verb, String url, String filePath)
   at System.Web.Script.Services.ScriptHandlerFactory.GetHandler(HttpContext context, String requestType, String url, String pathTranslated)
   at System.Web.HttpApplication.MapHttpHandler(HttpContext context, String requestType, VirtualPath path, String pathTranslated, Boolean useAppConfig)
   at System.Web.HttpApplication.MapHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
   at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
UncleJohnsBand
Offline

Posting Freak

U.S.A.
Posts: 5,643
Threads: 258
Joined: Feb 2005
#47
2011-10-18, 01:03 AM
cncb Wrote:
Code:
2011-10-17 18:47:03.324    [DEBUG][15]    Got Web Request (192.168.1.3): /public/services/manageservice.asmx/getGadgetFeed
2011-10-17 18:47:03.324    [ERROR][15]    System.InvalidOperationException: Request format is unrecognized for URL unexpectedly ending in '/getGadgetFeed'.
   at System.Web.Services.Protocols.WebServiceHandlerFactory.CoreGetHandler(Type type, HttpContext context, HttpRequest request, HttpResponse response)
   at System.Web.Services.Protocols.WebServiceHandlerFactory.GetHandler(HttpContext context, String verb, String url, String filePath)
   at System.Web.Script.Services.ScriptHandlerFactory.GetHandler(HttpContext context, String requestType, String url, String pathTranslated)
   at System.Web.HttpApplication.MapHttpHandler(HttpContext context, String requestType, VirtualPath path, String pathTranslated, Boolean useAppConfig)
   at System.Web.HttpApplication.MapHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
   at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)

Ok...on your server go to
Code:
http://server:port/public/services/manageservice.asmx
, click on the getGadgetFeed method that will be listed on the page, then click the Invoke button. What happens? You must do this from the server and not on a client to have the option to test the service.
Intel Core i7 @ 4.00GHz Skylake 14nm
ASUSTeK COMPUTER INC. Z170-DELUXE
Windows 10 Pro x64
PVR Software: NPVR 5.1.1
SiliconDust HDHomeRun HDHR5-4US Connect Quatro 4 Channel Tuner
Roku Ultra
2 PCH A-100's
cncb
Offline

Senior Member

Posts: 729
Threads: 112
Joined: Aug 2011
#48
2011-10-18, 01:13 AM
UncleJohnsBand Wrote:Ok...on your server go to
Code:
http://server:port/public/services/manageservice.asmx
, click on the getGadgetFeed method that will be listed on the page, then click the Invoke button. What happens? You must do this from the server and not on a client to have the option to test the service.

I see the XML data as expected.
UncleJohnsBand
Offline

Posting Freak

U.S.A.
Posts: 5,643
Threads: 258
Joined: Feb 2005
#49
2011-10-18, 01:41 AM
cncb Wrote:I see the XML data as expected.

Are you doing what this article outlines for calling a .Net web service from JS?
Intel Core i7 @ 4.00GHz Skylake 14nm
ASUSTeK COMPUTER INC. Z170-DELUXE
Windows 10 Pro x64
PVR Software: NPVR 5.1.1
SiliconDust HDHomeRun HDHR5-4US Connect Quatro 4 Channel Tuner
Roku Ultra
2 PCH A-100's
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 53,112
Threads: 957
Joined: May 2006
#50
2011-10-18, 01:41 AM
My source actually looks like I posted earlier, although it displays differently viewing from Invoke

Martin
« Next Oldest | Next Newest »

Users browsing this thread: 2 Guest(s)

Pages (15): « Previous 1 … 3 4 5 6 7 … 15 Next »
Jump to page 


Possibly Related Threads…
Thread Author Replies Views Last Post
  HDHRGuide for Windows mvallevand 63 11,091 2025-06-20, 04:05 PM
Last Post: mvallevand
  Comskipped videos played back on NextPVR desktop application halt on commercial break mlopez1007 2 1,074 2023-07-03, 07:47 PM
Last Post: mvallevand
  NextTool for Windows question MrReis 12 2,684 2023-03-31, 10:23 PM
Last Post: mvallevand
  Multiple Instances of Desktop Gadget BrettB 6 2,090 2021-05-16, 04:23 PM
Last Post: mvallevand
  Automatic movie recording based on existing libraries daneo 10 5,258 2020-04-14, 08:02 PM
Last Post: daneo
  NextPVR Recording Service Monitor ChaosMageX 2 2,335 2019-09-23, 02:19 PM
Last Post: ChaosMageX
  Desktop Gadget not working after Win10 Creators Update Bobbybear 1 3,603 2017-06-26, 09:01 PM
Last Post: Bobins
  ParallelProcessing.bat Recording Growth Monitor BrettB 0 2,153 2017-05-24, 01:51 AM
Last Post: BrettB
  Desktop gadget stopped working roy 4 3,543 2017-02-18, 08:16 PM
Last Post: roy
  Created a program to purge recording directory evans036 3 3,589 2016-11-30, 11:44 AM
Last Post: Graham

  • View a Printable Version
  • Subscribe to this thread
Forum Jump:

© Designed by D&D, modified by NextPVR - Powered by MyBB

Linear Mode
Threaded Mode