Expand my Community achievements bar.

contentPath URl built from meeting-info xml is invalid

Avatar

Former Community Member
for example when I run this url
https://na2.connectnow.acrobat.com:443/app/content/accounts/...truncated.

I get error :

The meeting URL you have entered is not active. Please verify
your meeting URL and try again. For further assistance, please
contact support. To reserve this meeting URL, sign up for an
account.



P.S: this url is build inside AFCS.java from meeting-info xml
node



for exmple if I call listItems("meetings"); it generates url
but that url is invalid.

maybe some headers are needed?
2 Replies

Avatar

Employee
What language/version of the scripts are you using and could
you please enable the debug option and send the output ?



Also, what happen if you try the command line version of the
script ? i.e. for the java version you would do:



java -cp . AFCS --debug <account> <username>
<password> --list



Note that you can't just "type" the URL that you seen in the
logs in a browser and expect that it works. I mean, it works if you
type the full URL correctly, and the authentication token is still
valid, and your passing it correctly.



The error you are getting is a generic "ConnectNow" error
page generated by the request trying to redirect you to a bad login
page (long story, this request is trapped by the generic
authentication filter that tries to redirect to a login page, but
in this particular case I should be returning a 401 Unauthorized
error). I'll see if I can fix the error, but in any case if you use
the scripts correctly you shouldn't be getting here.



Avatar

Former Community Member
thaks a lot got it, and also got it to display in browser, :)


ok I'm back to my app now :)