Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. womblies

    using oracle 10g to generate apache fop pdf report

    trying to generate a fop pdf file from a servlet and im getting this error: java.lang.NullPointerException at oracle.xml.jaxp.JXTransformer.reportXSLException(JXTransformer.java:776) at oracle.xml.jaxp.JXTransformer.transform(JXTransformer.java:343) it is falling out at this point...
  2. womblies

    blank pdf been displayed in IE6

    i got it working, it had to be adobe 7 that was installed, then i went to the options/internet and on ticked the box that said display pdf in browser. open the website and clicked the link(saved to the hard drive)went back into adobe and recheck the option to display pdf in broswer. opened the...
  3. womblies

    blank pdf been displayed in IE6

    have tired that as well, but that is not working
  4. womblies

    blank pdf been displayed in IE6

    i have a button on my web site to open a pdf document, when i click on this is IE it just displays a blank pdf(but if i go to save it or email it and the open the document it shows correctly,it is been downloaded properly but not displayed) i can click on this button in firefox and mozilla and...
  5. womblies

    Using FOP (Formatting Objects Processor) to create pdf from a servlet

    hi when i callSource xslSource = new StreamSource(new URL(http://localhost:8080/Report/servlet/ReportRee020DSB....).openStream()); what should that servlet be returing, or type of format returned
  6. womblies

    Using FOP (Formatting Objects Processor) to create pdf from a servlet

    i can't use the above method of writing to a tmp file to generate the pdf. is there a way of debuging what format 'new StreamSource(new file(...))' takes in the info and duplicating it from the call to the servlet
  7. womblies

    Using FOP (Formatting Objects Processor) to create pdf from a servlet

    yes i can call the servlet(Fop). in this servlet(Fop) i call another servlet(ReportRee020DSB) to output the xml required. Fop Servlet package report; import java.io.*; import java.util.*; import java.net.URL; import javax.rmi.PortableRemoteObject; import javax.ejb.CreateException; import...
  8. womblies

    Using FOP (Formatting Objects Processor) to create pdf from a servlet

    that is exactly what i'm calling from the StreamSource and its not returning aything is it anything to do with println returning a void
  9. womblies

    Using FOP (Formatting Objects Processor) to create pdf from a servlet

    i have tried just calling 'ReportRee020DSB' by itself from a jsp page and the xml comes out correctly
  10. womblies

    Using FOP (Formatting Objects Processor) to create pdf from a servlet

    no that didn't work for me.it is getting into the other servlet and going through the steps to create the xml but still it outputing a blank pdf. would the problem be what i'm outputting on the 'ReportRee020DSB' servlet out.println("<?xml version=\"1.0\" encoding=\"UTF-8\"?>")...
  11. womblies

    Using FOP (Formatting Objects Processor) to create pdf from a servlet

    the problem that i can't get the report to generate properly when i dynamically generate the xml from a servlet. as an input source for the xml i'm using: Source src = new StreamSource("http://localhost:8080/Report/servlet/ReportRee020DSB....) which when run will generate a blank pdf. i know...
  12. womblies

    Using FOP (Formatting Objects Processor) to create pdf from a servlet

    On my Jsp page i have a call to servlet thats using Fop to create a pdf report. In the servlet it needs two input sources of xsl and xml. My problem occurs with the xml input source, i need to have xml input source as a call to another servlet which searchs a database and dynamically creates xml...
  13. womblies

    ScrollPane.complete to trigger when loading mc

    i have a scroll pane that loads a moveClip from the library and i want to use the complete fuction to call another function from within that movieClip. i know complete will work if the contentPath is a swf but not if it is a movieClip createClassObject(mx.containers.ScrollPane, "scrollPane"...
  14. womblies

    session info form jsp to flash movie

    The Flash Remoting session is independent of HTTPSession objects available to JSPs and servlets. A stateful JavaBean instantiated through Flash Remoting MX cannot access an object stored in a session by a JSP or servlet. Conversely, a JSP or servlet cannot use its session to access a JavaBean...
  15. womblies

    combo box border colour

    does anyone know how to change the border colour of a combo box before it is selected, i can change the border colour of the dropdown and button but not in is normal state
  16. womblies

    One more question concerning datagrids

    ya it can be done. create a new movice clip instance. open up the linkage put in identifer call it 'CheckCellRenderer' and in the AS 2.0 class put 'mx.controls.cells.CheckCellRenderer' var myColumn = new DataGridColumn("name"); myColumn.cellRenderer = "CheckCellRenderer"...
  17. womblies

    dataset component

    i can set the datasource for them through AS, but it would be a lot easier if i could create an instance of the dataset through AS
  18. womblies

    dataset component

    no because the amount datasets/girds needed is coming from a table in a database i.e. normally one but it can be 4 or more grids with each linked to a different table in the database
  19. womblies

    Dynamic movieclip variables

    just from a quick look i think that you prob might be the dept that the movie is created at(all the same so only the last one will show) increase the depth each time by using this this.getNextHighestDepth()

Part and Inventory Search

Back
Top