Results 1 to 3 of 3

Thread: BEA-000802 error while spring+hessian working on weblogic

  1. #1
    Join Date
    Oct 2010
    Posts
    2

    Default BEA-000802 error while spring+hessian working on weblogic

    following the instruction to deploy a simple hessian web service integrated with spring, if deploying to tomecat, everything is ok, if moving to weblogic, the following exception throw out when made a call from client.

    <Oct 29, 2010 1:42:20 PM SGT> <Error> <Kernel> <BEA-000802> <ExecuteRequest failed
    java.lang.NullPointerException.
    java.lang.NullPointerException
    at weblogic.utils.http.HttpChunkInputStream.initChunk (HttpChunkInputStream.java:66)
    at weblogic.utils.http.HttpChunkInputStream.skip(Http ChunkInputStream.java:197)
    at weblogic.utils.http.HttpChunkInputStream.skipAllCh unk(HttpChunkInputStream.java:371)
    at weblogic.servlet.internal.ServletInputStreamImpl.e nsureChunkedConsumed(ServletInputStreamImpl.java:3 0)
    at weblogic.servlet.internal.ServletRequestImpl.skipU nreadBody(ServletRequestImpl.java:192)
    Truncated. see log file for complete stacktrace
    >


    this is hessianServices-servlet.xml
    <bean id="acctService" class="com.spring.hessian.test.impl.AccountInfoImp l" />
    <bean name="/acctService"
    class="org.springframework.remoting.caucho.Hessian ServiceExporter">
    <property name="service" ref="acctService" />
    <property name="serviceInterface" value="com.spring.hessian.test.IAccountInfo" />
    </bean>

    this is web.xml

    <context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>
    /WEB-INF/classes/spring.xml,
    /WEB-INF/hessianServices-servlet.xml
    </param-value>
    </context-param>

    <listener>
    <listener-class>org.springframework.web.context.ContextLoade rListener</listener-class>
    </listener>

    <servlet>
    <servlet-name>hessianServices</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherSe rvlet</servlet-class>
    <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
    <servlet-name>hessianServices</servlet-name>
    <url-pattern>/remote/*</url-pattern>
    </servlet-mapping>


    who can advise? thanks in advance.

  2. #2
    Join Date
    Oct 2010
    Posts
    1

    Smile health screening

    Charter Medical provides the best health care service in Ireland. Our services include Health Screening, Senior Care, Diagnostics, Sexual Health, Physiotherapy, Foot and Ankle Pain, Mole Mapping, Cervical Cancer Prevention, Mater Rapid Injury etc.For more details please contact :
    Charter Medical main phone: 01-657 9000

    Charter Medical main email: medical@chartermedical.ie

    Charter Medical main fax: 01-657 9035

    Charter Medical
    Last edited by eudiithomas; Nov 2nd, 2010 at 04:24 AM.

  3. #3
    Join Date
    Oct 2010
    Posts
    2

    Default

    somebody hit the some problem?

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •