473,382 Members | 1,359 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,382 software developers and data experts.

File Uploads to Web Service in both SOAP and HTTP-POST

I am trying to allow HTTP POST file uploads to my web service.
Currently I have it working perfectly for a SOAP/XML request reading
in a byte[ ] using MemoryStream/FileStream but I cannot figure out how
to encode a file on a POST to the same web service. The definition
requires a base64binary encoded file, which I have tried. The form is
also using a mutlipart/form-data enctype, but I either get a 500 error
or 'Request format is invalid'. Is there a trick to serializing a
form so that the web service will accept it as a byte[ ]?

Alternatively, I would be happy to differentiate the methods used and
create the files accordingly, ie. if its done over SOAP/XML use my
current method, or if its a POST call, use HttpFileCollection or
something? Can you differentiate how a web service was called within
the service itself?

Jul 6 '07 #1
6 5082
On Jul 5, 5:55 pm, Brybot <bryanr...@gmail.comwrote:
I am trying to allow HTTP POST file uploads to my web service.
Currently I have it working perfectly for a SOAP/XML request reading
in a byte[ ] using MemoryStream/FileStream but I cannot figure out how
to encode a file on a POST to the same web service. The definition
requires a base64binary encoded file, which I have tried. The form is
also using a mutlipart/form-data enctype, but I either get a 500 error
or 'Request format is invalid'. Is there a trick to serializing a
form so that the web service will accept it as a byte[ ]?

Alternatively, I would be happy to differentiate the methods used and
create the files accordingly, ie. if its done over SOAP/XML use my
current method, or if its a POST call, use HttpFileCollection or
something? Can you differentiate how a web service was called within
the service itself?
Well it appears that if I convert to binary and separate each bit out
like &param=bit0&param=bit1&param=bit2 etc... it will work...
unfortunately these files are +1Gb. Is there a better way to do this?

Jul 6 '07 #2
"Brybot" <br*******@gmail.comwrote in message
news:11**********************@e9g2000prf.googlegro ups.com...
On Jul 5, 5:55 pm, Brybot <bryanr...@gmail.comwrote:
>I am trying to allow HTTP POST file uploads to my web service.
Currently I have it working perfectly for a SOAP/XML request reading
in a byte[ ] using MemoryStream/FileStream but I cannot figure out how
to encode a file on a POST to the same web service. The definition
requires a base64binary encoded file, which I have tried. The form is
also using a mutlipart/form-data enctype, but I either get a 500 error
or 'Request format is invalid'. Is there a trick to serializing a
form so that the web service will accept it as a byte[ ]?

Alternatively, I would be happy to differentiate the methods used and
create the files accordingly, ie. if its done over SOAP/XML use my
current method, or if its a POST call, use HttpFileCollection or
something? Can you differentiate how a web service was called within
the service itself?

Well it appears that if I convert to binary and separate each bit out
like &param=bit0&param=bit1&param=bit2 etc... it will work...
unfortunately these files are +1Gb. Is there a better way to do this?
XML Web Services are about XML. I don't think you're going to get files to
work the way you want to.

OTOH, WCF supports streaming data. See Large Data and Streaming
(http://msdn2.microsoft.com/en-us/library/ms733742.aspx), and How to: Enable
Streaming (http://msdn2.microsoft.com/en-us/library/ms789010.aspx).
--
John Saunders [MVP]

Jul 6 '07 #3
On Jul 5, 7:41 pm, "John Saunders [MVP]" <john.saunders at
trizetto.comwrote:
"Brybot" <bryanr...@gmail.comwrote in message

news:11**********************@e9g2000prf.googlegro ups.com...
On Jul 5, 5:55 pm, Brybot <bryanr...@gmail.comwrote:
I am trying to allow HTTP POST file uploads to my web service.
Currently I have it working perfectly for a SOAP/XML request reading
in a byte[ ] using MemoryStream/FileStream but I cannot figure out how
to encode a file on a POST to the same web service. The definition
requires a base64binary encoded file, which I have tried. The form is
also using a mutlipart/form-data enctype, but I either get a 500 error
or 'Request format is invalid'. Is there a trick to serializing a
form so that the web service will accept it as a byte[ ]?
Alternatively, I would be happy to differentiate the methods used and
create the files accordingly, ie. if its done over SOAP/XML use my
current method, or if its a POST call, use HttpFileCollection or
something? Can you differentiate how a web service was called within
the service itself?
Well it appears that if I convert to binary and separate each bit out
like &param=bit0&param=bit1&param=bit2 etc... it will work...
unfortunately these files are +1Gb. Is there a better way to do this?

XML Web Services are about XML. I don't think you're going to get files to
work the way you want to.

OTOH, WCF supports streaming data. See Large Data and Streaming
(http://msdn2.microsoft.com/en-us/library/ms733742.aspx), and How to: Enable
Streaming (http://msdn2.microsoft.com/en-us/library/ms789010.aspx).
--
John Saunders [MVP]
Its not the files that are the problems, you can stream the files just
fine through XML, its the method of form POSTing a file to an XML
webservice, which again is possible without changing a thing, but you
have to marshal the file into binary and send it 1 bit to a post
variable. I was just wondering if there is an easier way to marshal a
file through a POST then bit by bit. Otherwise we just use a base64
binary stream which the SOAP envelope delivers as a byte [ ].

Jul 6 '07 #4
"Brybot" <br*******@gmail.comwrote in message
news:11**********************@o11g2000prd.googlegr oups.com...
On Jul 5, 7:41 pm, "John Saunders [MVP]" <john.saunders at
trizetto.comwrote:
>"Brybot" <bryanr...@gmail.comwrote in message

news:11**********************@e9g2000prf.googlegr oups.com...
On Jul 5, 5:55 pm, Brybot <bryanr...@gmail.comwrote:
I am trying to allow HTTP POST file uploads to my web service.
Currently I have it working perfectly for a SOAP/XML request reading
in a byte[ ] using MemoryStream/FileStream but I cannot figure out how
to encode a file on a POST to the same web service. The definition
requires a base64binary encoded file, which I have tried. The form is
also using a mutlipart/form-data enctype, but I either get a 500 error
or 'Request format is invalid'. Is there a trick to serializing a
form so that the web service will accept it as a byte[ ]?
>Alternatively, I would be happy to differentiate the methods used and
create the files accordingly, ie. if its done over SOAP/XML use my
current method, or if its a POST call, use HttpFileCollection or
something? Can you differentiate how a web service was called within
the service itself?
Well it appears that if I convert to binary and separate each bit out
like &param=bit0&param=bit1&param=bit2 etc... it will work...
unfortunately these files are +1Gb. Is there a better way to do this?

XML Web Services are about XML. I don't think you're going to get files
to
work the way you want to.

OTOH, WCF supports streaming data. See Large Data and Streaming
(http://msdn2.microsoft.com/en-us/library/ms733742.aspx), and How to:
Enable
Streaming (http://msdn2.microsoft.com/en-us/library/ms789010.aspx).
--
John Saunders [MVP]

Its not the files that are the problems, you can stream the files just
fine through XML, its the method of form POSTing a file to an XML
webservice, which again is possible without changing a thing, but you
have to marshal the file into binary and send it 1 bit to a post
variable. I was just wondering if there is an easier way to marshal a
file through a POST then bit by bit. Otherwise we just use a base64
binary stream which the SOAP envelope delivers as a byte [ ].
I've never seen this done with a web service. Do you mean that you POST to a
..ASMX file? Could you post a simple example?
--
John Saunders [MVP]

Jul 7 '07 #5
On Jul 6, 5:49 pm, "John Saunders [MVP]" <john.saunders at
trizetto.comwrote:
"Brybot" <bryanr...@gmail.comwrote in message

news:11**********************@o11g2000prd.googlegr oups.com...
On Jul 5, 7:41 pm, "John Saunders [MVP]" <john.saunders at
trizetto.comwrote:
"Brybot" <bryanr...@gmail.comwrote in message
>news:11**********************@e9g2000prf.googlegr oups.com...
On Jul 5, 5:55 pm, Brybot <bryanr...@gmail.comwrote:
I am trying to allow HTTP POST file uploads to my web service.
Currently I have it working perfectly for a SOAP/XML request reading
in a byte[ ] using MemoryStream/FileStream but I cannot figure out how
to encode a file on a POST to the same web service. The definition
requires a base64binary encoded file, which I have tried. The form is
also using a mutlipart/form-data enctype, but I either get a 500 error
or 'Request format is invalid'. Is there a trick to serializing a
form so that the web service will accept it as a byte[ ]?
Alternatively, I would be happy to differentiate the methods used and
create the files accordingly, ie. if its done over SOAP/XML use my
current method, or if its a POST call, use HttpFileCollection or
something? Can you differentiate how a web service was called within
the service itself?
Well it appears that if I convert to binary and separate each bit out
like &param=bit0&param=bit1&param=bit2 etc... it will work...
unfortunately these files are +1Gb. Is there a better way to do this?
XML Web Services are about XML. I don't think you're going to get files
to
work the way you want to.
OTOH, WCF supports streaming data. See Large Data and Streaming
(http://msdn2.microsoft.com/en-us/library/ms733742.aspx), and How to:
Enable
Streaming (http://msdn2.microsoft.com/en-us/library/ms789010.aspx).
--
John Saunders [MVP]
Its not the files that are the problems, you can stream the files just
fine through XML, its the method of form POSTing a file to an XML
webservice, which again is possible without changing a thing, but you
have to marshal the file into binary and send it 1 bit to a post
variable. I was just wondering if there is an easier way to marshal a
file through a POST then bit by bit. Otherwise we just use a base64
binary stream which the SOAP envelope delivers as a byte [ ].

I've never seen this done with a web service. Do you mean that you POST to a
.ASMX file? Could you post a simple example?
--
John Saunders [MVP]
For sure, if you enable HTTP-POST in your web.config (or
machine.config), your asmx descriptions include POST examples as
well. It'll demonstrate with GET because its easier to see and
essentially the same thing:

http://webservice/MethodName?var1=x&var2=y

that works fine and takes two variables, but for sending files (var3)
via POST or GET you need to do something like this:

http://webservice/MethodName?var1=x&...r3=1...&var3=1

you need to send each bit of the file in its own container (var3).
The webservice sees this as your bit [ ] and the file is demarshalled
correctly, but the POST/GET headers become incredibly big.

I've gotten the clients to move onto using SOAP, but I was wondering
for professional curiosity if there was a better way of doing it. If
you're using POST you can always look to httpcontext for uploaded
files, but thats not really using the webservice properly or securely,
probably the only viable solution though.
Jul 9 '07 #6
"Brybot" <br*******@gmail.comwrote in message
news:11**********************@z28g2000prd.googlegr oups.com...
On Jul 6, 5:49 pm, "John Saunders [MVP]" <john.saunders at
trizetto.comwrote:
>"Brybot" <bryanr...@gmail.comwrote in message

news:11**********************@o11g2000prd.googleg roups.com...
On Jul 5, 7:41 pm, "John Saunders [MVP]" <john.saunders at
trizetto.comwrote:
"Brybot" <bryanr...@gmail.comwrote in message
>>news:11**********************@e9g2000prf.googleg roups.com...
On Jul 5, 5:55 pm, Brybot <bryanr...@gmail.comwrote:
I am trying to allow HTTP POST file uploads to my web service.
Currently I have it working perfectly for a SOAP/XML request
reading
in a byte[ ] using MemoryStream/FileStream but I cannot figure out
how
to encode a file on a POST to the same web service. The definition
requires a base64binary encoded file, which I have tried. The form
is
also using a mutlipart/form-data enctype, but I either get a 500
error
or 'Request format is invalid'. Is there a trick to serializing a
form so that the web service will accept it as a byte[ ]?
>Alternatively, I would be happy to differentiate the methods used
and
create the files accordingly, ie. if its done over SOAP/XML use my
current method, or if its a POST call, use HttpFileCollection or
something? Can you differentiate how a web service was called
within
the service itself?
Well it appears that if I convert to binary and separate each bit
out
like &param=bit0&param=bit1&param=bit2 etc... it will work...
unfortunately these files are +1Gb. Is there a better way to do
this?
>XML Web Services are about XML. I don't think you're going to get
files
to
work the way you want to.
>OTOH, WCF supports streaming data. See Large Data and Streaming
(http://msdn2.microsoft.com/en-us/library/ms733742.aspx), and How to:
Enable
Streaming (http://msdn2.microsoft.com/en-us/library/ms789010.aspx).
--
John Saunders [MVP]
Its not the files that are the problems, you can stream the files just
fine through XML, its the method of form POSTing a file to an XML
webservice, which again is possible without changing a thing, but you
have to marshal the file into binary and send it 1 bit to a post
variable. I was just wondering if there is an easier way to marshal a
file through a POST then bit by bit. Otherwise we just use a base64
binary stream which the SOAP envelope delivers as a byte [ ].

I've never seen this done with a web service. Do you mean that you POST
to a
.ASMX file? Could you post a simple example?
--
John Saunders [MVP]

For sure, if you enable HTTP-POST in your web.config (or
machine.config), your asmx descriptions include POST examples as
well. It'll demonstrate with GET because its easier to see and
essentially the same thing:

http://webservice/MethodName?var1=x&var2=y

that works fine and takes two variables, but for sending files (var3)
via POST or GET you need to do something like this:

http://webservice/MethodName?var1=x&...r3=1...&var3=1

you need to send each bit of the file in its own container (var3).
The webservice sees this as your bit [ ] and the file is demarshalled
correctly, but the POST/GET headers become incredibly big.

I've gotten the clients to move onto using SOAP, but I was wondering
for professional curiosity if there was a better way of doing it. If
you're using POST you can always look to httpcontext for uploaded
files, but thats not really using the webservice properly or securely,
probably the only viable solution though.
Would this work for you? If not, I'm curious to know why not:
OTOH, WCF supports streaming data. See Large Data and Streaming
(http://msdn2.microsoft.com/en-us/library/ms733742.aspx), and How to:
Enable
Streaming (http://msdn2.microsoft.com/en-us/library/ms789010.aspx).
--
John Saunders [MVP]

Jul 9 '07 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Johnny | last post by:
Searched on google for any info relating to this before posting here but found none. I set up a web service using nusoap on apache php 4.3.8 on windows with error_reporting = E_ALL and had that...
0
by: Dave | last post by:
Hi, If anyone could help with this, I would greatly appreciate it! I've created my own WSDL file and referenced an XSD file too. I've generated a service side interface using wsdl /server, and...
1
by: moonriver | last post by:
In a xml file, can we make reference to another xml file so that all contents of the latter xml file will be included into the first xml file? Had better give me an example for details.
1
by: Eirik Brattbakk | last post by:
Hi I have some problems accessing a soap service made in c# using an ATL/MFC client over SSL. I have tried both CSoapMSXMLInetClient and CSoapWininetClient as template arguments with my stub...
2
by: Reshma Prabhu | last post by:
Hello, I have created an web service in C# and accessing it thrugh C++ code. But when i make a call through the client, the parameter does not reach the server but it does not show any error...
2
by: Burak | last post by:
Hello, I have a web service that has a two user defined public classes. For sake of brevity, I'll write them as follows Public Class Service1 Public Class Class1 Public x as integer End...
4
by: jf li | last post by:
I have a Asp.net web application and a Asp.net Web service application. The Web application is using HtmlInputFile to get a 50M size of file selected by end user, read the data of this file and...
3
by: Matt D | last post by:
I've got two web services that use the same data types and that clients will have to consume. I read the msdn article on sharing types...
0
by: dpp | last post by:
Hi I am calling a method of a .NET component from both win forms and web service applications. Strangly, it is working fine from win forms application, but when i call the same method (same...
2
by: pmlane2001 | last post by:
I have a PHP SOAP XML file size problem that I was wondering if anyone has seen before. I have an XML file that when I put it through my PHP script with 270 lines (13,082 KB) it works fine. If I...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.