我有一个webapi / angular网站托管在同一个azure appservice上。 所以/ site / api有我的身份验证令牌和其他api。 和/ site / app有我的角度应用程序。
问题是,在我们的分期中,这不是天蓝色的应用程序服务,而是带有IIS 7的Windows 2012 VM,一切正常。 我在IE,firefox,chrome和safari上运行角度网站,在任何地方都没有问题。
但是后来我浏览了我在azure网站上托管的应用程序,它在某些我已经进行$ http调用的地方一直崩溃。 我得到内部服务器500,我正在尝试,但无法看到更多细节。 在azure网站上托管的相同角度应用程序,在IE和Firefox上浏览时,不会给我任何错误。 我还在我的web.config中添加了动词OPTION,但没有帮助。
error seen in chrome :
{Message: "An error has occurred."}
Message :"An error has occurred."
感谢。
更多日志数据:
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
<Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>
<EventID>0</EventID>
<Version>1</Version>
<Level>3</Level>
<Opcode>16</Opcode>
<Keywords>0x100</Keywords>
<TimeCreated SystemTime="2016-06-21T04:25:31.841Z"/>
<Correlation ActivityID="{00000000-0000-0000-9D0F-0080000000E9}"/>
<Execution ProcessID="76" ThreadID="5400"/>
<Computer>RD0003FF853E2D</Computer>
</System>
<EventData>
<Data Name="ContextId">{00000000-0000-0000-9D0F-0080000000E9}</Data>
<Data Name="ModuleName">__DynamicModule_Microsoft.Owin.Host.SystemWeb.OwinHttpModule, Microsoft.Owin.Host.SystemWeb, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35_53f2659e-bb7a-4b20-8ef3-c37bb14b89e2</Data>
<Data Name="Notification">64</Data>
<Data Name="HttpStatus">500</Data>
<Data Name="HttpReason">Internal Server Error</Data>
<Data Name="HttpSubStatus">0</Data>
<Data Name="ErrorCode">0</Data>
<Data Name="ConfigExceptionInfo"></Data>
</EventData>
<RenderingInfo Culture="en-US">
<Opcode>MODULE_SET_RESPONSE_ERROR_STATUS</Opcode>
<Keywords>
<Keyword>RequestNotifications</Keyword>
</Keywords>
<freb:Description Data="Notification">PRE_EXECUTE_REQUEST_HANDLER</freb:Description>
<freb:Description Data="ErrorCode">The operation completed successfully.
(0x0)</freb:Description>
</RenderingInfo>
<ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
<EventGuid>{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}</EventGuid>
</ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
<Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>
<EventID>0</EventID>
<Version>1</Version>
<Level>5</Level>
<Opcode>49</Opcode>
<Keywords>0x0</Keywords>
<TimeCreated SystemTime="2016-06-21T04:25:31.841Z"/>
<Correlation ActivityID="{00000000-0000-0000-9D0F-0080000000E9}"/>
<Execution ProcessID="76" ThreadID="5400"/>
<Computer>RD0003FF853E2D</Computer>
</System>
<EventData>
<Data Name="ContextId">{00000000-0000-0000-9D0F-0080000000E9}</Data>
<Data Name="Buffer">{"Message":"An error has occurred."}</Data>
</EventData>
<RenderingInfo Culture="en-US">
<Opcode>GENERAL_RESPONSE_ENTITY_BUFFER</Opcode>
</RenderingInfo>
<ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
<EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
</ExtendedTracingInfo>
</Event>
HTTP Error 500.0 - Internal Server Error The page cannot be displayed because an internal server error has occurred.Detailed Error Information: Module __DynamicModule_Microsoft.Owin.Host.SystemWeb.OwinHttpModule, Microsoft.Owin.Host.SystemWeb, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35_53f2659e-bb7a-4b20-8ef3-c37bb14b89e2 Notification PreExecuteRequestHandler Handler System.Web.Http.WebHost.HttpControllerHandler Error Code 0x00000000 Logon Method Bearer Logon User admin
答案 0 :(得分:0)
cors设置有点偏。 将web.config更新到下面修复它。
<add key="webpages:Version" value="2.0.0.0" />
<add key="CORSOrigins" value="https://domainname.net" />
<add key="CORSMethods" value="OPTIONS, GET, POST" />
<add key="Access-Control-Allow-Headers" value="Origin, Content-Type, Depth, User-Agent, X-File-Size, X-Requested-With, If-Modified-Since, X-File-Name, Cache-Control" />