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 TouchToneTommy 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. liorza

    Generating Axis client class with global timeout

    Hello, I am using Axis 1.1 and firing the ant task (axis-wsdl2java) to generate the client classes. Is there a way to update the axis configuration timeout value. I would like to modify the global timeout for the axis client. I would like to avoid updating the auto generated classes like in the...
  2. liorza

    chain.doFilter(req, resp); is throwing a null pointer exception

    Can anyone please explain what are potential reasons for receiving Null pointer exception from Chain.do(…) call (within a filter) I have two filters that are defined in my web.xml <filter> <filter-name>HibernatePersistence</filter-name> <display-name>HibernatePersistence</display-name>...
  3. liorza

    Can I use arithmetic operators with struts tags

    Hello, I am having some issues with jstl tags. I would like to do basic math operations on values in struts tags (bean:write ...) Any ideas? Lior
  4. liorza

    hibernate

    yes,it is possible!. Use ant to generate your model classes from the hibernate hbm files. You would have to add the neeeded hibernate libs. You could use ant to also generate your schema. <target name="codegen" description="Generate Java source from OR mapping files" depends="prepare-dirs">...
  5. liorza

    Premature end of script headers:....dispatch.cgi

    Hi all, I have a working ruby app that I developed on Window and I am trying to deploy it on Linox with Apache. The hosting company generated for me an empty rails app and I just replaced the files that I modified in my app (only rb/rhtml/css/js files). In addition I updatd the database.yml...
  6. liorza

    Custom pages for 404 & 500 errors

    Thanks rekenaar, That is what we ended up doing. It works :-) Lior
  7. liorza

    Custom pages for 404 & 500 errors

    Hi all, I have a web app that is using struts and websphere. How can I configure it to render my own custom html pages for the 404 and 500 errors? Should I update the web.xml? Can some one post an example? Thanks, Lior
  8. liorza

    Issues when using templates.

    I have a jsp page and some of the html tags in the page are not being closed until the page actually runs. After applying wsad template on the page wsad is closing some of the html tags in my jsp page. This appear to me as some sort of validation that wsad is doing after I apply the template on...
  9. liorza

    radio button click

    If you still need this you can use <INPUT type="radio" onchange="doSomething();">
  10. liorza

    Running cgi from the root of the web app (for bugzilla)

    Thanks guys, I gave up and configured Bugzilla with IIS Lior
  11. liorza

    caching of Java classes

    I agree, I am using it only during developing phaze. Thanks for the tip. Lior
  12. liorza

    Running cgi from the root of the web app (for bugzilla)

    Hello all, I am trying to configure tomcat to run bugzilla. I followed the instruction needed in order to be able to run cgi scripts from tomcat. http://jakarta.apache.org/tomcat/tomcat-5.0-doc/cgi-howto.html Also I made sure that cgi servlet mapping in the web.xml is uncommented. Now I have...
  13. liorza

    caching of Java classes

    Thanks I will try it out.
  14. liorza

    caching of Java classes

    Hi guys, I noticed that I have to restart Tomcat each time I am modifying a java class. I am guessing that Tomcat is caching these files. Can Tomcat be configured to stop caching class files? I am aware that it will affect performance but it is just for the development period. I am using Tomcat...
  15. liorza

    Using Bugzilla with Tomcat

    Thanks I will try it out. Lior
  16. liorza

    Using Bugzilla with Tomcat

    Hi Guys, I have a quick question. Is it possible to use BugZilla with Tomcat as the web server ? If no can someone recomand a open source bug tracking system that can use Tomcat. Thanks, Lior
  17. liorza

    missing data from query results

    Thanks :-)
  18. liorza

    missing data from query results

    Issue resolved. The problem was with the command I use to load the data in now I have used load data local infile "c:/archismo/dev/scripts/csi.txt" into table csi lines terminated by "\r\n"; This resolved it. Thanks Tony for your help. Lior
  19. liorza

    missing data from query results

    Tony, 1.Is there a gui tool that comes with Mysql? 2.What kind of characthers could cause something like that? Also I can add that I have loaded the data to the table from a text file. My issue is that I am not getting the correct data when I quering this query from Java. The output in the...
  20. liorza

    missing data from query results

    Hi guys, can someone explian why the csi_id information is missing when I am runing select * from csi where csi_id in (20,23,24); see bellow: mysql> desc csi; +--------+--------------+------+-----+---------+----------------+ | Field | Type | Null | Key | Default | Extra |...

Part and Inventory Search

Back
Top