Hi Scott,

I would suggest to go for Patch 4, which has some mid-tier fixes however in
means time you can check mod_k and jvm setting for tomcat as below

To work around the issue, we had to update the workers.properties and the
Apache mod_jk directives to disable retries and disable socket re-use.

Apache Directives:
   JkOptions     +DisableReuse

worker.properties:
   worker.propertiese.retries=0


The header size periodically exceeded the max packet size supported by the
AJP configuration.  When the headers do not fit into a single packet, AJP
drops the packet and logs an error.  We resolved this by increasing the max
packet size to 65536.  This is more of an issue where special things are
inserted into the request/response headers (SSL, SSO, other things).  To
address this we had to update the Tomcat AJP listener configuration
(server.xml) and the worker.properties:

worker.properties:
   worker.midtier.max_packet_size=65536

Tomcat AJP Listener (added the packetSize parameter):
   <Connector port="8009" protocol="AJP/1.3" redirectPort="8443"
packetSize="65536"/>

Hope this will help you.

Regards
Kiran Patil




On Tue, Jul 2, 2013 at 11:19 PM, Myers, Scott
<[email protected]>wrote:

> **
>
> Hi all,****
>
> I’m running Remedy Mid-Tier 7.6.4 SP3 on a Linux Red Hat Server 6.2 with
> Tomcat 6.0.  Our ARSystem is 7.6.4 SP3.   CASFilter appears in the null
> receipt error below.  It’s what we use for our single sign on.  ****
>
> ** **
>
> Occasionally, we see some java errors showing up in the logs that I have
> had no luck troubleshooting.  They are intermittently throwing Null Receipt
> errors and Null Pointer errors.  Any ideas of how to get a handle on them?
> ****
>
> ** **
>
> ** **
>
> Jul 01, 2013 1:28:52 PM org.apache.catalina.core.StandardWrapperValve
> invoke****
>
> SEVERE: Servlet.service() for servlet BackchannelServlet threw exception**
> **
>
> java.lang.NullPointerException****
>
>         at
> com.remedy.arsys.stubs.ServerLogin.threadDepartingGoatSpace(Unknown Source)
> ****
>
>         at com.remedy.arsys.stubs.GoatServlet.teardownSessionData(Unknown
> Source)****
>
>         at com.remedy.arsys.stubs.GoatServlet.postInternal(Unknown Source)
> ****
>
>         at com.remedy.arsys.stubs.GoatHttpServlet.doGet(Unknown Source)***
> *
>
>         at javax.servlet.http.HttpServlet.service(HttpServlet.java:617)***
> *
>
>         at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)***
> *
>
>         at
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
> ****
>
>         at
> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
> ****
>
>         at
> edu.yale.its.tp.cas.client.filter.CASFilter.doFilter(CASFilter.java:336)**
> **
>
>         at
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
> ****
>
>         at
> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
> ****
>
>         at
> org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
> ****
>
>         at
> org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
> ****
>
>         at
> org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
> ****
>
>         at
> org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
> ****
>
>         at
> org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
> ****
>
>         at
> org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293)
> ****
>
>         at
> org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:849)
> ****
>
>         at
> org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
> ****
>
>         at
> org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:454)***
> *
>
>         at java.lang.Thread.run(Thread.java:722) ****
>
> ** **
>
> Jul 01, 2013 4:30:20 PM org.apache.catalina.core.StandardWrapperValve
> invoke****
>
> SEVERE: Servlet.service() for servlet HomeServlet threw exception****
>
> java.lang.IllegalArgumentException: Cannot evaluate a null receipt.****
>
>         at
> edu.yale.its.tp.cas.client.filter.CASFilter.isReceiptAcceptable(CASFilter.java:459)
> ****
>
>         at
> edu.yale.its.tp.cas.client.filter.CASFilter.doFilter(CASFilter.java:413)**
> **
>
>         at
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
> ****
>
>         at
> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
> ****
>
>         at
> org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
> ****
>
>         at
> org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
> ****
>
>         at
> org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
> ****
>
>         at
> org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
> ****
>
>         at
> org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
> ****
>
>         at
> org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293)
> ****
>
>         at
> org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:849)
> ****
>
>         at
> org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
> ****
>
>         at
> org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:454)***
> *
>
>         at java.lang.Thread.run(Thread.java:722)****
>
> ** **
>
> Thanks in advance,****
>
> Scott****
>
>
>
> This email is subject to certain disclaimers, which may be reviewed via
> the following link. http://compass-usa.com/Pages/Disclaimer.aspx
> _ARSlist: "Where the Answers Are" and have been for 20 years_




-- 
*Regards*
*
**Kiran Patil*
*Cognizant Technology Solutions*
*Pune, India*
*Mob No: +91 989 037 7125
*

_______________________________________________________________________________
UNSUBSCRIBE or access ARSlist Archives at www.arslist.org
"Where the Answers Are, and have been for 20 years"

Reply via email to