473,421 Members | 1,491 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,421 software developers and data experts.

Transfering Files from server to server

Hi,

We maintain a seperate server for files which are uploaded by the
user(Clients).
We run our site in Production server,we need to Keep our uploaded files in
our file server.

we use asp.net with c# to create the WebServices for transfer the files.But
no effecient solutions found.we had problem when passing uploaded file to web
services (which is running our FileServer),it came with serialization error.

We create one WebService From our fileServer,And add this WebService into
our application by using "Add WebReference".It is working fine when passing
the primay datatypes.But,it is not serialized ,when pass the uploaded files.

can any give the solution,it would be helpful for me.,

Thanking You.
--
Murugavel,
Developer,
Softcrylic Solution Techonology Pvt Ltd.,
New York, NY

Jul 21 '05 #1
4 1780
For transferring files over webservices, maybe you need to look into SwA or
DIME.
http://weblogs.asp.net/cweyer/archiv...08/227258.aspx

on the other hand it could be a simpler solution. if the fileserver is
accessible from the "production server" (I guess the app server) , then why
not use CIFS to get there? Just have the C# (webservice) app open a file
on \\fileserver\share and write to it.
?

but maybe I have misunderstood.

-D
"Murugavel" <Murugavelatsoftcrylicdotcom> wrote in message
news:27**********************************@microsof t.com...
Hi,

We maintain a seperate server for files which are uploaded by the
user(Clients).
We run our site in Production server,we need to Keep our uploaded files in
our file server.

we use asp.net with c# to create the WebServices for transfer the
files.But
no effecient solutions found.we had problem when passing uploaded file to
web
services (which is running our FileServer),it came with serialization
error.

We create one WebService From our fileServer,And add this WebService into
our application by using "Add WebReference".It is working fine when
passing
the primay datatypes.But,it is not serialized ,when pass the uploaded
files.

can any give the solution,it would be helpful for me.,

Thanking You.
--
Murugavel,
Developer,
Softcrylic Solution Techonology Pvt Ltd.,
New York, NY

Jul 21 '05 #2
Hi Dino,

Thanks for Your Message.,I think using SwA or DIME is going to be
complicated one.B'cos we are using Http Protocol to access our site.so,it
seems complicated while we use other protocols.

is there any other simpler solution for that?
for storing files from other server in asp.net?

i would appericiate your help.

thank you.
regards,
Murugavel.v


"Dino Chiesa [Microsoft]" wrote:
For transferring files over webservices, maybe you need to look into SwA or
DIME.
http://weblogs.asp.net/cweyer/archiv...08/227258.aspx

on the other hand it could be a simpler solution. if the fileserver is
accessible from the "production server" (I guess the app server) , then why
not use CIFS to get there? Just have the C# (webservice) app open a file
on \\fileserver\share and write to it.
?

but maybe I have misunderstood.

-D
"Murugavel" <Murugavelatsoftcrylicdotcom> wrote in message
news:27**********************************@microsof t.com...
Hi,

We maintain a seperate server for files which are uploaded by the
user(Clients).
We run our site in Production server,we need to Keep our uploaded files in
our file server.

we use asp.net with c# to create the WebServices for transfer the
files.But
no effecient solutions found.we had problem when passing uploaded file to
web
services (which is running our FileServer),it came with serialization
error.

We create one WebService From our fileServer,And add this WebService into
our application by using "Add WebReference".It is working fine when
passing
the primay datatypes.But,it is not serialized ,when pass the uploaded
files.

can any give the solution,it would be helpful for me.,

Thanking You.
--
Murugavel,
Developer,
Softcrylic Solution Techonology Pvt Ltd.,
New York, NY


Jul 21 '05 #3
Hi,

If you pass the file as a byte array to the web service and then save it
back it should work.

Regards
Niloday

"Murugavel" <Murugavelatsoftcrylicdotcom> wrote in message
news:A4**********************************@microsof t.com...
Hi Dino,

Thanks for Your Message.,I think using SwA or DIME is going to be
complicated one.B'cos we are using Http Protocol to access our site.so,it
seems complicated while we use other protocols.

is there any other simpler solution for that?
for storing files from other server in asp.net?

i would appericiate your help.

thank you.
regards,
Murugavel.v


"Dino Chiesa [Microsoft]" wrote:
For transferring files over webservices, maybe you need to look into SwA or DIME.
http://weblogs.asp.net/cweyer/archiv...08/227258.aspx

on the other hand it could be a simpler solution. if the fileserver is
accessible from the "production server" (I guess the app server) , then why not use CIFS to get there? Just have the C# (webservice) app open a file on \\fileserver\share and write to it.
?

but maybe I have misunderstood.

-D
"Murugavel" <Murugavelatsoftcrylicdotcom> wrote in message
news:27**********************************@microsof t.com...
Hi,

We maintain a seperate server for files which are uploaded by the
user(Clients).
We run our site in Production server,we need to Keep our uploaded files in our file server.

we use asp.net with c# to create the WebServices for transfer the
files.But
no effecient solutions found.we had problem when passing uploaded file to web
services (which is running our FileServer),it came with serialization
error.

We create one WebService From our fileServer,And add this WebService into our application by using "Add WebReference".It is working fine when
passing
the primay datatypes.But,it is not serialized ,when pass the uploaded
files.

can any give the solution,it would be helpful for me.,

Thanking You.
--
Murugavel,
Developer,
Softcrylic Solution Techonology Pvt Ltd.,
New York, NY


Jul 21 '05 #4
Hi Niloday,

Thanks for your help.
The Byte Array technique is working fine.

is there any Limit for file size to upload?

I have a problem when uploading more than 40 MB files?

Thanks.
"Niloday" wrote:
Hi,

If you pass the file as a byte array to the web service and then save it
back it should work.

Regards
Niloday

"Murugavel" <Murugavelatsoftcrylicdotcom> wrote in message
news:A4**********************************@microsof t.com...
Hi Dino,

Thanks for Your Message.,I think using SwA or DIME is going to be
complicated one.B'cos we are using Http Protocol to access our site.so,it
seems complicated while we use other protocols.

is there any other simpler solution for that?
for storing files from other server in asp.net?

i would appericiate your help.

thank you.
regards,
Murugavel.v


"Dino Chiesa [Microsoft]" wrote:
For transferring files over webservices, maybe you need to look into SwA or DIME.
http://weblogs.asp.net/cweyer/archiv...08/227258.aspx

on the other hand it could be a simpler solution. if the fileserver is
accessible from the "production server" (I guess the app server) , then why not use CIFS to get there? Just have the C# (webservice) app open a file on \\fileserver\share and write to it.
?

but maybe I have misunderstood.

-D
"Murugavel" <Murugavelatsoftcrylicdotcom> wrote in message
news:27**********************************@microsof t.com...
> Hi,
>
> We maintain a seperate server for files which are uploaded by the
> user(Clients).
> We run our site in Production server,we need to Keep our uploaded files in > our file server.
>
> we use asp.net with c# to create the WebServices for transfer the
> files.But
> no effecient solutions found.we had problem when passing uploaded file to > web
> services (which is running our FileServer),it came with serialization
> error.
>
> We create one WebService From our fileServer,And add this WebService into > our application by using "Add WebReference".It is working fine when
> passing
> the primay datatypes.But,it is not serialized ,when pass the uploaded
> files.
>
> can any give the solution,it would be helpful for me.,
>
> Thanking You.
> --
> Murugavel,
> Developer,
> Softcrylic Solution Techonology Pvt Ltd.,
> New York, NY
>


Jul 21 '05 #5

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

Similar topics

7
by: Ravi J | last post by:
What is the best way to transfer files between two .NET executables? I have a service, and a client program. Client asks service for data. The service creates one, and passes it back to client....
2
by: Niyazi | last post by:
Hi, I have BIG question and I gues it is the BEST question. I have a problem that I am guessing the best solution is to create some sort ..NET Services. This Service(s) must check every...
4
by: M. Posseth | last post by:
Does someone knows a easy way how to acomplsih the folowing i made a online catalogue with order basket the orders that i store in my database should be submitted to a other webserver...
3
by: AL | last post by:
Hello, I want to transfer all my VB.Net application files from my IIS server to another IIS Server on another machine. Once I have created the virtual folder and transferred all files to wwwroot...
4
by: Murugavel | last post by:
Hi, We maintain a seperate server for files which are uploaded by the user(Clients). We run our site in Production server,we need to Keep our uploaded files in our file server. we use...
5
by: Pilence | last post by:
Hy!! Can someone tell me please how to do this type of work done by using C#......
0
nomad
by: nomad | last post by:
Hello Everyone: I need some help with transfering a db from my computer to the host. I'm not to sure how to do this so that the webpage know where the db is at. Here is what I have... I'm using...
0
by: Ro | last post by:
I've been given the task of transfering data from an access db to sql server 2000. The previous access db was not structured very well so we reconstructed the tables in sql server 2000 to add...
7
by: Richard | last post by:
"Jerry Stuckle" <jstucklex@attglobal.netwrote in message news:gashet$jcb$1@registered.motzarella.org... ...... Jerry, please read the question before replying. It is not his programming....
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
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...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 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 a new...

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.