繁体   English   中英

如何增加 WSO2 Integration Studio 的超时时间?

[英]How to increase the timeout at WSO2 Integration Studio?

我想通过使用 WSO2 集成工作室应用程序打开数据服务项目来建立 oracle 数据库连接。 我可以连接到 Oracle 数据库。 但是当我运行数据服务项目时,WSO2 Integration Studio 应用程序进入超时并要求我们增加超时时间。 我们应该如何以及在哪里增加这个时间?

集成工作室数据服务项目 Xml:

   <data transports="http https" serviceGroup="" serviceNamespace="" name="demoDataService">
  <description />
  <resource method="GET" path="GetGenders">
    <call-query href="GetGenders" />
  </resource>
  <config id="OracleDataSourceIdenfierName" enableOData="true">
    <property name="driverClassName">oracle.jdbc.driver.OracleDriver</property>
    <property name="url">jdbc:oracle:thin:@host:port/schema_name</property>
    <property name="username">username</property>
    <property name="password">password</property>
  </config>
  <query id="GetGenders" useConfig="OracleDataSourceIdenfierName">
    <sql>SELECT column1,column2 FROM schema_name.table_name</sql>
    <result outputType="json">{
"Genders": {
    "Gender": [
      {
        "column1": "$column1",
        "column2": "$column2"
      }
    ]
  }
}</result>
    <properties>
      <property name="fetchDirection">forward</property>
    </properties>
  </query>
</data>

WSO2 集成工作室超时错误:

在此处输入图像描述

Go 到Window -> Show View -> Other然后搜索服务器。 Select 服务器并单击打开。

在此处输入图像描述

然后双击“Micro Integrator Server 4.1”然后寻找超时设置。

在此处输入图像描述

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM