These steps below were what I have done.
1) I created a LLBLGen Pro project and done some trial design work it uses MSSQL 2005 AdventureWorks DB. The version of LLBLGen Pro was 2.5.
2) Generated the source code by C#, .Net2.0, template Adapter, preset General settings.
3) Used the source code produced from the previous step to write a test class, like this:
public class Test: MarshalByRefObject
{
public EmployeeEntity GetEmployee(int employeeId)
{
EmployeeEntity emp = new EmployeeEntity(employeeId);
DataAccessAdapter daa = new DataAccessAdapter();
daa.FetchEntity(emp);
return emp;
}
}
4) Built the source code above. Everything seems OK until now. The assembly AdvWorks1Data.dll had been made successfully.
5) At last, I wanted to create remoting proxy class of AdvWorks1Data.dll by soapsuds, but I got an error (about null exception). The command I used was
soapsuds -ia:AdvWorks1Data -gc
I think that's a very simple test, but I just can't do it right. Have I done anything wrong?