Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.62 KB | None | 0 0
  1. <rsweb:ReportViewer id="rvwAnexoTransaccional" runat="server" InternalBorderColor="White"
  2. BorderColor="White" BackColor="White" ShowRefreshButton="False" ShowPromptAreaButton="False"
  3. ShowPrintButton="False" ShowParameterPrompts="False" Height="1903px" Width="1004px"
  4. ProcessingMode="Remote">
  5. </rsweb:ReportViewer>
  6.  
  7. System.Configuration.ConnectionStringSettingsCollection rootWebConfig = System.Web.Configuration.WebConfigurationManager.ConnectionStrings;
  8. string strCadenaCon = rootWebConfig["ReportServer"].ConnectionString.ToString();
  9. Uri reportUrl = new Uri(strCadenaCon.ToString());
  10.  
  11. rvwAnexoTransaccional.ServerReport.ReportServerUrl = reportUrl;
  12. rvwAnexoTransaccional.ServerReport.ReportPath = new Parametros_BusinessLogic().ReportProject + "AnexoTransaccional";
  13. rvwAnexoTransaccional.ServerReport.SetParameters(parameters);
  14. rvwAnexoTransaccional.ServerReport.Refresh();
  15.  
  16. ----------------------------------------
  17. ----------------------------------------
  18. HandlingInstanceID: 29b0c977-b11a-4c81-9e3c-311e77c0af17
  19. An exception of type 'System.Net.WebException' occurred and was caught.
  20. -----------------------------------------------------------------------
  21. 05/22/2019 12:58:33
  22. Type : System.Net.WebException, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
  23. Message : The remote server returned an error: (403) Forbidden.
  24. Source : System
  25. Help link :
  26. Status : ProtocolError
  27. Response : System.Net.HttpWebResponse
  28. Data : System.Collections.ListDictionaryInternal
  29. TargetSite : System.IO.Stream GetRequestStream(System.Net.TransportContext ByRef)
  30. HResult : -2146233079
  31. Stack Trace : at System.Net.HttpWebRequest.GetRequestStream(TransportContext& context)
  32. at System.Net.HttpWebRequest.GetRequestStream()
  33. at System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String methodName, Object[] parameters)
  34. at Microsoft.Reporting.WebForms.Internal.Soap.ReportingServices2005.Execution.ReportExecutionService.ListSecureMethods()
  35. at Microsoft.Reporting.WebForms.Internal.Soap.ReportingServices2005.Execution.RSExecutionConnection.GetSecureMethods()
  36. at Microsoft.Reporting.WebForms.Internal.Soap.ReportingServices2005.Execution.RSExecutionConnection.IsSecureMethod(String methodname)
  37. at Microsoft.Reporting.WebForms.Internal.Soap.ReportingServices2005.Execution.RSExecutionConnection.SetConnectionSSLForMethod(String methodname)
  38. at Microsoft.Reporting.WebForms.Internal.Soap.ReportingServices2005.Execution.RSExecutionConnection.ProxyMethodInvocation.Execute[TReturn](RSExecutionConnection connection, ProxyMethod`1 initialMethod, ProxyMethod`1 retryMethod)
  39. at Microsoft.Reporting.WebForms.ServerReport.EnsureExecutionSession()
  40. at Microsoft.Reporting.WebForms.ServerReport.SetParameters(IEnumerable`1 parameters)
  41. at Reportes_AuditoriaTransaccional.imbBuscar_Click(Object sender, ImageClickEventArgs e)
  42. at System.Web.UI.WebControls.ImageButton.OnClick(ImageClickEventArgs e)
  43. at System.Web.UI.WebControls.ImageButton.RaisePostBackEvent(String eventArgument)
  44. at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
  45.  
  46. Additional Info:
  47.  
  48. MachineName : USQASWSPC000160
  49. TimeStamp : 22/5/2019 16:58:33
  50. FullName : Microsoft.Practices.EnterpriseLibrary.ExceptionHandling, Version=3.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
  51. AppDomainName : /LM/W3SVC/1/ROOT/SCF2-6-132029525861419819
  52. ThreadIdentity : scfec
  53. WindowsIdentity : IIS APPPOOLDefaultAppPool
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement