Auto Commit in Oracle Document Capture

Hi,
        I have recently installed and configured Oracle Document Capture 10g as a part of IPM installation. I have configured ODC to Scan, Index and commit to UCM 11g system. Scanning and indexing are going fine without and problem. However, I could not make the commit automatic. Please help me configure an auto-commit, so that I don't have to go to ODC every time and do a manual commit. Or is it possible to auto-commit at all ?
Thank you
Rama

In this case I think the problem is somewhere else. Normally, an indexed batch is committed immediately when you you confirm the message at the end of the last page. For that you don't even need the Commit server configured. Commit server with Indexing is used mainly in use cases, when you want to schedule committing (e.g. to a certain time). I guess the Commit Server is not activated, because the batch is not fully processed. AFAIK, recently released 11g is much better option for small batches.
I'd recommend you to try the Commit Server together with the Import/Recognition Server, which can be fully automated. Maybe this will enable you to understand what the problem with Indexing could be.

Similar Messages

  • Scanning and indexing option not appear in Oracle Document capture

    Hi
    I installed Oracle document capture 10.1.3.5.1.
    when i opened this document capture scanning and indexing option are not presented.
    i am using windows 64 bit operating system.
    please find screenshot for the same
    [http://oraclebpm.com/webcenter/scanning_indexing.png]

    Thank you Ryan for your reply. The problem was resolved.
    First I downloaded document capture s/w from oracle.com site,I am not getting the option when I download s/w from this site.
    Later i downloaded it from https://edelivery.oracle.com/ site. Now I am getting the options now.
    -vishnu

  • Oracle Document Capture - Uninstall completly

    How can i uninstall Oracle Document Capture completly?
    If i use the "unistall" from setup, if keeps registry keys and files.
    Even if i delete them document capture keeps somewhere settings like the database connection.
    How can i remove Document Capture completly?

    Document capture keeps files in the hidden directories: C:\ProgramData\Document Capture\ and C:\Users\<user>\Oracle\Document Capture\.
    Just delete them.
    Regards,
    Boris

  • Error while using Oracle Document Capture

    Whenever I scan pictures from the local disk, an error -
    Error 4515, The file is not a valid image comes
    If anybody knows the solution to remove this error, please let me know
    thanks
    Sumit

    Hi Sumit,
    Try reinstalling the documents capturing module with no spaces for the installation path. This should solve the problem

  • Oracle document capture + distributed capture - problem with authentication

    Hi,
    I've installed odc on a win 2008 r2 std system. The host is in AD domain. Database Oracle ver 11.2.0.1.0 has been installed locally on the same host as odc and then oddc on the AD account ODC_ADMIN. I've initialized database and in user panel of odc i have one user - ODC_ADMIN (displayed as \\DOMAIN\ODC_ADMIN). When I want to add new user which could get access to odc app I can't see the domain name in the add user window. I can add a user or group but it is then added like \\\TEST or so with 3 backslashes and of cource didnt let to authenticate in odc or other components.
    Anyone know what can cause this issue?

    I can't recall offhand, but I do know there are a number of support notes available that deal with 'missing' domain values in the ODC groups and user list when using AD.
    have you hit the support site?
    -ryan

  • Oracle Document Capture Indexing  Macro

    Hi,
    Hi,
    Im trying to populate my Feild Name workflow based on the Type Field and subtype Field that is selected by an end user.
    I've coded this in an ODC macro but it look like ODC the code is only validating the line of if statement and populating that value.
    I looking for the direction i should take to make odc validate each statement and if the crieteria is met then it should populate that value. i've attached a sample of the code.
    You help is greatly appreciated.
    Below is a sample of the Code
    Option Explicit
    ' * Sample Index macro that will allow for Index user to change the patch code on an image within a batch by using a
    ' * hot key.  The user can hit the F10 key to change an image's Patch Code attribute from no patch code to Patch
    ' * type II for example, then change it back to no patch code by marking the same keystroke.  The macro can be
    ' * modified to use different patch codes by changing the PATCH_VALUE constant to one of the patch code constants
    ' * listed (e.g. PATCH_I, PATCH_II, PATCH_III, PATCH_IV, PATCH_VI, PATCH_T).  The string displayed underneath
    ' * the thumbnail image can be modified by changing the value for the constant PATCH_STRING.  The hotkey (F10 by
    ' * default can be changed to another key by changing the HOT_KEY_VALUE constant.
    ' * Modified by VICOOK - 1/21/2011
    ' * Modified by PHAN - 1/31/2011 - Added the Increment by Separator Sheet Macro
    ' Patch code constants.
    Private Const PATCH_I      As Integer = 8 ' "Patch Code I value"
    Private Const PATCH_II      As Integer = 2 ' "Patch Code II value"
    Private Const PATCH_III As Integer = 1 ' "Patch Code III value"
    Private Const PATCH_IV As Integer = 16 ' "Patch Code IV value"
    Private Const PATCH_VI      As Integer = 32 ' "Patch Code VI value"
    Private Const PATCH_T      As Integer = 4 ' "Patch Code T value"
    ' These are the references that can be modified to allow for different patch code values and hotkey
    Private Const PATCH_VALUE As Integer = PATCH_II              ' This is where you tell the macro which patch code to use for separators
    Private Const PATCH_STRING As String = "II"                        ' This constant is the text displayed below the thumbnail when the patch code value has been set
    Private Const HOT_KEY_VALUE     As Integer = 121 ' F10 key.   ' This constant is the numeric representation for the key on the keyboard that will allow for setting the patch code
    ' Global Object references
    Private moBatch     As Object
    Private moctlIndexing As Object
    ' Increment by Separator Sheet Merge
    Private mlDocID As Long
    ' Global Variables
    Private mnCurrentPage     As Integer
    Private Sub SetPatchCodePage(ByVal nPage As Integer)
        Dim oBatchPages     As Object
        Dim oBatchPage     As Object
        Dim bCleared     As Boolean
        Dim bSet          As Boolean
        ' Init the set / cleared vars to false
        bSet = False
        bCleared = False
        ' Grab a reference to the batch pages.
        Set oBatchPages = moBatch.BatchPages
        ' Grab the page.
        Set oBatchPage = oBatchPages(nPage)
        ' Check to see if there is already a matching Patch Code value.
        If oBatchPage.PatchCode = PATCH_VALUE Then
            ' Clear the matching Patch Code value.
            oBatchPage.PatchCode = 0
            bCleared = True
        Else
            ' Apply the patch code value to this page.
            oBatchPage.PatchCode = PATCH_VALUE
            bSet = True
        End If
        ' Persist this page.
        oBatchPage.Persist
        ' If we get this far, inform the user about whether the patch code was applied or cleared.
        If bSet Then
            moctlIndexing.UpdateThumbnailCaptionSuffix(oBatchPage, True, PATCH_STRING)
            MsgBox "Patch Code [" & PATCH_STRING & "] has been applied to page " & CStr(mnCurrentPage) & ".", vbOkOnly + vbInformation, "Patch Code Applied"
        ElseIf bCleared Then
            moctlIndexing.UpdateThumbnailCaptionSuffix(oBatchPage, True, "")
            MsgBox "Patch Code [" & PATCH_STRING & "] has been removed from page " & CStr(mnCurrentPage) & ".", vbOkOnly + vbInformation, "Patch Code Applied"
        End If
        ' Destroy the object references.
        Set oBatchPage = Nothing
        Set oBatchPages = Nothing
    End Sub
    Public Sub ecIndex_BatchClose()
        ' Destroy the reference to the batch object
        Set moBatch = Nothing
        ' Destroy the refereince to the ctlIndexing object
        Set moctlIndexing = Nothing
    End Sub
    Public Sub ecIndex_BatchOpen(Batch As Object, IndexingUI As Object, ctlIndexing As Object)
        ' Store a reference to the Batch object.
        Set moBatch = Batch
        ' Store a reference to the ctlIndexing object
        Set moctlIndexing = ctlIndexing
    End Sub
    Public Sub ecIndex_FieldKeyDown(KeyCode As Integer, Shift As Integer)
        Dim lErrNum          As Long
        Dim sErrDesc     As String
        ' Check to see if the hotkey has been pressed.
        If KeyCode = HOT_KEY_VALUE Then
            On Error Resume Next
            ' Set the Patch Code value on the currently displayed page.
            SetPatchCodePage mnCurrentPage
            If Err.Number Then
                lErrNum = Err.Number
                sErrDesc = Err.Description
                MsgBox "An error was encountered while attempting to apply Patch Code to page " & CStr(mnCurrentPage) & "." & vbCrLf & CStr(lErrNum) & ": " & sErrDesc, vbOkOnly + vbExclamation, "Patch Code Error"
                Err.Clear
            End If
        End If
    End Sub
    Public Sub ecIndex_PageDisplay(PageNumber As Integer)
        ' Keep track of the currently displayed page during Review.
        mnCurrentPage = PageNumber
    End Sub
    Public Sub ecIndex_BatchPrecommit(Cancel As Boolean)
    Dim oPage As Object
    Dim oIndex As Object
    ' Init the DocID value
    mlDocID = 1
    ' Loop through the batch pages
    For Each oPage In moBatch.BatchPages
    If oPage.PatchCode > 0 Then
    mlDocID = mlDocID + 1
    End If
    ' Assign the numeric DocID value to the "DocumentID" field
    oPage.BatchPageIndexes("DocumentID").Value = CStr(mlDocID)
    If oPage.BatchPageIndexes("Type").Value = "HR - Benefits" Then
    oPage.BatchPageIndexes("Workflow").Value = "Trans-Benefits"
    End If
    If oPage.BatchPageIndexes("Type").Value = "HR - Employment" Then
    oPage.BatchPageIndexes("Workflow").Value = "Trans-Employment"
    End If
    If oPage.BatchPageIndexes("Type").Value = "Finance - A/P" And oPage.BatchPageIndexes("SubType").Value = "Vendor Maintenance" Then
    oPage.BatchPageIndexes("Workflow").Value = "Trans-AP-VendorMaintenance"
    End If
    If oPage.BatchPageIndexes("Type").Value = "Finance - A/P" And oPage.BatchPageIndexes("SubType").Value = "Payment Processing" Then
    oPage.BatchPageIndexes("Workflow").Value = "Trans-AP-PaymentProcessing"
    End If
    If oPage.BatchPageIndexes("Type").Value = "Finance - A/P" And oPage.BatchPageIndexes("SubType").Value = "A/P Correspondence" Then
    oPage.BatchPageIndexes("Workflow").Value = "Trans-AP-CorrespondenceReqMgmt"
    End If
    If oPage.BatchPageIndexes("Type").Value = "Finance - A/P" And oPage.BatchPageIndexes("SubType").Value = "T&E Vouchers" Then
    oPage.BatchPageIndexes("Workflow").Value = "Trans-TE-Vouchers"
    End If
    If oPage.BatchPageIndexes("Type").Value = "Finance - Accounting" And oPage.BatchPageIndexes("SubType").Value = "Accounting Master Data" Then
    oPage.BatchPageIndexes("Workflow").Value = "Trans-GAFA-AcctgMasterData"
    End If
    If oPage.BatchPageIndexes("Type").Value = "Finance - Accounting" And oPage.BatchPageIndexes("SubType").Value = "Accounting-Payroll Transaction" Then
    oPage.BatchPageIndexes("Workflow").Value = "Trans-Acctg-Payroll"
    End If
    If oPage.BatchPageIndexes("Type").Value = "Finance - Accounting" And oPage.BatchPageIndexes("SubType").Value = "Acctg Correspondance" Then
    oPage.BatchPageIndexes("Workflow").Value = "Trans-GAFA-AcctgMasterData"
    End If
    If oPage.BatchPageIndexes("Type").Value = "HR - HRIS" Then
    oPage.BatchPageIndexes("Workflow").Value = "Trans-HRIS"
    End If
    If oPage.BatchPageIndexes("Type").Value = "HR - Training" Then
    oPage.BatchPageIndexes("Workflow").Value = "Trans-Training"
    End If
    If oPage.BatchPageIndexes("Type").Value = "HRIS - Benefits" Then
    oPage.BatchPageIndexes("Workflow").Value = "Trans-Benefits"
    End If
    If oPage.BatchPageIndexes("Type").Value = "Payroll - HRIS" Then
    oPage.BatchPageIndexes("Workflow").Value = "Trans-Payroll-HRIS"
    End If
    If oPage.BatchPageIndexes("Type").Value = "Payroll - Pay Data Maintenance" Then
    oPage.BatchPageIndexes("Workflow").Value = "Trans-Payroll-PayDataMaint"
    End If
    If oPage.BatchPageIndexes("Type").Value = "Payroll - Pay Data Maintenance - Mandatory Deductions" Then
    oPage.BatchPageIndexes("Workflow").Value = "Trans-Payroll-PDM-MandatoryDed"
    End If
    If oPage.BatchPageIndexes("Type").Value = "Payroll - Pay Processing" Then
    oPage.BatchPageIndexes("Workflow").Value = "Trans-Payroll-PayProcessing"
    End If
    If oPage.BatchPageIndexes("Type").Value = "Finance - Accounting" And oPage.BatchPageIndexes("SubType").Value <> "Accounting Master Data" Or oPage.BatchPageIndexes("SubType").Value <> "Accounting-Payroll Transaction" Or oPage.BatchPageIndexes("SubType").Value <> "Acctg Correspondance" Then
    oPage.BatchPageIndexes("Workflow").Value = "Trans-Acctg-Payroll"
    End If
    If oPage.BatchPageIndexes("Type").Value = "Finance - A/P" And oPage.BatchPageIndexes("SubType").Value <> "Vendor Maintenance" Or oPage.BatchPageIndexes("SubType").Value <> "Payment Processing" Or oPage.BatchPageIndexes("SubType").Value <> "A/P Correspondence" Or oPage.BatchPageIndexes("SubType").Value <> "T&E Vouchers" Then
    oPage.BatchPageIndexes("Workflow").Value = "Trans-AP-PaymentProcessing"
    End If
    ' Persist the values to the page
    oPage.Persist
    Next
    End SubThank you
    CJ

    i've attached a sample of the code.As this is neither SQL nor PLSQL, I'm inclined to say that you're in the wrong forum.

  • Problem with document capture and UCM

    Sorry, this is my first post in here and i don't know if this is the right place for that.
    i'm trying to configure the commit driver in Oracle Document Capture but when i push the button i get this msg. "error creating the Capture-UCM Implementation Object"...
    i don't understand why this is happening, helllppppp...
    pd: Sorry 4 my english i'm from venezuela
    Disculpen, es mi primera vez escribiendo en este foro y con lo grande que es no estoy seguro si pertenece a esta sección del mismo. Estoy teniendo problemas al tratar de configurar el Driver de Commit en Oracle Document Capture, al momento de pisar el boton de configurar obtengo el siguiente mensaje: "error creating the Capture-UCM Implementation Object"... si alguien sabe porque es este inconveniente cualquier ayuda me seria de mucha utilidad... Gracias de antemano

    Hi,
    Yeah UCM is up and running in the server,
    here u have a screenshot
    http://img580.imageshack.us/img580/5640/errort.jpg
    i can't even configure the setting's driver, in fact this error appears trying to do it..
    thanks.....
    PD: here a screenshot from UCM running on server
    http://img576.imageshack.us/img576/6042/ucmw.jpg
    Edited by: user13071401 on 28-jun-2010 6:47

  • Oracle distrebuted document capture commit problem

    hi,i am working with ODDC v10.1.3.5 using (UCM 11g commit driver) and every thing is going well except one problem that is when i commit to ucm there is a field called(subject) is not commited to UCM even it is maped through the commit driver .
    at the document title field(at Commit Driver Configurations) ,i use it as a compination of multible fields (Name-Subject-Date) ,UCM can see the value of (Subject) Field at this position but at the (subject) field (on UCM) it is empty .
    i dont know what is the reason for this issue ,is it a problem whith the commit driver ?
    any help will be appreciated .
    Regards
    H.Sweiss

    Thanks Jiri,
    I have started with the mandatory metadata fields only. I have resolved the previous problem.
    It was because Client Access folder was not properly set.So the .pak files was still residing in the client access folder.
    But now all batches are present in the Batches folder and the logs says
    eg: 07/13/10 04:48:10 PM 19360358_19360532 extracted into C:\Program Files\Oracle\Document Capture\WebPages\ClientAccess\19360358_19360532.
    07/13/10 04:48:10 PM Start processing DS19360358. File Cabinet: captureDocuments; Create User: TEST; Modify User: TEST; Computer Name: MUKESHLT1\MUKESHLT1; Create Date: 7/13/2010 4:45:57 PM; Modify Date: 7/13/2010 4:48:52 PM.
    07/13/10 04:48:10 PM Client Version Number: 10.1350.26.
    07/13/10 04:48:11 PM DS00000000000023 (ID: 24) created in captureDocuments with 1 pages from DS19360358.
    07/13/10 04:48:11 PM DS00000000000023 (ID: 24) is committed, number of documents: 1, total page(s) committed 1.
    07/13/10 04:48:11 PM Post processing batch DS19360358. File Cabinet: captureDocuments; Batch ID: 24; Create User: TEST; Modify User: TEST; Computer Name: MUKESHLT1\MUKESHLT1; Create Date: 7/13/2010 4:45:57 PM; Modify Date: 7/13/2010 4:48:52 PM.
    07/13/10 04:48:11 PM 19360358_19360532 deleted.
    07/13/10 04:48:11 PM
    But it is still not sending to UCM.
    Is there any setup to commit these batches?

  • Distributed Document Capture and UCM commit issue: 302 Moved Temporarily

    I am installing and configuring Oracle Document Capture and Oracle Distributed Document Capture to commit documents to Oracle UCM.
    I am unable to commit documents to UCM because of the following error: "302 Moved Temporarily". What can be wrong with my configuration?
    Error log from the ODDC:
    Wed Dec 15 10:20:14 CET 2010 INFO Document file name is D:\oracle\Document Capture\Batches\001\00000001\00000001_1.
    Wed Dec 15 10:20:14 CET 2010 INFO Begin Check In Process.
    Wed Dec 15 10:20:14 CET 2010 INFO Idc service = CHECKIN_UNIVERSAL.
    Wed Dec 15 10:20:14 CET 2010 INFO Parsing xml to obtain fields data.
    Wed Dec 15 10:20:14 CET 2010 INFO dDocTitle: oddc.
    Wed Dec 15 10:20:14 CET 2010 INFO dDocType: Application.
    Wed Dec 15 10:20:14 CET 2010 INFO Field DocAuthor: weblogic.
    Wed Dec 15 10:20:14 CET 2010 INFO dSecurityGroup: Public.
    Wed Dec 15 10:20:14 CET 2010 INFO dDocAuthor: weblogic.
    Wed Dec 15 10:20:14 CET 2010 INFO dDocAccount: .
    Wed Dec 15 10:20:14 CET 2010 INFO primaryFile: D:\oracle\Document Capture\Batches\001\00000001\00000001.1.
    Wed Dec 15 10:20:15 CET 2010 SEVERE Failed to check in document. Exception: {0}. Error is: oracle.stellent.ridc.protocol.http.HttpProtocolException: HTTP/1.1 302 Moved Temporarily
         at oracle.stellent.ridc.protocol.http.IdcHttpProtocol.writeRequest(IdcHttpProtocol.java:171)
         at oracle.stellent.ridc.IdcClient.sendRequest(IdcClient.java:140)
         at com.oracle.capture.UCM11g.Driver.checkIn(Driver.java:192)
         at com.oracle.capture.UCM11g.ComDriver.checkIn(ComDriver.java:42)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at com.jniwrapper.win32.com.server.IDispatchServer.invoke(SourceFile:209)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at com.jniwrapper.win32.com.server.CoInterfaceVTBL$VirtualMethodCallback.b(SourceFile:232)
         at com.jniwrapper.win32.com.server.CoInterfaceVTBL$VirtualMethodCallback.callback(SourceFile:135)
         at com.jniwrapper.Callback.enterPoint(SourceFile:222)
         at com.jniwrapper.Function.invokeCFunc(Native Method)
         at com.jniwrapper.FunctionCall.a(SourceFile:126)
         at com.jniwrapper.FunctionCall.call(SourceFile:34)
         at com.jniwrapper.Function.invoke(SourceFile:188)
         at com.jniwrapper.Function.invoke(SourceFile:212)
         at com.jniwrapper.win32.MessageLoopThread$LoopThread.run(MessageLoopThread.java:489)
    Error log from the WLS - UCM_server1:
    ####<2010-12-15 10:23:52 CET> <Info> <ServletContext-> <???> <UCM_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <8857620d73b0a621:-7e6d4fca:12ce951b643:-7ffd-0000000000000045> <1292405032703> <BEA-000000> <Failed access to redirected secure URL>
    I am using Oracle Distributed Document Capture Release 10gR3 and Content Server 11g Release 1.
    I configured the Oracle UCM 11g Commit Driver:
    user: my_user, password: my_password, Server URL: http://localhost:16200/cs
    When I am trying to commit a batch I am getting the following response:
    HTTP/1.1 200 OK
    Cache-Control: no-cache
    Date: Wed, 15 Dec 2010 09:33:06 GMT
    Content-Length: 664
    Content-Type: text/plain; charset=utf-8
    Set-Cookie: IDCCS_SESSIONID=yycVNLLSL1hJ3P2mQkQrjss7XLZY23r8vFbt2n4wTj7VJ2c9xQ01!-1355344816; path=/; HttpOnly
    X-ORACLE-DMS-ECID: 0000IndO3b39_aW5Pzw0yd1D28UE00000t
    X-Powered-By: Servlet/2.5 JSP/2.1
    <?hda version="11gR1-11.1.1.3.0-idcprod1-100505T121221" jcharset=UTF8 encoding=utf-8?>
    @Properties LocalData
    IdcService=PING_SERVER
    ClientEncoding=UTF8
    UserTimeZone=UTC
    UserDateFormat=iso8601
    addAlert=1
    ActAsAnonymous=1
    dUser=anonymous
    blDateFormat=yyyy-MM-dd HH:mm:ssZ!tUTC!mAM,PM
    refreshSubjects=
    refreshMonikers=
    changedSubjects=
    refreshSubMonikers=
    blFieldTypes=StatusMessage message
    RedirectUrl=/cs/
    changedMonikers=
    idcToken=
    IsJava=1
    @end
    @ResultSet USER_ALERTS
    3
    alertId
    alertMsg
    alertUrl
    csWeblayout8dot3Error
    <$lcMessage('!csWeblayout8dot3Error')$>
    @end
    @ResultSet UserAttribInfo
    2
    dUserName
    AttributeInfo
    anonymous
    account,#none,15,role,guest,15
    @end
    HTTP/1.1 302 Moved Temporarily
    Date: Wed, 15 Dec 2010 09:33:06 GMT
    Transfer-Encoding: chunked
    Location: http://localhost:16200/cs/login/login.htm
    X-ORACLE-DMS-ECID: 0000IndO3c19_aW5Pzw0yd1D28UE00000u
    X-Powered-By: Servlet/2.5 JSP/2.1
    0113
    <html><head><title>302 Moved Temporarily</title></head>
    <body bgcolor="#FFFFFF">
    <p>This document you requested has moved temporarily.</p>
    <p>It's now at http://localhost:16200/cs/login/login.htm.</p>
    </body></html>
    0000
    The Request:
    POST /cs HTTP/1.1
    User-Agent: Java; Stellent CIS 11g
    IdcVersion: 11.1.1
    Host: 127.0.0.1:16200
    Content-Length: 124
    Content-Type: text/hda; charset=UTF-8
    IsJava=1
    <?hda jcharset=UTF-8?>
    @Properties LocalData
    IdcService=PING_SERVER
    UserTimeZone=UTC
    UserDateFormat=iso8601
    @end
    POST /cs HTTP/1.1
    User-Agent: Java; Stellent CIS 11g
    IdcVersion: 11.1.1
    Authorization: Basic d2VibG9naWM6d2VibG9naWMx
    Host: localhost:16200
    Cookie: $Version=0; IDCCS_SESSIONID=Z2ZpNLQbKchmg2tVB5fpQLL2pPphT4BFX18GJPbkqkxMxLVMhbLZ!-1355344816; $Path=/
    Content-Length: 28963
    Content-Type: multipart/form-data; boundary=67xMPN-krvICaGSzKNTkd02u8MLyarA
    --67xMPN-krvICaGSzKNTkd02u8MLyarA
    Content-Disposition: form-data; name="IsJava"
    Content-Type: text/plain; charset=US-ASCII
    1
    --67xMPN-krvICaGSzKNTkd02u8MLyarA
    Content-Disposition: form-data; name="ClientEncoding"
    Content-Type: text/plain; charset=US-ASCII
    UTF-8
    --67xMPN-krvICaGSzKNTkd02u8MLyarA
    Content-Disposition: form-data; name="IdcService"
    Content-Type: text/plain; charset=UTF-8
    CHECKIN_UNIVERSAL
    --67xMPN-krvICaGSzKNTkd02u8MLyarA
    Content-Disposition: form-data; name="UserTimeZone"
    Content-Type: text/plain; charset=UTF-8
    UTC
    --67xMPN-krvICaGSzKNTkd02u8MLyarA
    Content-Disposition: form-data; name="UserDateFormat"
    Content-Type: text/plain; charset=UTF-8
    iso8601
    --67xMPN-krvICaGSzKNTkd02u8MLyarA
    Content-Disposition: form-data; name="dSecurityGroup"
    Content-Type: text/plain; charset=UTF-8
    Public
    --67xMPN-krvICaGSzKNTkd02u8MLyarA
    Content-Disposition: form-data; name="dDocAccount"
    Content-Type: text/plain; charset=UTF-8
    --67xMPN-krvICaGSzKNTkd02u8MLyarA
    Content-Disposition: form-data; name="dDocAuthor"
    Content-Type: text/plain; charset=UTF-8
    weblogic
    --67xMPN-krvICaGSzKNTkd02u8MLyarA
    Content-Disposition: form-data; name="dDocType"
    Content-Type: text/plain; charset=UTF-8
    Application
    --67xMPN-krvICaGSzKNTkd02u8MLyarA
    Content-Disposition: form-data; name="dDocTitle"
    Content-Type: text/plain; charset=UTF-8
    oddc
    --67xMPN-krvICaGSzKNTkd02u8MLyarA
    Content-Disposition: form-data; name="DocAuthor"
    Content-Type: text/plain; charset=UTF-8
    weblogic
    --67xMPN-krvICaGSzKNTkd02u8MLyarA
    Content-Disposition: form-data; name="primaryFile"; filename="00000002.1"
    Content-Type: application/octet-stream; charset=ISO-8859-1
    ˙Ř˙ŕ<file content....>

    "302 Moved Temporarily" is a web server error (I googled it - see e.g. http://www.checkupdown.com/status/E302.html)
    Two recommendations that you can try:
    - do not use 'localhost' - use computer assigned name, or at worst IP address
    - in my system, Server URL is set to http://ecm-base:16200/cs/idcplg (from ODC). Try to modify yours accordingly.

  • Distributed Document Capture Commit problem

    hi i'm working with Distributed document capture and I have a problem that is driving me crazy :
    I have an installation of Distributed document capture on a SQL server 2005 database, and I use web client for scanning.
    In DDC admin I have created a File cabinet with a 'Commit to text file' commit profile. Also I have a Scanning profile with comit option set to 'Commit', which is supossed to commit automatically the documents when you send documents to the DDC server.
    When I scann documents in my web client, I click send locally and and a PAK file appears on the server side in the IIS webcapture clientaccess folder (C:\Program Files\Oracle\Document Capture\WebPages\ClientAccess), and the PAK is uncompressed showing my image and an .xml file containing indexing information and everything seems ok. Oracle Distr. Document Capture Service is up and running, and seems ok.
    I have c:\commit as my commit folder, but the server never writes anything in this folder (it is supposed to write a .txt file). It seems that every minute or so the ClientAccess folder is checked and the information touched by the service or other daemon, but nothing appears in the commit folder.
    I have tried also to commit to a database, creating appropiate table in sql server, but that doesn't work neither.
    The strange thing is that wit NON distributed version of ODC + access DB installed in a different machine, both commit to tex file and to database work properly.
    Any ideas of what could be failing on the distributed version ?
    Many thanks for your help,
    Plan.

    i have a problem with the labels of indexing fields at the client applet ?
    i've changed (NS_LANG) to become (AMERICAN_AMERICAAR8MS....) this was helpful for the pick-list but the labels still unknown . even after selecting a known word from the drop-down list it become also unknown like the label
    i've changed the unicode of the web page but this is useless ,
    any idea ?

  • Oracle distributed document capture service not started

    Oracle distributed document capture service not started
    and timeout

    I did check the Distributed Document Capture Configuration (from the Start menu) and it also indicates that I have selected "Oracle Distributed Document Capture Prompted Login". Once I click "OK" after I supplied all the paths required by server settings, it also displays the error "The username and password could not be validated". What credentials should be entered in the User ID / Password / Domain fields? You should use the username and password entered while configuring the "capture" security model. Leave the domain field blank.
    I have not yet configured the IIS at this point. Is it required for the Capture application to authenticate the user I specified during the installation configuration at login? IIS will serve web ODDC interface and will be needed for authentication while accessing ODDC web pages. I beleive that it is not needed for authentication from ODC/ODDC applets. However, when something is not working as expected, I would first finish all required installation and especially post installation setup steps.
    I had a look at the IIS configuration in the installation document. It doesn't clearly state which document is the default document for the website one needs to create in IIS. Do you know what it should be? You have to add new web site, say like "Capture" and add virtual directory from assumed path like: C:\Program Files\Oracle\Document Capture\WebPages
    For the default document I have WebCapture.asp.
    The Oracle Distributed Document Capture service does no start on my PC. Is this required for me to atleast login to the Capture application? It's required only for processing the scanned batches.
    I hope that this will help.
    Boris
    Edited by: tombo on 2012.03.16 06:32

  • Install document capture

    Hi.
    I install oracle document capture with a setup and restart the machine correctly, but when i run the application document captures, it show a error Login failed: Error numbre 20046, Error Description [The User name and PAssword entered could not be validate. Please try again]
    The user and password i configured in the capture batch setup->Login Settings is administrator the machine.
    Any suggestion?
    thank
    Esteban Jiménez

    Hi
    please check which OLE provider u used & which database you have used.
    Cause for ms sql server you need to choose microsoft OLE db provider & for Oracle db you need Oracle provider for OLE .
    If the oracle db is not present on the same machine then you need to download the oracle provider for OLE separate also you need an appropriate oracle client installed.
    Thanks
    Sameer

  • How to get connected to OIPM from Oracle WebCenter Document Capture

    Hi,
    How we get connected from Oracle WebCenter Document Capture(ODC) to Oracle WebCenter Cintent:Imaging (OIPM). OIPM is 11g and ODC is 10g. Pls suggest any doc or link.
    Thanks and Warm Regards,
    RR.

    Reading your previous question once again, now I think you have actually asked a simpler question than I answered to. Is it that you just need to anyhow send data from ODC to IPM?
    If so, it is a standard functionality of ODC, called Commit Profile. I have never worked with IPM, but there is one to UCM and it works the way that you use administrator's login (such as sysadmin in 10g or weblogic in 11g) for authentication and then you map ODC user to a metadata field (in UCM there is a mandatory field called dDocAuthor and there should be value of an existing user; but you can you the administrator here as well, if ODC user info is not important for you). I believe IPM will behave similar.
    What you have to check, whether commit profiles are available for IPM 11g, but I believe they are.
    As for the documentation, the link I mentioned before contains both installation and configuration manual, so you should find all the info there.

  • Issue with Oracle Distributed Document Capture in table update

    Hi All,
    I installed ODDC and configured with Oracle 11gr2 for document commit.
    I have table with 4 fields i.e id,c_number,content,mime_type. I am storing the image in content which blob datatype.
    when i import and send document from WebCapture screen i am getting document send successfully. But the data is no commiting in database table.
    The pak file are genereated in "/Document Capture/Webpages/ClientAcces".
    how i have to commit this files to database?.
    am I missing something in configuration?. Please suggest.
    thanks
    nr
    Edited by: pnr on Jul 30, 2012 5:50 AM
    Edited by: pnr on 30 Jul, 2012 7:54 AM

    It's likely that Oracle Distributed Document Capture Service (ecNetService) haven't been started as it is responsible for the pak file processing and it doesn't start automatically after install.
    Regards,
    Boris
    Edited by: tombo on 2012.08.01 04:49

  • Oracle.xml.sql.OracleXMLSQLException:Cannot enable auto commit within JTS transaction

    Hi All,
    OracleXMLSave class in the Oracle XDK is being used to load XML data into an 8170 database. The Java code is running in IBM WebSphere with container-managed transactions. When JTA is enabled with the Merant JDBC driver for Oracle, we get the following error when the XML is loaded:
    oracle.xml.sql.OracleXMLSQLException: Cannot enable auto commit within JTS
    transaction
         at java.lang.Throwable.fillInStackTrace(Native Method)
         at oracle.xml.sql.dml.OracleXMLSave.saveXML(OracleXMLSave.java:2213)
         at oracle.xml.sql.dml.OracleXMLSave.insertXML(Compiled Code)
    This suggests the OracleXMLSave class is not aware of the fact that it is now operating in a JTS transaction where control is managed elsewhere. i.e. should also not attempt to commit or rollback, as this is the responsibility of the container.
    Is there a property which needs to set to prevent the above or does the XDK not work with J2EE (JTS) transactions?.
    If you have any useful comments, let me know. Testing the above presents me with a number of problems so if this is easily explained , let me know.
    Thanks,
    Malcolm

    Clearly , there does seem to be something a bit odd with the above stack.
    <Bug:1917808> mentions OracleXMLSave in context of plsql equivalent : dbms_xmlsave . i.e dbms_xmlsave is a wrapper around OracleXMLSave class.
    disabling autocommit on connection as follows should help:
    conn = DriverManager.getConnection("connect string","scott","tiger");
    conn.setAutoCommit(false);
    to disble auto commit and see if this has an effect.
    This issue might be <Bug:1497506>. If disabling autocommit does not work then it appears that it could be this issue .
    Malcolm
    Hi All,
    OracleXMLSave class in the Oracle XDK is being used to load XML data into an 8170 database. The Java code is running in IBM WebSphere with container-managed transactions. When JTA is enabled with the Merant JDBC driver for Oracle, we get the following error when the XML is loaded:
    oracle.xml.sql.OracleXMLSQLException: Cannot enable auto commit within JTS
    transaction
         at java.lang.Throwable.fillInStackTrace(Native Method)
         at oracle.xml.sql.dml.OracleXMLSave.saveXML(OracleXMLSave.java:2213)
         at oracle.xml.sql.dml.OracleXMLSave.insertXML(Compiled Code)
    This suggests the OracleXMLSave class is not aware of the fact that it is now operating in a JTS transaction where control is managed elsewhere. i.e. should also not attempt to commit or rollback, as this is the responsibility of the container.
    Is there a property which needs to set to prevent the above or does the XDK not work with J2EE (JTS) transactions?.
    If you have any useful comments, let me know. Testing the above presents me with a number of problems so if this is easily explained , let me know.
    Thanks,
    Malcolm

Maybe you are looking for