Question : Share Point linked Report Not Working

I have created a sharepoint site and created a dashboard using SSRS 2008

-I have hosted the site on port :'80' on server 'XYZ' of domain "A" as it was the only port accesible to the domain "B".
-but domain "B"(where I work) DNS is not able to resolve the NAME 'XYZ' of the server in domain "A' but able to take IP address
-So in order to access the site I have changed my URL
From
http://XYZ/sites/Reporter/default.aspx
TO
http://10.66.33.55/sites/Reporter/default.aspx

--All  the Reports are Working Fine but I have some Linked Reports which also have IP addrss URL like:-
http://10.178.98.117/sites/Reporter/_layouts/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/sites/Reporter/Reports/IOD_Summary_Reporter_Company_Drill_Down.rdl&Source=http%3A%2F%2F273579reidappp8%2Fsites%2FReporter%2FReports%2FForms%2FAllItems%2Easpx&DefaultItemOpen=0

but these Reports are not working throwing an error
System.Web.Services.Protocols.SoapException: The specified path refers to a SharePoint zone that is not supported. The default zone path must be used. ---> Microsoft.ReportingServices.Diagnostics.Utilities.SecurityZoneNotSupportedException: The specified path refers to a SharePoint zone that is not supported. The default zone path must be used.

Let Me know a workaround to make it work.or if you require any further Details


Answer : Share Point linked Report Not Working

NOTE:
Sounds like you need the virtual key code constant represented in your TShiftstate variable. Using integer(ssShift), integer(ssAlt), etc. won't work as it will return the ordinal value of the set item. i.e. Shift will return 0, alt will return 1, etc. I'm pretty sure this is not what you want.

if you need the virtual key value, use something like this:
var kc: integer;
...
kc:= 0;
if ssShift in AShiftState then kc:= kc OR VK_SHIFT;
if ssCtrl in AShiftState then kc:= kc OR VK_CONTROL;
if ssALT in AShiftState then kc:= kc OR VK_MENU;

if you need to use it for mouse messages, use something like this:
if ssShift in AShiftState then kc:= kc OR MK_SHIFT;
if ssCtrl in AShiftState then kc:= kc OR MK_CONTROL;
//alt not supported in mouse message, you would have to use something like GetKeyState to determine it

Random Solutions  
 
programming4us programming4us