PDA

View Full Version : invalid key for 'next"


sferguson
11-13-2003, 04:24 PM
Working with submitting data to web form using AMS 5

Getting the following error:

invalid key for 'next"

some code: (not real username and password, obviously)

tabAuth={"username", "password"};
err = HTTP.testConnection("http://66.88.18.69/", 20, 80, tabAuth, nil);

The same happens when I'm trying to do HTTP.submit, which is why I went back to solve .testConnection first. Any ideas?

Brett
11-13-2003, 04:44 PM
Try:


tabAuth={UserName="username",Password="password"};
err = HTTP.testConnection("http://66.88.18.69/", 20, 80, tabAuth, nil);