Я хочу вызвать метод из веб-службы.
Делаю это, примерно, так:
- Код: Выделить всё
Dim ML_obj As New ru.jinr.rocmon.MLWebServiceService()
Dim val As ru.jinr.rocmon.Result()
val = ML_obj.getLastValues()
Класс Result():
- Код: Выделить всё
public class Result {
private String farmName; // the farm name that contains the parameters
private String clusterName; // the cluster name that contains the parameters
private String nodeName ; // the node name that contains the parameters
private String[] param_name ; // the parameters names
private double[] param; // the parameters values
private long time; // the absolute time in milliseconds when this value was
// registered in the database
............ // get/set functions
}
При вызове появляется ошибка
Exception Details: System.InvalidCastException: Cannot assign object of type System.Double to an object of type System.Object[].
Как это исправить?Я идиот! Убейте меня, кто-нибудь!?