Hi all,
I am new with llblgen pro, I am trying to build a client-server application using remoting in .net.
The example in the download area describes a very simple scenario, where there is only one class with only one method, and the interface used in client-server communication is hand written (very simple).
Now, a real scenario is a little bit more complex, I need to expose all business classes with all base methods and the methods I defined in 'EntityClasses' in 'two class scenario' template (I am using a single database).
I made some experiments with Northwind database, I tried to generate a type library needed to write the client with 'SoapSuds.exe' from Northwind.dll, built from visual studio 2003 with these parameters:
Soapsuds.exe -ia:Northwind -gc
(from the \bin directory of the Northwind project generated by llblgen pro)
the message i receive from soapsuds is the following:
''Error: Object reference not set to an instance of an object."
note that on the \bin directory there's also a copy of the
SD.LLBLGen.Pro.ORMSupportClasses.NET11
library referenced from northwind project
and soapsuds works well with other dll projects not generated by llblgen pro.
Is this the wrong way to get the server interface I need client side?
Thanks a lot.