Categories: MSDN / DotNet / Java / Scripts / Linux / PHP Ask - La ask - La Answer

app to app communication over network...

Hi.

I have a VB6 app on one machine (running XP Pro) and another VB6 app on a server PC (running Windows 2000 AS).

I need to send a message from the application from the calling machine to the application on the server.

The message will be a string/text.

I cannot make use of a database or file.

The network is a LAN.

Can anyone offer any help or advice.

Many thanks,
Darren
darrenbrook@btconnect.com
[471 byte] By [dbrook007] at [2007-11-11 8:50:05]
# 1 Re: app to app communication over network...
normal is <<<<<<<<Call Shell("net send [ComputerName] [Massage]")>>>>>>
Using mswinsck
in The Form add commandbutton and winsock control and two textboxex
<<<<<<<<<<<<<<<<<<<Client Side>>>>>>>>
Private Sub Command1_Click()
tcpClient.RemoteHost = "169.254.165.141"
tcpClient.Connect
End Sub
Private Sub tcpClient_DataArrival(ByVal bytesTotal As Long)
Dim strdata As String
tcpClient.GetData strdata
txtRec.Text = strdata
End Sub
Private Sub TxtSend_Change()
tcpClient.SendData TxtSend
End Sub
<<<<<<<<<<<<<<<<<<<<<Serverside>>>>>>>>>>>>>>>>>>>>>>>>>
Private Sub Command1_Click()
tcpServer.Listen
End Sub
Private Sub tcpServer_ConnectionRequest(ByVal requestID As Long)
If tcpServer.State <> sckClosed Then
tcpServer.Close
End If
tcpServer.Accept requestID
End Sub
Private Sub tcpServer_DataArrival(ByVal bytesTotal As Long)
Dim strdata As String
tcpServer.GetData strdata
TxtRec = strdata
End Sub
Private Sub txtSend_Change()
tcpServer.SendData txtSend
End Sub
newkeep at 2007-11-11 17:24:54 >
# 2 Re: app to app communication over network...
Will this message only be picked up by the VB application and not displayed on screen at all?
dbrook007 at 2007-11-11 17:25:54 >
# 3 Re: app to app communication over network...
if u use the second way yes it could be (if you write two pograms that uses from same port number you should change on (server and client) program port number to same
newkeep at 2007-11-11 17:27:03 >
# 4 Re: app to app communication over network...
How do i do that?

... and what if I do not know the IP address, only the server name?

thanks - Darren
dbrook007 at 2007-11-11 17:27:57 >
# 5 Re: app to app communication over network...
For getting ip adrees I think the simplest way is open run>cmd then press ok
((Open CommandPromt)) then type "Ping [Computer Name]" and then while your system is checking your connection between you and your remote connection(here is server) shows the Remote ip in Pinging......[computer Ip]
In Server Mode you should be always in open form[Listen Mode] if you`ve got dissconnected winsck should be close and then open [Listen Mode] again
newkeep at 2007-11-11 17:29:04 >