Dear all, with reference to this code snippet : http://globus.org/toolkit/docs/4.2/4.2.1/common/javawscore/developer/#javawscore-developer-low-level-addressing-api more specifically this part:
Service service = new Service(); Call call = (Call) service.createCall(); If I get it right the Service belongs to javax.xml.rpc.Service class which is an Interface, hence cannot be instantiated like that. shouldn't it be something like this? Service service = null; Call call = (Call) service.createCall(); Thanks Cheers, Shayan
