From: <Fre...@lo...> - 2006-08-16 16:44:22
|
Hi everybody, =20 I'm trying to write a SAOP server with SOAP::Lite 0.68. I want my server to attach a file, like this: =20 my $ent =3D MIME::Entity->build( Type =3D> = 'application/pdf', Encoding =3D> 'base64', ... ); return $ent; =20 When I tried this with SOAP::Lite 0.60, I saw attachment in my response: =20 Content-Type: Multipart/Related; = boundary=3D"----------=3D_1155306721-4096-2" (...) =20 This is a multi-part message in MIME format... =20 ------------=3D_1155306721-4096-2 Content-Type: text/xml (...) SOAP envelope (...) ------------=3D_1155306721-4096-2 Content-Type: application/pdf; (...) attachment (...) ------------=3D_1155306721-4096-2-- =20 Now, with SOAP::Lite 0.68, I don't see any attachment. Maybe my implementation is not up-to-date, but I don't find any example = on the web. Please help. Fred. |