ping CDC device in to Machine(our desktop or notebook)
step 1: config the device into system and vice versa this configuration in linux machine 1. ifconfig usb0 ip1 netmask maskid (this at linux machine) - machine -1 eg:- ifconfig 10.100.100.101 usb0 netmask 255.255.255.0 2. ifconfig usb0 ip2 netmask maskid (this is at device machine) - machine 2 eg:- ifconfig 10.100.100.102 usb0 netmask 255.255.255.0 Call webservice private DataGenerator() throws Exception { ResourceBundle bundle = ResourceBundle.getBundle("configuration"); URL url = new URL(bundle.getString("Delegator_Service_WSDL")); soapHandler = new SOAPMessageHandler(url); } /** * Constructor for SOAPMessageHandler. It takes the endpoint URL as a * parameter. * * @param endPoint - * The service endpoint URL. */ public SOAPMessageHandler(URL endPoint) { this.endPoint = endPoint; StringBuffer sb = new StringBuffer(" ") .append( " ") .append(" "); soapEnvBegin = sb.toString(); soapEn...