Y
yuzhizhi
Unregistered / Unconfirmed
GUEST, unregistred user!
在客户程序中编译后出现roject Projectc.exe raised exception class ESocketError with message 'Windows socket error:在其上下文中,该请求的地址无效.(10049),on API 'connect'.Process stopped. Use Step or Run to continue.
而且我在服务端程序中定义的接口程序无法在客户端程序中调出。
比如说:在服务端中
protected
procedure inster(var type_, top: WideString;
var neirong: OleVariant);
safecall;
实现的方法:
procedure Tsl.inster(var type_, top: WideString;
var neirong: OleVariant);
begin
with ADOTable1do
begin
Open;
Append;
FieldByName('类型').AsString:= type_;
FieldByName('标题').asstring:=top;
FieldValues['内容']:=neirong;
Post;
end;
end;
在客户端中:用SocketConnection.AppServer.Inset()无法调出。
请问这是什么原因了?
而且我在服务端程序中定义的接口程序无法在客户端程序中调出。
比如说:在服务端中
protected
procedure inster(var type_, top: WideString;
var neirong: OleVariant);
safecall;
实现的方法:
procedure Tsl.inster(var type_, top: WideString;
var neirong: OleVariant);
begin
with ADOTable1do
begin
Open;
Append;
FieldByName('类型').AsString:= type_;
FieldByName('标题').asstring:=top;
FieldValues['内容']:=neirong;
Post;
end;
end;
在客户端中:用SocketConnection.AppServer.Inset()无法调出。
请问这是什么原因了?