I'm getting an ERROR message..

[RPC Fault faultString="Error #1090: XML parser failure: element is 
malformed." faultCode="Client.CouldNotDecode" faultDetail="null"]
        at 
mx.rpc.http::HTTPService/http://www.adobe.com/2006/flex/mx/internal::p
rocessResult()
        at 
mx.rpc::AbstractInvoker/http://www.adobe.com/2006/flex/mx/internal::re
sultHandler()
        at mx.rpc::Responder/result()
        at mx.rpc::AsyncRequest/acknowledge()
        at ::DirectHTTPMessageResponder/completeHandler()
        at 
flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEv
entFunction()
        at flash.events::EventDispatcher/dispatchEvent()
        at flash.net::URLLoader/flash.net:URLLoader::onComplete()

thanks
-silpa
--- In [email protected], "Silpa sirivella" <[EMAIL PROTECTED]> 
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 --------------------~--> 
Yahoo! Groups gets a make over. See the new email design.
http://us.click.yahoo.com/XISQkA/lOaOAA/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/
 


Reply via email to