cancel
Showing results for 
Search instead for 
Did you mean: 

IConnectorGatewayService Portal Runtime Error

Former Member
0 Kudos

when i'm trying call:

IConnectorGatewayService cgService =(IConnectorGatewayService) connectorservice;

I'm obtaining following runtime error:

Portal Runtime Error

An exception occurred while processing a request for :

iView : pcd:portal_content/durann/JCO

Component Name : com.varias.iview.volaco.JCO_test

com/sapportals/portal/ivs/cg/IConnectorGatewayService.

Exception id: 01:53_01/08/05_0038_7096450

See the details for the exception ID in the log file

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

when I catch it, following error is returned:

java.lang.NoClassDefFoundError: com/sapportals/portal/ivs/cg/IConnectorGatewayService

Former Member
0 Kudos

You are missing the following sharing reference in your portalapp.xml.


<?xml version="1.0" encoding="utf-8"?>
<application>
  <application-config>
    <property name="SharingReference" value="com.sap.portal.ivs.connectorservice"/>
  </application-config>
  <components/>
  <services>
    <service name="test">
      <service-config>
        <property name="className" value="com.ust.jca.test"/>
      </service-config>
      <service-profile/>
    </service>
  </services>
</application>

Answers (0)