Import XML Too Many Clients At The Same Time?
May 17, 2010
XML is used as one of our main integration points. it comes over by many clients at a time but too many clients importing at the same time can slow down our database to a crawl. Someone has to have solved a problem like this. I am basically using VB to parse through the data and import what i want and don't want.
View 2 Replies
ADVERTISEMENT
May 31, 2010
I'm using a SQL database and I'm writing a VB.NET client application. This application is used on multiple computers at the same time. If one of the clients makes an update to the database I would like to have the other clients to be aware of the update.
Has ony one already done this before?
View 3 Replies
Oct 5, 2009
am working on an application in vb that requires using shell to call up windows date and time settings from clients machine.
View 2 Replies
Jan 31, 2012
I have a machine which creates a new log file at the beginning of the day(12am) and updates the log file whenever there is any changes until the end of the day. How do I import the data in real time (30 sec, 1min or whenever there is any changes) to my SQL server database? Will SQL Server 2008 be able to access the active log file? If not will it be easier if I let my machine create a new log file whenever there is any updates? But if it is so, how do I import so many log files with different names in real time. (I must be able to scale the solution up to multiple machines).
View 3 Replies
Jan 31, 2009
I have got a MySQL database that has got some dates stored in a Date format (YYYY-MM-DD) however when i try and import the data i get an error saying: "Unable to convert MySQL date/time value to System.DateTime"
[Code]...
View 5 Replies
May 10, 2010
I want to write a program in vb2008 that can import a text file into a Access 2000 database, but using import specifications already in the access database.
View 2 Replies
Jul 26, 2010
I created application database by vb.net and sql server 2005 now I have some computer on the one of them I installed sqlserver 2005 and other (Clients) computers I installed Application how I can connecting my application to sql server on the pc1 or how I can using connection string.
View 2 Replies
Apr 30, 2012
i was just wondering what other options we have. MDI seems to be main feature most clients have.Would you use one if building an irc client? I started off with out one. Half way threw decided to start using one.
View 2 Replies
Jun 9, 2011
How to make clients on sql server i mean when i will install my application on clients how i will connect it with sql server?
View 3 Replies
Feb 4, 2011
I'm developing an application, which will have a common db in a server (SQLServer db) and the client PCs will have my program installed - in a LAN.
So, my question is, when the users in the client PC wants to pass some messages (for eg: one of the user got a message from his boss that all of them are requested to meet him). That is, I want to implement a communication system through my app. It will be a common message system. That is, just like a shoutbox.
So, do I have to use a TCP based communication system or just use a timer to check the db for any new messages and display them ?
View 2 Replies
Jul 1, 2011
How can I retrieve the clients IP address that in use of my application? Is there's a code that retrieves a value from clients computer running application?
View 4 Replies
Mar 8, 2011
i want to designe a simple program that have one server and multiple clients.i program with vb.net,but dont know anything about winsock, can you send me a sample code for start.
View 1 Replies
Dec 2, 2009
(Using vb 2008 express.)
I am trying to create a server to send clients text on request. I am using a tcp listener to accept clients then send each client to a thread in a threadpool which deals with each client's request then closes the client connection. It seems to work fine but I would like to know how it works. Using the listen loop below I cant help feeling I should be sending some values to the threaded sub. How does it know which client each thread is dealing with?
Sub ListenLoop()
Looop:
Client = Server.AcceptTcpClient
[Code].....
View 1 Replies
Aug 27, 2010
with XP and Outlook it works perfect, with Vista it does not.
Any chance to get it running on all clients? The source is very simple.
Trying to send some Input data using mailto.
Always works, but on some clients everything is in the subjet and not in the body! Other clients seem to be ok.[code....]
View 3 Replies
Oct 4, 2009
I am programming a chat like application using Tcp. Now I have a probem. I am going to have loads and loads of data being transferred so I will have to use 4 seperate ports.[code...]
My problem is for me to use a maximum of 4 ports all together transferring data from the client(s) to the server(s) I will need 4 clients and 4 servers. I need to open 4 instances of 4 clients. I was going to put a client in a form and then when the client is running it creates 4 instances of that form but than there would be too much confusion going on. I think there my be a way to use Classes instead of forms.
[code...]
View 6 Replies
Oct 7, 2011
I am trying to make a host so that as clients connect they will appear in a list box. I can get multiple connections going, but the list box remains empty.
[code]...
View 7 Replies
May 5, 2009
We need to conditionally disable GZIP compression if user's browser is IE6 (it hangs browser for 5min) in few pages of larger site. Server is IIS7 and has compression for static content turned on - want that compression left working if user agent is not Mozilla/4.0. ASPX code sample anyone? Alternatively, code to conditionally redirect to the same page on another site (could create another virtual site with compression disabled) but need to pass all parameters (GET/POST).
View 1 Replies
Mar 18, 2012
Protected Sub btnLocalSubmit_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnLocalSubmit.Click
Dim logic = New connections
logic.emailsToSend(User.Identity.Name, getURL, reportedBy)[code]....
I am using the smtp clients SendAsync() function to send out emails asynchronously...but this function does not work ...why?? i do not get any email..when i send it Synchronously...i get the emails, this means my settings are correct...so what is wrong with the SendAsync() method??
View 1 Replies
Aug 16, 2011
I want to write a warehouse program which has near 80 clients.My program has to make some reports and control entrance and exit of commodities in warehouse and store data in SQL Server Database.I need to know that which one is better: using windows application which give me a lot of feathers or creating website which reduce my ability in using objects?I have to mention that my clients will not increase.
View 4 Replies
Jun 25, 2009
I have been programming a TcpListener Program and I have everything working right! So far... Except that when I have multiple clients connecting to my Server... I used a try catch statement to catch the error and it says that tcplistener doesn't allow multi connections... think creating a new thread for each connection sounds like the most reasonible answer but I can't grasp the concept of it...
Here is my frmMain:
Imports System.IO
Imports System.Net
[code].....
View 1 Replies
Apr 21, 2011
In our company we have some specific softwares that have several releases during a year and we were wondering to notify the clients about new releases automatically. How can we code this functionality? I mean from where should we begin? we have an ftp which will contain those files. And How is that possible for us just to do the upgrade without uninstall and re-installing the whole package?
View 2 Replies
Oct 8, 2011
I posted this code in another thread as an example of how to listen for connecting clients using TcpListener.it is a small part of a larger project, its all my own work,
Imports System.Net
Imports System.Net.Sockets
Public Class Server[code].....
View 2 Replies
Aug 2, 2010
Given the code, ss there a way to propagate messages send from any of the multithreaded chat client to all the other chat client:
First the main will call startClient:
Public Sub startClient(ByVal inClientSocket As TcpClient, _
ByVal clineNo As String)
[code]......
View 1 Replies
Aug 27, 2010
Actually I have created a chat application is it possible to send data to particular client only?
View 1 Replies
May 5, 2009
I have a program in accounting that is used by many clients and users at the same time in a network. Many modules have a reference no. like in the receipt that increments upon saving, it also Checks whether that reference no. is already in used.
However problem arises when the many users use the same module at the same time. My question is How do you manage incremental values on each client's PC? Their local system somehow competes for the next incremental no.
View 4 Replies
Feb 28, 2009
Using this example here, do you think it would be possible to develop it to show who is connected to the server?
View 10 Replies
Mar 2, 2011
I have a ASP.Net VB.Net application, which I developed an deployed in about 2004. I have just upgraded it to a new server and IIS 6.0. The application requires users to login from IE it and maintains their State using sessions on the server. I would like the users to be able to have multiple browsers open, each running with unique data on their client system. Is this possible, if so, what do I need to do?
View 4 Replies
Jan 23, 2009
I am working on a client/server application. Everything seems to go well for a while (a few hrs, a few mins its kind of random) then suddenly clients stop receiving data. maybe 1 or two, or all of them. in the end I end up having to restart the server piece to resolve it, but I am trying to understand why its doing this. I've added try catches around the send piece, but it doesnt error out. When the app fires, the listener is started on its own thread. When a new connection is made, that connection is passed to a class that handles all of my connection data(send/receive, responding to commands, etc). The class is started in its own thread, so each connection is running in its own memory space. This issue seems to happen with 1 client connected, or 20, it doesn't really seem to matter.
This causes other issues, like a customer who thinks he is disconnected, will shut down his app, which is supposed to send a command to close the connection on the server side which it does not., so now I have several "closed" connections still open on the server, which is obviously also bad. Another thing I dont get is that it worked fine when I was developing the pieces on my dev box, so I dont get why I have all of these "timeout" issues now. (I put that in quotes, because the timeout period is the default of 10 mins, and I xmit data, at LEAST every minute when the server pushes data updates to all clients)
Here is some of the relevant code
vb
'Command Object, this holds all of the command information being passed back and forth to tell the server what to do, and as well as hold the response.
'The strCMD is the command, strParms is the parameters of the command, obj is ANY object I want to send along with this information
<Serializable()> Public Structure CommandData
Public strCMD As String
[Code] .....
View 7 Replies
Feb 18, 2011
i am trying to redistribute my app that uses Oracle 11g:
Imports Oracle.DataAccess.Client
The problem i am having is that it will not run on a machine that doesnt seem to have the correct drivers that its looking for. When i install ODAC 11.2 Release 3 (11.2.0.2.1) with Oracle Developer Tools for Visual Studio on the test VM it works just fine but thats a 230+mb file to download and install! Not to mention that if the user already has Oracle 10/11g on their machine that it may mess up their current connections/etc by installing that setup file.Is there another setup package that i can install that only has the Oracle Data Provider for .NET 2.0 11.2.0.2.0 or whatever its needing from that ODAC 11.2 Release 3 file.
View 1 Replies
Sep 21, 2011
l have just written a vb.net application and would like to install it on the server such that various users would access the central database on the server how would l achieve that in vb.net
View 1 Replies