IPS- IAS integration

Hi
I am faced with a problem related to IAS 6.0 SP2 and iPlanet Portal
Server 3.0 SP2. I have deployed the beans on IAS and can access it from
a rich client.
I've servlets running in IPS and from these, I want to access the beans
on IAS. I'm getting an unsatisfied link error. The exception thrown is :
[03/Jul/2001:14:37:02] info (15110): PortalInterface: init
[03/Jul/2001:14:37:09] failure (15110): Internal error: exception thrown
from the servlet service function (uri=/PortalInterface):
java.lang.UnsatisfiedLinkError: specialLoadClass, Stack:
java.lang.UnsatisfiedLinkError: specialLoadClass
at
com.sun.corba.ee.internal.util.JDKClassLoader.loadClass(JDKClassLoader.java:58)
at
com.sun.corba.ee.internal.util.JDKBridge.loadClassM(JDKBridge.java:180)
at
com.sun.corba.ee.internal.util.JDKBridge.loadClass(JDKBridge.java:83)
at javax.rmi.CORBA.Util.loadClass(Util.java:215)
at javax.rmi.CORBA.Util.createDelegateIfSpecified(Util.java:306)
at <Unloaded Method>
at
javax.rmi.PortableRemoteObject.createDelegateIfSpecified(PortableRemoteObject.java:182)
at <Unloaded Method>
at
com.iplanet.portalserver.api.SabreFlightDetails.getPriceAvailabilityInfo(Compiled
Code)
at
com.iplanet.portalserver.api.SabreFlightDetails.getSabreFlights(SabreFlightDetails.java:74)
at com.iplanet.portalserver.api.PortalInterface.doPost(Compiled
Code)
at javax.servlet.http.HttpServlet.service(Compiled Code)
at javax.servlet.http.HttpServlet.service(Compiled Code)
at
com.netscape.server.http.servlet.NSServletRunner.Service(Compiled Code)
I've set classpaths for the rich client in kjs and also in jvm12.conf of
IPS 3.0. But going by the rich client examples given with IAS, like the
converter client example, we have to set
a LD_LIBRARY_PATH as in runclient.sh. There is no place in IPS where we
can set the LD_LIBRARY_PATH. Is that the reason ?
I would appreciate your thoughts on this issue.
Thanks

Hi Aslam
You will use class maps to divert the traffic to the module. Here are some basic steps.
!Identify the traffic that needs to be diverted to the IPS SSP.
   access-list IPS permit ip any any
!Classify the traffic using a class map.
  class-map IPS
  match access-list IPS
!Specify the action to be taken on the traffic using a policy map. !Since there is already a policy map attached globally in the FW, !the class-map defined above will be added here !only.
policy-map global_policy
class IPS
ips promiscuous fail-close (or fail-open)
Once that is done, the rest of the configuration needs to be done on the IPS using CLI or preferrably the IDM.
HTH. Please rate if useful.
Zubair

Similar Messages

  • Error While Deploying the BPEL Process using obant script

    Hi All,
    I am getting the following error while deploying the BPEL Process using obant script. we are using the BPEL Version 10.1.2.0.2.Any information in this regard will be really helpful.
    Buildfile: build.xml
    main:
    [bpelc] file:/home5102/dibyap/saravana/Test/CreditRatingService.wsdl
    [bpelc] validating "/home5102/dibyap/saravana/Test/CreditRatingService.bpel" ...
    BUILD FAILED
    /home5102/dibyap/saravana/Test/build.xml:15: ORABPEL-01002
    Domain directory not found.
    The process cannot be deployed to domain "default" because the domain directory "/opt02/app/ESIT/oracle/esit10gR2iAS/BPEL10gR2/iAS/integration/orabpel/domains/default/deploy" cannot be found or cannot b
    e written to.
    Please check your -deploy option value; "default" must refer to a domain that has been installed locally on your machine.
    Total time: 23 seconds
    dibyap@ios5102_ESIBT:/home5102/dibyap/saravana/Test>
    Thanks,
    Saravana

    In 10.1.2.0.2 you need to create your own build.xml
    I have found an example, it may be of some help. This does call a property file
    cheers
    James
    <?xml version="1.0" ?>
    <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Run cxant on this file to build, package and deploy the
    ASB_EFT BPEL process
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
    <project name="ASB_EFT" default="main" basedir=".">
    <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Name of the domain the generated BPEL suitcase will be deployed to
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
    <property name="deploy" value="default" />
    <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    What version number should be used to tag the generated BPEL archive?
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
    <property name="rev" value="1.0" />
    <!-- BPEL Best Practices Properties -->
    <!-- Defaults Properties for TARGET environments
    # CHANGE THIS FILE TO REFLECT THE TARGET ENVIRONEMNT
    # either dev, test, or prod.properties
    -->
    <property file="ebusd.properties"/>
    <property name="env" value="${env.name}"/>
    <property name="current.project.name" value="${project.name}"/>
    <property name="target.project.name" value="${project.name}_${env}"/>
    <property name="deployment.profile" value ="${env}.properties"/>
    <property name="source.development.directory" location="${basedir}"/>
    <property name="target.env.directory" location="${basedir}/deploy/${project.name}_${env}"/>
    <property file="${deployment.profile}"/>
    <property name="build.fileencoding" value="UTF-8"/>
    <!-- Prints Environment
    -->
    <target name="print.env" description="Display environment settings">
    <echo message="Base Directory: ${basedir}"/>
    <echo message="Deployment Profile: ${deployment.profile}"/>
    <echo message="target.env.directory: ${target.env.directory}"/>
    <echo message="Deploy to Domain: ${deployToDomain}"/>
    <echo/>
    <echo message="os.name: ${os.name}"/>
    <echo message="os.version: ${os.version}"/>
    <echo message="os.arch: ${os.arch}"/>
    <echo/>
    <echo message="java.home: ${java.home}"/>
    <echo message="java.vm.name: ${java.vm.name}"/>
    <echo message="java.vm.vendor: ${java.vm.vendor}"/>
    <echo message="java.vm.version: ${java.vm.version}"/>
    <echo message="java.class.path: ${java.class.path}"/>
    <echo/>
    <echo message="env: ${env}"/>
    <echo message="current.project.name: ${current.project.name}"/>
    <echo message="target.project.name: ${target.project.name}"/>
    <echo message="server.name: ${server.name}"/>
    </target>
    <!--
    Copies the current directory structure along with
    all the file into the target.env.directory and
    change the name of the project
    -->
    <target name="create.environment">
    <copy todir="${target.env.directory}">
    <fileset dir="${basedir}"/>
    <filterset begintoken="@" endtoken="@">
    <filtersfile file="${deployment.profile}"/>
    </filterset>
    </copy>
    <move file="${target.env.directory}/${current.project.name}.jpr" tofile="${target.env.directory}/${target.project.name}.jpr"/>
    </target>
    <target name="main">
    <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    the bpelc task compiles and package BPEL processes into versioned BPEL
    archives (bpel_...jar). See the "Programming BPEL" guide for more
    information on the options of this task.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
    <bpelc input="${basedir}/bpel.xml" rev="${rev}" deploy="${deploy}" />
    </target>
    </project>
    here is a property file
    project.name=ASB_EFT
    env.name=ebusd
    deployToDomain=default
    server.name=[server]
    server.port=7788
    ebusd\:7788=http://[server]:7788/
    IntegrationMailAccount=OracleBPELTest
    IntegrationMailAddress=[email]
    IntegrationMailPassword=[password]
    archivedir=[directory]
    inbounddir=/[directory]
    errordir=[directory]
    outbounddir=[directory]
    bpelpw=bpel
    dbhost1=[dbserver]
    dbhost2=[dbserver]
    dbport=1523
    dbservice=bpel
    dbconnstr=jdbc:oracle:thin:@(DESCRIPTION=(LOAD_BALANCE=YES)(FAILOVER=YES)(ADDRESS_LIST=(ADDRESS=(PROTOCOL=tcp)(HOST=[server])(PORT=1523))(ADDRESS=(PROTOCOL=tcp)(HOST=[server])(PORT=1523)))(CONNECT_DATA=(SERVICE_NAME=ebusd)))

  • 10.1.2.0.2 install fails with Out of memory error

    Hi All,
    I see the following error when installing BPEL PM 10.1.2.0.2 with OID, the OID configuration fails with OutofMemory error. Running the failed task from the command line also throws the same error. Any suggestions ?
    Thanks,
    Ravikiran.
    ankur.goel (4:59:26 PM): /scratch/ankugoel/softwares/ias/jdk/bin/java -jar /scratch/ankugoel/softwares/ias/integration/orabpel/system/services/lib/bpm-install.jar configureOID -oracle-home "/scratch/ankugoel/softwares/ias" -oid-admin cn=orcladmin welcome1 -oid-location stanc15.us.oracle.com 389 -oid-realm us -oid-seed seedRequiredUsers
    Install Configuration
    Install Type: ConfigureOID
    Oracle Home: /scratch/ankugoel/softwares/ias
    JDK Home: /scratch/ankugoel/softwares/ias/jdk
    Proxy Required: false
    Database Vendor: oracle
    OID Host: stanc15.us.oracle.com
    OID Port: 389
    OID Realm: us
    OID Seed: seedRequiredUsers
    Admin User: orcladmin
    Seeding users/roles in OID realm : us...
    Buildfile: bpminstall.xml
    seed-oid:
    init:
    seed-oid:
    Seeding system users/roles into OID ...
    The subscriber `us' contains multiple values for the attribute `orclCommonGroupSearchBase'
    1. cn=Groups,dc=us,dc=oracle,dc=com
    2. cn=CSGroups,cn=Groups,dc=us,dc=oracle,dc=com
    3. cn=Groups,cn=OracleContext,dc=us,dc=oracle,dc=com
    java.lang.OutOfMemoryError

    Hi
    We also encountered the same problem and resolved it as suggested. However, now we get the following error: (in the oid config assistant step in BPEL installation)
    Output generated from configuration assistant "Oracle BPEL Process Manager OID Configuration Assistant" (attempt 5):
    Install Configuration
    Install Type: ConfigureOID
    Oracle Home: /opt/oraias/oas/bpel
    JDK Home: /opt/oraias/oas/bpel/jdk
    Proxy Required: false
    Database Vendor: oracle
    OID Host: <hostname>
    OID Port: <port>
    OID Realm: <realm>
    OID Seed: seedAllUsers
    Admin User: orcladmin
    Seeding users/roles in OID realm : <realm>...Buildfile: bpminstall.xml
    seed-oid:
    init:
    seed-oid:Seeding system users/roles into OID ...Migration of LDIF data completed. All the entries are successfully migrated
    Seeding demo users/roles into OID ...Migration of LDIF data completed. All the entries are successfully migrated
    BUILD SUCCESSFUL
    Total time: 1 second
    Exit: 0
    Configuring OID as LDAP based JAZN provider ...ERROR: Failed to update /opt/oraias/oas/bpel/j2ee/OC4J_BPEL/application-deployments/hw_services/orion-application.xml
    java.net.ConnectException: Connection timed out
         at java.net.PlainSocketImpl.socketConnect(Native Method)
         at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:305)
         at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:171)
         at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:158)
         at java.net.Socket.connect(Socket.java:452)
         at java.net.Socket.connect(Socket.java:402)
         at sun.net.NetworkClient.doConnect(NetworkClient.java:139)
         at sun.net.www.http.HttpClient.openServer(HttpClient.java:402)
         at sun.net.www.http.HttpClient.openServer(HttpClient.java:618)
         at sun.net.www.http.HttpClient.<init>(HttpClient.java:306)
         at sun.net.www.http.HttpClient.<init>(HttpClient.java:267)
         at sun.net.www.http.HttpClient.New(HttpClient.java:339)
         at sun.net.www.http.HttpClient.New(HttpClient.java:320)
         at sun.net.www.http.HttpClient.New(HttpClient.java:315)
         at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:521)
         at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:498)
         at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:626)
         at java.net.URL.openStream(URL.java:913)
         at oracle.xml.parser.v2.XMLReader.openURL(XMLReader.java:2292)
         at oracle.xml.parser.v2.XMLReader.pushXMLReader(XMLReader.java:266)
         at oracle.xml.parser.v2.NonValidatingParser.pushExternalDTD(NonValidatingParser.java:540)
         at oracle.xml.parser.v2.NonValidatingParser.parseDoctypeDecl(NonValidatingParser.java:465)
         at oracle.xml.parser.v2.NonValidatingParser.parseProlog(NonValidatingParser.java:298)
         at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:277)
         at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:268)
         at oracle.tip.install.util.XMLUtil.loadDocument(XMLUtil.java:212)
         at oracle.tip.install.tasks.ConfigureOID.configureJaznProvider(ConfigureOID.java:288)
         at oracle.tip.install.tasks.ConfigureOID.install(ConfigureOID.java:130)
         at oracle.tip.install.BPMInstaller.runInstaller(BPMInstaller.java:140)
         at oracle.tip.install.BPMInstaller.main(BPMInstaller.java:77)
    ERROR: Failed while configuring JAZN provider in orion-application.xml.
    Configuration assistant "Oracle BPEL Process Manager OID Configuration Assistant" was canceled.

  • Issue while Processing the Huge File in BPEL

    Hi,
    We are facing an Issue while Processing a Hige file in BPEL Process (More than 1MB File). When i test the files with more than 1500 transactions (More than 1MB file) then the BPEL Process is automatically goes to OFF Mode or it goes to Perform Manually Recovery Queue.
    Even we are facing this issue in Production also so we are using UNIX Script to Split the file before place the file in BPEL Input directory.Any Pointers to resolve this issue will be helpful.
    Thanks,
    Saravana

    Hi,
    Please find the answers.
    1. Currently we are using SOA 10.1.2 Version and JDev10g
    2. we are using File Adapeter
    3. yes. We used debatching.
    4. Yes. I am able to recover from Manual Recovery Queue
    5. Please find the error message
    <2009-05-21 04:32:38,461> <DEBUG> <ESIBT.collaxa.cube.engine.dispatch> <Dispatcher::adjustThreadPool> Allocating 1 thread(s); pending threads: 1, active threads: 0, total: 83
    <2009-05-21 04:32:44,077> <DEBUG> <ESIBT.collaxa.cube.activation> <File Adapter::Inbound> File : /harbinger/prod/xlate/Outbound_Input_LDS_810/Input5162009.B2B is ready to be processed.
    <2009-05-21 04:32:44,077> <INFO> <ESIBT.collaxa.cube.activation> <File Adapter::Inbound> Processing file : /harbinger/prod/xlate/Outbound_Input_LDS_810/Input5162009.B2B
    <2009-05-21 04:32:44,077> <DEBUG> <ESIBT.collaxa.cube.activation> <AdapterFramework::Inbound> onBatchBegin: Batch 'bpel://localhost/ESIBT/BPELProcess_810~1.0//Input5162009.B2B_1242894594000' (/harbinger/prod/xlate/Outbound_Input_LDS_810/Input5162009.B2B) starting...
    <2009-05-21 04:32:44,077> <DEBUG> <ESIBT.collaxa.cube.translation> <TranslatorFactory::log> Inside TranslatorFactory
    <2009-05-21 04:32:44,078> <DEBUG> <ESIBT.collaxa.cube.translation> <TranslatorFactory::log> using version attribute = NXSD
    <2009-05-21 04:32:44,078> <DEBUG> <ESIBT.collaxa.cube.translation> <TranslatorFactory::log> loading xlator class...oracle.tip.pc.services.translation.xlators.nxsd.NXSDTranslatorImpl
    <2009-05-21 04:32:44,081> <DEBUG> <ESIBT.collaxa.cube.translation> <TranslatorFactory::log> class loaded
    <2009-05-21 04:32:44,081> <DEBUG> <ESIBT.collaxa.cube.activation> <File Adapter::Inbound> Created translator : oracle.tip.pc.services.translation.xlators.nxsd.NXSDTranslatorImpl@46908ae8
    <2009-05-21 04:32:44,098> <DEBUG> <ESIBT.collaxa.cube.activation> <File Adapter::Inbound> Setting up Control dir for debatching error recovery
    <2009-05-21 04:32:44,121> <DEBUG> <ESIBT.collaxa.cube.activation> <File Adapter::Inbound> Control dir for debatching error recovery : /opt01/app/ESIBT/oracle/esibt10gR2iAS/BPEL10gR2/iAS/j2ee/home/fileftp/controlFiles/localhost_ESIBT_BPELProcess_810~1.0_/inbound
    <2009-05-21 04:32:44,121> <DEBUG> <ESIBT.collaxa.cube.activation> <File Adapter::Inbound> Invoking inbound translation for : Input5162009.B2B
    <2009-05-21 04:32:44,121> <DEBUG> <ESIBT.collaxa.cube.translation> <NXSDTranslatorImpl::log> Starting translateFromNative
    <2009-05-21 04:32:44,139> <DEBUG> <ESIBT.collaxa.cube.translation> <NXSDTranslatorImpl::log> Done with translateFromNative
    <2009-05-21 04:32:44,139> <DEBUG> <ESIBT.collaxa.cube.activation> <File Adapter::Inbound> Completed inbound translation for : Input5162009.B2B
    <2009-05-21 04:32:44,139> <DEBUG> <ESIBT.collaxa.cube.activation> <File Adapter::Inbound> isTextFile : true
    <2009-05-21 04:32:44,139> <INFO> <ESIBT.collaxa.cube.activation> <File Adapter::Inbound> Translated inbound batch index 1 of file {Input5162009.B2B} with corrupted message count = 1
    <2009-05-21 04:32:44,139> <DEBUG> <ESIBT.collaxa.cube.activation> <File Adapter::Inbound> Error Reader created using charset :ASCII
    <2009-05-21 04:32:44,139> <INFO> <ESIBT.collaxa.cube.activation> <File Adapter::Inbound> Sending message to Adapter Framework for rejection to user-configured rejection handlers : {
    fileName=/harbinger/prod/xlate/Outbound_Input_LDS_810/Input5162009.B2B, startLine=1, startColumn=1, endLine=-1, endCol=-1, Exception=ORABPEL-11167
    Error while reading native data.
    [Line=1, Col=70] Expected "\t" at the specified position in the native data, while trying to read the data for "element with name HDR_STORE_NUM", using "style" as "terminated" and "terminatedBy" as "\t", but not found.
    Ensure that "\t", exists at the specified position in the native data.
    <2009-05-21 04:32:44,139> <DEBUG> <ESIBT.collaxa.cube.activation> <File Adapter::Inbound> Setting batchId in NativeRecord to bpel://localhost/ESIBT/BPELProcess_810~1.0//Input5162009.B2B_1242894594000
    <2009-05-21 04:32:44,139> <WARN> <ESIBT.collaxa.cube.activation> <AdapterFramework::Inbound> [Read_ptt::Read(Object)] - onReject: The resource adapter 'File Adapter' requested handling of a malformed inbound message. However, the following bpel.xml activation property has not been defined: 'rejectedMessageHandlers'. Please define it and redeploy the business process. Will use the default Rejection Directory file:///opt01/app/ESIBT/oracle/esibt10gR2iAS/BPEL10gR2/iAS/integration/orabpel/domains/ESIBT/archive/jca/BPELProcess_810/rejectedMessages for now.
    <2009-05-21 04:32:44,140> <WARN> <ESIBT.collaxa.cube.activation> <AdapterFramework::Inbound> [Read_ptt::Read(Object)] - onReject: Sending invalid inbound message to Exception Handler:
    <2009-05-21 04:32:44,140> <INFO> <ESIBT.collaxa.cube.activation> <AdapterFramework::Inbound> Handing rejected message to DEFAULT rejection handler: file:///opt01/app/ESIBT/oracle/esibt10gR2iAS/BPEL10gR2/iAS/integration/orabpel/domains/ESIBT/archive/jca/BPELProcess_810/rejectedMessages since none of the configured rejection handlers [] succeeded.
    <2009-05-21 04:32:44,140> <DEBUG> <ESIBT.collaxa.cube.activation> <AdapterFramework::Inbound> Finished persisting rejected message to file system under the name: /opt01/app/ESIBT/oracle/esibt10gR2iAS/BPEL10gR2/iAS/integration/orabpel/domains/ESIBT/archive/jca/BPELProcess_810/rejectedMessages/INVALID_MSG_BPELProcess_810_Read_20090521_043244_0140.dat
    <2009-05-21 04:32:44,141> <DEBUG> <ESIBT.collaxa.cube.activation> <File Adapter::Inbound> Setting last error record to : -1
    <2009-05-21 04:32:44,141> <DEBUG> <ESIBT.collaxa.cube.activation> <File Adapter::Inbound> Translator has failed to translate any message from batch number: 1
    <2009-05-21 04:32:44,141> <INFO> <ESIBT.collaxa.cube.activation> <File Adapter::Inbound> Message not published as translation failed: {
    File=/harbinger/prod/xlate/Outbound_Input_LDS_810/Input5162009.B2B, batchIndex=1, PublishSize=1
    <2009-05-21 04:32:44,141> <ERROR> <ESIBT.collaxa.cube.activation> <AdapterFramework::Inbound> onBatchFailure: Batch 'bpel://localhost/ESIBT/BPELProcess_810~1.0//Input5162009.B2B_1242894594000' (/harbinger/prod/xlate/Outbound_Input_LDS_810/Input5162009.B2B) has failed due to: ORABPEL-11167
    Error while reading native data.
    [Line=1, Col=70] Expected "\t" at the specified position in the native data, while trying to read the data for "element with name HDR_STORE_NUM", using "style" as "terminated" and "terminatedBy" as "\t", but not found.
    Ensure that "\t", exists at the specified position in the native data.
    <2009-05-21 04:32:44,141> <INFO> <ESIBT.collaxa.cube.activation> <File Adapter::Inbound> Deleting file : /harbinger/prod/xlate/Outbound_Input_LDS_810/Input5162009.B2B after processing.
    <2009-05-21 04:32:44,141> <DEBUG> <ESIBT.collaxa.cube.activation> <File Adapter::Inbound> Deleting file : Input5162009.B2B
    <2009-05-21 04:32:44,141> <DEBUG> <ESIBT.collaxa.cube.activation> <File Adapter::Inbound> Deleted file : true
    <2009-05-21 04:32:44,141> <DEBUG> <ESIBT.collaxa.cube.activation> <File Adapter::Inbound> Removing file /harbinger/prod/xlate/Outbound_Input_LDS_810/Input5162009.B2B from files to be processed Map.
    <2009-05-21 04:32:44,141> <INFO> <ESIBT.collaxa.cube.activation> <File Adapter::Inbound> Done processing File : /harbinger/prod/xlate/Outbound_Input_LDS_810/Input5162009.B2B
    <2009-05-21 04:33:09,698> <DEBUG> <ESIBT.collaxa.cube.engine.data> <ConnectionFactory::getConnection> GOT CONNECTION 4 Autocommit = false
    For this error message this shows due to some /t its not picking up the file. but even i am facing the same issue for all the files where load is huge.
    Thanks,
    Saravana

  • I have this error on deployed process (in BPEL console). What is this?

    I have this error on deployed process (in BPEL console). What is this?
    The following exception occured while loading this Process:
    Exception Name:
    java.lang.ClassCastException
    Exception Description:
    null
    Suggested Fix:
    Context:
    Stack Trace:
    --------------------------------------------------------------------------------------------

    There is some more log (debug mode on domain).
    thanks.
    <2006-07-05 09:53:43,276> <DEBUG> <askatin.collaxa.cube.activation> <AdapterFramework::Inbound> Looking up Resource Adapter JNDI location 'eis/AQ/aqSample'
    <2006-07-05 09:53:43,276> <INFO> <askatin.collaxa.cube.activation> <AdapterFramework::Inbound> Creating new instance of Resource Adapter oracle.tip.adapter.aq.AQResourceAdapter
    <2006-07-05 09:53:43,276> <DEBUG> <askatin.collaxa.cube.activation> <AdapterFramework::Inbound> Looking up Resource Adapter JNDI location 'eis/AQ/aqSample'
    <2006-07-05 09:53:43,276> <INFO> <askatin.collaxa.cube.activation> <AdapterFramework::Inbound> Creating new instance of Resource Adapter oracle.tip.adapter.aq.AQResourceAdapter
    <2006-07-05 09:53:43,431> <DEBUG> <askatin.collaxa.cube.engine.deployment> <DeploymentHelper::deployProcess> Deployed file /oracle/product/oas1012/ias/integration/orabpel/domains/askatin/deploy/bpel_NotifyUserOfChange_1.0.jar
    <2006-07-05 09:53:43,809> <DEBUG> <askatin.collaxa.cube.engine.deployment> <CubeProcessMonitorWork::run> Loading process archive bpel_NotifyUserOfChange_1.0.jar
    <2006-07-05 09:53:43,811> <DEBUG> <askatin.collaxa.cube.engine.deployment> <BPELArchive::unpack> Unpacking process 'NotifyUserOfChange', revision '1.0' from BPEL archive 'bpel_NotifyUserOfChange_1.0.jar'
    <2006-07-05 09:53:43,841> <DEBUG> <askatin.collaxa.cube.engine.deployment> <BPELArchive::unpack> Extracted archive stale ... reextract
    <2006-07-05 09:53:44,386> <DEBUG> <askatin.collaxa.cube.engine.deployment> <CubeProcessFactory::create> Creating process 'NotifyUserOfChange' (revision '1.0')
    <2006-07-05 09:53:44,389> <DEBUG> <askatin.collaxa.cube.engine.deployment> <CubeProcessFactory::loadProcess> Cannot find process class bpel.p0.BPEL_BIN ... recompile process
    <2006-07-05 09:53:44,389> <DEBUG> <askatin.collaxa.cube.compiler> home directory is: /oracle/product/oas1012/ias/integration/orabpel
    <2006-07-05 09:53:44,426> <DEBUG> <askatin.collaxa.cube.compiler> lib dir is: /oracle/product/oas1012/ias/integration/orabpel/lib
    <2006-07-05 09:53:44,426> <DEBUG> <askatin.collaxa.cube.xml> <ProcessSchemaManager::loadWSDLs> Begin loading wsdl for partner "ReceiveFromIfs" from "file:/C:/distr/oracle/collabration/ContentServices_WebServices/sample_code/sample_custom_workflows/jdev_projects/SetLinkOnNew/Dequeue.wsdl"
    <2006-07-05 09:53:44,426> <ERROR> <askatin.collaxa.cube.engine.deployment> <CubeProcessFactory::generateProcessClass>
    Process "NotifyUserOfChange" (revision "1.0") compilation failed.
    <2006-07-05 09:53:44,427> <DEBUG> <askatin.collaxa.cube.engine.deployment> <CubeProcessFactory::create> Error creating process
    java.lang.NullPointerException
    at com.collaxa.cube.engine.CubeContextHelper.getLocationResolver(CubeContextHelper.java:113)
    at com.collaxa.cube.ws.wsdl.WSDLManager.getWSDL(WSDLManager.java:200)
    at com.collaxa.cube.xml.xsd.xerces.ProcessSchemaManager.loadWSDLs(ProcessSchemaManager.java:214)
    at com.collaxa.cube.lang.compiler.BPELProcessModel.loadWSDLs(BPELProcessModel.java:148)
    at com.collaxa.cube.lang.compiler.bpel.BPELValidator.validateServerSide(BPELValidator.java:56)
    at com.collaxa.cube.lang.compiler.CubeProcessor.validateServerSide(CubeProcessor.java:1192)
    at com.collaxa.cube.lang.compiler.CubeProcessor.transformServerSide(CubeProcessor.java:663)
    at com.collaxa.cube.lang.compiler.CubeParserHelper.compileServerSide(CubeParserHelper.java:89)
    at com.collaxa.cube.engine.deployment.CubeProcessFactory.generateProcessClass(CubeProcessFactory.java:224)
    at com.collaxa.cube.engine.deployment.CubeProcessFactory.loadProcess(CubeProcessFactory.java:174)
    at com.collaxa.cube.engine.deployment.CubeProcessFactory.loadProcess(CubeProcessFactory.java:117)
    at com.collaxa.cube.engine.deployment.CubeProcessFactory.create(CubeProcessFactory.java:52)
    at com.collaxa.cube.engine.deployment.CubeProcessLoader.create(CubeProcessLoader.java:391)
    at com.collaxa.cube.engine.deployment.CubeProcessLoader.load(CubeProcessLoader.java:302)
    at com.collaxa.cube.engine.deployment.CubeProcessHolder.loadAndBind(CubeProcessHolder.java:881)
    at com.collaxa.cube.engine.deployment.CubeProcessHolder.loadArchive(CubeProcessHolder.java:824)
    at com.collaxa.cube.engine.CubeEngine.loadProcessArchive(CubeEngine.java:939)
    at com.collaxa.cube.ejb.impl.BPELDomainManagerBean.loadProcessArchive(BPELDomainManagerBean.java:390)
    at IBPELDomainManagerBean_StatelessSessionBeanWrapper34.loadProcessArchive(IBPELDomainManagerBean_StatelessSessionBeanWrapper34.java:2157)
    at com.collaxa.cube.engine.deployment.CubeProcessMonitorWork.run(CubeProcessMonitorWork.java:130)
    at oracle.tip.adapter.fw.jca.work.WorkerJob.go(WorkerJob.java:51)
    at oracle.tip.adapter.fw.common.ThreadPool.run(ThreadPool.java:267)
    at java.lang.Thread.run(Thread.java:534)
    <2006-07-05 09:53:44,428> <DEBUG> <askatin.collaxa.cube.engine.deployment> <CubeProcessLoader::create>
    java.lang.NullPointerException
    at com.collaxa.cube.engine.CubeContextHelper.getLocationResolver(CubeContextHelper.java:113)
    at com.collaxa.cube.ws.wsdl.WSDLManager.getWSDL(WSDLManager.java:200)
    at com.collaxa.cube.xml.xsd.xerces.ProcessSchemaManager.loadWSDLs(ProcessSchemaManager.java:214)
    at com.collaxa.cube.lang.compiler.BPELProcessModel.loadWSDLs(BPELProcessModel.java:148)
    at com.collaxa.cube.lang.compiler.bpel.BPELValidator.validateServerSide(BPELValidator.java:56)
    at com.collaxa.cube.lang.compiler.CubeProcessor.validateServerSide(CubeProcessor.java:1192)
    at com.collaxa.cube.lang.compiler.CubeProcessor.transformServerSide(CubeProcessor.java:663)
    at com.collaxa.cube.lang.compiler.CubeParserHelper.compileServerSide(CubeParserHelper.java:89)
    at com.collaxa.cube.engine.deployment.CubeProcessFactory.generateProcessClass(CubeProcessFactory.java:224)
    at com.collaxa.cube.engine.deployment.CubeProcessFactory.loadProcess(CubeProcessFactory.java:174)
    at com.collaxa.cube.engine.deployment.CubeProcessFactory.loadProcess(CubeProcessFactory.java:117)
    at com.collaxa.cube.engine.deployment.CubeProcessFactory.create(CubeProcessFactory.java:52)
    at com.collaxa.cube.engine.deployment.CubeProcessLoader.create(CubeProcessLoader.java:391)
    at com.collaxa.cube.engine.deployment.CubeProcessLoader.load(CubeProcessLoader.java:302)
    at com.collaxa.cube.engine.deployment.CubeProcessHolder.loadAndBind(CubeProcessHolder.java:881)
    at com.collaxa.cube.engine.deployment.CubeProcessHolder.loadArchive(CubeProcessHolder.java:824)
    at com.collaxa.cube.engine.CubeEngine.loadProcessArchive(CubeEngine.java:939)
    at com.collaxa.cube.ejb.impl.BPELDomainManagerBean.loadProcessArchive(BPELDomainManagerBean.java:390)
    at IBPELDomainManagerBean_StatelessSessionBeanWrapper34.loadProcessArchive(IBPELDomainManagerBean_StatelessSessionBeanWrapper34.java:2157)
    at com.collaxa.cube.engine.deployment.CubeProcessMonitorWork.run(CubeProcessMonitorWork.java:130)
    at oracle.tip.adapter.fw.jca.work.WorkerJob.go(WorkerJob.java:51)
    at oracle.tip.adapter.fw.common.ThreadPool.run(ThreadPool.java:267)
    at java.lang.Thread.run(Thread.java:534)
    <2006-07-05 09:53:44,429> <ERROR> <askatin.collaxa.cube.engine.deployment> <CubeProcessLoader::create>
    <2006-07-05 09:53:44,429> <ERROR> <askatin.collaxa.cube.engine.deployment> Process "NotifyUserOfChange" (revision "1.0") load FAILED!!
    <2006-07-05 09:53:44,429> <DEBUG> <askatin.collaxa.cube.engine.dispatch> <BaseDispatchSet::receive> Receiving message log process event message 11d1def534ea1be0:1ee2c2c:10c3a1465c2:-7fea for set system
    <2006-07-05 09:53:44,430> <DEBUG> <askatin.collaxa.cube.engine.dispatch> <Dispatcher::adjustThreadPool> Allocating 1 thread(s); pending threads: 1, active threads: 0, total: 463
    <2006-07-05 09:53:44,430> <DEBUG> <askatin.collaxa.cube.engine.dispatch> <QueueConnectionPool::getConnection> Fetched a queue connection from pool java:comp/env/jms/collaxa/BPELWorkerQueueFactory, available connections=24, total connections=25
    <2006-07-05 09:53:44,432> <DEBUG> <askatin.collaxa.cube.engine.dispatch> <DispatcherBean::send> Sent message to queue
    <2006-07-05 09:53:44,432> <DEBUG> <askatin.collaxa.cube.engine.dispatch> <QueueConnectionPool::releaseConnection> Released queue connection to pool java:comp/env/jms/collaxa/BPELWorkerQueueFactory, available connections=25, total connections=25
    <2006-07-05 09:53:44,433> <DEBUG> <askatin.collaxa.cube.engine.deployment> <CubeProcessHolder::bind> Exception while loading process
    java.lang.NullPointerException
    at com.collaxa.cube.engine.CubeContextHelper.getLocationResolver(CubeContextHelper.java:113)
    at com.collaxa.cube.ws.wsdl.WSDLManager.getWSDL(WSDLManager.java:200)
    at com.collaxa.cube.xml.xsd.xerces.ProcessSchemaManager.loadWSDLs(ProcessSchemaManager.java:214)
    at com.collaxa.cube.lang.compiler.BPELProcessModel.loadWSDLs(BPELProcessModel.java:148)
    at com.collaxa.cube.lang.compiler.bpel.BPELValidator.validateServerSide(BPELValidator.java:56)
    at com.collaxa.cube.lang.compiler.CubeProcessor.validateServerSide(CubeProcessor.java:1192)
    at com.collaxa.cube.lang.compiler.CubeProcessor.transformServerSide(CubeProcessor.java:663)
    at com.collaxa.cube.lang.compiler.CubeParserHelper.compileServerSide(CubeParserHelper.java:89)
    at com.collaxa.cube.engine.deployment.CubeProcessFactory.generateProcessClass(CubeProcessFactory.java:224)
    at com.collaxa.cube.engine.deployment.CubeProcessFactory.loadProcess(CubeProcessFactory.java:174)
    at com.collaxa.cube.engine.deployment.CubeProcessFactory.loadProcess(CubeProcessFactory.java:117)
    at com.collaxa.cube.engine.deployment.CubeProcessFactory.create(CubeProcessFactory.java:52)
    at com.collaxa.cube.engine.deployment.CubeProcessLoader.create(CubeProcessLoader.java:391)
    at com.collaxa.cube.engine.deployment.CubeProcessLoader.load(CubeProcessLoader.java:302)
    at com.collaxa.cube.engine.deployment.CubeProcessHolder.loadAndBind(CubeProcessHolder.java:881)
    at com.collaxa.cube.engine.deployment.CubeProcessHolder.loadArchive(CubeProcessHolder.java:824)
    at com.collaxa.cube.engine.CubeEngine.loadProcessArchive(CubeEngine.java:939)
    at com.collaxa.cube.ejb.impl.BPELDomainManagerBean.loadProcessArchive(BPELDomainManagerBean.java:390)
    at IBPELDomainManagerBean_StatelessSessionBeanWrapper34.loadProcessArchive(IBPELDomainManagerBean_StatelessSessionBeanWrapper34.java:2157)
    at com.collaxa.cube.engine.deployment.CubeProcessMonitorWork.run(CubeProcessMonitorWork.java:130)
    at oracle.tip.adapter.fw.jca.work.WorkerJob.go(WorkerJob.java:51)
    at oracle.tip.adapter.fw.common.ThreadPool.run(ThreadPool.java:267)
    at java.lang.Thread.run(Thread.java:534)
    <2006-07-05 09:53:44,434> <ERROR> <askatin.collaxa.cube> <BaseCubeSessionBean::logError> Error while invoking bean "domain manager": Error while loading process.
    The process domain encountered the following errors while loading the process "NotifyUserOfChange" (revision "1.0"): null.
    If you have installed a patch to the server, please check that the bpelcClasspath domain property includes the patch classes.
    ORABPEL-05215
    Error while loading process.
    The process domain encountered the following errors while loading the process "NotifyUserOfChange" (revision "1.0"): null.
    If you have installed a patch to the server, please check that the bpelcClasspath domain property includes the patch classes.
    at com.collaxa.cube.engine.deployment.CubeProcessHolder.bind(CubeProcessHolder.java:1269)
    at com.collaxa.cube.engine.deployment.CubeProcessHolder.loadAndBind(CubeProcessHolder.java:882)
    at com.collaxa.cube.engine.deployment.CubeProcessHolder.loadArchive(CubeProcessHolder.java:824)
    at com.collaxa.cube.engine.CubeEngine.loadProcessArchive(CubeEngine.java:939)
    at com.collaxa.cube.ejb.impl.BPELDomainManagerBean.loadProcessArchive(BPELDomainManagerBean.java:390)
    at IBPELDomainManagerBean_StatelessSessionBeanWrapper34.loadProcessArchive(IBPELDomainManagerBean_StatelessSessionBeanWrapper34.java:2157)
    at com.collaxa.cube.engine.deployment.CubeProcessMonitorWork.run(CubeProcessMonitorWork.java:130)
    at oracle.tip.adapter.fw.jca.work.WorkerJob.go(WorkerJob.java:51)
    at oracle.tip.adapter.fw.common.ThreadPool.run(ThreadPool.java:267)
    at java.lang.Thread.run(Thread.java:534)

  • Any InterConnect white papers..?

    Other than the small (and confused) Appendix C in AS Installation Guide, are there any papers discussion different installation "scenarios" for InterConnect?

    Pls. take a look at http://otn.oracle.com/tech/integration/content.html or
    http://www.oracle.com/ip/deploy/ias/integration/
    Thanks,
    Sudi Narasimhan
    Oracle9iAS Portal Partner Services

  • Managing InterConnect adapters

    We are investigating how the operators will be able to manage InterConnect adapters. Except from parsing the error logs (oailog.txt), there don't seems to be out-of- the-box solutions to verify that adapters are up and running also in case no messages are received. We can of course publish and subscribed dedicated messages that flow over every n minutes but I wonder if this is the best method. Some other Integration products automatically publish a management event that is subscribed by a dedicated adapter providing a kind of heart beat.
    How do other people manage their environments?
    thank you,
    regards,
    Claude Boussemaere

    Claude,
    I suppose the good thing about iAS 10g as a product is that it does guarantee delivery! If any bit of the "middleware", or indeed your source / target systems are misbehaving, then the messages are either held in Oracle AQ's, or persistence files.
    For my two cents, I think that using the Oracle Enterprise Manager Console is a good out-of-the-box tool to start with. It is certainly the tool I use on my environment. Although it isn't a complete "one-stop-shop", it does give you a single place where you can, for adapters, look at:-
    * The state (running or not)
    * Look at errors
    * Look at, and edit, the adapter.ini file
    * Look at the latest log file
    * Get "alive time"
    * Get "throughput" statistics and
    * If you use the "Tracking Messages" feature of iAS Integration, then it is here where you can look at your Tracking Fields.
    You can also check that the repository is alive and kicking too.
    I think I'm right in saying that OEM comes with 9iAS or 10g database. Once the iAS Integration components are installed, there are some post install steps that you need to follow for InterConnect components to show up in the OEM Console.
    I'm no OEM expert, but I believe that you can also write "Alerts" too.
    One word of advice though, and I hope someone will correct me if I'm wrong, is that OEM console is only useful if you have your repository and adapters physically installed on your Hub server. That is to say, if you have installed a DB Adapter on your target (Spoke) database, instead of on your middleware (Hub) database, then OEM will not be able to see it.
    This is why I've installed all my integration components on one server.
    Hope this helps
    Yan

  • Oracle middleware

    I have to do some small research on Middleware provided by Oracle regarding the possibility to connect to other DBMSs. And its strengths ans weaknesses.
    Can anyone tell me something about it ... or give me a hint on where to find information?

    http://oracle.com/ip/deploy/ias/integration/
    and
    http://otn.oracle.com/products/integration/content.html

  • IAS 6.0 SP2 - IPS 3.0 SP2 integration

    Hi
    I am faced with a problem related to IAS 6.0 SP2 and iPlanet Portal
    Server 3.0 SP2. I have deployed the beans on IAS and can access it from
    a rich client.
    I've servlets running in IPS and from these, I want to access the beans
    on IAS. I'm getting an unsatisfied link error. Theexception thrown is as
    follows :
    03/Jul/2001:14:37:02] info (15110): PortalInterface: init
    [03/Jul/2001:14:37:09] failure (15110): Internal error: exception thrown
    from the servlet service function (uri=/PortalInterface):
    java.lang.UnsatisfiedLinkError: specialLoadClass, Stack:
    java.lang.UnsatisfiedLinkError: specialLoadClass
    at
    com.sun.corba.ee.internal.util.JDKClassLoader.loadClass(JDKClassLoader.java:58)
    at
    com.sun.corba.ee.internal.util.JDKBridge.loadClassM(JDKBridge.java:180)
    at
    com.sun.corba.ee.internal.util.JDKBridge.loadClass(JDKBridge.java:83)
    at javax.rmi.CORBA.Util.loadClass(Util.java:215)
    at javax.rmi.CORBA.Util.createDelegateIfSpecified(Util.java:306)
    at <Unloaded Method>
    at
    javax.rmi.PortableRemoteObject.createDelegateIfSpecified(PortableRemoteObject.java:182)
    at <Unloaded Method>
    at
    com.iplanet.portalserver.api.SabreFlightDetails.getPriceAvailabilityInfo(Compiled
    Code)
    at
    com.iplanet.portalserver.api.SabreFlightDetails.getSabreFlights(SabreFlightDetails.java:74)
    at com.iplanet.portalserver.api.PortalInterface.doPost(Compiled
    Code)
    at javax.servlet.http.HttpServlet.service(Compiled Code)
    at javax.servlet.http.HttpServlet.service(Compiled Code)
    at
    com.netscape.server.http.servlet.NSServletRunner.Service(Compiled Code)
    I've set classpaths for the rich client in kjs and also in jvm12.conf of
    IPS 3.0. But going by the rich client examples given with IAS, like the
    converter client example, we have to set
    a LD_LIBRARY_PATH as in runclient.sh. There is no place in IPS where we
    can set the LD_LIBRARY_PATH. Is that the reason ?
    I would appreciate your thoughts on this issue.
    Thanks
    Partha

    One work around for this is to have only one copy in the system class path and have it loaded one only once and one copy. Then both the applications A and B can have access to this library, with out any ambiguity.
    So, put the library in the application server's system class path.
    I am little confused with your statements in 4th and 5th paragraphs, that shared library has been modified and packed in Application B and then deployed. So, you have two libraries alomost the same in Application A as well as Application B.
    According to my understanding, since the library in App B is superset to the library (shared library??, as you call. Is this really a shared library now?) in Application A, we can only have one only one library in the Application Server System class path. Am I correct?
    If this answer does not answer your question accurately, please get back. And please let me know about the answer.
    Rakesh.

  • Integrating Portal 3.0 sp3a with iAS 6.5

    I have the Portal Server installed on one machine and an application running on iAS 6.5 on a different machine.
    I have tried to invoke the application using a URLScraper channel.
    In my application, I have done:
    Session lPortalSession          = null;
    SessionID lsid               = null;      
    try
    log("before generating id");
    lsid           = new SessionID(req);
    log("lsid :"+lsid);
    lPortalSession      = Session.getSession( lsid );
    catch(Exception ex )
    ex.printStackTrace();
    return;
    Here, it is getting teh Portal Session Id, but is throwing an exception after that.
    2040 [23/Apr/2002 10:14:24:5] info: WisperMainSrv: lsid :345nwapoqoqdrfcupeat
    f2q3r646p245p@[email protected]@8080@/vcynarg.pbz
    2041 [23/Apr/2002 10:14:24:5] info: --------------------------------------
    2042 org.xml.sax.SAXParseException: Document root element is missing.
    2043 at com.sun.xml.parser.Parser.fatal(Parser.java:2817)
    2044 at com.sun.xml.parser.Parser.fatal(Parser.java:2805)
    2045 at com.sun.xml.parser.Parser.parseInternal(Parser.java:493)
    2046 at com.sun.xml.parser.Parser.parse(Parser.java:284)
    2047 at com.sun.xml.tree.XmlDocument.createXmlDocument(XmlDocument.ja
    va:226)
    2048 at com.iplanet.portalserver.util.XMLParser.<init>(XMLParser.java
    :70)
    2049 at com.iplanet.portalserver.naming.share.NamingResponseParser.<i
    nit>(NamingResponseParser.java:33)
    2050 at com.iplanet.portalserver.naming.share.NamingResponse.parseXML
    (NamingResponse.java:74)
    2051 at com.iplanet.portalserver.naming.WebtopNaming.updateNamingTabl
    e(WebtopNaming.java:174)
    2052 at com.iplanet.portalserver.naming.WebtopNaming.getNamingProfile
    (WebtopNaming.java:155)
    2053 at com.iplanet.portalserver.naming.WebtopNaming.getServiceURL(We
    btopNaming.java:57)
    (Session.java:558) com.iplanet.portalserver.session.Session.getSessionServiceURL
    (Session.java:544) com.iplanet.portalserver.session.Session.getSessionServiceURL
    ava:439) at com.iplanet.portalserver.session.Session.getSession(Session.j
    inSrv.java:136) at wisper.servlets.security.WisperMainSrv.defaultAction(WisperMa
    va:47) at wisper.servlets.security.WisperMainSrv.doGet(WisperMainSrv.ja
    2059 at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    2060 at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    (Unknown Source)at com.netscape.server.servlet.servletrunner.ServletInfo.service
    te(Unknown Source) com.netscape.server.servlet.servletrunner.ServletRunner.execu
    2063 at com.kivasoft.applogic.AppLogic.execute(Unknown Source)
    2064 at com.kivasoft.applogic.AppLogic.execute(Unknown Source)
    2065 at com.kivasoft.thread.ThreadBasic.run(Native Method)
    2066 at java.lang.Thread.run(Thread.java:484)
    2067 com.iplanet.portalserver.session.SessionException
    (Session.java:563) com.iplanet.portalserver.session.Session.getSessionServiceURL
    (Session.java:544) com.iplanet.portalserver.session.Session.getSessionServiceURL
    ava:439) at com.iplanet.portalserver.session.Session.getSession(Session.j
    inSrv.java:136) at wisper.servlets.security.WisperMainSrv.defaultAction(WisperMa
    va:47) at wisper.servlets.security.WisperMainSrv.doGet(WisperMainSrv.ja
    2073 at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    2074 at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    (Unknown Source)at com.netscape.server.servlet.servletrunner.ServletInfo.service
    te(Unknown Source) com.netscape.server.servlet.servletrunner.ServletRunner.execu
    2077 at com.kivasoft.applogic.AppLogic.execute(Unknown Source)
    2078 at com.kivasoft.applogic.AppLogic.execute(Unknown Source)
    2079 at com.kivasoft.thread.ThreadBasic.run(Native Method)
    2080 at java.lang.Thread.run(Thread.java:484)
    2081 inside error page
    What is this error?
    I have performed the following steps:
    1. Added the URL of the application server machine in Forward Cookies List in the Gateway Profile.
    2. Created the following directories on the non-iPS server host:
    /opt/SUNWips
    /opt/SUNWips/lib
    /opt/SUNWips/locale
    /etc/opt/SUNWips
    3. Copied the platform.conf file from /etc/opt/SUNWips/platform.conf to the same location on the non-iPS server.
    In the platform.conf file, modified the ips.notification.url parameter to to be the FQDN (Fully Qualified Domain Name) of the server my application is running on.
    4. I should have Copied the following JAR files from /opt/SUNWips/lib to the same location on the non-iPS server:
    ips_sdk.jar
    xml.jar
    jndi.jar
    ips_services.jar
    In this case, there may be a problem. On my Portal Server machine, these files are under /export/home0/IPS/SUNWips/lib, but I have copied them to /opt/SUNWips/lib on the machien running the App server. Could this be a problem?
    5. Copied the following files from /export/home0/IPS/SUNWips/locale to the /opt/SUNWips/locale on the non-iPS server:
    iwtPll.properties
    iwtProfile.properties
    iwtSession.properties
    iwtLogging.properties
    iwtNaming.properties
    Here, also there may be a problem because tehy are in different paths on the two machines. Does this matter?
    6. Updated the classpath in
    iws_server_root/https-your_server_instance_name/config/jvm12.conf
    I included the 3 JAR files and /opt/SUNWips/locale in the classpath. However, I could not include xml.jar, as teh server fails to startup on including xml.jar.
    I am using Web Server 6.0
    It gives the following error:
    1686 [23/Apr/2002:09:54:29] failure (12850): vs(https-sun14.iplanet.com)Cann
    t create web applications virtual server environment.
    1687 [23/Apr/2002:09:54:29] failure (12850): Internal Error: Failed to initi
    lize web application environment (web-apps.xml) for virtual server (https-sun14
    iplanet.com)
    1688 [23/Apr/2002:09:54:29] info (12850): Internal Error: Failed to initiali
    e web application environment (web-apps.xml) for virtual server (https-sun14.ip
    anet.com)
    1689 [23/Apr/2002:09:54:29] failure (12850): The new configuration was rejec
    ed, rolling back
    1690 [23/Apr/2002:09:54:29] failure (12850): vs(https-sun14.iplanet.com)Erro
    parsing web applications configuration web-apps.xml: sealing violation.
    1691 [23/Apr/2002:09:54:29] failure (12850): vs(https-sun14.iplanet.com)Cann
    t create web applications virtual server environment.
    1692 [23/Apr/2002:09:54:29] failure (12850): Internal Error: Failed to initi
    lize web application environment (web-apps.xml) for virtual server (https-sun14
    iplanet.com)
    1693 [23/Apr/2002:09:54:29] info (12850): Internal Error: Failed to initiali
    e web application environment (web-apps.xml) for virtual server (https-sun14.ip
    anet.com)
    1694 [23/Apr/2002:09:54:29] failure (12850): 1 subystems could not be rolled
    back
    7. I have added the following line to the iws_server_root/https-your_server_instance_name/config/rules.properites file:
    /notificationservice=notificationservice
    8. Added the following line to the iws_server_root/https-your_server_instance_name/config/servlets.properties file:
    servlet.notificationservice.code=com.iplanet.portalserver.pll.client.PLLNotificationServlet
    Where have I gone wrong?
    Please help....
    Regards,
    Vibha

    iPS 3.0 was never tested with app server 6.5 and iWS 6.0 so most likely it might not work. However here are the issues I see in ur current situation
    #4 and #5 are problems, they should be in the exact directory as original portal installation. #6 could also be a potential problem but I am not sure ..

  • Integrating AAA Radius-server with Micro-soft IAS for SSH

    Hi,
    I am configuring aaa-server on ASA-5505(Radius) and i am Using microsoft IAS for authentication for SSH connections on ASA, so during " test aaa-server authentication " i getting this message
    ERROR: Authentication Server not responding: AAA decode failure.. server secret mismatch
    All users are there on active  directory  And below are the debug radius and debug aaa authentication.
    ASA# test aaa-server authentication SSH-TULIP-ASA host 172.16.1.10 usern$
    INFO: Attempting Authentication test to IP address <172.16.1.10> (timeout: 12 seconds)
    radius mkreq: 0xd4
    alloc_rip 0xd83bb99c
        new request 0xd4 --> 124 (0xd83bb99c)
    got user 'praveeny'
    got password
    add_req 0xd83bb99c session 0xd4 id 124
    RADIUS_REQUEST
    radius.c: rad_mkpkt
    RADIUS packet decode (authentication request)
    Raw packet data (length = 66).....
    01 7c 00 42 37 a4 0d c2 d3 10 09 0e 2f 3c c5 1a    |  .|.B7......./<..
    4b 28 41 e6 01 0a 70 72 61 76 65 65 6e 79 02 12    |  K(A...praveeny..
    a1 8f e1 ae 58 dd c2 52 d6 37 f7 32 13 3a 1c 71    |  ....X..R.7.2.:.q
    04 06 ac 1e 1e 06 05 06 00 00 00 0e 3d 06 00 00    |  ............=...
    00 05                                              |  ..
    Parsed packet data.....
    Radius: Code = 1 (0x01)
    Radius: Identifier = 124 (0x7C)
    Radius: Length = 66 (0x0042)
    Radius: Vector: 37A40DC2D310090E2F3CC51A4B2841E6
    Radius: Type = 1 (0x01) User-Name
    Radius: Length = 10 (0x0A)
    Radius: Value (String) =
    70 72 61 76 65 65 6e 79                            |  praveeny
    Radius: Type = 2 (0x02) User-Password
    Radius: Length = 18 (0x12)
    Radius: Value (String) =
    a1 8f ERROR: Authentication Server not responding: AAA decode failure.. server secret mismatch
    Tulip-ASA# e1 ae 58 dd c2 52 d6 37 f7 32 13 3a 1c 71    |  ....X..R.7.2.:.q
    Radius: Type = 4 (0x04) NAS-IP-Address
    Radius: Length = 6 (0x06)
    Radius: Value (IP Address) = 172.30.30.6 (0xAC1E1E06)
    Radius: Type = 5 (0x05) NAS-Port
    Radius: Length = 6 (0x06)
    Radius: Value (Hex) = 0xE
    Radius: Type = 61 (0x3D) NAS-Port-Type
    Radius: Length = 6 (0x06)
    Radius: Value (Hex) = 0x5
    send pkt 172.16.1.10/1645
    rip 0xd83bb99c state 7 id 124
    rad_vrfy() : bad req auth
    rad_procpkt: radvrfy fail
    RADIUS_DELETE
    remove_req 0xd83bb99c session 0xd4 id 124
    free_rip 0xd83bb99c
    radius: send queue empty
    Thanks in advance all comments and suggestion are welcome
    Regards,
    Praveen

    Hi,
    RADIUS as a protocol does not support command accounting, ie., logging of commands that a users enters once authenticated to a router/switch. You will need to use TACACS+ for this purpose. The aaa command accounting commands that you used has been removed from IOS since 12.2T. Please take a look at this for details: http://tools.cisco.com/Support/BugToolKit/search/getBugDetails.do?method=fetchBugDetails&bugId=CSCdp57020.
    Thanks,
    Wen

  • Cisco 3750 with integrated WLC, wpa2 ent, 802.1x and ms IAS.

    So first post, I usually figure most of this stuff out. I have this all working with latest firmware etc, but I have more of a MS IAS issue than anything.
    The Peap cert used is one generated for my IAS controller, but I have two things... I'd like it to be highly available (if I shutdown Ias#1 it uses ias#2 and has a different certificate as its host name dependent). Also, if I can get a certificate for both IAS servers (using ms cert authority, trusted by all my comp's etc), I'd like it to be more than a one year cert.
    Both IAS servers are DC's, so when creating a cert request from Mmc cert snapin for machine, it has the template domain controller and only uses the machine name. I need to make a 2-5 year cert generic for IAS.
    Thanks for any help.
    Sent from Cisco Technical Support iPad App

    There are two thing you could do.
    1.) use a GPO to push the certificate from IAS#2 to all your clients.
    2.) under the PEAP config, uncheck the validate server certificate box.
    With PEAP, the supplicant doesn't 'need/have' to have the server cert, it's an option.  When I'm testing, I alwasy uncheck this box.  You could test if the clients will failover to the other IAS with the option unchecked.
    As for the cert, are both of these devices a CA, or are you using as self genereated cert?  If you have multiple IAS, you may want to promote a server to be a CA< and then issue both of these servers a cert from there.  Then you only need to have your CA root on the client, instead of each IAS.
    HTH,
    Steve
    Please remember to rate helpful posts or to mark the question as answered so that it can be found later.

  • ASA5500 V8.2 integration with IAS adn etoken pass

    Hi,
    I am needing help or direction to a document whcih can assist me solving the below issue:
    1). Authentication to IAS with OTP.
    2). AV Pairs for Cisco ASA.
    In brief I have Radius via IAS, authentication working with the standard username and password from AD.
    When I implement the OTP feature I receive the error username or password not valid as per the below:
    Event Type:    Warning
    Event Source:    IAS
    Event Category:    None
    Event ID:    2
    Date:        8/1/2010
    Time:        2:08:13 PM
    User:        N/A
    Computer:    NTS-RADIUS2
    Description:
    User erezsh was denied access.
    Fully-Qualified-User-Name = NTS-QA\erezsh
    NAS-IP-Address = 10.20.2.249
    NAS-Identifier = <not present>
    Called-Station-Identifier = <not present>
    Calling-Station-Identifier = <not present>
    Client-Friendly-Name = Cisco-ASA
    Client-IP-Address = 10.20.2.249
    NAS-Port-Type = Virtual
    NAS-Port = 40
    Proxy-Policy-Name = General
    Authentication-Provider = Windows
    Authentication-Server = <undetermined>
    Policy-Name = <undetermined>
    Authentication-Type = PAP
    EAP-Type = <undetermined>
    Reason-Code = 16
    Reason = Authentication was not successful because an unknown user name or incorrect password was used.
    The OTP feature uses a xml plugin whcih appears straightforward, but I feel is causing me the issue:
    <return_pap_cred>false</return_pap_cred>
    <return_pap_cred_attribute_number>2</return_pap_cred_attribute_number>
    The question in relation to the above is is there an av attribute for the ASA for pap credentials (Password).
    Any help or direction would be appreciated.
    Thanks in Advance.
    Jack Wikinski.

    your break is nt the better for this
    i think you can create a temporary table
    the fields salesman category and quantity
    insert and update for each record with a formula or create a new sql query and maybe use a matrix to show as you want

  • IPS integration with CSM 3.1

    Hi,
    We are planning on using the CSM 3.1 for signature updates and tuning for the network module IPS (N-IDS) for cisco 2800 routers.
    Are there any good reference guides/pointers for this out there?
    Also is anyone aware of a list of signatures that should always be tuned/filtered in a microsoft environment .
    Did cisco ever come out of such a list?
    Thanks in advance for reading/replying.

    here is one
    http://www.cisco.com/c/en/us/products/collateral/security/ios-intrusion-prevention-system-ips/prod_white_paper0900aecd8066d280.html

  • IAS 9022 Bundle Patchset and iAS 9023 Integrated Patchset

    Hi
    We are going upgrade our 9iAS installation, 90201 with 9021 core patchset installed on a solaris box, to the latest patchset.
    We found that there're two types of patchset, iAS9022 bundle patchset and iAS9023 integrated patchset. We are not sure if we should (or can) apply both of them or we just need only one of them.
    If we need to apply both, then which one should we apply first and which one next? If we need to apply only one of them then which one we should use?
    Thanks
    JC.L

    Welcome to the wonderful world of patch sets for O9i AS :)
    MetaLink has Patching Recommendations: Note:215882.1
    Also, see [NOTE:243561.1] Availability of 9iAS Integrated Patchset 9.0.2.3

Maybe you are looking for

  • I;m new to macs, and I'm having a few problems....

    The first problem I started having was with my Stickies. I was using them one day, and playing around with them. I must have clicked something because now they don't show up on my desktop. They open up and I am able to type something but I still see

  • Assigning  of g/l account  for  user defined  field

    IN  the  sales invoice   i am creating the user difined field for manual  tax( i.e manual tax the customer how much tax  amount  he will give that much amount he will feed  in that field  )in  the row level  and i want to assign   the g/l account for

  • Problem with ipad id

    my aaple id has been desactivated? how can I activated again? I have tried many times and nothing happens. I need help.

  • DOS command from java applet

    Hi, I need to perform a DOS command from Java (using WFC if needed)... I have no idea, so please help! Thank you.

  • Problem seeking video in flash player 9,0,115,0

    Hi all, I had a flash app that loads and plays an FLV, when it reaches the end it seeks to a point in the middle of the video and loops that. This had been working fine for ages, but now with the latest flash player update, there is a bug in the seek