Anybody else seeing this error when you click on a node in Netflow SP3?
Sys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the request on the server. The status code returned from the server was: 0
Regards,
Don
In answering my own problem, it doesn't happen in IE., only in FireFox 3.0.1
Ah, the joys of Microsoft slowly but surely overtaking the world.
That's nice to know that it is only happening in Firefox. Now I wonder if a fix is planned for this in the next SP.
Not in the next SP but next release
ok, so time to complicate things......
I get a similar message in IE7 when I click the NTA module menu item. Firefox 3 however is fine.
Only difference is a code of 405 instead of 0.
This is with the trial versions of both Orion 9.0 SP2 and NTA 3.0 SP4
Just installed the latest production release of NetFlow Traffic Analyzer along with SP4 and we are getting a similar error. However the error code is 404. Can't seem to do anything with NFTA due to this error.
We've seen this issue and here is one potential fix from one of our developers. Let us know if it helps.
-----
This issue is caused by an interaction between some Orion code and .NET Framework 3.5 SP1 (releasee August 11). You can fix it by making a small change to the website code:
Edit \Inetpub\SolarWinds\Orion\MasterPage.master. Find this line:
<form runat="server" method="post" action="#" id="aspnetForm">
Remove the action="#" part. That is, change it to this:
<form runat="server" method="post" id="aspnetForm">
Save. Next time you load the pages, they should be working. As usual with edits to website code, running the configuration wizard will undo this change.
----
Hope this helps.
Thanks,
Thanks David,
That worked great. No more issues.
Cheers,
Are you saying that you found the MasterPage.master file, and a line like I described, but that that line didn't have the
action = "#"
xml attribute in the element?