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 Mike Lewis 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. ronaldr

    Caching of Session object at control level..

    Okay, I'm stupid. I was checking through the control's ascx page and this was at the top: <%@ OutputCache Duration=&quot;120&quot; VaryByParam=&quot;none&quot; %> This causes the control itself to be cached, which is fine if the control is static but in my case it was dynamic. Anyway, this...
  2. ronaldr

    &quot;Quote&quot; headaches

    Can't you just escape it using \&quot; instead of just &quot; ?
  3. ronaldr

    Caching of Session object at control level..

    I am storing an object in the Session, but when I go to access it from a control I get a cached copy of the object. I know this because I have a timestamp within the object, and the object access from within the control (from Page.Session, Context.Session, or HttpContext.Current.Session) has an...
  4. ronaldr

    overriding classes in weblogic.jar and xmlx.jar..

    I can't change the classpath - note the last line of the first paragraph. What I ended up doing was repackaging the Xerces/Xalan implementation of JAXP that I was using under a different package name and specifying that in the XML registry of Weblogic. In this manner I was able to avoid...
  5. ronaldr

    overriding classes in weblogic.jar and xmlx.jar..

    Then my next question would be, does anyone have an example of XSD validation using the XML parsers included with Weblogic 6.1? This is the only piece that fails, and I can't seem to find a way to do the validation using the weblogic jar files.
  6. ronaldr

    overriding classes in weblogic.jar and xmlx.jar..

    I have an application packaged as a WAR file that contains the spring release of JAXP, which it was developed against. However, when deploying this app weblogic forces the use of the implementation present in the weblogic.jar and xmlx.jar file, ignoring the packaged JAXP. The server resides on...
  7. ronaldr

    Weblogic issues...

    I am running Weblogic 6.1sp2, which includes JAXP 1.1. I'm having trouble deploying an application was developed under JAXP 1.2 (spring release) with the xerces implementation. It also uses version 1.1.4 of the gnu regular expression package. When I attempt to deploy a WAR or EAR file with...
  8. ronaldr

    Deploying WAR/EAR

    I am having trouble deploying a web applicatoin to Weblogic 6.1sp2. Weblogic is not picking up the JAR files I package along with my application, so I'm getting classnotfound exceptions. First I tried to package it as just a WAR, with the web.xml in the WEB-INF directory, my classes under...
  9. ronaldr

    Count query

    Thanks a lot, that worked perfectly. And it looks SO much better.
  10. ronaldr

    Count query

    I need to build a query for a report. The table I am reporting on has this kind of format: name | status | source | ..... more fields -------|--------|----------| ------------- aaa | A | SRC1 | ... values bbb | A | SRC1 | ... values ccc | B | SRC1 | ...

Part and Inventory Search

Back
Top