Hallo Udo,
habe ich natürlich alles nicht gemacht. Ich habe alles default gelassen so wie der Wizard es erzeugt hat. Über DADesigntimeCall habe ich über Doku Wiki nichts gefunden. Und schon
wieder ein weiteres puzzle...
Serverseitig habe ich nun DataService_Impl.RequiredSession auf false gesetzt.
Dabei habe ich auch ReturnFullSchema entdeckt weches auf false steht. Sollte ich das auf true setzen?
LoginService.Connectionname = MobileConnection ist gesetzt.
Ist "sess_ISEConnectionName" eine Kontante für den ConnectionName?
Delphi-Quellcode:
procedure TLoginService.LoginServiceLogin(Sender: TObject; aUserID,
aPassword: Utf8String; out aUserInfo: UserInfo;
var aLoginSuccessful: Boolean);
begin
// This is where your Login logic should be implemented. A default implementation has been added
// for you.
// If you application does not require sending back a UserInfo structure, you can set
// aUserInfo to nil, indtead of returning a new instance.
// If you require a more complex UserInfo structure (i.e. MyCompanyUserInfo), simply add
// a new struct to the file WindowsFormsServer1.RODL and set its ancestor to UserInfo. You will then
// be able to marshal your new custom class back to the client by reassigning the aEA.UserInfo property.
// myInfo = new MyCompanyUserInfo();
// myInfo.City = "London";
// myInfo.Address = "213 Smith Road";
// myInfo.Age = 32;
// aUserInfo = myInfo;
aLoginSuccessful := aUserID = aPassword;
if aLoginSuccessful then begin
aUserInfo := UserInfo.Create;
aUserInfo.SessionID := UTF8String(GuidToAnsiString(ClientID));
aUserInfo.UserID := aUserID;
Session['UserID'] := aUserID;
end
else begin
DestroySession;
end;
end;
Gruß Kostas