title: التكامل مع JasperServer

type: docs

weight: 30

url: /ar/jasperreports/integration-with-jasperserver/

lastmod: “2021-06-05”


في الخطوات التالية تمثل دليل تثبيت JasperServer.


 <bean id="AsposePdfExporter" class="com.aspose.pdf.jr3_7_0.jasperreports.AsposeServerPdfExporter" parent="baseReportExporter">

   <property name="exportParameters" ref="AsposeExportParameters"/>

   <property name="setResponseContentLength" value="true"/>

</bean>

<bean id="AsposePdfExporterConfiguration" class="com.jaspersoft.jasperserver.war.action.ExporterConfigurationBean">

   <property name="descriptionKey" value="Pdf - PDF عبر Aspose.PDF لـ JasperReports"/>
<property name="iconSrc" value="/images/pdf.gif"/>

<property name="parameterDialogName" value="dlg"/>

<property name="exportParameters" ref="AsposeExportParameters"/>

<property name="currentExporter" ref="AsposePdfExporter"/>

</bean>
<util:map id="exporterConfigMap">

  <entry key="pdf" value-ref="pdfExporterConfiguration"/>

  <entry key="xls" value-ref="xlsExporterConfiguration"/>

  <entry key="rtf" value-ref="rtfExporterConfiguration"/>

  <entry key="csv" value-ref="csvExporterConfiguration"/>

  <entry key="swf" value-ref="swfExporterConfiguration"/>

<!-- START of ADDED LINES -->

  <entry key="Aspose_pdf" value-ref="AsposePdfExporterConfiguration"/>

<!-- END of NEW LINES -->

</util:map>