hi,
im doing a bit of preparation for my uni project that im currently designing. Im just trying to think forward to my implementation so i know what i can design and what i cant now.
i need my asp.net application to be able to give a vb.net app, that is already running on the same computer as the asp.net application, some data. So basically a user can give data to the asp.net application through the web and then the data is passed to the vb.net application to deal with.
is it possible for a running application to pass data to another already-running application? i could just have the asp.net app dump the data in an xml file or database and get the vb.net application check that location every repetition for new instrucitons but its a bit untidy and id rather do it in memory somehow by having a shared data structure. the asp.net be able to find the vb.net apps datastructure, gain control of it and dump data in it.
ive read that an application that starts two threads within itself can have a shared data structure between the two threads but this is a seperate application trying to talk to another seperate application.
any suggestions?
im doing a bit of preparation for my uni project that im currently designing. Im just trying to think forward to my implementation so i know what i can design and what i cant now.
i need my asp.net application to be able to give a vb.net app, that is already running on the same computer as the asp.net application, some data. So basically a user can give data to the asp.net application through the web and then the data is passed to the vb.net application to deal with.
is it possible for a running application to pass data to another already-running application? i could just have the asp.net app dump the data in an xml file or database and get the vb.net application check that location every repetition for new instrucitons but its a bit untidy and id rather do it in memory somehow by having a shared data structure. the asp.net be able to find the vb.net apps datastructure, gain control of it and dump data in it.
ive read that an application that starts two threads within itself can have a shared data structure between the two threads but this is a seperate application trying to talk to another seperate application.
any suggestions?