P15GEN2\59518
2025-10-18 56638c01bb2cc61a92f5e03c9a1001be5b5d3699
foundation.icall/src/foundation/icall/connector/HttpServerConn.java
@@ -38,7 +38,7 @@
    protected static Logger logger;
   public static int ConnectTimeout = 60;
   public static int WriteTimeout = 60;
   public static int ReadTimeout = 60;
   public static int ReadTimeout = 600;
   
   protected HttpServerMeta meta;
   private static OkHttpClient httpClient = null;
@@ -88,6 +88,7 @@
   public IRequest buildBody(IRequest request, WorkStep step, ICall iCall) throws Exception {
      DataPackage dataPackage = step.getDataPackage();
      dataPackage.loadOneDataFromDB(true);
      MapList<String, Template> templateList = iCall.getRequestTemplateList();
      Entity master = dataPackage.getMasterEntity(iCall.getRequestDataSources());
      
@@ -101,9 +102,7 @@
      for (Entry<String, Template> entry : templateList.getItemMap().entrySet()) {
         Template template = entry.getValue();
         String key = entry.getKey();
         String value = template.fillVariants(dataPackage);
         System.out.println("value:" + value);
         if ("jsonbody".equals(key)) {
            request.setJSONBody(value);
         }
@@ -113,6 +112,8 @@
         else {
            request.addFormData(entry.getKey(), value);
         }
         logger.info("key :{}, value:{}", key, value);
      }
      
      if (master != null) {