Click here to Skip to main content
15,868,420 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
XML
Hi All

I have a web page which will display the information (response) from the web services.
Right now I am getting this error.

Error

<pre lang="c#">
 Exception message: Initilisation failure in JIRA :System.Net.WebException: The request was aborted: Could not create SSL/TLS secure channel.
   at System.Web.Services.Protocols.WebClientProtocol.GetWebResponse(WebRequest request)
   at System.Web.Services.Protocols.HttpWebClientProtocol.GetWebResponse(WebRequest request)
   at System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String methodName, Object[] parameters)
   at JiraSoapService.JiraSoapServiceService.login(String in0, String in1)
   at JiraHelper4.Initialise()
   at JiraHelper4.Initialise()
   at JIRACreation.MyMultiView_ActiveViewChanged(Object sender, EventArgs e)
   at System.Web.UI.WebControls.MultiView.set_ActiveViewIndex(Int32 value)


</pre>

Please can some body advice me.

Many Thanks
Posted
Comments
Dominic Burford 28-Oct-14 9:47am    
As you're getting a WebException exception then it looks like your web page is not able to connect to your web service. Can you open the .asmx page and view the WSDL? Maybe restart your web service and try again. If not then look at the InnerException in the debugger to see if there is an underlying error.
Nathan Minier 29-Oct-14 7:50am    
Is there an SSL cert installed on the server?

If you're testing on IISExpress you will have SSL issues if you so not set SSL enabled = true in the project properties..
babli3 29-Oct-14 8:57am    
Thanks This has beedn resolved now.
Web service was no longer using SSL3 instead we had to use Tls.
Thanks for your responses.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900