473,517 Members | 2,758 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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 1786
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
1515
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. Both programs run in .NET framework. Given this requirement, how best to approach the issue? Does .NET framework provides any class that can help?...
2
595
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 hour the data that reside on AS400 and transfer into the SQL Server. Services also have to be run in between 8:00 AM and 5:00 PM
4
1483
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 elsewhere on the web by ftp ( webservice is not an option because the other party is not so smart :-( ) they want this order received on there ftp site so ...
3
1030
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 directory do I need to compile these files so that they can run? I tried to run the .NET application from the new localhost but it is inactive. I can...
4
268
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 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...
5
2268
by: Pilence | last post by:
Hy!! Can someone tell me please how to do this type of work done by using C#......
0
1564
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 XAMPP to created my db here is the path were the db is at C:\Program Files\xampp\mysql\data I'm using Dreamweaver to create my site. Here is...
0
1605
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 better table structure and more functionality. What I want to be able to do is transfer the actual data in the access tables to the new tables in...
7
1419
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. No need to be so offensive.
0
7200
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
0
7600
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that...
1
7159
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For...
0
5739
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then...
0
4787
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert...
0
3281
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in...
0
3278
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1643
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
0
505
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

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.