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 gkittelson 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. SuperMoonster

    Problem with charset

    Hello everyone, I am inserting values in a database through asp and setting the charset like this: SESSION.LCID = 1049 I need this LCID because the page will insert chars in portuguese, with accentuation. So, I get my string with: nome = Trim(Request.Form("txtNome")) And if I do a...
  2. SuperMoonster

    error: mssql -> Expected dbnextrow() to return NO_MORE_ROWS

    Hey everyone, I'm working in a PHP system that uses SQLServer. In a certain transaction, it returns me the message: "mssql -> Expected dbnextrow() to return NO_MORE_ROWS". The transaction executes correctly, so this looks to me like a warning. Would someone know what causes this message, or...
  3. SuperMoonster

    Correctly save image to solve "Invalid picture" problem

    Some more information: I just found out that the file comes in a TIFF format, although with another extension. So what I need to do is convert from TIFF to JPEG. Anyone can help?
  4. SuperMoonster

    Correctly save image to solve "Invalid picture" problem

    That's exactly the problem: it doesn't work. I've tried renaming it to: JPG, PNG, BMP, WMF, EMF, TIF, RLE, GIF, and even CUR and ICO. Nothing makes pictureBox load the image. It will only load it when I open paint and re-save it (in any of the accepted extensions). So I suppose I need to...
  5. SuperMoonster

    Correctly save image to solve "Invalid picture" problem

    Hello everybody, I'm having trouble in a system I'm working on. I receive some images from a customer in a different format (SGD extension, created by the customer). I want to load this image in a PictureBox to resize them, but I get a "Invalid Picture" error. I've tested and checked that if I...
  6. SuperMoonster

    JavaServerFaces

    Hello guys, I am finding the error "Cannot find FacesContext" while running my JSF webapp. I googled it and found that in most cases the error is regarding web.xml, right? Well I'm posting this because I think that is not my problem. I start to prepare an application.. and I fix its web.xml...
  7. SuperMoonster

    How to call a webservice (cfm) from a servlet?

    But this cfm site receives data that I used to send to it in my jsp through parameters, and it also returns data through parameters. The return is easy, I just do a request.getParameter("aa"), I suppose. But how do I set and send this request parameters on my servlet? thanks for the attention
  8. SuperMoonster

    How to call a webservice (cfm) from a servlet?

    Sorry, bad explanation. I just need to do the same in a servlet.
  9. SuperMoonster

    How to call a webservice (cfm) from a servlet?

    Hello guys, I need to call an webservice that is in an address like this: http://www.address.com/service.cfm I used to use it in a jsp, in a form, doing something like: <form action="http://www.address.com/service.cfm"> ... The problem is that now I cannot use a jsp. I want to call it from...
  10. SuperMoonster

    Trouble in generating pdf reports with Jasper and iText

    Hey everyone, I have a report created on iReports, and I wanna present it on my browser in my web app. The problem is I need to add a barcode in a specific point of this report. This barcode is being generated correctly, using class BarcodeInter25 of iText. The problem happens when I'm gonna...
  11. SuperMoonster

    Weird problem with JasperReports in web application

    I expect it to appear not in a web page, but in a frame just like it already works on my server.
  12. SuperMoonster

    Weird problem with JasperReports in web application

    Hello everyone, I'm having this weird problem with JasperReports. I have a web application that generates reports in the default way (showing it on a swing window). I tested it on the server and it was working just fine. Then, I went to one of the client machines to test the reports. I clicked...
  13. SuperMoonster

    Can't get IE to reload properly

    Didn't work :(
  14. SuperMoonster

    Can't get IE to reload properly

    Hello guys, I'm having a problem in reloading pages that only happens in IE. On my page, I have: <script type="text/javascript"> window.open("/System/pages/pedido/barraPedido.jsp","downFrame"); </script> On the first time, it works fine. But then the user clicks a link that executes a...
  15. SuperMoonster

    Page doesn't reload after redirect in IE

    Hello everyone, I use struts and I have an action that redirects to the same page where it came from. Here it goes: <action path="/DelItevenPedidoList" type="auge.action.DelItevenPedidoListAction" name="addDelUpdItevenForm"...
  16. SuperMoonster

    struts-layout: treeview

    Hello everyone, I have a webapp that uses treeview from struts-layout. It is working perfectly and I'm happy with it. The thing is that now I was required to put small swf files on the treenodes. Each treenode would be a swf file, which is simply a box with the name of the system module, with...
  17. SuperMoonster

    Display image in specified position

    Hello everyone I wanna know how I can display an image at an specified (x,y) position. I'm totally lost in how doing it. I have a bmp image of an arrow (which I could convert into bitmap or gif if needed) and I want to display it in an specified place. I have no idea how to do it. Can someone...
  18. SuperMoonster

    Lazlo + Struts

    Hello everyone, I have a Struts application already working, and now I have to work harder on the application's interface with the user. I searched and found out that Lazlo may be a good way to do it and get good results, but I still haven't got any experience or clue in what concerns...
  19. SuperMoonster

    How to get application directory?

    Actually, I wanna do it from a Struts Action. Is there any way? Because it keeps giving me an error.
  20. SuperMoonster

    How to get application directory?

    Hello guys, I wanna get the directory from where my webapp is running. For desktop apps, I do: System.getProperty("user.dir"); How do I do it for webapps? I wanna get the path, something like: /srv/www/tomcat5/base/webapps/MyApp

Part and Inventory Search

Back
Top