You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use Netbeans 7.0 and install Apache Ant 1.8 and Tomcat 7.0, when i run Rain (Main class = Benchmark, Argument = rain.config.olio.json) I have the following warning message:
WARNING: Login required for AddEvent
WARNING: Login required for PersonDetails
when i explore the source code i found the following value URL:
When i print the baseURl it have a value >> "http://localhost:80", but what about "/events/", "/events/new", ...etc.
i believe there are missing code about server side?
Best Regards,
Zakarea Al Shara
The text was updated successfully, but these errors were encountered:
Hi,
I use Netbeans 7.0 and install Apache Ant 1.8 and Tomcat 7.0, when i run Rain (Main class = Benchmark, Argument = rain.config.olio.json) I have the following warning message:
WARNING: Login required for AddEvent
WARNING: Login required for PersonDetails
when i explore the source code i found the following value URL:
public void initializeUrlAnchors()
{
this.baseURL = "http://" + this._loadTrack.getTargetHostName() + ":" + this._loadTrack.getTargetHostPort();
this.personDetailURL = this.baseURL + "/users/";
this.tagSearchURL = this.baseURL + "/events/tag_search/";
this.tagCloudURL = this.baseURL + "/tagCloud." + type;
this.addEventURL = this.baseURL + "/events/new";
this.addEventResultURL = this.baseURL + "/events/";
this.addPersonURL = this.baseURL + "/users/new";
this.addPersonResultURL = this.baseURL + "/users";
this.homepageURL = this.baseURL + "/";
this.loginURL = this.baseURL + "/users/login";
this.logoutURL = this.baseURL + "/users/logout";
this.addAttendeeURL = this.baseURL + "/events/";
this.eventDetailURL = this.baseURL + "/events/";
this.fileServiceURL = this.baseURL + "/fileService." + type + '?';
this.checkNameURL = this.baseURL + "/users/check_name";
}
When i print the baseURl it have a value >> "http://localhost:80", but what about "/events/", "/events/new", ...etc.
i believe there are missing code about server side?
Best Regards,
Zakarea Al Shara
The text was updated successfully, but these errors were encountered: