How to access active directory with perl [closed] - html

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I have never done anything like this... So here it goes.
I need to be able to submit (at one time) roughly 300 user ids and get back their name and email address... The company has all this info in active directory.
Does anyone have any idea how this would work with Perl, or really any language? I don't even know what type of UI I would need, and how to actually connect to AD to get the requested information..
Any and all help is appreciated!

you can connect to Microsoft AD with Net::LDAP - Lightweight Directory Access Protocol

Related

Upload website in HTML 5 [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
How can I upload my website
How can I choose an URL
How to have many pages in your website which are linked
You need to have some hosting with public IP.
You need to buy domain name from some provider,
Don't understand the question...
You will have to find some hosting, there are a lot of free hostings if you only do your website for fun/school project like cba (free hostings can add ad to your website) etc. Then you will have to use some kind of ftp client to connect to your website server and upload your website files.
When creating account on those websites they will ask you to chouse yor domain name like here.
Coud you explain?

Yodlee: Is there any way to get data for a Item with using itemAccountId? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
Currently I am integrating Yodlee and looking for getting data for a specific item by using itemAccountId. I am able to do site level refresh and getting data.
Thanks
Guys, May I know the reason for down vote so I can correct my mistakes on next time.
thanks
There is no API to give you data using itemAccountID(i.e. per account) but there is an API which takes itemID(per container) and returns the accounts associated.
Try getItemSummaryForItem1 API.

Visual Basic and MySQL [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 8 years ago.
Improve this question
I need to build an application in Visual Basic 2010 to connect to a MySQL database. I saw many examples for that, but i've a question:
should the login form be the first or the splashscreen ??
should i check the connection before the login form appears ou after ?
since the application it's going to be used by many people in different places should i implement a secondary authentication method to avoid the non-authorized copy of application ?
Any sugestion or help regarding this matter is appreciated.
It's a legitimate question and from experience this is how I would approach it
When launching the application I would first show the splash screen during that time I would check the connection and determine if they are connected appropriately. If they are connected appropriately I would then show the login screen. If not then show a non-authorized screen. I would also implement a second authentication since your application is used by different sets of users.

Create a dashboard for online users [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I have a requirement and i think i need your help to start it.Actually i have created an application which monitors the status of users which are saved in mysql database with their status.By status i mean 4 types Online,Offline,LoggedIn,LoggedOff.So according to these status i need to display them on the dashborad.Isearched in internet about possible plugins or something,but alas! couldn't find any relevant article.I think this needs css.I am not sure how to start it.Can anyone share some ideas about the same ?
You should start with Bootstrap framework, it is created atop of CSS and JS. Here is nice template that you can use as a starting point. SB Admin 2

creating open source online game [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I started creating online open source game as a project in school. It will be server with n connected clients. But now I have a problem with "security". What to do if one client would used modified source code for changing some restrictions? How can I prevent it? My first idea was make client only for connection to server and server would send all necessary files but I don't like this idea very much. Can you advise me something better? Thank you.
You need to keep your validations in the server. The server should check each client move, and if it's not allowed according to the server's rules - reject it.
You should still keep validations in the client, too, so that users who don't mess with the client code can get speedier responses.