in reply to Re^5: Again on SOAP::Lite, MIME::Entity and SOAP::Packager
in thread Again on SOAP::Lite, MIME::Entity and SOAP::Packager
SUCCESS! Your code works great.. this actually fix the wrong behaviour:
my $old_stringify_body = \&MIME::Entity::stringify_body; *MIME::Entity::stringify_body = sub { my( $self ) = @_; my $body = &$old_stringify_body; $body =~ s!\n!\r\n!g; return $body };
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^7: Again on SOAP::Lite, MIME::Entity and SOAP::Packager
by Corion (Patriarch) on Dec 29, 2016 at 12:04 UTC | |
by ray.rick.mini (Sexton) on Dec 29, 2016 at 13:28 UTC |