- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在访问以下网址时遇到了一个奇怪的问题:
void WebRequestButton_Click( object sender, RoutedEventArgs e )
{
string url = "http://xn--fanbys-exa.org/episodes.m4a.rss";
if ( Uri.IsWellFormedUriString( url, UriKind.Absolute ) )
{
HttpWebRequest webRequest = ( HttpWebRequest )HttpWebRequest.Create( url );
if ( webRequest != null )
{
webRequest.BeginGetResponse( new AsyncCallback( ReadWebRequestCallback ), webRequest );
}
}
}
private void ReadWebRequestCallback( IAsyncResult callbackResult )
{
HttpWebRequest request = ( HttpWebRequest )callbackResult.AsyncState;
HttpWebResponse response = null;
try
{
response = ( HttpWebResponse )request.EndGetResponse( callbackResult );
}
catch ( Exception e )
{
System.Diagnostics.Debug.WriteLine( e );
}
if ( response != null )
{
using ( StreamReader httpwebStreamReader = new StreamReader( response.GetResponseStream( ) ) )
{
string results = httpwebStreamReader.ReadToEnd( );
System.Diagnostics.Debug.WriteLine( results );
}
response.Close( );
}
}
A first chance exception of type 'System.ArgumentException' occurred in System.Windows.dll
System.ArgumentException ---> System.ArgumentException: The parameter is incorrect.
at MS.Internal.XcpImports.CheckHResult(UInt32 hr)
at MS.Internal.XcpImports.WebRequest_Send(InternalWebRequest request)
at MS.Internal.InternalWebRequest.Send()
at System.Net.Browser.ClientHttpWebRequest.PrepareAndSendRequest(String method, Uri requestUri, Stream requestBodyStream, WebHeaderCollection headerCollection, CookieContainer cookieContainer)
at System.Net.Browser.ClientHttpWebRequest.BeginGetResponseImplementation()
at System.Net.Browser.ClientHttpWebRequest.InternalBeginGetResponse(AsyncCallback callback, Object state)
at System.Net.Browser.ClientHttpWebRequest.BeginGetResponse(Async'UI Task' (Managed): Loaded 'System.Runtime.Serialization.dll'
string url = "http://xn--fanbys-exa.org/episodes.m4a.rss";
// not ok --> System.ArgumentException: The parameter is incorrect.
string url = "http://xn--fanbys-exa.org";
// not ok --> System.ArgumentException: The parameter is incorrect.
string url = Uri.EscapeUriString( "http://xn--fanbys-exa.org/episodes.m4a.rss" );
// not ok --> System.ArgumentException: The parameter is incorrect.
string url = "http://stackoverflow.com";
// ok, HTTP request is sent and response is received
string url = "http://stack--overflow.com";
// ok, HTTP request is sent and response is received
string url = "http://xn--stackoverflow.com";
// ok, HTTP request is sent and response 502 is received
// --> System.Net.WebException: The remote server returned an error: NotFound.
最佳答案
是的,我也可以验证问题,并且在 fiddler 中也看不到流量。有史以来最奇怪的错误!
string url = "http://a--b-c.org"; - Fine
string url = "http://xn--fanbys-exa.org"; - Error
string url = "http://xn--2fanbys-exa.org"; - Error
string url = "http://xn--fanbys2-exa.org"; - Error
string url = "http://xn--fan2bys-exa.org"; - Error
string url = "http://xn-fanbys-exa.org"; - Fine
string url = "http://xn--b-exa.org"; - Fine
string url = "http://xn--f.org"; - Fine
string url = "http://a--fanbys-exa.org"; - Fine
string url = "http://xn--fanbys-c.org"; - Fine
string url = "http://xn--fanbys-exa2.org"; - Fine
string url = "http://2xn--fanbys-exa.org"; - Fine
string url = "http://xn--f-exa.org"; - Fine
string url = "http://xn--fs-exa.org"; - Error
string url = "http://x--fs-exa.org"; - Fine
string url = "http://xn--fs.org"; - Fine
string url = "http://xn--fs-.org"; - Fine
string url = "http://xn--fs-e.org"; - Fine
string url = "http://xn--fs-ea.org"; - Fine
string url = "http://xn--fs-ex.org"; - Fine
string url = "http://xn--fs-exx.org"; - Error
string url = "http://xn--fs-eee.org"; - Error
string url = "http://aa--aa-aaa.org"; - Fine
string url = "http://aa--aa-eee.org"; - Fine
string url = "http://xa--aa-eee.org"; - Fine
string url = "http://xa--fs-eee.org"; - Fine
string url = "http://zn--fs-eee.org"; - Fine
string url = "http://xn--fa-eee.org"; - Error
string url = "http://xn--faa-eee.org"; - Error
string url = "http://xn--faaaaaaaaaaaaa-eee.org"; - Error
string url = "http://xn--faaaaaaaaaaaaaeee.org"; - Fine
const string url = "http://xn--fanbys-exa.org/episodes.m4a.rss";
var wc = new WebClient();
wc.DownloadStringCompleted += (o, args) =>
{
Debug.WriteLine(args.Result);
};
wc.DownloadStringAsync(new Uri(url, UriKind.Absolute));
System.Net.WebException was unhandled
Message=An exception occurred during a WebClient request.
StackTrace:
at System.ComponentModel.AsyncCompletedEventArgs.RaiseExceptionIfNecessary()
at System.Net.DownloadStringCompletedEventArgs.get_Result()
at OddballHttp.MainPage.<MainPage_Loaded>b__0(Object o, DownloadStringCompletedEventArgs args)
at System.Net.WebClient.OnDownloadStringCompleted(DownloadStringCompletedEventArgs e)
at System.Net.WebClient.DownloadStringOperationCompleted(Object arg)
at System.Reflection.RuntimeMethodInfo.InternalInvoke(RuntimeMethodInfo rtmi, Object obj, BindingFlags invokeAttr, Binder binder, Object parameters, CultureInfo culture, Boolean isBinderDefault, Assembly caller, Boolean verifyAccess, StackCrawlMark& stackMark)
at System.Reflection.RuntimeMethodInfo.InternalInvoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture, StackCrawlMark& stackMark)
at System.Reflection.MethodBase.Invoke(Object obj, Object[] parameters)
at System.Delegate.DynamicInvokeOne(Object[] args)
at System.MulticastDelegate.DynamicInvokeImpl(Object[] args)
at System.Delegate.DynamicInvoke(Object[] args)
at System.Windows.Threading.DispatcherOperation.Invoke()
at System.Windows.Threading.Dispatcher.Dispatch(DispatcherPriority priority)
at System.Windows.Threading.Dispatcher.OnInvoke(Object context)
at System.Windows.Hosting.CallbackCookie.Invoke(Object[] args)
at System.Windows.Hosting.DelegateWrapper.InternalInvoke(Object[] args)
at System.Windows.RuntimeHost.ManagedHost.InvokeDelegate(IntPtr pHandle, Int32 nParamCount, ScriptParam[] pParams, ScriptParam& pResult)
InnerException: System.ArgumentException
Message=""
StackTrace:
at System.Net.Browser.AsyncHelper.BeginOnUI(SendOrPostCallback beginMethod, Object state)
at System.Net.Browser.ClientHttpWebRequest.EndGetResponse(IAsyncResult asyncResult)
at System.Net.WebClient.GetWebResponse(WebRequest request, IAsyncResult result)
at System.Net.WebClient.DownloadBitsResponseCallback(IAsyncResult result)
at System.Net.Browser.ClientHttpWebRequest.<>c__DisplayClassa.<InvokeGetResponseCallback>b__8(Object state2)
at System.Threading.ThreadPool.WorkItem.WaitCallback_Context(Object state)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
at System.Threading.ThreadPool.WorkItem.doWork(Object o)
at System.Threading.Timer.ring()
InnerException: System.ArgumentException
Message=The parameter is incorrect.
StackTrace:
at MS.Internal.XcpImports.CheckHResult(UInt32 hr)
at MS.Internal.XcpImports.WebRequest_Send(InternalWebRequest request)
at MS.Internal.InternalWebRequest.Send()
at System.Net.Browser.ClientHttpWebRequest.PrepareAndSendRequest(String method, Uri requestUri, Stream requestBodyStream, WebHeaderCollection headerCollection, CookieContainer cookieContainer)
at System.Net.Browser.ClientHttpWebRequest.BeginGetResponseImplementation()
at System.Net.Browser.ClientHttpWebRequest.InternalBeginGetResponse(AsyncCallback callback, Object state)
at System.Net.Browser.ClientHttpWebRequest.BeginGetResponse(AsyncCallback callback, Object state)
at System.Net.WebClient.DownloadBits(WebRequest request, Stream writeStream, CompletionDelegate completionDelegate, AsyncOperation asyncOp)
at System.Net.WebClient.DownloadStringAsync(Uri address, Object userToken)
at System.Net.WebClient.DownloadStringAsync(Uri address)
at OddballHttp.MainPage.MainPage_Loaded(Object sender, RoutedEventArgs e)
at MS.Internal.CoreInvokeHandler.InvokeEventHandler(Int32 typeIndex, Delegate handlerDelegate, Object sender, Object args)
at MS.Internal.JoltHelper.FireEvent(IntPtr unmanagedObj, IntPtr unmanagedObjArgs, Int32 argsTypeIndex, Int32 actualArgsTypeIndex, String eventName)
关于windows-phone-7 - HttpWebRequest 无法访问 http ://xn--fanbys-exa. org/episodes.m4a.rss,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10868583/
我想知道 xn-- (domain) -66b.com 在域中的含义。例如,我用 ñ 购买了 diseñolatinoamericano.com。 在 mozilla 中它出现 http://xn--
我正在尝试创建一个解析器扫描器,它将获取一个文件作为输入,该文件内部包含这样的内容:5 + 23 + ..... + 3; 我想要它将结果打印在屏幕上。 我发现有点难以理解 $$ = $1 +...
如果我使用诸如 www.äöü.com 之类的域,有什么方法可以避免它在用户中显示为 www.xn--4ca0bs.com ' 浏览器? 我猜像 www.xn--4ca0bs.com 这样的域名会给普
假设我有以下 DOM 树: text text text text text text text text text
我能做到 fruits=['mango','fig','apple'] for fruit in fruits: print (fruit , end=" ") 输出: mango fig a
我有一些数据,例如: data(iris) 我想重命名列,使 Species 成为 Y 变量,所有 其他变量成为预测变量。 我目前所拥有的并没有给我想要的结果。 iris %>% select(S
我能做到 fruits=['mango','fig','apple'] for fruit in fruits: print (fruit , end=" ") 输出: mango fig a
我有一些数据,例如: data(iris) 我想重命名列,使 Species 成为 Y 变量,所有 其他变量成为预测变量。 我目前所拥有的并没有给我想要的结果。 iris %>% select(S
在 JavaScript 中 (x, x1, x2, …, xn) 总是返回 xn。 在 Python 中,这段代码称为元组,它返回不同的值。 我的问题是这段代码在 JavaScript 中的用途是什
我正在开发一个带有 ARM cortex A5 处理器和大约 3.13.9 左右的 linux 内核版本的 linux 嵌入式系统。如何验证是否启用了 XN 位支持? 此外,我知道 ARMv7 架构支
这个问题和我的previous question密切相关.唯一的区别是,我不想要绘制数据,而是想要适合的原始数据。我尝试按照上一个答案自己解决,但仍然卡住了。 所以我想从线性回归的拟合中检索自变量、拟
这个问题在这里已经有了答案: Last digit of power list (2 个答案) 关闭 4 年前。 我需要从作为列表传递给函数的整数中找到 x1 ^ (x2 ^ (x3 ^ (...
是否可以使用 LINQ 转换包含坐标元组 (x, y) 的平面 double 组,即[x0,y0, ..., xN, yN] 到长度为一半的数组,其中包含包装在 Point 类中的相同坐标,即 [p0
我正在使用curl命令来调用rest api。我想发布数据,我的curl命令如下所示: curl –x POST -u 'username:PW' -k -H "Content-Type:applic
我在访问以下网址时遇到了一个奇怪的问题: http://xn--fanbys-exa.org/episodes.m4a.rss 这是代码: void WebRequestButton_Clic
xi=exprnd(1,M,1), i=1,...,N ,是 M x 1 的列向量尺寸。这意味着j-th xi 的元素是 xi(j)>=0 。 我想获取 Mx1 大小的列向量 X,其中 j-th X
所以下面“模式”中包含的这个正则表达式,只应该匹配我在下面评论中所说的内容(最基本的匹配是 1 个字母后跟一个点,然后是两个字母) var link = "Help" // matches www-d
我正在尝试安装 maria db 并遇到以下问题。 [root@localhost ~]# service mysqld start Redirecting to /bin/systemctl sta
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 这个问题似乎不是关于 a specific programming problem, a software
我的问题:给出一个列表 L = [x1,...,xn] 编写 Prolog 程序 convert(L,X)转换 L到一个整数 x1*10^0 + x2*10^1 + ... + xn*10^(n-1)
我是一名优秀的程序员,十分优秀!