NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public NextPVR Other Clients Old Stuff (legacy) NextPVR Enhanced Web Admin (NEWA) v
« Previous 1 … 18 19 20 21 22 … 47 Next »
GetServerTime errors when working via web interface

 
  • 0 Vote(s) - 0 Average
GetServerTime errors when working via web interface
Flash_
Offline

Junior Member

Posts: 18
Threads: 3
Joined: Dec 2008
#21
2009-01-04, 11:51 AM
rbelisle Wrote:I just downloaded and re-installed the ASP.NET AJAX 1.0 from the microsoft website to my GBPVR server. You can find the download here: http://www.microsoft.com/downloads/detai...laylang=en

Thanks for this - just done the same and poof - errors gone!

(Vista x64 - was happening pretty much every time I hit search on EWA)
medic29
Offline

Member

Posts: 64
Threads: 27
Joined: Oct 2008
#22
2009-01-29, 01:20 AM
Instead of turning off the services, how much trouble would it be to add a section of text next to the server time which would simply spell out the same error, in red maybe. I don't know the programming required to do that, but it would seem easier to see a text error within the webpage rather than click through many dialog boxes.
UncleJohnsBand
Offline

Posting Freak

U.S.A.
Posts: 5,643
Threads: 258
Joined: Feb 2005
#23
2009-01-29, 10:49 AM
medic29 Wrote:Instead of turning off the services, how much trouble would it be to add a section of text next to the server time which would simply spell out the same error, in red maybe. I don't know the programming required to do that, but it would seem easier to see a text error within the webpage rather than click through many dialog boxes.

Captureing and displaying the error would require programming and the dialog that occurs is handled totally by the browser itslef.

Since an error is an error and the issue is really the host GBPVR server it is more effective to lallow those users that have this issue to turn off the real-time ajax server calls.

Any ajax server calls that are added in the future will also be turned on/off by the new setting. Trapping the error and displaying it would require programming every time any ajax server call was added.
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
4zm4r3d02
Offline

Senior Member

USA
Posts: 356
Threads: 90
Joined: May 2005
#24
2009-01-29, 09:40 PM
UncleJohnsBand Wrote:Yep...some sort of server issue you are seeing...simply go to that URL that you are getting a 404 (not found).....and it is there....for some reason some people are experiencing this type of isssue.

Look at services on machine via:

http://GBPVRServer:7647/gbpvr/Ajaxservice.asmx

If you do it on the local host machine you should even be able to test the service.

When I open this page, the following is displayed:
Code:
Ajax_Calls

The following operations are supported. For a formal definition, please review the Service Description.

    * GetReminders

    * GetServerTime

    * GetStreamerStatus

This web service is using http://tempuri.org/ as its default namespace.
Recommendation: Change the default namespace before the XML Web service is made public.

Each XML Web service needs a unique namespace in order for client applications to distinguish it from other services on the Web. http://tempuri.org/ is available for XML Web services that are under development, but published XML Web services should use a more permanent namespace.

Your XML Web service should be identified by a namespace that you control. For example, you can use your company's Internet domain name as part of the namespace. Although many XML Web service namespaces look like URLs, they need not point to actual resources on the Web. (XML Web service namespaces are URIs.)

For XML Web services creating using ASP.NET, the default namespace can be changed using the WebService attribute's Namespace property. The WebService attribute is an attribute applied to the class that contains the XML Web service methods. Below is a code example that sets the namespace to "http://microsoft.com/webservices/":

C#

[WebService(Namespace="http://microsoft.com/webservices/")]
public class MyWebService {
    // implementation
}

Visual Basic

<WebService(Namespace:="http://microsoft.com/webservices/")> Public Class MyWebService
    ' implementation
End Class

C++

[WebService(Namespace="http://microsoft.com/webservices/")]
public ref class MyWebService {
    // implementation
};

For more details on XML namespaces, see the W3C recommendation on Namespaces in XML.

For more details on WSDL, see the WSDL Specification.

For more details on URIs, see RFC 2396.
Is it possible that the version of EWA included with GB-PVR 1.3.11 includes code that was meant only for use on the developer's machine? Or, is there some setting on my machine that needs changing?
Intel Core i7-4790 / 32GB RAM / Windows 10 Pro 64 bit / HDHomeRun CONNECT DUO Model: HDHR5-2US
UncleJohnsBand
Offline

Posting Freak

U.S.A.
Posts: 5,643
Threads: 258
Joined: Feb 2005
#25
2009-01-30, 02:28 AM
4zm4r3d02 Wrote:When I open this page, the following is displayed:
Code:
Ajax_Calls

The following operations are supported. For a formal definition, please review the Service Description.

    * GetReminders

    * GetServerTime

    * GetStreamerStatus

This web service is using http://tempuri.org/ as its default namespace.
Recommendation: Change the default namespace before the XML Web service is made public.

Each XML Web service needs a unique namespace in order for client applications to distinguish it from other services on the Web. http://tempuri.org/ is available for XML Web services that are under development, but published XML Web services should use a more permanent namespace.

Your XML Web service should be identified by a namespace that you control. For example, you can use your company's Internet domain name as part of the namespace. Although many XML Web service namespaces look like URLs, they need not point to actual resources on the Web. (XML Web service namespaces are URIs.)

For XML Web services creating using ASP.NET, the default namespace can be changed using the WebService attribute's Namespace property. The WebService attribute is an attribute applied to the class that contains the XML Web service methods. Below is a code example that sets the namespace to "http://microsoft.com/webservices/":

C#

[WebService(Namespace="http://microsoft.com/webservices/")]
public class MyWebService {
    // implementation
}

Visual Basic

<WebService(Namespace:="http://microsoft.com/webservices/")> Public Class MyWebService
    ' implementation
End Class

C++

[WebService(Namespace="http://microsoft.com/webservices/")]
public ref class MyWebService {
    // implementation
};

For more details on XML namespaces, see the W3C recommendation on Namespaces in XML.

For more details on WSDL, see the WSDL Specification.

For more details on URIs, see RFC 2396.
Is it possible that the version of EWA included with GB-PVR 1.3.11 includes code that was meant only for use on the developer's machine? Or, is there some setting on my machine that needs changing?

Nope...that is what you should be seeing.....that is the page that the Ajax calls are made too and when you access without making a method call that is the page that should be displayed.

What are you looking for specifically?
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
_Iz-
Offline

Member

Posts: 107
Threads: 16
Joined: Jul 2006
#26
2009-09-06, 09:49 PM
Is this fixed in the newest version or is there a way to turn off these ajax calls yet?

I just installed 1.4.7 and I'm getting the occasional getservertime error message.

Thanks
---------------------------------------------------------
[SIZE="1"]Asus M2A-VM (Radeon 1250 onboard video), Athlon X2 BE-2300+, 2GB DDR2, WD GP 1TB SATA2, WD GP 1.5TB SATA2, WD GP 2TB SATA2, HVR-2250, Win7 Ultimate 64bit, nMedia HTPC 200BA Case.
PCH-A100 as client1, AppleTV 2G + XBMC as client2, softmodded xbox + XBMC as client3 [/SIZE]
UncleJohnsBand
Offline

Posting Freak

U.S.A.
Posts: 5,643
Threads: 258
Joined: Feb 2005
#27
2009-09-08, 10:41 PM
_Iz- Wrote:Is this fixed in the newest version or is there a way to turn off these ajax calls yet?

I just installed 1.4.7 and I'm getting the occasional getservertime error message.

Thanks

Yep....been in since beginning of they year....you can turn off Ajax based Services on the Config tab.

Date: 2009–01–11 Build Number: 79

Changes:
  • MixMan: Added Mayhem3 EWA Theme as standard Table Based Theme.
  • whurlston: Updates to the GBPVR Vista Sidebar Gadget.
  • UncleJohnsBand: Update Statistics page page to provide install link for GBPVR Vista Sidebar Gadget if client PC is running Vista.
  • UncleJohnsBand: Update the Cancel button in Manage Recordings and Details pop-up to be a red.
  • UncleJohnsBand: Added ability for users to turn off the Ajax based calls that are causing some users issues.
    • When set to off you will not see the server time and reminders will not appear.
  • UncleJohnsBand: Correct javascript issue that impacted table based screens the held the screen scroll position.
  • UncleJohnsBand: Added .mkv file extension to the videos mask so they show up in EWA.
  • UncleJohnsBand: Added .ts file extension to the videos mask so they show up in EWA.
  • UncleJohnsBand: Updated download logic to be able to handle larger files.
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
whurlston
Offline

Posting Freak

Posts: 7,885
Threads: 102
Joined: Nov 2006
#28
2010-01-09, 08:33 AM
No need to turn them off. Here is the fix. If the call fails for any reason (like the recording service being stopped), you will get the following displayed:

"Server Time: Unknown" and "Could not retrieve reminders"

The messages will appear in the page where the Server Time and Reminders normally appear.

Just replace the web\public\Ajax.js and web\public\Ajax2.js with the ones from the attached zip.

I modified the files from Build 82.
UncleJohnsBand
Offline

Posting Freak

U.S.A.
Posts: 5,643
Threads: 258
Joined: Feb 2005
#29
2010-01-09, 06:32 PM
whurlston Wrote:No need to turn them off. Here is the fix. If the call fails for any reason (like the recording service being stopped), you will get the following displayed:

"Server Time: Unknown" and "Could not retrieve reminders"

The messages will appear in the page where the Server Time and Reminders normally appear.

Just replace the web\public\Ajax.js and web\public\Ajax2.js with the ones from the attached zip.

I modified the files from Build 82.

Excellent.....thanks.
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
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (3): « Previous 1 2 3


Possibly Related Threads…
Thread Author Replies Views Last Post
  NEWA Auto-Search Command Line Interface (CLI) UncleJohnsBand 40 38,485 2018-05-09, 12:50 AM
Last Post: jksmurf
  NPVR-generated errors in Web Config? jksmurf 0 2,086 2018-02-12, 01:33 AM
Last Post: jksmurf
  Classic web interface issues turndave 3 3,591 2017-12-18, 04:07 AM
Last Post: turndave
  NEWA Web Admin working OK, but have question about modern GUI playback controls tinstaafl 0 2,358 2017-03-19, 10:11 PM
Last Post: tinstaafl
  "Resume" not working lost@c 29 12,027 2017-03-07, 06:15 PM
Last Post: lost@c
  SSL (HTTPS) Access to Web Interface arrmo 21 10,439 2017-02-18, 01:49 PM
Last Post: arrmo
  NEWA Modern Interface Home Screen Doesn't Display Available Disk Space on First Load BrettB 1 2,291 2016-11-20, 05:03 PM
Last Post: mvallevand
  "Push" to New Interface arrmo 2 2,614 2016-11-20, 04:22 PM
Last Post: arrmo
  Windows Gadget no longer working Bobins 1 2,261 2016-09-28, 02:38 AM
Last Post: UncleJohnsBand
  Cancel Recording in Newa Not Working odin 1 2,595 2016-05-24, 07:24 PM
Last Post: UncleJohnsBand

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

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

Linear Mode
Threaded Mode