No executable files are created under the Java project

Forum for JAVA developers using the E-conomic API.
Exchange your ideas, tip and tricks using the API.
Best Practices

No executable files are created under the Java project

Postby cwe » Tue Jun 02, 2009 12:38 pm

We have customers who is not getting the executables files when generating the stub, is there any problems with the exempel code:

import javax.xml.rpc.ServiceException;
import com.e_conomic.*;

public class UserApp {
public static void main(String[] args){

EconomicWebServiceLocator locator = new EconomicWebServiceLocator();
locator.setMaintainSession(true);

EconomicWebServiceSoap session = locator.getEconomicWebServiceSoap();
session.connect(123456, ”username”, ”password”);

// Application code.

session.disconnect();
}
}

Is there any other who have experience similar problems?
-
cwe
 
Posts: 10
Joined: Tue May 19, 2009 3:34 pm

Return to JAVA



cron