2013-02-14 26 views
3

我將我的MVC3 Web項目發佈到Azure。當我嘗試使用fb進行授權時,我在下面看到一個錯誤。MVC3 Web Project Error:「試圖通過訪問權限禁止訪問套接字10.10.0.1:3128」

附加信息:

因此該應用授權FB,去AddSocialAccount行動卻沒有INT字符串:

var profile = this.Provider.GetUserProfile(code); 

哪裏去:

protected override Task<AccessGrant> PostForAccessGrantAsync(string accessTokenUrl, NameValueCollection request) 
    { 
     return this.RestTemplate.PostForObjectAsync<NameValueCollection>(accessTokenUrl, request) 
      .ContinueWith<AccessGrant>(task => 
      { 
       string expires = task.Result["expires"]; 
       return new AccessGrant(task.Result["access_token"], null, null, expires != null ? new Nullable<int>(Int32.Parse(expires)) : null); 
      }); 
    } 

和字符串錯誤是

string expires = task.Result["expires"]; 

錯誤:

Server Error in '/' Application. 
enter code here 
An attempt was made to access a socket in a way forbidden by its access permissions 10.10.0.1:3128 
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. 
Exception Details: System.Net.Sockets.SocketException: An attempt was made to access a socket in a way forbidden by its access permissions 10.10.0.1:3128 
Source Error: 
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. 
Stack Trace: 
[SocketException (0x271d): An attempt was made to access a socket in a way forbidden by its access permissions 10.10.0.1:3128] 
System.Net.Sockets.Socket.EndConnect(IAsyncResult asyncResult) +6462061 
System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) +271 
[WebException: Unable to connect to the remote server] 
System.Net.HttpWebRequest.EndGetRequestStream(IAsyncResult asyncResult, TransportContext& context) +2233126 
System.Net.HttpWebRequest.EndGetRequestStream(IAsyncResult asyncResult) +14 
Spring.Http.Client.WebClientHttpRequest.ExecuteRequestCallback(IAsyncResult result) in f:\bamboo-home\xml-data\build-dir\SPRNETREST-RELEASE-JOB1\src\Spring.Rest\Http\Client\WebClientHttpRequest.cs:246 
[AggregateException: One or more errors occurred.] 
System.Threading.Tasks.Task.ThrowIfExceptional(Boolean includeTaskCanceledExceptions) +3548265 
System.Threading.Tasks.Task`1.GetResultCore(Boolean waitCompletionNotification) +73 
System.Threading.Tasks.Task`1.get_Result() +10486829 
Project.Social.Facebook.Api.Impl.FacebookOAuth2Template.<PostForAccessGrantAsync>b__0(Task`1 task) in D:\Code\Poll\Project.Social\Facebook\Api\Impl\FacebookOAuth2Template.cs:23 
System.Threading.Tasks.ContinuationResultTaskFromResultTask`2.InnerInvoke() +81 
System.Threading.Tasks.Task.Execute() +49 

[AggregateException: One or more errors occurred.] 
System.Threading.Tasks.Task.ThrowIfExceptional(Boolean includeTaskCanceledExceptions) +3548265 
System.Threading.Tasks.Task`1.GetResultCore(Boolean waitCompletionNotification) +73 
System.Threading.Tasks.Task`1.get_Result() +10486829 
Project.Social.Base.OAuth2SocialProvider`4.SetAccessToken(String code) in D:\Code\Poll\Project.Social\Base\OAuth2SocialProvider.cs:49 
Project.Social.Base.OAuth2SocialProvider`4.GetServiceClient(String oauth_verifier) in D:\Code\Poll\Project.Social\Base\OAuth2SocialProvider.cs:66 
Project.Social.Facebook.FacebookProvider.GetUserProfile(String oauth_verifier) in D:\Code\Poll\Project.Social\Facebook\FacebookProvider.cs:26 Project.Areas.FrontEnd.Controllers.ControllersBase.OAuthControllerBase`3.AddSocialAccount(String code, String oauth_verifier) in D:\Code\Poll\Project\Areas\FrontEnd\Controllers\ControllersBase\OAuthControllerBase.cs:112 
lambda_method(Closure , ControllerBase , Object[]) +147 
System.Web.Mvc.ActionMethodDispatcher.Execute(ControllerBase controller, Object[] parameters) +14 
System.Web.Mvc.ReflectedActionDescriptor.Execute(ControllerContext controllerContext, IDictionary`2 parameters) +214 
System.Web.Mvc.ControllerActionInvoker.InvokeActionMethod(ControllerContext controllerContext, ActionDescriptor actionDescriptor, IDictionary`2 parameters) +27 
System.Web.Mvc.<>c__DisplayClass15.<InvokeActionMethodWithFilters>b__12() +55 
System.Web.Mvc.ControllerActionInvoker.InvokeActionMethodFilter(IActionFilter filter, ActionExecutingContext preContext, Func`1 continuation) +253 
System.Web.Mvc.<>c__DisplayClass17.<InvokeActionMethodWithFilters>b__14() +21 
System.Web.Mvc.ControllerActionInvoker.InvokeActionMethodFilter(IActionFilter filter, ActionExecutingContext preContext, Func`1 continuation) +253 
System.Web.Mvc.<>c__DisplayClass17.<InvokeActionMethodWithFilters>b__14() +21 
System.Web.Mvc.ControllerActionInvoker.InvokeActionMethodWithFilters(ControllerContext controllerContext, IList`1 filters, ActionDescriptor actionDescriptor, IDictionary`2 parameters) +191 
System.Web.Mvc.ControllerActionInvoker.InvokeAction(ControllerContext controllerContext, String actionName) +324 
System.Web.Mvc.Controller.ExecuteCore() +106 
System.Web.Mvc.ControllerBase.Execute(RequestContext requestContext) +91 
System.Web.Mvc.ControllerBase.System.Web.Mvc.IController.Execute(RequestContext requestContext) +10 
System.Web.Mvc.<>c__DisplayClassb.<BeginProcessRequest>b__5() +34 
System.Web.Mvc.Async.<>c__DisplayClass1.<MakeVoidDelegate>b__0() +19 
System.Web.Mvc.Async.<>c__DisplayClass8`1.<BeginSynchronous>b__7(IAsyncResult _) +10 
System.Web.Mvc.Async.WrappedAsyncResult`1.End() +62 
System.Web.Mvc.<>c__DisplayClasse.<EndProcessRequest>b__d() +48 
System.Web.Mvc.SecurityUtil.<GetCallInAppTrustThunk>b__0(Action f) +7 
System.Web.Mvc.SecurityUtil.ProcessInApplicationTrust(Action action) +22 
System.Web.Mvc.MvcHandler.EndProcessRequest(IAsyncResult asyncResult) +60 
System.Web.Mvc.MvcHandler.System.Web.IHttpAsyncHandler.EndProcessRequest(IAsyncResult result) +9 
System.Web.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +9629708 
System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +155 

當我使用本地計算機Azure的connectionString我不會得到這個錯誤(我更改fb上的域和url)。 感謝您的任何想法!

+0

也許我應該嘗試使用fb sdk授權並且不要使用Spring.Net – 2013-02-14 09:40:52

+0

我在考慮訪問10.10.0.1:3128。如何將防火牆更改爲Azure上的此端口?(不是雲服務) – 2013-02-14 09:45:26

回答

2

我修復了這個問題。在我的web.config中有默認的代理。

<system.net> 
<defaultProxy> 
    <proxy usesystemdefault="True" proxyaddress="http://10.10.0.1:3128" bypassonlocal="True" /> 
</defaultProxy> 

我刪除它。授權工作正確。

相關問題