Which .NET object can I use to move(stream?) a file from a WPF desktop app to an Azure webapp (.NET Core 2)? The Next CEO of Stack OverflowHow do I save a stream to a file in C#?Why not inherit from List<T>?Azure Blob Storage vs. File ServiceWhich activity is used to move files with in Azure blob storageMoving files from Azure Blob / Files storage to Azure FTP spaceAzure Logic App gets csv file from SFTP Server and inserts into Azure SQL Database TableChunk file stream and send them to azure blob by asp.net coreHow to add trigger to move file to azure blob from azure file share when a file uploaded to azure file share?“The request failed with an empty response.” SOAP request error in some system after moving to azure app service from VM.Can we move image,video files from one location to another using Azure Data Factory?
Is it my responsibility to learn a new technology in my own time my employer wants to implement?
Too much space between section and text in a twocolumn document
Putting a 2D region plot under a 3D plot
Why does C# sound extremely flat when saxophone is tuned to G?
Visit to the USA with ESTA approved before trip to Iran
How to make a software documentation "officially" citable?
Science fiction (dystopian) short story set after WWIII
What does "Its cash flow is deeply negative" mean?
Horror movie/show or scene where a horse creature opens its mouth really wide and devours a man in a stables
Why did we only see the N-1 starfighters in one film?
Can the Reverse Gravity spell affect the Meteor Swarm spell?
When did Lisp start using symbols for arithmetic?
How to count occurrences of text in a file?
Was a professor correct to chastise me for writing "Prof. X" rather than "Professor X"?
Example of a Mathematician/Physicist whose Other Publications during their PhD eclipsed their PhD Thesis
% symbol leads to superlong (forever?) compilations
What happens if you roll doubles 3 times then land on "Go to jail?"
How can I get through very long and very dry, but also very useful technical documents when learning a new tool?
What does this shorthand mean?
How to use tikz in fbox?
Inappropriate reference requests from Journal reviewers
How do spells that require an ability check vs. the caster's spell save DC work?
I believe this to be a fraud - hired, then asked to cash check and send cash as Bitcoin
Text adventure game code
Which .NET object can I use to move(stream?) a file from a WPF desktop app to an Azure webapp (.NET Core 2)?
The Next CEO of Stack OverflowHow do I save a stream to a file in C#?Why not inherit from List<T>?Azure Blob Storage vs. File ServiceWhich activity is used to move files with in Azure blob storageMoving files from Azure Blob / Files storage to Azure FTP spaceAzure Logic App gets csv file from SFTP Server and inserts into Azure SQL Database TableChunk file stream and send them to azure blob by asp.net coreHow to add trigger to move file to azure blob from azure file share when a file uploaded to azure file share?“The request failed with an empty response.” SOAP request error in some system after moving to azure app service from VM.Can we move image,video files from one location to another using Azure Data Factory?
I have a WPF desktop app that can use the HTTPClient to move structured data from the desktop to an Azure webapp (and then on to an Azure SQL Server). Now I need to move a file (image or other) from the desktop to the same Azure webapp and then to an Azure Blob. I'm not sure if the HTTPClient is the correct object to move(?stream) the file up to the webapp or if there is a more appropriate object to use. (I will also need to downlown files from the webapp to the WPF desktop app as well).
c# wpf azure
add a comment |
I have a WPF desktop app that can use the HTTPClient to move structured data from the desktop to an Azure webapp (and then on to an Azure SQL Server). Now I need to move a file (image or other) from the desktop to the same Azure webapp and then to an Azure Blob. I'm not sure if the HTTPClient is the correct object to move(?stream) the file up to the webapp or if there is a more appropriate object to use. (I will also need to downlown files from the webapp to the WPF desktop app as well).
c# wpf azure
See Microsoft Docs for official libs and tutorials.
– Mikael Dúi Bolinder
Mar 8 at 12:51
add a comment |
I have a WPF desktop app that can use the HTTPClient to move structured data from the desktop to an Azure webapp (and then on to an Azure SQL Server). Now I need to move a file (image or other) from the desktop to the same Azure webapp and then to an Azure Blob. I'm not sure if the HTTPClient is the correct object to move(?stream) the file up to the webapp or if there is a more appropriate object to use. (I will also need to downlown files from the webapp to the WPF desktop app as well).
c# wpf azure
I have a WPF desktop app that can use the HTTPClient to move structured data from the desktop to an Azure webapp (and then on to an Azure SQL Server). Now I need to move a file (image or other) from the desktop to the same Azure webapp and then to an Azure Blob. I'm not sure if the HTTPClient is the correct object to move(?stream) the file up to the webapp or if there is a more appropriate object to use. (I will also need to downlown files from the webapp to the WPF desktop app as well).
c# wpf azure
c# wpf azure
asked Mar 8 at 12:48
IntensivistIntensivist
206212
206212
See Microsoft Docs for official libs and tutorials.
– Mikael Dúi Bolinder
Mar 8 at 12:51
add a comment |
See Microsoft Docs for official libs and tutorials.
– Mikael Dúi Bolinder
Mar 8 at 12:51
See Microsoft Docs for official libs and tutorials.
– Mikael Dúi Bolinder
Mar 8 at 12:51
See Microsoft Docs for official libs and tutorials.
– Mikael Dúi Bolinder
Mar 8 at 12:51
add a comment |
2 Answers
2
active
oldest
votes
HttpClient
just establishes the channel (and authentication) for back and forth communications with some API; whether the data being transferred is structured or unstructured is practically irrelevant. What should concern you are:
are your complex types (or reference types e.g. classes) correctly defined for the data (e.g. byte arrays for image/other data) being transferred and processed? Are they also properly nested where applicable?
is your serialization mechanism (e.g. Json.NET versus ProtoBuf-Net) efficient given the data and resources you're working with? Are they also properly configured?
add a comment |
You could use httpclient and build your own web api service you host.
Maybe you want to re-use that end point for some other app like a web site.
Otherwise, you can upload your file straight to azure. No serialisation and deserialisation overhead.
The thing designed for his scenario is CloudBlobClient.
There's a BufferManager which you would usually configure as a WCF Buffer Manager adapter.
It's a bit fiddly but there's example code on github:
https://github.com/Azure-Samples/storage-blob-dotnet-getting-started
https://github.com/Azure-Samples/storage-blob-dotnet-getting-started/blob/master/BlobStorage/Advanced.cs
add a comment |
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%2f55063578%2fwhich-net-object-can-i-use-to-movestream-a-file-from-a-wpf-desktop-app-to-an%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
HttpClient
just establishes the channel (and authentication) for back and forth communications with some API; whether the data being transferred is structured or unstructured is practically irrelevant. What should concern you are:
are your complex types (or reference types e.g. classes) correctly defined for the data (e.g. byte arrays for image/other data) being transferred and processed? Are they also properly nested where applicable?
is your serialization mechanism (e.g. Json.NET versus ProtoBuf-Net) efficient given the data and resources you're working with? Are they also properly configured?
add a comment |
HttpClient
just establishes the channel (and authentication) for back and forth communications with some API; whether the data being transferred is structured or unstructured is practically irrelevant. What should concern you are:
are your complex types (or reference types e.g. classes) correctly defined for the data (e.g. byte arrays for image/other data) being transferred and processed? Are they also properly nested where applicable?
is your serialization mechanism (e.g. Json.NET versus ProtoBuf-Net) efficient given the data and resources you're working with? Are they also properly configured?
add a comment |
HttpClient
just establishes the channel (and authentication) for back and forth communications with some API; whether the data being transferred is structured or unstructured is practically irrelevant. What should concern you are:
are your complex types (or reference types e.g. classes) correctly defined for the data (e.g. byte arrays for image/other data) being transferred and processed? Are they also properly nested where applicable?
is your serialization mechanism (e.g. Json.NET versus ProtoBuf-Net) efficient given the data and resources you're working with? Are they also properly configured?
HttpClient
just establishes the channel (and authentication) for back and forth communications with some API; whether the data being transferred is structured or unstructured is practically irrelevant. What should concern you are:
are your complex types (or reference types e.g. classes) correctly defined for the data (e.g. byte arrays for image/other data) being transferred and processed? Are they also properly nested where applicable?
is your serialization mechanism (e.g. Json.NET versus ProtoBuf-Net) efficient given the data and resources you're working with? Are they also properly configured?
answered Mar 8 at 13:32
skynodeskynode
113
113
add a comment |
add a comment |
You could use httpclient and build your own web api service you host.
Maybe you want to re-use that end point for some other app like a web site.
Otherwise, you can upload your file straight to azure. No serialisation and deserialisation overhead.
The thing designed for his scenario is CloudBlobClient.
There's a BufferManager which you would usually configure as a WCF Buffer Manager adapter.
It's a bit fiddly but there's example code on github:
https://github.com/Azure-Samples/storage-blob-dotnet-getting-started
https://github.com/Azure-Samples/storage-blob-dotnet-getting-started/blob/master/BlobStorage/Advanced.cs
add a comment |
You could use httpclient and build your own web api service you host.
Maybe you want to re-use that end point for some other app like a web site.
Otherwise, you can upload your file straight to azure. No serialisation and deserialisation overhead.
The thing designed for his scenario is CloudBlobClient.
There's a BufferManager which you would usually configure as a WCF Buffer Manager adapter.
It's a bit fiddly but there's example code on github:
https://github.com/Azure-Samples/storage-blob-dotnet-getting-started
https://github.com/Azure-Samples/storage-blob-dotnet-getting-started/blob/master/BlobStorage/Advanced.cs
add a comment |
You could use httpclient and build your own web api service you host.
Maybe you want to re-use that end point for some other app like a web site.
Otherwise, you can upload your file straight to azure. No serialisation and deserialisation overhead.
The thing designed for his scenario is CloudBlobClient.
There's a BufferManager which you would usually configure as a WCF Buffer Manager adapter.
It's a bit fiddly but there's example code on github:
https://github.com/Azure-Samples/storage-blob-dotnet-getting-started
https://github.com/Azure-Samples/storage-blob-dotnet-getting-started/blob/master/BlobStorage/Advanced.cs
You could use httpclient and build your own web api service you host.
Maybe you want to re-use that end point for some other app like a web site.
Otherwise, you can upload your file straight to azure. No serialisation and deserialisation overhead.
The thing designed for his scenario is CloudBlobClient.
There's a BufferManager which you would usually configure as a WCF Buffer Manager adapter.
It's a bit fiddly but there's example code on github:
https://github.com/Azure-Samples/storage-blob-dotnet-getting-started
https://github.com/Azure-Samples/storage-blob-dotnet-getting-started/blob/master/BlobStorage/Advanced.cs
answered Mar 8 at 14:43
AndyAndy
3,4971108
3,4971108
add a comment |
add a comment |
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%2f55063578%2fwhich-net-object-can-i-use-to-movestream-a-file-from-a-wpf-desktop-app-to-an%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
See Microsoft Docs for official libs and tutorials.
– Mikael Dúi Bolinder
Mar 8 at 12:51