View Single Post
Old 11-23-2007, 10:38 AM   #2 (permalink)
ASUL
Junior Member

Activity Longevity
0/20 3/20
Today Posts
0/0 ssssssss1
Rep Power: 0ASUL is an unknown quantity at this point

Total Points:
Donate
Country:

The connection script to the server must be something like:

host=CO001S004;tcp/ip=2562
CO001S004 Is the name of the server and 2562 the PORT available for conexion.

Please use the SDK available for ERICSSON. oascsta32.dll

unsigned short sendQSize;
sendQSize=0;
unsigned short sendExtraBufs;
sendExtraBufs=0;
unsigned short recvQSize;
recvQSize=0;
unsigned short recvExtraBufs;
recvExtraBufs=0;
ServerID_t ServidorId;
LoginID_t LoginId;
Passwd_t Password;
AppName_t AppId;
Version_t Version;
strcpy(ServidorId,"host=CO001S004;tcp/ip=2562");
strcpy(LoginId,"");
strcpy(Password,"");
strcpy(AppId,"ASUL");
strcpy(Version,CSTA_API_VERSION);

m_RetornoInvokeId=acsOpenStream ( &m_HandleConexion,
LIB_GEN_ID,
0,
ST_CSTA,
&ServidorId,
&LoginId,
&Password,
&AppId,
ACS_LEVEL1,
&Version,
sendQSize,
sendExtraBufs,
recvQSize,
recvExtraBufs,
NULL);
ASUL is offline   sendpm.gif Reply With Quote