Click to See Complete Forum and Search --> : 2 port at same server (asObj.LastError=22132)


adiel
08-12-2007, 04:37 AM
hi,

I've develop a web witch is at the same server but different port.

for port 6000 i don't have any probs. but when i using port 9000 some error come out when i response.write().

this is my coding;

asObj.Connect "127.0.0.1", 6000
response.write "Connect: result = " & asObj.LastError & "<br>"

result: Connect: result = 0

and its wokin', but when i using port 9000

asObj.Connect "127.0.0.1", 9000
response.write "Connect: result = " & asObj.LastError & "<br>"

result: Connect: result = 22132

i've tried to another port and same error come out. did i need to setup somethin' to my server?

TQ