The error that you are experiencing is because of the default value for the "resultFormat" property of HTTPService: it expect an xml and, as far as I see, you are sending a PDF from your server. As long as HTTPService doesn't support binary results, you should think on start using URLLoader or URLStream for your purposes.
Regards. --- In [email protected], "Silpa sirivella" <[EMAIL PROTECTED]> wrote: > > Atleast tell me whether it is possible With flex? > > thanks > -silpa > --- In [email protected], "Silpa sirivella" <silpa_sus@> > wrote: > > > > Hi all, > > > > I have a requirement to open Steam coming from J2EE layer. More > > clearly, I've MXML file where i'm requesting a servlet using > > HTTPService. Here is the code > > > > <mx:HTTPService id="exportRequest" useProxy="false" > > url="/inventory/search.do" showBusyCursor="true"> > > <mx:request> > > <Action>Export</Action> > > <exportMode>pdf</exportMode> > > </mx:request> > > </mx:HTTPService> > > > > And here is my struts application > > > > ByteArrayOutputStream baos =new ByteArrayOutputStream(); > > > > if(exportMode.trim().equalsIgnoreCase("pdf")) { > > response.setContentType ("application/pdf"); > > response.setHeader ("Content-Disposition", "attachment; > > filename=\"SearchResults.pdf\""); > > try{ > > JasperExportManager.exportReportToPdfStream(jasperPrint, baos); > > }catch(JRException jre) {} > > > > response.setContentLength(baos.size()); > > ServletOutputStream outStream = response.getOutputStream(); > > baos.writeTo(outStream); > > baos.close(); > > outStream.flush(); > > it works fine when i made a call from HTML. I've to get a popup > > contains "Save" "Open" and "Cancel" options. > > I appreciate any help on this. > > > > -silpa > > > ------------------------ Yahoo! Groups Sponsor --------------------~--> Check out the new improvements in Yahoo! Groups email. http://us.click.yahoo.com/6pRQfA/fOaOAA/yQLSAA/nhFolB/TM --------------------------------------------------------------------~-> -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/

