找回密码
 立即注册

QQ登录

只需一步,快速开始

Lenka.Guo讲师达人认证 悬赏达人认证
超级版主   /  发表于:2017-7-14 12:08:34
21#
会尽快给您答复
回复 使用道具 举报
504385214
初级会员   /  发表于:2017-7-14 14:21:13
22#

好的。谢谢,请尽快
回复 使用道具 举报
Lenka.Guo讲师达人认证 悬赏达人认证
超级版主   /  发表于:2017-7-14 16:39:32
23#
本帖最后由 Lenka.Guo 于 2017-7-14 16:49 编辑

您好,是否修改Web.config文件的PublicurL? 能否将修改的截图发给我,另外修改完成之后请重启I网站,并对网页进行强刷,清楚缓存。
  1. reportService: { url: 'http://reverse-proxy.com'; };
复制代码

  1. <ActiveReports11>
  2. <WebService publicURI="https://reverse-proxy.com"/>
  3. </ActiveReports11>
复制代码

回复 使用道具 举报
504385214
初级会员   /  发表于:2017-7-14 17:58:26
24#
Lenka.Guo 发表于 2017-7-14 16:39
您好,是否修改Web.config文件的PublicurL? 能否将修改的截图发给我,另外修改完成之后请重启I网站,并对网 ...

公网可以了!修改weconfig就可以。
但是内网又不行了啊
回复 使用道具 举报
504385214
初级会员   /  发表于:2017-7-14 17:58:37
25#

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有帐号?立即注册

x
回复 使用道具 举报
Lenka.Guo讲师达人认证 悬赏达人认证
超级版主   /  发表于:2017-7-17 09:59:13
26#
您好,
这个错误是很常见的Web 跨域请求错误,需要在Web.config文件里面添加
  1. <httpProtocol>
  2.         <customHeaders>
  3.                 <add name="Access-Control-Allow-Origin" value="*" />
  4.                 <add name="Access-Control-Allow-Headers" value="AuthToken, Authorization, Origin, Content-Type, Accept, X-Requested-With" />
  5.         </customHeaders>
  6. </httpProtocol>
复制代码


回复 使用道具 举报
504385214
初级会员   /  发表于:2017-7-17 10:59:21
27#
问题是解决了!!只不过感觉怪怪的!每次还要去config配置公网地址,还有就是内网访问这个也是走的公网。始终感觉怪怪的
回复 使用道具 举报
Lenka.Guo讲师达人认证 悬赏达人认证
超级版主   /  发表于:2017-7-17 11:46:47
28#
解决了就好,修改Web.cofig就是为了避免获取内网资源而导致无法正常加载报表。
下面是H5的设置分享:
accessPointIt is the path to report service descriptor. This setting should be used in a Web Viewer to override the default web service. This setting is only required for Web/Flash Viewer.<ActiveReports11>
  <WebService accessPoint="http.../*.asmx" />
</ActiveReports11>
reportsFolderIt is the relative path to reports on the server. Supported in all viewers.
<ActiveReports11>
  <WebService reportsFolder="~" />
</ActiveReports11>
publicURIIt is a special setting to support redirection because report service results contain absolute URIs. Supported in all viewers.<ActiveReports11>
  <WebService publicURI="http.../" />
</ActiveReports11>
reportLifetimeIt is the current report lifetime if the report tab is not closed. The default report lifetime is 10 minutes, but it can be set to any value. It is not recommended to make the report lifetime less than 2 minutes. Supported in all viewers.<ActiveReports11>
  <WebService reportLifetime="00:10:00" />
</ActiveReports11>
maxReportLifetimeIt is the maximum allowed report lifetime, after which the report is destroyed on the server. The default maximum report lifetime is 24 hours; it can be set to any value. Supported in all viewers.<ActiveReports11>
  <WebService maxReportLifetime="24:00:00" />
</ActiveReports11>
assemblyFolderIt is the temporary folder path, specified only if required. Supported in all viewers.<ActiveReports11>
  <WebService assemblyFolder="~" />
</ActiveReports11>

回复 使用道具 举报
123
您需要登录后才可以回帖 登录 | 立即注册
返回顶部