Data control issue for content repository when running apps in webcenter .

Hi All ,
I have created content repository connection in my local jdeveloper and
exposed it as a data control .
from data control i am displaying some path and name based on some search criteria .
Whenever i am runnig this application i am getting following exceptions and no datas are displayed .
Since i have define connection for content server locally on my jdeveloper do i need to create some jndi
on server side .
TestContentServer is the content repository connection i have created in jdeveloper .
if yes tell me how can i do it and how it will port to my data control .
[2010-10-05T09:34:39.245-07:00] [wc_custom] [WARNING] [] [oracle.adf.controller.faces.lifecycle.Utils] [tid: [ACTIVE].ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: anonymous] [ecid: 0000IhxFdvi4ulWpTwp2ic1CemrZ0000fT,0:1] [WEBSERVICE_PORT.name: WSRP_v2_Markup_Service] [APP: application1] [J2EE_MODULE.name: TestContentService-ViewController-context-root] [WEBSERVICE.name: WSRP_v2_Service] [J2EE_APP.name: application1] ADF: Adding the following JSF error message: TestContentServer[[
javax.naming.NameNotFoundException: TestContentServer; remaining name 'TestContentServer'
Thanks,
Arun

Hi Yanic ,
1. code for my jspx page
<?xml version='1.0' encoding='UTF-8'?>
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
<jsp:directive.page contentType="text/html;charset=UTF-8"/>
<f:view>
<af:document id="d1">
<af:messages id="m1"/>
<af:form id="f1">
<af:inputText value="#{bindings.path.inputValue}" simple="true"
required="#{bindings.path.hints.mandatory}"
columns="#{bindings.path.hints.displayWidth}"
maximumLength="#{bindings.path.hints.precision}"
shortDesc="#{bindings.path.hints.tooltip}" id="it1">
<f:validator binding="#{bindings.path.validator}"/>
</af:inputText>
<af:inputText value="#{bindings.type.inputValue}" simple="true"
required="#{bindings.type.hints.mandatory}"
columns="#{bindings.type.hints.displayWidth}"
maximumLength="#{bindings.type.hints.precision}"
shortDesc="#{bindings.type.hints.tooltip}" id="it2">
<f:validator binding="#{bindings.type.validator}"/>
</af:inputText>
<af:commandButton actionListener="#{bindings.getItems.execute}"
text="getItems"
disabled="#{!bindings.getItems.enabled}" id="cb1"
partialSubmit="true"/>
<af:table value="#{bindings.Items.collectionModel}" var="row"
rows="#{bindings.Items.rangeSize}"
emptyText="#{bindings.Items.viewable ? 'No data to display.' : 'Access Denied.'}"
fetchSize="#{bindings.Items.rangeSize}"
rowBandingInterval="0" id="t1" partialTriggers="::cb1">
<af:column sortProperty="name" sortable="false"
headerText="#{bindings.Items.hints.name.label}" id="c2">
<af:inputText value="#{row.bindings.name.inputValue}"
label="#{bindings.Items.hints.name.label}"
required="#{bindings.Items.hints.name.mandatory}"
columns="#{bindings.Items.hints.name.displayWidth}"
maximumLength="#{bindings.Items.hints.name.precision}"
shortDesc="#{bindings.Items.hints.name.tooltip}"
id="it3">
<f:validator binding="#{row.bindings.name.validator}"/>
</af:inputText>
</af:column>
<af:column sortProperty="path" sortable="false"
headerText="#{bindings.Items.hints.path.label}" id="c3">
<af:inputText value="#{row.bindings.path.inputValue}"
label="#{bindings.Items.hints.path.label}"
required="#{bindings.Items.hints.path.mandatory}"
columns="#{bindings.Items.hints.path.displayWidth}"
maximumLength="#{bindings.Items.hints.path.precision}"
shortDesc="#{bindings.Items.hints.path.tooltip}"
id="it8">
<f:validator binding="#{row.bindings.path.validator}"/>
</af:inputText>
</af:column>
<af:column sortProperty="URI" sortable="false"
headerText="#{bindings.Items.hints.URI.label}" id="c5">
<af:inputText value="#{row.bindings.URI.inputValue}"
label="#{bindings.Items.hints.URI.label}"
required="#{bindings.Items.hints.URI.mandatory}"
columns="#{bindings.Items.hints.URI.displayWidth}"
maximumLength="#{bindings.Items.hints.URI.precision}"
shortDesc="#{bindings.Items.hints.URI.tooltip}"
id="it7">
<f:validator binding="#{row.bindings.URI.validator}"/>
</af:inputText>
</af:column>
<af:column sortProperty="primaryType" sortable="false"
headerText="#{bindings.Items.hints.primaryType.label}"
id="c7">
<af:inputText value="#{row.bindings.primaryType.inputValue}"
label="#{bindings.Items.hints.primaryType.label}"
required="#{bindings.Items.hints.primaryType.mandatory}"
columns="#{bindings.Items.hints.primaryType.displayWidth}"
maximumLength="#{bindings.Items.hints.primaryType.precision}"
shortDesc="#{bindings.Items.hints.primaryType.tooltip}"
id="it6">
<f:validator binding="#{row.bindings.primaryType.validator}"/>
</af:inputText>
</af:column>
<af:column sortProperty="title" sortable="false"
headerText="#{bindings.Items.hints.title.label}" id="c1">
<af:inputText value="#{row.bindings.title.inputValue}"
label="#{bindings.Items.hints.title.label}"
required="#{bindings.Items.hints.title.mandatory}"
columns="#{bindings.Items.hints.title.displayWidth}"
maximumLength="#{bindings.Items.hints.title.precision}"
shortDesc="#{bindings.Items.hints.title.tooltip}"
id="it9">
<f:validator binding="#{row.bindings.title.validator}"/>
</af:inputText>
</af:column>
<af:column sortProperty="docType" sortable="false"
headerText="#{bindings.Items.hints.docType.label}" id="c6">
<af:inputText value="#{row.bindings.docType.inputValue}"
label="#{bindings.Items.hints.docType.label}"
required="#{bindings.Items.hints.docType.mandatory}"
columns="#{bindings.Items.hints.docType.displayWidth}"
maximumLength="#{bindings.Items.hints.docType.precision}"
shortDesc="#{bindings.Items.hints.docType.tooltip}"
id="it5">
<f:validator binding="#{row.bindings.docType.validator}"/>
</af:inputText>
</af:column>
<af:column sortProperty="displayName" sortable="false"
headerText="#{bindings.Items.hints.displayName.label}"
id="c4">
<af:inputText value="#{row.bindings.displayName.inputValue}"
label="#{bindings.Items.hints.displayName.label}"
required="#{bindings.Items.hints.displayName.mandatory}"
columns="#{bindings.Items.hints.displayName.displayWidth}"
maximumLength="#{bindings.Items.hints.displayName.precision}"
shortDesc="#{bindings.Items.hints.displayName.tooltip}"
id="it4">
<f:validator binding="#{row.bindings.displayName.validator}"/>
</af:inputText>
</af:column>
</af:table>
</af:form>
</af:document>
</f:view>
</jsp:root>
2. code for binding .
<?xml version="1.0" encoding="UTF-8" ?>
<pageDefinition xmlns="http://xmlns.oracle.com/adfm/uimodel"
version="11.1.1.56.60" id="Test1PageDef"
Package="com.heiwip.cs.view.pageDefs">
<parameters/>
<executables>
<variableIterator id="variables">
<variable Type="java.lang.String" Name="getItems_path"
IsQueriable="false"/>
<variable Type="java.lang.String" Name="getItems_type"
IsQueriable="false"/>
</variableIterator>
<methodIterator Binds="getItems.result" DataControl="TestDC1" RangeSize="25"
BeanClass="com.heiwip.cs.view.TestDC1.getItems_return"
id="getItemsIterator"/>
</executables>
<bindings>
<methodAction id="getItems" RequiresUpdateModel="true" Action="invokeMethod"
MethodName="getItems" IsViewObjectMethod="false"
DataControl="TestDC1" InstanceName="TestDC1"
ReturnName="TestDC1.methodResults.getItems_TestDC1_getItems_result">
<NamedData NDName="path" NDType="java.lang.String"
NDValue="${bindings.getItems_path}"/>
<NamedData NDName="type" NDType="java.lang.String"
NDValue="${bindings.getItems_type}"/>
</methodAction>
<attributeValues IterBinding="variables" id="path">
<AttrNames>
<Item Value="getItems_path"/>
</AttrNames>
</attributeValues>
<attributeValues IterBinding="variables" id="type">
<AttrNames>
<Item Value="getItems_type"/>
</AttrNames>
</attributeValues>
<attributeValues IterBinding="getItemsIterator" id="displayName">
<AttrNames>
<Item Value="displayName"/>
</AttrNames>
</attributeValues>
<attributeValues IterBinding="getItemsIterator" id="name">
<AttrNames>
<Item Value="name"/>
</AttrNames>
</attributeValues>
<attributeValues IterBinding="getItemsIterator" id="path1">
<AttrNames>
<Item Value="path"/>
</AttrNames>
</attributeValues>
</bindings>
</pageDefinition>
3. Table is displayed with no data .
whenever i am trying to pass something in search criteria to get the result its
throwing connection error .
4. I am using oracle UCM (oracle content server) .
for this i am using identity propogation .
Thanks,
Arun.

Similar Messages

  • Is there a known issue for using IE11 when using business catalyst cms

    Is there a known issue for using IE11 when using business catalyst cms?  I have a client trying to update pages on her site using IE11 and the it says it updates successfully, but the new content is not saved.

    I concur with Barry; I see no significant difference in using the Home button vs. the gestures. But the "fade" effect is part of iOS 7.1 and there's no way to disable it that I know of.
    Regards.

  • Error "Not all data could be changed in LC" when running DP macro

    We are getting the error, "Not all data could be changed in LC" when running DP macros and we are not sure why. It seems to only happen when we are executing it via a Process Chain but not using the DP background processing scheduling. Does anyone know why this is happening?

    Hi Stacy,
                         I hope you are seeing this in message spool.  This message comes up for various reasons. We used to see a message saying "No data saved".
    Some of the reasons could be " the new value (lets say 3 ) after the macro execution is same as after execution (3)".
    See if some of the values are fixed and could not be changed.
    I would take a selection id with just few values and execute the job for that selection id and compare the pre and after results. That should answer all your questions.

  • How can we upload file into to OCS Content repository when we are in Apex

    We have installed the Oracle Application Express 2.2.1 into the OCS 10.1.2 database.
    The Apex authentication is set to operate with OCS SSO.
    We have made a form. There is a browse button on the form. We would like if the uploaded file appeared in the OCS content database repository as
    opposed to Apex document repository.
    To put it into another word, how can we upload the file into to OCS Content repository when we are in Apex.
    Generally speaking, how can we reach content from Apex?
    We have found many java based examples to use content sdk, but how can we use them with Apex? We believe that
    content hasn't got plsql interface.
    i would highly appreciate it if you sent me a full example program.

    Hi Ram,
    Thanks for the reply
    We have a requirement to device a solution to upload the policy documents related to iProcurement
    I am planning to create an OA page to upload the content and planning to use the AOL function security to restrict the users those who can access this page .
    Is there any better way to implement the security?
    Is this approach feasible or is there any better way to approach this requirement?
    Thanks

  • API for Content Repository Connector???

    Hi,
    Are public APIs provided for Content Repository Connector (for EMC Documentum)? Are there javadocs available for the same? We have installed the trial version of Livecycle ES(turnkey installation). We haven't been able to find the APIs for store and retrieve content using the content repository connector in the following link :
    http://livedocs.adobe.com/livecycle/es/sdkHelp/programmer/javadoc/index.html
    Can someone provide the pointers for the same?
    Thanks

    The APIs you use are the Repository APIs. It does not matter what the back end is - you use the same Repository APIs to write content to it.

  • HT204291 how do get the media icon for mac mirroring when running airplay on itunes?

    how do get the media icon for mac mirroring when running airplay

    Airplay mirroring requires a Mac from 2011 or later, running OSX 10.8 (or later)
    http://support.apple.com/kb/HT5404?viewlocale=en_US&locale=en_US

  • How do I Install or re-buy iPhoto for my Mac when the app can't lunch?

    How do I Install or re-buy iPhoto for my Mac when the app can't lunch?
    The App Store does not let me buy iPhoto from scratch nor update it. I used the original Applications Install DVD to re-install iPhoto, and the icon appeared but the app could not be used because iPhoto 2.1 is not compatible with the Mac operating system OS X (10.9.2)? I thried to update manually through apple support, and a notification of unauthorized licence did not let it happen.  What is this? What happened with my iPhoto? What can I do to solve this and safe my photos? I'm willing to pay for it, but even the app store say that it can't becuase it was suppousely bought through another account? Please help!

    Not launching is probablay not a software issue - it is probably a data issue
    No - iPhoto 2 version 2.1 is not compatible with Mavericks - or pretty much anything else - you need to purchase iPhoto '11 version 9.5.x from the App store
    LN

  • ADFMobile - Web service data control problem for android

    Hi,
    I created an application for android and testing it on an emulator.
    I am able to create web service data control for a jax-ws web service. But when I invoke the web service and the call comes to the web service host, there are no namespaces in some of the parameters. Typically, the tags which do not have the namespace are complexTypes. All the values of the parameters come properly. I have tried executing the data control in three different manners but still no luck.
    AdfmfJavaUtilities.invokeDataControlMethod(..);
    AmxMethodActionBinding.execute();
    +#{bindings.invokeMethod.execute}+
    Thanks.

    Hi there,
    Can you try to generate a sample JAX-WS the generates a similar complex structure that can help you and us to isolate the issue? I created a jax-ws service using simple complex type on Ubuntu and also a client mobile application getting no problems running it. But, perhaps you are using a more complex structure, hence an standalone would be very useful.
    Juan C.
    Edited by: Juan Camilo Ruiz on Dec 10, 2012 4:00 PM

  • Dms content repository not running

    Hey friends,
    While creating content repository i went oac0 gave the clicked in create gave the details selected dms as document area, storage type as 04 http content server. Gave version 0046, port number as 1090, server name and server script as details given by basis. clicked on send certificate. Went to CS admin and saw that server status is running with green light in over view section.
    a) But when i come back and click on test connection it says content repository doesnt exists what may be the issue.
    b) also in details tab repository status shows only defined should it be running or defined?
    regards,
    satish

    Hello Pradeep,
    Again thanks a lot for the help.
    Server log trace means are you pointing to running of report to get RFC error by running the report PCMRVC if so then below find the below.
    HTTP interface test using function group SCMS_HTTP
    23.12.2011 16:35:00
    serverInfo:
    contRep                   ZTEST1
    contRepDescription        client docs storage
    serverStatus              running
    serverVendor              Copyright SAP AG, All rights reserved 1998, 2001
    serverVersion             6400
    serverBuild               201
    serverTime                110500
    serverDate                23.12.2011
    serverStatusDescription
    pVersion                  0046
    contRepStatus             defined
    contRepStatusDescription
                                                      ok            8,659
    create(1): new doc (frontend)
    check_subrc: subrc     2  instead          0
    check_subrc: HTTP error: 500 (Internal Server Error)  "ContRep ZTEST1 or Storage entry not defined"
    create(1): new doc (frontend)                    error
    create(2): new doc (back end)
    check_subrc: subrc     1  instead          0
    check_subrc: timeout during allocate / CPIC-CALL: 'ThSAPCMRCV'  : cmRc=20 thRc=456#Timeout during connection setu p (check that partner exists
    create(2): new doc (back end)                    error
    delete(1): unknown doc
    check_subrc: subrc     2  instead          1
    check_subrc: HTTP error: 500 (Internal Server Error)  "Internal error: rc=0, ContRep ZTEST1 or Storage entry not defined "
    delete(1): unknown doc                           error
    putCert:                                          ok           11,662
             3  errors

  • Data pump issue for oracle 10G in window2003

    Hi Experts,
    I try to run data pump in oracle 10G in window 2003 server.
    I got a error as
    D:\>cd D:\oracle\product\10.2.0\SALE\BIN
    D:\oracle\product\10.2.0\SALE\BIN>expdp system/xxxxl@sale full=Y directory=du
    mpdir dumpfile=expdp_sale_20090302.dmp logfile=exp_sale_20090302.log
    Export: Release 10.2.0.4.0 - Production on Tuesday, 03 March, 2009 8:05:50
    Copyright (c) 2003, 2007, Oracle. All rights reserved.
    Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Produc
    tion
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    ORA-31626: job does not exist
    ORA-31650: timeout waiting for master process response
    However, I can run exp codes and works well.
    What is wrong for my data pump?
    Thanks
    JIM

    Hi Anand,
    I did not see any error log at that time. Actually, it did not work any more. I will test it again based on your emial after exp done.
    Based on new testing, I got below errors as
    ORA-39014: One or more workers have prematurely exited.
    ORA-39029: worker 1 with process name "DW01" prematurely terminated
    ORA-31671: Worker process DW01 had an unhandled exception.
    ORA-04030: out of process memory when trying to allocate 4108 bytes (PLS non-lib hp,pdzgM60_Make)
    ORA-06512: at "SYS.KUPC$QUEUE_INT", line 277
    ORA-06512: at "SYS.KUPW$WORKER", line 1366
    ORA-04030: out of process memory when trying to allocate 65036 bytes (callheap,KQL tmpbuf)
    ORA-06508: PL/SQL: could not find program unit being called: "SYS.KUPC$_WORKERERROR"
    ORA-06512: at "SYS.KUPW$WORKER", line 13360
    ORA-06512: at "SYS.KUPW$WORKER", line 15039
    ORA-06512: at "SYS.KUPW$WORKER", line 6372
    ORA-39125: Worker unexpected fatal error in KUPW$WORKER.DISPATCH_WORK_ITEMS while calling DBMS_METADATA.FETCH_XML_CLOB [PROCOBJ:"SALE"."SQLSCRIPT_2478179"]
    ORA-06512: at "SYS.KUPW$WORKER", line 7078
    ORA-04030: out of process memory when trying to allocate 4108 bytes (PLS non-lib hp,pdzgM60_Make)
    ORA-06500: PL/SQL: storage error
    ORA-04030: out of process memory when trying to allocate 16396 bytes (koh-kghu sessi,pmucpcon: tds)
    ORA-04030: out of process memory when trying to allocate 16396 bytes (koh-kghu sessi,pmucalm coll)
    Job "SYSTEM"."SYS_EXPORT_FULL_01" stopped due to fatal error at 14:41:36
    ORA-39014: One or more workers have prematurely exited.
    the trace file as
    *** 2009-03-03 14:20:41.500
    *** ACTION NAME:() 2009-03-03 14:20:41.328
    *** MODULE NAME:(oradim.exe) 2009-03-03 14:20:41.328
    *** SERVICE NAME:() 2009-03-03 14:20:41.328
    *** SESSION ID:(159.1) 2009-03-03 14:20:41.328
    Successfully allocated 7 recovery slaves
    Using 157 overflow buffers per recovery slave
    Thread 1 checkpoint: logseq 12911, block 2, scn 7355467494724
    cache-low rba: logseq 12911, block 251154
    on-disk rba: logseq 12912, block 221351, scn 7355467496281
    start recovery at logseq 12911, block 251154, scn 0
    ----- Redo read statistics for thread 1 -----
    Read rate (ASYNC): 185319Kb in 1.73s => 104.61 Mb/sec
    Total physical reads: 189333Kb
    Longest record: 5Kb, moves: 0/448987 (0%)
    Change moves: 1378/5737 (24%), moved: 0Mb
    Longest LWN: 1032Kb, moves: 45/269 (16%), moved: 41Mb
    Last redo scn: 0x06b0.9406fb58 (7355467496280)
    ----- Recovery Hash Table Statistics ---------
    Hash table buckets = 32768
    Longest hash chain = 3
    Average hash chain = 35384/25746 = 1.4
    Max compares per lookup = 3
    Avg compares per lookup = 847056/876618 = 1.0
    *** 2009-03-03 14:20:46.062
    KCRA: start recovery claims for 35384 data blocks
    *** 2009-03-03 14:21:02.171
    KCRA: blocks processed = 35384/35384, claimed = 35384, eliminated = 0
    *** 2009-03-03 14:21:02.531
    Recovery of Online Redo Log: Thread 1 Group 2 Seq 12911 Reading mem 0
    *** 2009-03-03 14:21:04.718
    Recovery of Online Redo Log: Thread 1 Group 1 Seq 12912 Reading mem 0
    *** 2009-03-03 14:21:16.296
    ----- Recovery Hash Table Statistics ---------
    Hash table buckets = 32768
    Longest hash chain = 3
    Average hash chain = 35384/25746 = 1.4
    Max compares per lookup = 3
    Avg compares per lookup = 849220/841000 = 1.0
    *** 2009-03-03 14:21:28.468
    tkcrrsarc: (WARN) Failed to find ARCH for message (message:0x1)
    tkcrrpa: (WARN) Failed initial attempt to send ARCH message (message:0x1)
    *** 2009-03-03 14:26:25.781
    kwqmnich: current time:: 14: 26: 25
    kwqmnich: instance no 0 check_only flag 1
    kwqmnich: initialized job cache structure
    ktsmgtur(): TUR was not tuned for 360 secs
    Windows Server 2003 Version V5.2 Service Pack 2
    CPU : 8 - type 586, 4 Physical Cores
    Process Affinity : 0x00000000
    Memory (Avail/Total): Ph:7447M/8185M, Ph+PgF:6833M/9984M, VA:385M/3071M
    Instance name: vmsdbsea
    Redo thread mounted by this instance: 0 <none>
    Oracle process number: 0
    Windows thread id: 2460, image: ORACLE.EXE (SHAD)
    Dynamic strand is set to TRUE
    Running with 2 shared and 18 private strand(s). Zero-copy redo is FALSE
    *** 2009-03-03 08:06:51.921
    *** ACTION NAME:() 2009-03-03 08:06:51.905
    *** MODULE NAME:(expdp.exe) 2009-03-03 08:06:51.905
    *** SERVICE NAME:(xxxxxxxxxx) 2009-03-03 08:06:51.905
    *** SESSION ID:(118.53238) 2009-03-03 08:06:51.905
    SHDW: Failure to establish initial communication with MCP
    SHDW: Deleting Data Pump job infrastructure
    is it a system memory issue for data pump? my exp works well
    How to fix this issue?
    JIM
    Edited by: user589812 on Mar 3, 2009 5:07 PM
    Edited by: user589812 on Mar 3, 2009 5:22 PM

  • HTTP error for content repository

    Dear gurus,
    we defined a content repository to store images (Employee photos) in our HR instance (ECC 6). we set customizing for Sap Archive Link and "document type" (HRICOLFOTO). We followed suggestions of this link: [http://www.sd-solutions.com/documents/SDS_Employee_Photos_v4.7.html|http://www.sd-solutions.com/documents/SDS_Employee_Photos_v4.7.html].  When we try to store an image (JPG file) using OAAD transaction code we get "HTTP error: 500 Internal Server Error". Again using CSADMIN transaction code to test HTTP server assigned to content repository we get the same message. Work process trace file is attached below. Thanks for your help.
    W Tue Jan 20 09:01:06 2009
    W      *** ERROR => Failed to create new session, rc: 0x1 [itspxx.cpp   713]
    W    *** ERROR => itsp_OpenSession failed rc = 1, send icf error page [itsplxx.c    839]
    M    ***LOG W03=>  [itsplxx.c    840]
    W    *** ERROR => ipl_OpenSession returns 1(ITSPE_FAILURE) [itsplxx.c    842]
    W    *** ERROR => Raise Last error:[13 from: itspagat.cpp:820] [itsplxx.c    1180]
    W    *** ERROR => RaiseError(sapdext) ITS_P:13 [itspagat.cpp 820]
    W        *** ERROR => plugin: Unknown user agent type, not supported 'SAP Web Application Server (1.0;640)' [itspagat.cpp 819]
    W        *** ERROR => plugin: Browser verification failed rc: 1 [itspagat.cpp 750]
    W      *** ERROR => plugin: ItspAgat_InitContext failed, rc = 1 [itspxkrn.cpp 174]
    W
    W Tue Jan 20 09:01:21 2009
    W      *** ERROR => Failed to create new session, rc: 0x1 [itspxx.cpp   713]
    W    *** ERROR => itsp_OpenSession failed rc = 1, send icf error page [itsplxx.c    839]
    M    ***LOG W03=>  [itsplxx.c    840]
    W    *** ERROR => ipl_OpenSession returns 1(ITSPE_FAILURE) [itsplxx.c    842]
    W    *** ERROR => Raise Last error:[13 from: itspagat.cpp:820] [itsplxx.c    1180]
    W    *** ERROR => RaiseError(sapdext) ITS_P:13 [itspagat.cpp 820]
    W        *** ERROR => plugin: Unknown user agent type, not supported 'SAP Web Application Server (1.0;640)' [itspagat.cpp 819]
    W        *** ERROR => plugin: Browser verification failed rc: 1 [itspagat.cpp 750]
    W      *** ERROR => plugin: ItspAgat_InitContext failed, rc = 1 [itspxkrn.cpp 174]
    W      *** ERROR => Failed to create new session, rc: 0x1 [itspxx.cpp   713]
    W    *** ERROR => itsp_OpenSession failed rc = 1, send icf error page [itsplxx.c    839]
    M    ***LOG W03=>  [itsplxx.c    840]
    W    *** ERROR => ipl_OpenSession returns 1(ITSPE_FAILURE) [itsplxx.c    842]
    W    *** ERROR => Raise Last error:[13 from: itspagat.cpp:820] [itsplxx.c    1180]
    W    *** ERROR => RaiseError(sapdext) ITS_P:13 [itspagat.cpp 820]
    W        *** ERROR => plugin: Unknown user agent type, not supported 'SAP Web Application Server (1.0;640)' [itspagat.cpp 819]
    W        *** ERROR => plugin: Browser verification failed rc: 1 [itspagat.cpp 750]
    W      *** ERROR => plugin: ItspAgat_InitContext failed, rc = 1 [itspxkrn.cpp 174]
    W      *** ERROR => Failed to create new session, rc: 0x1 [itspxx.cpp   713]
    W    *** ERROR => itsp_OpenSession failed rc = 1, send icf error page [itsplxx.c    839]
    M    ***LOG W03=>  [itsplxx.c    840]
    W    *** ERROR => ipl_OpenSession returns 1(ITSPE_FAILURE) [itsplxx.c    842]
    W    *** ERROR => Raise Last error:[13 from: itspagat.cpp:820] [itsplxx.c    1180]
    W    *** ERROR => RaiseError(sapdext) ITS_P:13 [itspagat.cpp 820]
    Regards.
    :: Vittorio

    Theres a button beside CSADMIN that looks like a balance. You can use that to check... but as it is a R/3 Database repository it might not be there.
    Now, you said
    When we try to store an image (JPG file) using OAAD transaction code we get "HTTP error: 500 Internal Server Error". Again using CSADMIN transaction code to test HTTP server assigned to content repository
    How can you be calling a HTTP repository when you are actually storing the data in the R/3 Database? That doesn't make sense to me.
    Can you explain your full landscape?
    regards
    Juan

  • URGENT: WS data control - Issue in Application server 10.1.3.3

    Hi All,
    I created a ADF web service data control and used that data control in an ADF JSPX page. When I tested the page in JDeveloper 10.1.3.3 (Embedded OC4J) it worked fine. But when I deployed the same in Application Server 10.1.3.3. it shows the following exception:
    javax.faces.el.EvaluationException: oracle.jbo.JboException: JBO-29000: DCA-40012: Failed to create a connection to the Web Service
    Similar issue is already posted in the following threads:
    Re: Web sevice data control deploy error.
    http://kr.forums.oracle.com/forums/thread.jspa?threadID=452703&start=15&tstart=240
    There is bug (ID: 5878326 ) raised in Metalink for this. I applied the patch 5878326 as mentioned in the Metalink. But after applying the patch also, the same exception occurs. I deleted connections.xml and then recreated, but no success.
    I also tried to create a new web service data control and used it in a new ADF JSPX page, again it shows the same exception in App Server 10.1.3.3.
    But the bug in Metalink is closed. Please let me if anyone is facing the same issue and the solution for this.

    Please post ADF related issues to the JDeveloper forum -- ADF is a runtime that gets installed on the app server, so the ADF folks are the most likely of all to be able to be of help.
    -steve-

  • How to get SAP to use SSL for Content repository?

    I have defined a content repository in OAC0.  I would like SAP and the end user to use SSL when talking to the repository.  I have obtained a certificate for the repository, so that I can manually trference the repository via https... but in OAC0 when I press the Test Connection button I get "Connection Error:No SSLsupport available".  Do I have to import the content repository certificate into STRUST or something?

    Hi Ken,
    please have a look at the SAP note [712330|https://service.sap.com/sap/support/notes/712330].
    Best regards,
    Klaus

  • Date difference issue for Purchase order in R/3 and APO

    Hi,
       I am sending the purchase order from APO to R/3. When I transfer the data through CIF and see the curresponding entries in stock requirement list in R/3, purchase order is 1 day earlier than in SCM.
    However, when this purchase order is CIFed back to SCM, date appears correct in SCM ( as what it was before). Is this something because of timezone that difference in date appears in SCM and R/3.
    Can someone who came across date issues for transaction data transfer between SCM and R/3 elaborate in more detail please.
    Thanks,
    Sanjay

    Hello Somnath ,
    I am also facing the same issue which sanju was facing earlier in PRs .
    In APO I am not able to understand how system calculates the opening , start and end date .In my case the transportation time is 48 hrs , planned delivery time is 1 day and all calenders are 5*24 , GR proceeeing time .01 day . When I am creating PR at destination location on 06/06/2008 , 24:00:00 Hrs . System calculates the dates as follows :-
    Start date -06/05/2008 , 00:45:00 , end date -06/06/2008, 24:00:00 , opening date -05/20/2008 ,23:25:00 Hrs  . I tried to understand the formula given by you in your reply as Opening Date = Requirement Due Date - GR Time - Planned Delivery Time
    Start Date = Requirement Due Date - GR time - Transportation Duration
    End date = Requirement Date.
    But I am not getting the desired results.
    Could you let me know why the system is behaving in such way.I also want to know does system can create orders in such a way the opening date lies in past. If yes then can we restrict that ?
    Regards ,
    Mukesh
    Edited by: Mukesh  Kumar on Mar 9, 2008 1:59 PM

  • Smart forms print control pop box (no required) when run report

    Dear All Expert Guru,
             how to control printing pop box when execute transaction code ,Report are make in smart form format
             because while run our report then come printing pop box  select out put device the will come report
                                             . but our user required no should be come printing pop box they are required when run report direct come report
       Pls help me any one.
    Thanks & Regars.
    Sudhir Srivsatava

    Hi,
       Pass the parameter no_dialog = 'X' while calling the smartform.
    data: wa_ctrlop type ssfctrlop.
       wa_ctrlop-no_dialog = 'X'.
    CALL FUNCTION fm_name
      EXPORTING
    *   ARCHIVE_INDEX              = ARCHIVE_INDEX
    *   ARCHIVE_INDEX_TAB          = ARCHIVE_INDEX_TAB
    *   ARCHIVE_PARAMETERS         = ARCHIVE_PARAMETERS
        CONTROL_PARAMETERS         =  wa_ctrlop
    *   MAIL_APPL_OBJ              = MAIL_APPL_OBJ
    *   MAIL_RECIPIENT             = MAIL_RECIPIENT
    *   MAIL_SENDER                = MAIL_SENDER
    *    OUTPUT_OPTIONS             = OUTPUT_OPTIONS
    *    USER_SETTINGS              = 'X'
    * IMPORTING
    *   DOCUMENT_OUTPUT_INFO       = DOCUMENT_OUTPUT_INFO
    *   JOB_OUTPUT_INFO            = JOB_OUTPUT_INFO
    *   JOB_OUTPUT_OPTIONS         = JOB_OUTPUT_OPTIONS
    EXCEPTIONS
       FORMATTING_ERROR           = 1
       INTERNAL_ERROR             = 2
       SEND_ERROR                 = 3
       USER_CANCELED              = 4
       OTHERS                     = 5
    Regards,
    Srini.

Maybe you are looking for

  • Photo will not orient correctly

    From time to time, PSE6 refuses to orient a photo so it prints correctly. For example, yesterday I selected five photos to print as 4" x 6" JPGs. For the sake of discussion, let's say all five photos were oriented horizontally (landscape). I set my H

  • Missing lens profiles in LR 5

    When I try to use Lens Correction in LR 5 I get a restricted number of profiles, none of which match my standard Nikon 28-300mm zoom. However when I open the images in Camera Raw I have automatic access to this profile. I also have access to a custom

  • Splash Screen & Logo & Keys Configuration

    Hi, Os: Windows 7 64bit. Oracle Fusion Middle ware 11g. I am tring to custom splash screen and logo . So i try to change the formsweb.cfg parameter (Logo & SplashScren) and i put the path of the images in forms_path and i am tring to configure my app

  • Printing not straight

    When I start to print the paper turns a little and the printing isn't straight. Sometimes the left upper corner of the paper is crumpled too. I did an on-line chat with HP and all the person said was to use HP paper and let them know if that didn't w

  • Photoshop Elements Organizer 11 - Drag and Drop to Marked Faces

    Hello, I have recently upgraded from PSE 10 to 11.  In 10 I used to drag People tags onto autodetected faces which would server to add the tag as well label the mark of the  face (2 birds with one stone).  In 11 when I attempt to drag and drop a Peop