EAServer版本是4.1.1。
  上面英文的意思是说同一个类被不同的加载器加载了。

解决方案 »

  1.   

    部分测试代码如下:    TypeUBSWmessage_MSG quoteReply = fXService
            .getDealableOutrightQuote(createOutrightRequest());
        TypeUBSWmessage_MSG confirmation = fXService
            .acceptOutrightQuote(createOutrightAccept(),quoteReply);
    部分服务端代码如下:
          public TypeUBSWmessage_MSG acceptOutrightQuote(
          TypeCopsOutrightQuoteAccept outrightQuoteAccept,
          TypeUBSWmessage_MSG outrightQuoteReply) throws Exception {
     ......
            
            outrightQuoteReply..event_1[0] = new Typeevent_1(
                null, "eventType", null, new TypeeventType("ACCEPT"));
    ......
    }
        当将Typeevent_1实例赋给该数组时就报ArrayStoreException.就是说实例类型和数组声明的类型不是一样的。但实际上实例类型类和数组声明的类是一样的。