I am developing blackberry web application and I have a web services that when I want to execute it it generates this error:
The remote name could not be resolved: 'https'
Line 55554: [return: System.Xml.Serialization.XmlArrayItemAttribute("returnValue", Form=System.Xml.Schema.XmlSchemaForm.Unqualified, IsNullable=false)]
Line 55555: public Authenticator[] findAuthenticators([System.Xml.Serialization.XmlElementAttribute("findAuthenticators", Namespace="http://www.rim.com/com.rim.bes.bas.baa")] findAuthenticators findAuthenticators1) { Line 55556: object[] results = this.Invoke("findAuthenticators", new object[] { Line 55557: findAuthenticators1});
Line 55558: return ((Authenticator[])(results[0]));
Trace is :
[WebException: The remote name could not be resolved: 'https']
System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) +1872577
System.Net.HttpWebRequest.GetRequestStream() +13
System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String methodName, Object[] parameters) +103
BAAServiceUtil.findAuthenticators(findAuthenticators findAuthenticators1) in c:\Users\xxxxxxxx\Desktop\websites-Bes5\App_Code\proxy.cs:55556
Bes5Self.getAuthenticator() in c:\Users\xxxxxxxx\Desktop\Bes5\BES5 (2)\websites-Bes5\Bes5Self.aspx.cs:459
Bes5Self.encodeUsername() in c:\Users\xxxxxxxx\Desktop\Bes5\BES5 (2)\websites-Bes5\Bes5Self.aspx.cs:443
Bes5Self.AuthenticateServer(String SvrName) in c:\Users\xxxxxxxx\Desktop\websites-Bes5\Bes5Self.aspx.cs:360
Bes5Self.Page_Load(Object sender, EventArgs e) in c:\Users\xxxxxxxx\Desktop\websites-Bes5\Bes5Self.aspx.cs:115
System.Web.Util.CalliHelper.EventArgFunctionCaller(IntPtr fp, Object o, Object t, EventArgs e) +14
System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) +35
System.Web.UI.Control.OnLoad(EventArgs e) +99
System.Web.UI.Control.LoadRecursive() +50
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +627
shemein
Member
9 Points
36 Posts
The remote name could not be resolved: 'https'
Nov 12, 2012 07:56 PM|LINK
I am developing blackberry web application and I have a web services that when I want to execute it it generates this error:
The remote name could not be resolved: 'https'
Line 55554: [return: System.Xml.Serialization.XmlArrayItemAttribute("returnValue", Form=System.Xml.Schema.XmlSchemaForm.Unqualified, IsNullable=false)]
Line 55555: public Authenticator[] findAuthenticators([System.Xml.Serialization.XmlElementAttribute("findAuthenticators", Namespace="http://www.rim.com/com.rim.bes.bas.baa")] findAuthenticators findAuthenticators1) {
Line 55556: object[] results = this.Invoke("findAuthenticators", new object[] {
Line 55557: findAuthenticators1});
Line 55558: return ((Authenticator[])(results[0]));
Trace is :
[WebException: The remote name could not be resolved: 'https']
System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) +1872577
System.Net.HttpWebRequest.GetRequestStream() +13
System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String methodName, Object[] parameters) +103
BAAServiceUtil.findAuthenticators(findAuthenticators findAuthenticators1) in c:\Users\xxxxxxxx\Desktop\websites-Bes5\App_Code\proxy.cs:55556
Bes5Self.getAuthenticator() in c:\Users\xxxxxxxx\Desktop\Bes5\BES5 (2)\websites-Bes5\Bes5Self.aspx.cs:459
Bes5Self.encodeUsername() in c:\Users\xxxxxxxx\Desktop\Bes5\BES5 (2)\websites-Bes5\Bes5Self.aspx.cs:443
Bes5Self.AuthenticateServer(String SvrName) in c:\Users\xxxxxxxx\Desktop\websites-Bes5\Bes5Self.aspx.cs:360
Bes5Self.Page_Load(Object sender, EventArgs e) in c:\Users\xxxxxxxx\Desktop\websites-Bes5\Bes5Self.aspx.cs:115
System.Web.Util.CalliHelper.EventArgFunctionCaller(IntPtr fp, Object o, Object t, EventArgs e) +14
System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) +35
System.Web.UI.Control.OnLoad(EventArgs e) +99
System.Web.UI.Control.LoadRecursive() +50
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +627
the error will be geneated on this line :
Authenticator[] authenticators = utilWebService.findAuthenticators(request);
is there any idea about it?
oak_silver
Member
418 Points
64 Posts
Re: The remote name could not be resolved: 'https'
Nov 14, 2012 05:42 AM|LINK
From the error message, it likely that webpage or webservice which is located on https. To troubleshoot this issue, more information is needed.
Please try enable tracing for the web service to get more detail information that help to troubleshoot what the exact issue is.