English 中文(简体)
从Oracle UCM中提取的图像显示是一种链接而不是图像。
原标题:Image extracted from Oracle UCM displays as a link rather than an image

我正试图从伊斯兰法院联盟获得一个单一的形象,并在一页上展示。 至今,我已努力问一下我所希望的图像,直到现在,我已经能够接过这个网页,以便适当做到这一点。 我正在把从中转成一页的图像,形成一个任务流程,作为内容介绍的一部分展示。

然而,我现在的问题是,图像没有显示,而是与形象的联系(我认为这是不成事实)。 拍摄图像的唯一途径是点击该链接。 我尝试了各种事情,如改变各种选项、模板类别和模板观点,但没有任何成功。 它不是在浏览器中制造一个图像标签,而是创建的。

Here the code for the jspx:

<?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>
testing - content just after the view
<af:document id="d1">
<af:form id="f1" usesUpload="true">
<af:pageTemplate viewId="/oracle/webcenter/portalapp/pagetemplates/pageTemplate_globe.jspx"
id="pt1" value="#{bindings.pt1}">
<f:facet name="content" >
<af:region value="#{bindings.doclibcontentpresenter1.regionModel}"
id="r1"/>
</f:facet>
</af:pageTemplate>
</af:form>
</af:document>
</f:view>
</jsp:root>

任务从网页定义中删除:

<taskFlow id="doclibcontentpresenter1"
taskFlowId="/oracle/webcenter/doclib/view/jsf/taskflows/presenter/contentPresenter.xml#doclib-content-presenter"
activation="deferred"
xmlns="http://xmlns.oracle.com/adf/controller/binding">
<parameters>
<parameter id="taskFlowInstId"
value="${ 4acb66c1-28fa-48b2-aac5-8a8ad424f4d2 }"/>
<parameter id="datasourceType" value="${ dsTypeQueryExpression }"/>
<parameter id="datasource"
value="${ connectionName=CanonUCM#select * from ora:t:IDC:GlobalProfile where ora:p:dDocTitle= 1210C  }"/>
<parameter id="templateCategory" value="${  }"/> 
<parameter id="regionTemplate" value="${false}"/>
<parameter id="maxResults" value="${  }"/>
</parameters>
</taskFlow>

有趣的是,当我混淆了我的工作流程时,所展示的形象就显得格不入(从单独试验中得出):

<taskFlow id="doclibcontentpresenter2"
taskFlowId="/oracle/webcenter/doclib/view/jsf/taskflows/presenter/contentPresenter.xml#doclib-content-presenter"
activation="deferred"
xmlns="http://xmlns.oracle.com/adf/controller/binding">
<parameters>
<parameter id="taskFlowInstId"
value="${ c784a224-4d2d-4ff9-82e0-06e5959d880d }"/>
<parameter id="datasourceType" value="${ dsTypeSingleNode }"/>
<parameter id="datasource" value="${ CanonUCM#dDocName:OCC-001201 }"/>
<parameter id="templateCategory" value="${  }"/>
<parameter id="templateView" value="${ MLCT }"/>
<parameter id="maxResults" value="${  }"/>
</parameters>
</taskFlow>

但是,当我使用<条码>和t;直径直=“templateCategory”价值=“${MLCT }”/>时,根本就没有显示任何东西,例如一例。

问题回答

暂无回答




相关问题
Export tables from SQL Server to be imported to Oracle 10g

I m trying to export some tables from SQL Server 2005 and then create those tables and populate them in Oracle. I have about 10 tables, varying from 4 columns up to 25. I m not using any constraints/...

Connecting to Oracle 10g with ODBC from Excel VBA

The following code works. the connection opens fine but recordset.recordCount always returns -1 when there is data in the table. ANd If I try to call any methods/properties on recordset it crashes ...

How to make a one to one left outer join?

I was wondering, is there a way to make a kind of one to one left outer join: I need a join that matches say table A with table B, for each record on table A it must search for its pair on table B, ...

Insert if not exists Oracle

I need to be able to run an Oracle query which goes to insert a number of rows, but it also checks to see if a primary key exists and if it does, then it skips that insert. Something like: INSERT ALL ...

How can I store NULLs in NOT NULL field?

I just came across NULL values in NOT-NULL fields in our test database. How could they get there? I know that NOT-NULL constraints can be altered with NOVALIDATE clause, but that would change table s ...

Type reference scope

I m studying databases and am currently working on a object-relational DB project and I ve encountered a small problem with the number of possible constraints in an object table. I m using "Database ...

OracleParameter and DBNull.Value

we have a table in an Oracle Database which contains a column with the type Char(3 Byte). Now we use a parameterized sql to select some rows with a DBNull.Value and it doesn t work: OracleCommand ...

热门标签