The .Net console app is in 4.6.1 framework, using MongoDB.Driver 2.8.0. I referred many posts in SO, but I still get the timeout error. Below are the some of the posts I referred A timeout occured after 30000ms selecting a server using CompositeServerSelector System.TimeoutException: A timeout occured after 30000ms selecting [...] read more
I have a windows form application using MongoDB.driver. When I try to query for a user registered in my database I get the followin error: > System.TimeoutException HResult=0x80131505 Message=A timeout occured after > 30000ms selecting a server using CompositeServerSelector{ Selectors = > MongoDB.Driver.MongoClient+AreSessionsSupportedServerSelector, > LatencyLimitingServerSelector{ AllowedLatencyRange = 00:00:00.0150000 } }. [...] read more
I am trying to unlock the machine by passing user id and password in UiPath when scheduled bot trying to run the process in locked system Below is my code 'Create a new pipe client Using pipeClient As New System.IO.Pipes.NamedPipeClientStream( ".", "CredentialProviderPipe", PipeDirection.InOut, PipeOptions.None, System.Security.Principal.TokenImpersonationLevel.Impersonation) 'Attempt to connect to it [...] read more
A while I back, I created an app which utilized FluentFTP to list and download files from an FTP server. Within the past month, the app started timing out whenever performing any FTP action using the library. I examined the logs generated by FluentFTP and the actions were being performed [...] read more
I'm trying to automate UI's of an extension installed in Visual Studio 2019 Enterprise using WinAppDriver and after all the successful completion of configurations and test scenarios, the WinAppDriver server keeps throwing an error as below. Accept: application/json, image/png Connection: Keep-Alive Content-Length: 169 Content-Type: application/json;charset=utf-8 Host: 127.0.0.1:4723 User-Agent: selenium/3.141.0 (.net [...] read more
I'm using UIAutomation via COM interface in my WPF client app. Some users sometimes are taking hangs of their specific apps (like nVidia Control Panel). My app recieves that exception: > System.Runtime.InteropServices.COMException (0x80131505): Operation timed out. > (Exception from HRESULT: 0x80131505) in > UIAutomationClient.IUIAutomationElement.FindAll (TreeScope scope, > IUIAutomationCondition condition). I [...] read more
I am using UIAComWrapper.dll related methods in our code FindFirst(),FindALL() and GetParent(). Randomly each Method is throwing ElementNotAvailableException. Exceptions as follows: System.Windows.Automation.ElementNotAvailableException was caught HResult=-2147220991 Message=Element not available Source=UiaComWrapper InnerException: System.Runtime.InteropServices.COMException ErrorCode=-2146233083 HResult=-2146233083 Message=Operation timed out. (Exception from HRESULT: 0x80131505) Source=Interop.UIAutomationClient StackTrace: at UIAutomationClient.IUIAutomationTreeWalker.GetParentElementBuildCache(IUIAutomationElement element, IUIAutomationCacheRequest cacheRequest) at System.Windows.Automation.TreeWalker.GetParent(AutomationElement element, [...] read more
I am unable to launch the Telerik Test Studio recorder. My machine meets the requirements. I configured IE as required. I couldn't find WebUI Test Studio recorder. Machine configuration is as follows: XP 2002 SP3 .Net 4.0 Installed The log is as follows: 06/21 17:47:11,Telerik.TestStudio.exe(2836:30),Error] <>c__DisplayClass6.<AttachRecorderToWindow>b__4() : EXCEPTION! (see below) [...] read more
Last few days, SSIS Job is failing. Previously it was successfully executed. So I have executed the package using visual studio & it works. The source is SAP and used the Theobald component. SQL SERVER 2017 The following error is getting in SSMS Load Agreement data 1:Error: SSIS Error Code [...] read more
MongoClientSettings settings = new MongoClientSettings(); settings.Server = new MongoServerAddress("localhost", 27017); var client = new MongoClient(settings); var database = client.GetDatabase("test"); var collection = database.GetCollection<Logs>("testlogs"); var query = Builders<Logs>.Filter.Eq("itemName", "Nasri"); var entity = collection.Find(query).FirstOrDefault(); System.TimeoutException HResult=0x80131505 Message=A timeout occured after 30000ms selecting a server using CompositeServerSelector{ Selectors = MongoDB.Driver.MongoClient+AreSessionsSupportedServerSelector, LatencyLimitingServerSelector{ AllowedLatencyRange = [...] read more
Any thoughts as to what is wrong would be greatly appreciated. Thank you! Server started with the following flags mongodb-win32-x86_64-2008plus-ssl-4.0.2\bin\mongod --sslMode disabled --dbpath "C:\Users\foobar\AppData\Local\Temp\sj5ufivo.hgy" --port 27017 --bind_ip 127.0.0.1 --replSet singleNodeReplSet Application code MongoClient client = new MongoClient(@"mongodb://127.0.0.1:{0}/?connect=replicaSet;replicaSet=singleNodeReplSet".Formatted(port)); var admin = client.GetDatabase("admin"); var replConfig = new BsonDocument(new List<BsonElement>() { new BsonElement("_id", [...] read more
Problem The most reproducible scenario is starting the desktop application from a link on the tray application and then requesting the desktop application via a callback to do something. That virtually always throws a timeout error as other subsequent errors. WCF Environment: Server: A System Tray applet Client: WinForms desktop [...] read more
I'm trying to connect to a MongoDB Database using the MongoDB .NET API. It works fine and is able to write documents on localhost without credentials, but when I try to connect to a MongoDB Atlas server with credentials, it gives an exception when trying to write the document. Client [...] read more
I am getting a COM exception when running Coded Ui tests on windows 10. Is there a specific dependency I need to provide for windows 10 in order to run coded UI? Microsoft.VisualStudio.TestTools.UITest.Extension.UITestControlNotAvailableException: The control is not available or not valid. ---> System.Windows.Automation.ElementNotAvailableException: Element not available ---> System.Runtime.InteropServices.COMException: Operation timed [...] read more
My problem is saving and reading a zip file to a Redis Cache database which located onAzure. I tried something with StackExchange.Redis but I did not managed it. Do you know any example or solution about that? My Code like that.For this code I am getting time-out error. ConnectionMultiplexer connection [...] read more