I need to devlop an ASP based chat application.I dont want my browser to use any IP control. I have made a server in VB and used winsock control on it and designed a client page for chatting. All i need is to develop a middle layer which also have aipport control on it. I was using a sample code but it only grabs information from internet and its session is expired. But in this case of chat applcation i neet to mantain a seesion b/w middle layer and my vb server. secondly i cant be able to useipport(ASP version)on middle layer as its giving an exception.
please help me how to use it and initialize it. and how to mantain a session for a long time. The code is as follows
<%
Option Explicit
Dim ChatID
ChatID = Request("ChatID")
If (ChatID = "") Then
Response.Redirect "Expired.asp"
Response.End
End If
Set ipport = Server.CreateObject("IPWorksASP.IPPort")
ipport.Connect "192.168.0.106", 6000
%>
The set line above is giving error. Also if you can send me any samples or refer to any site then i will very greatfull to you.