473,795 Members | 3,295 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

HTTPWebRequest Error (0x80090300) after a while

I have a vb.net service running under a Domain account. I'm trying to call a
web service on our Mainframe (IBM CICS via SSL and Client Certificates) and
after a while (1 or 2 days.. thousands of transactions) I'm getting the
following errors:
First, 2 of these:
SoapDriver GotRequestStrea m System.Net.WebE xception: The underlying
connection was closed: Could not establish secure channel for SSL/TLS. --->
System.Componen tModel.Win32Exc eption: Unknown error (0x80090300)
at System.Net.SSPI Wrapper.Acquire CredentialsHand le(SSPIInterfac e
SecModule, String package, CredentialUse intent, SChannelCred scc)
at System.Net.Secu reChannel.Acqui reCredentials(B oolean
beforeServerCon nection)
at System.Net.Secu reChannel.NextM essage(Byte[] incoming)
at System.Net.TlsS tream.Handshake (ProtocolToken message)
--- End of inner exception stack trace ---
at System.Net.Http WebRequest.Chec kFinalStatus()
at System.Net.Http WebRequest.EndG etRequestStream (IAsyncResult
asyncResult)
at MyApp.SoapDrive r.GotRequestStr eam(IAsyncResul t IR)
then, consistently I get this message at EndGetRequestSt ream for every
request:
SoapDriver GotRequestStrea m System.Net.WebE xception: The underlying
connection was closed: Could not establish secure channel for SSL/TLS. --->
System.Componen tModel.Win32Exc eption: Unknown error (0x80090300)
--- End of inner exception stack trace ---
at System.Net.Http WebRequest.Chec kFinalStatus()
at System.Net.Http WebRequest.EndG etRequestStream (IAsyncResult
asyncResult)
at CTI_Server.Soap Driver.GotReque stStream(IAsync Result IR)

If I stop and restart the service, it works fine. I've heard of overloading
ICertificatePol icy but this seems like a cop-out and also unnecessary
because It works for so many transactions beforehand. Before each call from
any class, I set the object = new SoapDriver to make sure everything is
clean. I can see the connections opening on CICS but they close almost
instantaneously and we cannot find any errors on CICS. Thanks ahead of
time!! Below is all the pertinant code in the class. Transaction is
initiated by calling SendSoap sub. I've been told to use HTTP1.0 and no
keepalives. I'm to the point now I think there must be some kind of bug or
leak in the framework....

- Kevin Landymore

#Region "Imports"
Imports System.Net
Imports System.IO
Imports System.Text
Imports System.Xml
Imports System.Data
Imports Microsoft.Web.S ervices
Imports System.Runtime. InteropServices
#End Region
Public Class SoapDriver
#Region "Events"
Public Event SoapResponse(By Val env As SoapEnvelope)
#End Region
#Region "Structures "
Structure strucWebReqAndI D
Public WebRequest As HttpWebRequest
Public RequestStream As Stream
Public RequestEnvelope As SoapEnvelope
Public ContactID As Guid
End Structure
#End Region
#Region "Declares"
Dim Store As New
Microsoft.Web.S ervices.Securit y.X509.X509Cert ificateStore(Se curity.X509.X50 9
CertificateStor e.StoreProvider .System,
Security.X509.X 509CertificateS tore.StoreLocat ion.CurrentUser , Store.MyStore)
Dim SPM As ServicePointMan ager
Dim MySP As ServicePoint
Dim MyURI As New Uri(CICS_URL)
#End Region
#Region "Functions"
Sub New()
Try
SPM.CheckCertif icateRevocation List = False
SPM.DefaultConn ectionLimit = 10
SPM.Expect100Co ntinue = False
SPM.MaxServiceP ointIdleTime = 4950
SPM.UseNagleAlg orithm = True
MySP = SPM.FindService Point(MyURI)
MySP.MaxIdleTim e = 5000
MySP.Connection Limit = 10
Store.Open()
Catch e As Exception
Debug.WriteLine (e.ToString)
End Try
End Sub
Sub SendSOAP(ByVal env As SoapEnvelope, ByVal ContactID As Guid)
Try
Dim CertLookupResul t As Security.X509.X 509CertificateC ollection
CertLookupResul t = Store.FindCerti ficateBySubject String(Certific ate_Name)
If CertLookupResul t.Count = 0 Then
Dim db1SqlCon As New SqlClient.SqlCo nnection
Dim db1SqlCmd As New SqlClient.SqlCo mmand
db1SqlCon.Conne ctionString = DB_Connect_Stri ng
db1SqlCon.Open( )
db1SqlCmd.Conne ction = db1SqlCon
db1SqlCmd.Comma ndType = CommandType.Tex t
db1SqlCmd.Comma ndText = "Insert Into debug_Error_Log (EventDetail) Values
('SoapDriver NO CTI CERTIFICATE!')"
db1SqlCmd.Execu teNonQuery()
db1SqlCmd.Dispo se()
db1SqlCon.Close ()
db1SqlCon.Dispo se()
GC.Collect()
Exit Sub
End If
Dim ReqData As strucWebReqAndI D
Dim HTTPPost As HttpWebRequest
HTTPPost = HttpWebRequest. Create(CICS_URL )
HTTPPost.Method = "POST"
HTTPPost.Conten tType = "text/xml"
HTTPPost.Timeou t = 6000
HTTPPost.Protoc olVersion = HttpVersion.Ver sion10
HTTPPost.KeepAl ive = False
HTTPPost.Client Certificates.Ad d(CertLookupRes ult.Item(0))
ReqData.Request Envelope = env
ReqData.WebRequ est = HTTPPost
ReqData.Contact ID = ContactID
HTTPPost.BeginG etRequestStream (AddressOf GotRequestStrea m, ReqData)
GC.Collect()
Catch e As Exception
Dim dbSqlCon As New SqlClient.SqlCo nnection
Dim dbSqlCmd As New SqlClient.SqlCo mmand
dbSqlCon.Connec tionString = DB_Connect_Stri ng
dbSqlCon.Open()
dbSqlCmd.Connec tion = dbSqlCon
dbSqlCmd.Comman dType = CommandType.Tex t
dbSqlCmd.Comman dText = "Insert Into debug_Error_Log (EventDetail) Values
('SoapDriver SendSOAP" & e.ToString & "')"
dbSqlCmd.Execut eNonQuery()
dbSqlCmd.Dispos e()
dbSqlCon.Close( )
dbSqlCon.Dispos e()
End Try
End Sub
Sub GotRequestStrea m(ByVal IR As IAsyncResult)
Try
Dim ReqData As strucWebReqAndI D = IR.AsyncState
Dim ReqStream As Stream = ReqData.WebRequ est.EndGetReque stStream(IR)
ReqData.Request Stream = ReqStream
Dim rEncode As Encoding = System.Text.Enc oding.GetEncodi ng("ISO-8859-1")
Dim ReqWriter As New StreamWriter(Re qStream, rEncode)
ReqWriter.Write (ReqData.Reques tEnvelope.Outer Xml)
ReqWriter.Close ()
ReqData.WebRequ est.BeginGetRes ponse(AddressOf GotResponse, ReqData)
Catch ex As Exception
Dim dbSqlCon As New SqlClient.SqlCo nnection
Dim dbSqlCmd As New SqlClient.SqlCo mmand
dbSqlCon.Connec tionString = DB_Connect_Stri ng
dbSqlCon.Open()
dbSqlCmd.Connec tion = dbSqlCon
dbSqlCmd.Comman dType = CommandType.Tex t
dbSqlCmd.Comman dText = "Insert Into debug_Error_Log (EventDetail) Values
('SoapDriver GotRequestStrea m " & ex.ToString & "')"
dbSqlCmd.Execut eNonQuery()
dbSqlCmd.Dispos e()
dbSqlCon.Close( )
dbSqlCon.Dispos e()
End Try
End Sub
Sub GotResponse(ByV al IR As IAsyncResult)
Dim RespString As String
Try
Dim ReqData As strucWebReqAndI D
ReqData = IR.AsyncState
Dim HTTPResp As HttpWebResponse
HTTPResp = ReqData.WebRequ est.EndGetRespo nse(IR)
Dim RespStream As Stream = HTTPResp.GetRes ponseStream
Dim encode As Encoding = System.Text.Enc oding.GetEncodi ng("utf-8")
Dim readStream As New StreamReader(Re spStream, encode)
RespString = readStream.Read ToEnd
HTTPResp.Close( )
Dim Replacer As RegularExpressi ons.Regex
RespString = Replacer.Replac e(RespString, "&", "+")
Dim SoapResp As New SoapEnvelope
SoapResp.LoadXm l(RespString)
RaiseEvent ProfileResponse (ParseSoapProfi leResponse(Soap Resp),
ReqData.Contact ID)
Catch e As WebException
Dim dbSqlCon As New SqlClient.SqlCo nnection
Dim dbSqlCmd As New SqlClient.SqlCo mmand
dbSqlCon.Connec tionString = DB_Connect_Stri ng
dbSqlCon.Open()
dbSqlCmd.Connec tion = dbSqlCon
dbSqlCmd.Comman dType = CommandType.Tex t
dbSqlCmd.Comman dText = "Insert Into debug_Error_Log (EventDetail) Values
('SoapDriver GotRespone WebException " & e.ToString & "')"
dbSqlCmd.Execut eNonQuery()
dbsqlcmd.Dispos e()
dbSqlCon.Close( )
dbsqlcon.Dispos e()
Catch e As Exception
Dim dbSqlCon As New SqlClient.SqlCo nnection
Dim dbSqlCmd As New SqlClient.SqlCo mmand
dbSqlCon.Connec tionString = DB_Connect_Stri ng
dbSqlCon.Open()
dbSqlCmd.Connec tion = dbSqlCon
dbSqlCmd.Comman dType = CommandType.Tex t
dbSqlCmd.Comman dText = "Insert Into debug_Error_Log (EventDetail) Values
('SoapDriver GotResponse " & e.ToString & "')"
dbSqlCmd.Execut eNonQuery()
dbSqlCmd.Comman dText = "Insert Into debug_Error_Log (EventDetail) Values
('SoapDriver GotResponse String Was " & RespString & "')"
dbSqlCmd.Execut eNonQuery()
dbsqlcmd.Dispos e()
dbSqlCon.Close( )
dbsqlcon.Dispos e()
End Try
End Sub
#End Region
End Class
Nov 20 '05 #1
1 4106
Sorry... I get the exception at the Async EndGetRequestSt ream call. Thanks
again!!

-Kevin Landymore
"Kevin Landymore" <kl************ @sempraNOutilit iesSPAM.com> wrote in
message news:eO******** ******@tk2msftn gp13.phx.gbl...
I have a vb.net service running under a Domain account. I'm trying to call a web service on our Mainframe (IBM CICS via SSL and Client Certificates) and after a while (1 or 2 days.. thousands of transactions) I'm getting the
following errors:
First, 2 of these:
SoapDriver GotRequestStrea m System.Net.WebE xception: The underlying
connection was closed: Could not establish secure channel for SSL/TLS. ---> System.Componen tModel.Win32Exc eption: Unknown error (0x80090300)
at System.Net.SSPI Wrapper.Acquire CredentialsHand le(SSPIInterfac e
SecModule, String package, CredentialUse intent, SChannelCred scc)
at System.Net.Secu reChannel.Acqui reCredentials(B oolean
beforeServerCon nection)
at System.Net.Secu reChannel.NextM essage(Byte[] incoming)
at System.Net.TlsS tream.Handshake (ProtocolToken message)
--- End of inner exception stack trace ---
at System.Net.Http WebRequest.Chec kFinalStatus()
at System.Net.Http WebRequest.EndG etRequestStream (IAsyncResult
asyncResult)
at MyApp.SoapDrive r.GotRequestStr eam(IAsyncResul t IR)
then, consistently I get this message at EndGetRequestSt ream for every
request:
SoapDriver GotRequestStrea m System.Net.WebE xception: The underlying
connection was closed: Could not establish secure channel for SSL/TLS. ---> System.Componen tModel.Win32Exc eption: Unknown error (0x80090300)
--- End of inner exception stack trace ---
at System.Net.Http WebRequest.Chec kFinalStatus()
at System.Net.Http WebRequest.EndG etRequestStream (IAsyncResult
asyncResult)
at CTI_Server.Soap Driver.GotReque stStream(IAsync Result IR)

If I stop and restart the service, it works fine. I've heard of overloading ICertificatePol icy but this seems like a cop-out and also unnecessary
because It works for so many transactions beforehand. Before each call from any class, I set the object = new SoapDriver to make sure everything is
clean. I can see the connections opening on CICS but they close almost
instantaneously and we cannot find any errors on CICS. Thanks ahead of
time!! Below is all the pertinant code in the class. Transaction is
initiated by calling SendSoap sub. I've been told to use HTTP1.0 and no
keepalives. I'm to the point now I think there must be some kind of bug or
leak in the framework....

- Kevin Landymore

#Region "Imports"
Imports System.Net
Imports System.IO
Imports System.Text
Imports System.Xml
Imports System.Data
Imports Microsoft.Web.S ervices
Imports System.Runtime. InteropServices
#End Region
Public Class SoapDriver
#Region "Events"
Public Event SoapResponse(By Val env As SoapEnvelope)
#End Region
#Region "Structures "
Structure strucWebReqAndI D
Public WebRequest As HttpWebRequest
Public RequestStream As Stream
Public RequestEnvelope As SoapEnvelope
Public ContactID As Guid
End Structure
#End Region
#Region "Declares"
Dim Store As New
Microsoft.Web.S ervices.Securit y.X509.X509Cert ificateStore(Se curity.X509.X50 9 CertificateStor e.StoreProvider .System,
Security.X509.X 509CertificateS tore.StoreLocat ion.CurrentUser , Store.MyStore) Dim SPM As ServicePointMan ager
Dim MySP As ServicePoint
Dim MyURI As New Uri(CICS_URL)
#End Region
#Region "Functions"
Sub New()
Try
SPM.CheckCertif icateRevocation List = False
SPM.DefaultConn ectionLimit = 10
SPM.Expect100Co ntinue = False
SPM.MaxServiceP ointIdleTime = 4950
SPM.UseNagleAlg orithm = True
MySP = SPM.FindService Point(MyURI)
MySP.MaxIdleTim e = 5000
MySP.Connection Limit = 10
Store.Open()
Catch e As Exception
Debug.WriteLine (e.ToString)
End Try
End Sub
Sub SendSOAP(ByVal env As SoapEnvelope, ByVal ContactID As Guid)
Try
Dim CertLookupResul t As Security.X509.X 509CertificateC ollection
CertLookupResul t = Store.FindCerti ficateBySubject String(Certific ate_Name)
If CertLookupResul t.Count = 0 Then
Dim db1SqlCon As New SqlClient.SqlCo nnection
Dim db1SqlCmd As New SqlClient.SqlCo mmand
db1SqlCon.Conne ctionString = DB_Connect_Stri ng
db1SqlCon.Open( )
db1SqlCmd.Conne ction = db1SqlCon
db1SqlCmd.Comma ndType = CommandType.Tex t
db1SqlCmd.Comma ndText = "Insert Into debug_Error_Log (EventDetail) Values
('SoapDriver NO CTI CERTIFICATE!')"
db1SqlCmd.Execu teNonQuery()
db1SqlCmd.Dispo se()
db1SqlCon.Close ()
db1SqlCon.Dispo se()
GC.Collect()
Exit Sub
End If
Dim ReqData As strucWebReqAndI D
Dim HTTPPost As HttpWebRequest
HTTPPost = HttpWebRequest. Create(CICS_URL )
HTTPPost.Method = "POST"
HTTPPost.Conten tType = "text/xml"
HTTPPost.Timeou t = 6000
HTTPPost.Protoc olVersion = HttpVersion.Ver sion10
HTTPPost.KeepAl ive = False
HTTPPost.Client Certificates.Ad d(CertLookupRes ult.Item(0))
ReqData.Request Envelope = env
ReqData.WebRequ est = HTTPPost
ReqData.Contact ID = ContactID
HTTPPost.BeginG etRequestStream (AddressOf GotRequestStrea m, ReqData)
GC.Collect()
Catch e As Exception
Dim dbSqlCon As New SqlClient.SqlCo nnection
Dim dbSqlCmd As New SqlClient.SqlCo mmand
dbSqlCon.Connec tionString = DB_Connect_Stri ng
dbSqlCon.Open()
dbSqlCmd.Connec tion = dbSqlCon
dbSqlCmd.Comman dType = CommandType.Tex t
dbSqlCmd.Comman dText = "Insert Into debug_Error_Log (EventDetail) Values
('SoapDriver SendSOAP" & e.ToString & "')"
dbSqlCmd.Execut eNonQuery()
dbSqlCmd.Dispos e()
dbSqlCon.Close( )
dbSqlCon.Dispos e()
End Try
End Sub
Sub GotRequestStrea m(ByVal IR As IAsyncResult)
Try
Dim ReqData As strucWebReqAndI D = IR.AsyncState
Dim ReqStream As Stream = ReqData.WebRequ est.EndGetReque stStream(IR)
ReqData.Request Stream = ReqStream
Dim rEncode As Encoding = System.Text.Enc oding.GetEncodi ng("ISO-8859-1")
Dim ReqWriter As New StreamWriter(Re qStream, rEncode)
ReqWriter.Write (ReqData.Reques tEnvelope.Outer Xml)
ReqWriter.Close ()
ReqData.WebRequ est.BeginGetRes ponse(AddressOf GotResponse, ReqData)
Catch ex As Exception
Dim dbSqlCon As New SqlClient.SqlCo nnection
Dim dbSqlCmd As New SqlClient.SqlCo mmand
dbSqlCon.Connec tionString = DB_Connect_Stri ng
dbSqlCon.Open()
dbSqlCmd.Connec tion = dbSqlCon
dbSqlCmd.Comman dType = CommandType.Tex t
dbSqlCmd.Comman dText = "Insert Into debug_Error_Log (EventDetail) Values
('SoapDriver GotRequestStrea m " & ex.ToString & "')"
dbSqlCmd.Execut eNonQuery()
dbSqlCmd.Dispos e()
dbSqlCon.Close( )
dbSqlCon.Dispos e()
End Try
End Sub
Sub GotResponse(ByV al IR As IAsyncResult)
Dim RespString As String
Try
Dim ReqData As strucWebReqAndI D
ReqData = IR.AsyncState
Dim HTTPResp As HttpWebResponse
HTTPResp = ReqData.WebRequ est.EndGetRespo nse(IR)
Dim RespStream As Stream = HTTPResp.GetRes ponseStream
Dim encode As Encoding = System.Text.Enc oding.GetEncodi ng("utf-8")
Dim readStream As New StreamReader(Re spStream, encode)
RespString = readStream.Read ToEnd
HTTPResp.Close( )
Dim Replacer As RegularExpressi ons.Regex
RespString = Replacer.Replac e(RespString, "&", "+")
Dim SoapResp As New SoapEnvelope
SoapResp.LoadXm l(RespString)
RaiseEvent ProfileResponse (ParseSoapProfi leResponse(Soap Resp),
ReqData.Contact ID)
Catch e As WebException
Dim dbSqlCon As New SqlClient.SqlCo nnection
Dim dbSqlCmd As New SqlClient.SqlCo mmand
dbSqlCon.Connec tionString = DB_Connect_Stri ng
dbSqlCon.Open()
dbSqlCmd.Connec tion = dbSqlCon
dbSqlCmd.Comman dType = CommandType.Tex t
dbSqlCmd.Comman dText = "Insert Into debug_Error_Log (EventDetail) Values
('SoapDriver GotRespone WebException " & e.ToString & "')"
dbSqlCmd.Execut eNonQuery()
dbsqlcmd.Dispos e()
dbSqlCon.Close( )
dbsqlcon.Dispos e()
Catch e As Exception
Dim dbSqlCon As New SqlClient.SqlCo nnection
Dim dbSqlCmd As New SqlClient.SqlCo mmand
dbSqlCon.Connec tionString = DB_Connect_Stri ng
dbSqlCon.Open()
dbSqlCmd.Connec tion = dbSqlCon
dbSqlCmd.Comman dType = CommandType.Tex t
dbSqlCmd.Comman dText = "Insert Into debug_Error_Log (EventDetail) Values
('SoapDriver GotResponse " & e.ToString & "')"
dbSqlCmd.Execut eNonQuery()
dbSqlCmd.Comman dText = "Insert Into debug_Error_Log (EventDetail) Values
('SoapDriver GotResponse String Was " & RespString & "')"
dbSqlCmd.Execut eNonQuery()
dbsqlcmd.Dispos e()
dbSqlCon.Close( )
dbsqlcon.Dispos e()
End Try
End Sub
#End Region
End Class

Nov 20 '05 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
12346
by: Dan Battagin | last post by:
Is there a known bug with the interaction between the HttpWebRequest and the ThreadPool? I current spawn several HttpWebRequest's using BeginGetResponse, and they work for a while, using worker threads from the ThreadPool. However, eventually (relatively quickly) there become fewer and fewer available worker threads in the pool, until there are 0 and a System.InvalidOperationException occurs with the message: "There were not enough free...
10
19362
by: Gregory A Greenman | last post by:
I'm trying to write a program in vb.net to automate filling out a series of forms on a website. There are three forms I need to fill out in sequence. The first one is urlencoded. My program is able to fill that one out just fine. The second form is multipart/form-data. Unfortunately, I haven't been able to fill that out in a way that makes the server happy. I set up a copy of this form at my web site so that I could see exactly what a...
1
343
by: Bruce Wiebe | last post by:
hi all Im having a big problem connecting to a SSL site (HSBC Bank) using httpWebRequest. what i need to do is connet to the site and pass over an xml string and read the response. Im pretty sure that ive created the connection etc properly however when i attempt to do the post the page collapses in a heap when it tries to get the request stream with an error of The Function Completed Successfully, but must be called again to complete...
1
403
by: etantonio | last post by:
Good Morning, I need to read a web page, to do this I use the following code that works well if I choose sAddressTime = "http://www.etantonio.it/it/index.aspx" and you can see the trace results at http://www.etantonio.it/it/trad_OK.aspx while it is not working if I choose
4
5043
by: Steven Pu | last post by:
Hi, Specifically, the website I am trying to access is, https://gmail.google.com/ I've read elsewhere that Google only uses SSL2, while .NET uses SSL3 and is not backward compatible. Is this true? In any case, I want to know how this problem can be solved. The code
1
12613
by: Jeff B | last post by:
I'm trying to create a simple screen scraping application and I kept getting a System.Net.WebException thrown back with a message of "The operation has timed-out." At first I thought it was some kind of connectivity issue on the machine. It didn't make sense though, because I can open up a browser on the same machine and easily browse the web. I'm stumped. I looked over my code for any errors and just couldn't find what I was doing...
6
4928
by: Rachet? | last post by:
I am getting a "The remote server returned an error: (400) Bad Request." error while trying to send data to an asp page. The puzzle is, if I paste the string I want to send on a browser address box, it just go fine. From the win form app also it go fine until I happen to send an xml formatted string as a value. But same go fine through the browser. Any help is greatly appreciated. My code looks like:
0
1513
by: Alex Papadimoulis | last post by:
Hey Group, I'm in the process of converting an ASP-based site to an ASP.NET site and built a control that wraps around an ASP page. The control simply does a GET to the same server to render the ASP content, and then just writes it to the page. In development and testing, there were no problems. Once deployed to production, after the site runs for a few hours, it starts to slow down and throw countless "Operation Has Timed Out"...
0
2039
by: Alex Papadimoulis | last post by:
Hey Group, I'm in the process of converting an ASP-based site to an ASP.NET site and built a control that wraps around an ASP page. The control simply does a GET to the same server to render the ASP content, and then just writes it to the page. In development and testing, there were no problems. Once deployed to production, after the site runs for a few hours, it starts to slow down and throw countless "Operation Has Timed Out"...
0
9519
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10213
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10163
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10000
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9040
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7538
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6780
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
1
4113
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2920
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.