You would need to contact the correct users/news group that deals with these
sort of questions.  The dbi-dev deals with the development of DBI and DBDs.

Ilya Sterin

> -----Original Message-----
> From: nitin bhutani [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, June 07, 2001 5:21 AM
> To: [EMAIL PROTECTED]
> Subject: email
>
>
> hello,
>
> does anyone know which library to use to send attachments through
> html forms
> via email.
>
> regards
>
> >From: "Sterin, Ilya" <[EMAIL PROTECTED]>
> >To: [EMAIL PROTECTED], [EMAIL PROTECTED]
> >Subject: RE: :ProxyServer
> >Date: Wed, 6 Jun 2001 08:20:24 -0400
> >MIME-Version: 1.0
> >Received: from [209.85.157.220] by hotmail.com (3.2) with ESMTP id
> >MHotMailBCE769E7006A4004324DD1559DDC06450; Wed Jun 06 05:15:35 2001
> >Received: (qmail 35098 invoked by uid 1005); 6 Jun 2001 12:15:34 -0000
> >Received: (qmail 35083 invoked from network); 6 Jun 2001 12:15:34 -0000
> >Received: from ns.ciber.com (HELO exch-corp-bghd3.ciber.com)
> (12.10.248.2)
> >by onion.valueclick.com with SMTP; 6 Jun 2001 12:15:34 -0000
> >Received: by exch-corp-bghd3.ciber.com with Internet Mail Service
> >(5.5.2653.19)id <MAQ0W03M>; Wed, 6 Jun 2001 06:15:06 -0600
> >Received: from ideastyskxpl72 (nic-29-c116-219.twmi.rr.com
> [65.29.116.219])
> >by cibermail2.ciber.com with SMTP (Microsoft Exchange Internet
> Mail Service
> >Version 5.5.2653.13)id L7HZA0R1; Wed, 6 Jun 2001 06:15:04 -0600
> >From dbi-dev-return-160-nitin_bhutani Wed Jun 06 05:16:05 2001
> >Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
> >Precedence: bulk
> >List-Post: <mailto:[EMAIL PROTECTED]>
> >List-Help: <mailto:[EMAIL PROTECTED]>
> >List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
> >List-Subscribe: <mailto:[EMAIL PROTECTED]>
> >Delivered-To: mailing list [EMAIL PROTECTED]
> >Message-ID: <[EMAIL PROTECTED]>
> >X-Priority: 3 (Normal)
> >X-MSMail-Priority: Normal
> >X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0)
> >X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2462.0000
> >In-Reply-To: <[EMAIL PROTECTED]>
> >Importance: Normal
> >X-Spam-Rating: onion.valueclick.com 1.6.2 0/1000/N
> >
> >Also, I just noticed, you send this to dbi-dev.  Which is not
> even for perl
> >dbi question, but rather for DBI development discussion.  If you have DBI
> >related questions, you must send to [EMAIL PROTECTED]
> >
> >Ilya Sterin
> >
> > > -----Original Message-----
> > > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
> > > Sent: Wednesday, June 06, 2001 4:11 AM
> > > To: [EMAIL PROTECTED]
> > > Subject: DBI::ProxyServer
> > >
> > >
> > > Hello,
> > >
> > > I have installed the following perl modules on the Server (OS
> is Unix):
> > >
> > > -PlRPC-0.2015.tar.gz
> > > -Net-Daemon-0.35.tar.gz
> > > -Storable-1.0.11.tar.gz
> > > -DBI-1.18.tar.gz
> > >
> > > and on the client (OS is Windows NT)
> > >
> > > -DBD-ODBC.zip
> > > -DBI.zip
> > > -PlRPC.zip
> > > -Storable.zip
> > >
> > >
> > > I start the proxy on the Windows machine:
> > > c:\dbiproxy -logfile c:\tmp\dbiproxy.log -localport 2000
> > >
> > > and start my script on the Unix machine:
> > >
> > >  #!/usr/local/bin/perl
> > >
> > >     use strict;               # Always a good choice.
> > >
> > >     require RPC::PlClient;
> > >
> > >     # Constants
> > >     my $MY_APPLICATION = "MD5_Server";
> > >     my $MY_VERSION = 1.0;
> > >     my $MY_USER = "CadUser";           # The server doesn't
> require user
> > >     my $MY_PASSWORD = "CadUser";       # authentication.
> > >
> > >     my $hexdigest = eval {
> > >         my $client = RPC::PlClient->new
> > >             ('peeraddr'    => 'fn0676',
> > >              'peerport'    => 2000,
> > >              'application' => $MY_APPLICATION,
> > >              'version'     => $MY_VERSION,
> > >              'user'        => $MY_USER,
> > >              'password'    => $MY_PASSWORD);
> > >
> > >         # Create an MD5 object on the server and an associated
> > >         # client object. Executes a
> > >         #     $context = MD5->new()
> > >         # on the server.
> > >         my $context = $client->ClientObject('MD5', 'new');
> > >
> > >         # Let the server calculate a digest for us. Executes a
> > >         #     $context->add("This is a silly string!");
> > >         #     $context->hexdigest();
> > >         # on the server.
> > >         $context->add("This is a silly string!");
> > >         $context->hexdigest();
> > >     };
> > >     if ($@) {
> > >         die "An error occurred: $@";
> > >     }
> > >
> > >     print "Got digest $hexdigest\n";
> > >
> > >
> > > But I get the following error message:
> > >
> > > On the Unix Machine:
> > >
> > >  An error occurred: Unexpected EOF from Server at
> > > /opt/perl5/lib/site_perl/5.005/RPC/PlClient.pl line 83
> > >
> > > On the Windows machine:
> > >
> > >  err. Child died Storable binary image v2.4 more recent than I am
> > > ( V1.0) at
> > > blib\lib\Storable.pl (autosplit)
> > >  into blib\lib\auto\Storable\thaw.all) line 238, at
> > > C:\perl\site\lib\RPC\PlServer\Comm.pl line 142
> > >
> > >
> > > I don't know, what mean' s the error message and what should I do
> > > to resolv
> > > this problem ?
> > >
> > > Thanks for your help
> > >
> > > Hasan
> > >
> > > --
> > > Machen Sie Ihr Hobby zu Geld bei unserem Partner 1&1!
> > > http://profiseller.de/info/index.php3?ac=OM.PS.PS003K00596T0409a
> > >
> > > --
> > > GMX - Die Kommunikationsplattform im Internet.
> > > http://www.gmx.net
>
> _________________________________________________________________________
> Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.
  • email nitin bhutani
    • Sterin, Ilya

Reply via email to