Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > ASP .Net Web Services > What way to send large data from .NET to Linux-platform

Reply
Thread Tools

What way to send large data from .NET to Linux-platform

 
 
Jonah Olsson
Guest
Posts: n/a
 
      06-10-2004
Dear All,

I'm currently developing a solution where large amounts of personalised
emails are being created (and no, this is not spam...) on the ASP.NET
platform and being delivered by a Debian Linux server running Qmail and
mySQL. Currently the .NET application just connects to the SMTP-port on the
Linux server and sends each mail one by one. This creates an awful lot of
traffic and isn't really a good way of handling >100.000 emails/month.

I would like a solution where all this data first being prepared on the .NET
platform, and then transferred to the Linux platform to be handled and sent.
But how should I solve this both secure/reliable and efficient?

So basically I have two questions;

Should I prepare a large XML dataset and ship this to the Linux server to be
handled locally (Perl + mySQL + Qmail). This would need some kind of status
check since if the Linux server would go down, some mail might already have
been sent.

Can I use Web Services here? If so, I suppose I should create two Web
Services. One on the Linux platform to receive the dataset with personalised
emails, and one on the .NET platform to receive status and results.

Am I missing something out here? Qmail is currently the most reliable part
here I think, since it basically never looses mail even if the network or
server goes down. But the data sent to Qmail might be lost due to network
trouble etc. This is an important part of the problem.

Someone with similar experience?
Thanks for any kind of help/hints!

Best regards
Jonah Olsson
Generation Software



 
Reply With Quote
 
 
 
 
Kevin Spencer
Guest
Posts: n/a
 
      06-10-2004
Hi Jonah,

You could certainly use Web Services, but you only need the service on one
end. The client that consumes the service is at the other end. It calls a
WebMethod on the Web Service. If the service is on the Windows machine, the
Method can return the data needed by the Unix machine. However, you should
be aware that by having the computers use a Web Service to send all the
emails to the Unix machine, and having that machine email them all at once,
you may actually be causing a total sum of MORE processing and memory usage
across both computers than the simpler method you're already using. You're
adding an extra SOAP layer to the process. On the other hand, if one or the
other of the machines is under heavy load, you may be able to balance it out
somewhat by using more of the other machine's resources.

Good question!

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.

"Jonah Olsson" <> wrote in message
news:...
> Dear All,
>
> I'm currently developing a solution where large amounts of personalised
> emails are being created (and no, this is not spam...) on the ASP.NET
> platform and being delivered by a Debian Linux server running Qmail and
> mySQL. Currently the .NET application just connects to the SMTP-port on

the
> Linux server and sends each mail one by one. This creates an awful lot of
> traffic and isn't really a good way of handling >100.000 emails/month.
>
> I would like a solution where all this data first being prepared on the

..NET
> platform, and then transferred to the Linux platform to be handled and

sent.
> But how should I solve this both secure/reliable and efficient?
>
> So basically I have two questions;
>
> Should I prepare a large XML dataset and ship this to the Linux server to

be
> handled locally (Perl + mySQL + Qmail). This would need some kind of

status
> check since if the Linux server would go down, some mail might already

have
> been sent.
>
> Can I use Web Services here? If so, I suppose I should create two Web
> Services. One on the Linux platform to receive the dataset with

personalised
> emails, and one on the .NET platform to receive status and results.
>
> Am I missing something out here? Qmail is currently the most reliable part
> here I think, since it basically never looses mail even if the network or
> server goes down. But the data sent to Qmail might be lost due to network
> trouble etc. This is an important part of the problem.
>
> Someone with similar experience?
> Thanks for any kind of help/hints!
>
> Best regards
> Jonah Olsson
> Generation Software
>
>
>



 
Reply With Quote
 
 
 
 
bruce barker
Guest
Posts: n/a
 
      06-10-2004
its hard to believe you could come up with something better. SMTP mail is
pretty simple, you do a socket connect and send the data. the SMTP demon
just write the data to directory (after validating the headers). another
demon scans the directory for new email and sends it on its way. this is why
spamming is so cheap.

-- bruce (sqlwork.com)


"Jonah Olsson" <> wrote in message
news:...
> Dear All,
>
> I'm currently developing a solution where large amounts of personalised
> emails are being created (and no, this is not spam...) on the ASP.NET
> platform and being delivered by a Debian Linux server running Qmail and
> mySQL. Currently the .NET application just connects to the SMTP-port on

the
> Linux server and sends each mail one by one. This creates an awful lot of
> traffic and isn't really a good way of handling >100.000 emails/month.
>
> I would like a solution where all this data first being prepared on the

..NET
> platform, and then transferred to the Linux platform to be handled and

sent.
> But how should I solve this both secure/reliable and efficient?
>
> So basically I have two questions;
>
> Should I prepare a large XML dataset and ship this to the Linux server to

be
> handled locally (Perl + mySQL + Qmail). This would need some kind of

status
> check since if the Linux server would go down, some mail might already

have
> been sent.
>
> Can I use Web Services here? If so, I suppose I should create two Web
> Services. One on the Linux platform to receive the dataset with

personalised
> emails, and one on the .NET platform to receive status and results.
>
> Am I missing something out here? Qmail is currently the most reliable part
> here I think, since it basically never looses mail even if the network or
> server goes down. But the data sent to Qmail might be lost due to network
> trouble etc. This is an important part of the problem.
>
> Someone with similar experience?
> Thanks for any kind of help/hints!
>
> Best regards
> Jonah Olsson
> Generation Software
>
>
>



 
Reply With Quote
 
Jonah Olsson
Guest
Posts: n/a
 
      06-13-2004
Hi Kevin and thanks for your reply.
I'm sorry I haven't responded earlier, but I'm on a short vacation.

I now realise that such a solution discussed below will probably require a
lot more system resources (and development resources as well) than the
current version (or slightly modified).
Maybe I should stick to an SMTP connection and let Qmail do the entire
queuing, like what Bruce Barker suggested in his reply?

However, a Web Service would probably be well suited on the .NET server to
receive bounce statistics from the Linux mail server!

Thanks!
/Jonah

"Kevin Spencer" <> wrote in message
news:u$...
> Hi Jonah,
>
> You could certainly use Web Services, but you only need the service on one
> end. The client that consumes the service is at the other end. It calls a
> WebMethod on the Web Service. If the service is on the Windows machine,

the
> Method can return the data needed by the Unix machine. However, you should
> be aware that by having the computers use a Web Service to send all the
> emails to the Unix machine, and having that machine email them all at

once,
> you may actually be causing a total sum of MORE processing and memory

usage
> across both computers than the simpler method you're already using. You're
> adding an extra SOAP layer to the process. On the other hand, if one or

the
> other of the machines is under heavy load, you may be able to balance it

out
> somewhat by using more of the other machine's resources.
>
> Good question!
>
> --
> HTH,
> Kevin Spencer
> .Net Developer
> Microsoft MVP
> Big things are made up
> of lots of little things.




 
Reply With Quote
 
Jonah Olsson
Guest
Posts: n/a
 
      06-13-2004
Hi Bruce and thanks for your reply.

So basically there will be no trouble sending 30.000+ in a row (as they're
being created) to the Linux (mail-)server?

/Jonah


"bruce barker" <> skrev i meddelandet
news:...
> its hard to believe you could come up with something better. SMTP mail is
> pretty simple, you do a socket connect and send the data. the SMTP demon
> just write the data to directory (after validating the headers). another
> demon scans the directory for new email and sends it on its way. this is

why
> spamming is so cheap.
>
> -- bruce (sqlwork.com)
>
>
> "Jonah Olsson" <> wrote in message
> news:...
> > Dear All,
> >
> > I'm currently developing a solution where large amounts of personalised
> > emails are being created (and no, this is not spam...) on the ASP.NET
> > platform and being delivered by a Debian Linux server running Qmail and
> > mySQL. Currently the .NET application just connects to the SMTP-port on

> the
> > Linux server and sends each mail one by one. This creates an awful lot

of
> > traffic and isn't really a good way of handling >100.000 emails/month.
> >
> > I would like a solution where all this data first being prepared on the

> .NET
> > platform, and then transferred to the Linux platform to be handled and

> sent.
> > But how should I solve this both secure/reliable and efficient?
> >
> > So basically I have two questions;
> >
> > Should I prepare a large XML dataset and ship this to the Linux server

to
> be
> > handled locally (Perl + mySQL + Qmail). This would need some kind of

> status
> > check since if the Linux server would go down, some mail might already

> have
> > been sent.
> >
> > Can I use Web Services here? If so, I suppose I should create two Web
> > Services. One on the Linux platform to receive the dataset with

> personalised
> > emails, and one on the .NET platform to receive status and results.
> >
> > Am I missing something out here? Qmail is currently the most reliable

part
> > here I think, since it basically never looses mail even if the network

or
> > server goes down. But the data sent to Qmail might be lost due to

network
> > trouble etc. This is an important part of the problem.
> >
> > Someone with similar experience?
> > Thanks for any kind of help/hints!
> >
> > Best regards
> > Jonah Olsson
> > Generation Software
> >
> >
> >

>
>



 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
median of large data set (from large file) friend.05@gmail.com Perl Misc 5 04-02-2009 04:06 AM
Best Way To Send Large Email Attachments?? Heidy.Manway@gmail.com NZ Computing 8 02-24-2007 09:00 PM
Opinion: Optimal way of holding large amounts of data between pages? David ASP .Net 0 06-21-2006 08:08 PM
HTTP POST to send large amounts of data? Bint HTML 1 03-19-2006 02:11 PM
What way to send large data from .NET to Linux-platform Jonah Olsson ASP .Net 4 06-13-2004 10:36 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57