Passing a file to another application without saving itHow can I detect the encoding/codepage of a text fileHow to create Excel (.XLS and .XLSX) file in C# without installing Ms Office?How do I save a stream to a file in C#?Best practice to save application settings in a Windows Forms ApplicationHow do I get a consistent byte representation of strings in C# without manually specifying an encoding?How do I update the GUI from another thread?How can I get the application's path in a .NET console application?Pass Method as Parameter using C#How do I force my .NET application to run as administrator?WCF vs ASP.NET Web API
Fair gambler's ruin problem intuition
How can saying a song's name be a copyright violation?
Is this draw by repetition?
Why do I get negative height?
Processor speed limited at 0.4 Ghz
How do I exit BASH while loop using modulus operator?
Can I hook these wires up to find the connection to a dead outlet?
Could the museum Saturn V's be refitted for one more flight?
How to travel to Japan while expressing milk?
How does a dynamic QR code work?
How to find if SQL server backup is encrypted with TDE without restoring the backup
My ex-girlfriend uses my Apple ID to log in to her iPad. Do I have to give her my Apple ID password to reset it?
How to remove border from elements in the last row?
How to compactly explain secondary and tertiary characters without resorting to stereotypes?
Unlock My Phone! February 2018
How does a refinance allow a mortgage to be repaid?
One verb to replace 'be a member of' a club
Bullying boss launched a smear campaign and made me unemployable
Why is it a bad idea to hire a hitman to eliminate most corrupt politicians?
Am I breaking OOP practice with this architecture?
What do you call someone who asks many questions?
What exactly is ineptocracy?
Is it possible to create a QR code using text?
If a warlock makes a Dancing Sword their pact weapon, is there a way to prevent it from disappearing if it's farther away for more than a minute?
Passing a file to another application without saving it
How can I detect the encoding/codepage of a text fileHow to create Excel (.XLS and .XLSX) file in C# without installing Ms Office?How do I save a stream to a file in C#?Best practice to save application settings in a Windows Forms ApplicationHow do I get a consistent byte representation of strings in C# without manually specifying an encoding?How do I update the GUI from another thread?How can I get the application's path in a .NET console application?Pass Method as Parameter using C#How do I force my .NET application to run as administrator?WCF vs ASP.NET Web API
I am writing a WPF application. it communicates with a MySQL database. The database contains files as a mediumblob. the communication is working entirely fine and reading and writing the values into the database.
There is an already finished application, that can be called with a file as a parameter.
Is there any way I can pass the file into the other application without saving it? Till now I am saving the file and passing the path to it.
c# .net windows ipc
|
show 3 more comments
I am writing a WPF application. it communicates with a MySQL database. The database contains files as a mediumblob. the communication is working entirely fine and reading and writing the values into the database.
There is an already finished application, that can be called with a file as a parameter.
Is there any way I can pass the file into the other application without saving it? Till now I am saving the file and passing the path to it.
c# .net windows ipc
2
stdin/stdout. Named pipes. Shared memory. Etc.
– Dai
Mar 7 at 21:33
1
Do you own the finished application? If it only accepts a file path, and you don't have access to the source, then you are out of luck.
– Blorgbeard
Mar 7 at 21:37
thanks, going to take a look into this. @Dai
– Archangel
Mar 7 at 21:41
@Blorgbeard yes, i do only own the finished application. so it doesn't, thanks alot :)
– Archangel
Mar 7 at 21:41
1
For googling purposes, the general name for this is IPC (interprocess communication). There are lots of options, some given by @Dai above.
– Blorgbeard
Mar 7 at 21:53
|
show 3 more comments
I am writing a WPF application. it communicates with a MySQL database. The database contains files as a mediumblob. the communication is working entirely fine and reading and writing the values into the database.
There is an already finished application, that can be called with a file as a parameter.
Is there any way I can pass the file into the other application without saving it? Till now I am saving the file and passing the path to it.
c# .net windows ipc
I am writing a WPF application. it communicates with a MySQL database. The database contains files as a mediumblob. the communication is working entirely fine and reading and writing the values into the database.
There is an already finished application, that can be called with a file as a parameter.
Is there any way I can pass the file into the other application without saving it? Till now I am saving the file and passing the path to it.
c# .net windows ipc
c# .net windows ipc
edited Mar 7 at 21:53
Blorgbeard
75.9k40197249
75.9k40197249
asked Mar 7 at 21:32
ArchangelArchangel
12
12
2
stdin/stdout. Named pipes. Shared memory. Etc.
– Dai
Mar 7 at 21:33
1
Do you own the finished application? If it only accepts a file path, and you don't have access to the source, then you are out of luck.
– Blorgbeard
Mar 7 at 21:37
thanks, going to take a look into this. @Dai
– Archangel
Mar 7 at 21:41
@Blorgbeard yes, i do only own the finished application. so it doesn't, thanks alot :)
– Archangel
Mar 7 at 21:41
1
For googling purposes, the general name for this is IPC (interprocess communication). There are lots of options, some given by @Dai above.
– Blorgbeard
Mar 7 at 21:53
|
show 3 more comments
2
stdin/stdout. Named pipes. Shared memory. Etc.
– Dai
Mar 7 at 21:33
1
Do you own the finished application? If it only accepts a file path, and you don't have access to the source, then you are out of luck.
– Blorgbeard
Mar 7 at 21:37
thanks, going to take a look into this. @Dai
– Archangel
Mar 7 at 21:41
@Blorgbeard yes, i do only own the finished application. so it doesn't, thanks alot :)
– Archangel
Mar 7 at 21:41
1
For googling purposes, the general name for this is IPC (interprocess communication). There are lots of options, some given by @Dai above.
– Blorgbeard
Mar 7 at 21:53
2
2
stdin/stdout. Named pipes. Shared memory. Etc.
– Dai
Mar 7 at 21:33
stdin/stdout. Named pipes. Shared memory. Etc.
– Dai
Mar 7 at 21:33
1
1
Do you own the finished application? If it only accepts a file path, and you don't have access to the source, then you are out of luck.
– Blorgbeard
Mar 7 at 21:37
Do you own the finished application? If it only accepts a file path, and you don't have access to the source, then you are out of luck.
– Blorgbeard
Mar 7 at 21:37
thanks, going to take a look into this. @Dai
– Archangel
Mar 7 at 21:41
thanks, going to take a look into this. @Dai
– Archangel
Mar 7 at 21:41
@Blorgbeard yes, i do only own the finished application. so it doesn't, thanks alot :)
– Archangel
Mar 7 at 21:41
@Blorgbeard yes, i do only own the finished application. so it doesn't, thanks alot :)
– Archangel
Mar 7 at 21:41
1
1
For googling purposes, the general name for this is IPC (interprocess communication). There are lots of options, some given by @Dai above.
– Blorgbeard
Mar 7 at 21:53
For googling purposes, the general name for this is IPC (interprocess communication). There are lots of options, some given by @Dai above.
– Blorgbeard
Mar 7 at 21:53
|
show 3 more comments
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55053116%2fpassing-a-file-to-another-application-without-saving-it%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55053116%2fpassing-a-file-to-another-application-without-saving-it%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
2
stdin/stdout. Named pipes. Shared memory. Etc.
– Dai
Mar 7 at 21:33
1
Do you own the finished application? If it only accepts a file path, and you don't have access to the source, then you are out of luck.
– Blorgbeard
Mar 7 at 21:37
thanks, going to take a look into this. @Dai
– Archangel
Mar 7 at 21:41
@Blorgbeard yes, i do only own the finished application. so it doesn't, thanks alot :)
– Archangel
Mar 7 at 21:41
1
For googling purposes, the general name for this is IPC (interprocess communication). There are lots of options, some given by @Dai above.
– Blorgbeard
Mar 7 at 21:53