“发生了意外错误”访问 PWA (Project Web Access) 时出错

发布于 2024-10-12 07:15:22 字数 343 浏览 0 评论 0原文

我使用 SQL Server 2008 R2 for DB 安装了 Microsoft Office Sharepoint 2007 SP1,然后安装了 Microsoft Office Project Server 2007。

我创建了一个 Web 应用程序来托管 SSP,另一个 Web 应用程序来托管 PWA (Project Web Access),并且 PWA 已配置为:“http://server/pwa”

当我单击此链接时,它给我一个错误“发生意外错误”

我尝试重新启动项目服务并进行 iisreset 但没有解决。

我需要完成尽快为我们的管理部门提供帮助:-/

提前致谢..

I installed Microsoft Office Sharepoint 2007 SP1 using SQL Server 2008 R2 for DB and then installed Microsoft Office Project Server 2007.

I made a web application to host the SSP and another one to host the PWA (Project Web Access) and the PWA was provisioned as: "http://server/pwa"

when i click on this link it gives me an error "An unexpected error has occurred"

i tried to restart the project service and to iisreset but it wasn't solved..

I need to finish this ASAP for our administration :-/

Thanks in advance..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

小女人ら 2024-10-19 07:15:22

我找到了解决方案:

我必须在 web.config 中更改以下内容:

<configuration>
<system.web>
<customErrors mode="off" />

并且:

<configuration>
<SharePoint>
<SafeMode CallStack="true"

然后问题似乎与代理身份验证有关,我通过在 System.Net 中添加以下内容来解决它

 <defaultProxy>
      <proxy usesystemdefault = "true" bypassonlocal = "true" />
 </defaultProxy>

并确保您的 IE 代理设置正确。 。

I found the solution:

I had to change the following in web.config :

<configuration>
<system.web>
<customErrors mode="off" />

and:

<configuration>
<SharePoint>
<SafeMode CallStack="true"

Then the problem appeared to be about the Proxy authentication and i solved it by adding the following inside System.Net

 <defaultProxy>
      <proxy usesystemdefault = "true" bypassonlocal = "true" />
 </defaultProxy>

and make sure ur IE proxy settings are correct ..

枕花眠 2024-10-19 07:15:22

感谢您的解决方案也解决了问题,但我有另一个解决方案,
您可以前往中心申请--> Web 应用程序管理 --> 选择您的 Web 应用程序,然后在顶部功能区中选择“Web 应用程序”选项并单击“服务连接”,然后选中“连接到您的项目实例名称”并单击“确定”。

Thanks your Solution fixed by issue also , but i has another solution for that ,
you can go to Central Application --> Web Applications Management -->Select your Web Application and then select in the top Ribbon "Web Applications" Option and Click Service Connections then Check "Connects to YOUR PROJECT INSTANCE NAME" and Click Ok.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文