ADAM activity - android-activity

We have an application that will retrive intformation from ADAM server.
I would like to moniter the user activity on ADAM server and would like to capture the user requests on the ADAM server.
Is there any tool that will help to get this info.
-svr

There are a number of tools that come out of the box:
http://technet.microsoft.com/en-us/library/cc776460.aspx
Ldp is a GUI tool that works well for your intended purpose.

You could try something like this: http://www.quest.com/intrust-for-active-directory/ it works for ADAM as well

I've always used LogParser 2.2 to query user activity in ADAM. You can redirect the output to a file or sql table. Here is an article on how to automate LogParser for extracting data from the windows security event log.
If you're a c# programmer you could write a small app using the EventLogWatcher class to filter security events and insert them in a sql table.

Related

REST call to insert records in another sandbox through Apex code

I am looking for exact apex code to fetch records from current sandbox and insert it into another sandbox. I am fine with both REST or SOAP API, please share the apex code if possible.
Looks like you can solve it using one of ETL-tools without writing REST services and Apex code. There are a lot of ETL-tools, which supports Salesforce, for instance Talend open studio, DreamFactory Monarch or Pentaho Kettle.
More broad list of tools with descriptions you can find on Awesome Salesforce page.

How to display jupyter notebook or apache zeppelin in my application ?

I have a application WEB (laravel) I using Postgresql to Transaction and ACID data, mongodb to many king of informations ans apache spark to processes and get insight from this.
But, I need produces dashbord from this app and put it into mys application analys área.
Here are few things you can utilize.
using Paragraph REST API: fetch paragraph results using AJAX and display it in your application.
http://zeppelin.apache.org/docs/0.8.0-SNAPSHOT/rest-api/rest-notebook.html#get-a-paragraph-information
Publishing paragraphs and get the permalinks, then embed them in your application.
http://zeppelin.apache.org/docs/0.8.0-SNAPSHOT/manual/publish.html#embed-the-paragraph-to-your-website
Use the report mode: Report mode is remove all buttons, things unrelated and only keep useful results
(This is not the exact solution what you want but you might be interested)
http://zeppelin.apache.org/docs/0.8.0-SNAPSHOT/quickstart/explorezeppelinui.html#note-toolbar
You might get more ideas from Zeppelin Documentation.
http://zeppelin.apache.org/docs/0.8.0-SNAPSHOT/

Can we store the data collected by executing tcl script into a database (postgresql)? If yes how?

In my project I need to simulate social network community members and their activities. I think to represent the members as nodes and need to store the count of their postings, feedback etc. Can we store the data collected by executing tcl script into a database (PostgreSQL)? If yes can anyone explain how it is?
You could also use SQlite3, a much lighter alternative to a full Postgres installation.
see https://www.sqlite.org/tclsqlite.html
Try OpenACS - it's a social networking community software and is written using TCL and Postgresql (or Oracle if you prefer)

Looking for an email/report templating engine with database backend - for end-users

We have a number of customers that we have to send monthly invoices too. Right now, I'm managing a codebase that does SQL queries against our customer database and billing database and places that data into emails - and sends it.
I grow weary of maintaining this every time we want to include a new promotion or change our customer service phone numbers. So, I'm looking for a replacement to move more of this into the hands of those requesting the changes.
In my ideal world, I need :
A WYSIWYG (man, does anyone even say that anymore?) email editor that generates templates based upon the output from a Database Query.
The ability to drag and drop various fields from the database query into the email template.
Display of sample email results with the database query.
Web application, preferably not requiring IIS.
Involve as little code as possible for the end-user, but allow basic functionality (i.e. arrays/for loops)
Either comes with it's own email delivery engine, or writes output in a way that I can easily write a Python script to deliver the email.
Support for generic Database Connectors. (I need MSSQL and MySQL)
F/OSS
So ... can anyone suggest a project like this, or some tools that'd be useful for rolling my own?
(My current alternative idea is using something like ERB or Tenjin, having them write the code, but not having live-preview for the editor would suck...)
I think your looking for a reporting tool which is also capable of sending email. Sending a generared report in html or pdf shouldn't be to hard to do as well.
I've used JasperReports in the past for which I think it should fit your needs.
Another good solution is the pentaho reporting tool
You could easily write something on your own.. give them a basic edit control and allow them to use psuedo variables like {customername} {anothercustomerattribute} within the mail body.
On submit either send directly or save as template.
When the template is sent away the script automatically parses stuff like {customername} into the real customers name from the database.
Your own very very simple custom scriptlanguage :)
Everything else like loops and so on would be maintained on serverside. And if you want particular groups of customers to receive the letter, allow the enduser to select from selectboxes or whatever and do the rest on the serverside with pre-defined rules.

what language combination should I use to permanently modify a webpage?

I'm trying to make a page with 2 fields (email and feedback) and 1 button. When the user clicks on the button, a table on a page else where is filled in with the data, permanently.
Does anyone have recommendations of how I should do this? I'd like to avoid having a script send me an email, or writing to a database. But if I have to, which ever is easier to configure would be prefered.
Thanks,
Matt
So you want a comments system like you find on most blogs? You'll need to store those comments somewhere, probably in a database. As for how to do it, that would depend entirely on what you already know and what the site is currently written in. You could use PHP and MySql if you already have those skills, or ASP.Net/SQL Server, or if you want to be down with the cool kids you can use Ruby on Rails or Python/Django.
If you post what languages you already have experience in, and/or what the site is written in you might get a more specific answer :-)
There're 2 types of scripts: server side and client side. The client side script (JavaScript) stores info only for particular visitor on his computer and this can't be seen by anybody else.
You need a server side script to save feedback on the server. The language or technology depends on the hosting server you use. Not all hosting services allows server side scripts. You need first to find out what scripting languages and technologies are supported by your hosting provider. Then we can help you more.
ADD:
For an unexperienced persons I recommend to search for hosting services which has most needed functionality. Something like blogs, etc. On such services you could create pages that will have comments and feedback and many more.
While it may seem outdated it's not necessarily a bad design. You can use PHP or Perl (due to it's string parsing capabilities) and simply store the main page on the disk.
Here's your sudo code/design...
You'll need need an html page that looks as follows
<tr><td>email</td><td>comment 1</td></tr>
<tr><td>email 2</td><td>comment 2</td></tr>
<tr><td>email 3</td><td>comment 3</td></tr>
Then you'll need a php script page that will read this html file in and display it.
The php page will also contain code for dealing with a user submitted comment. When a user posts a comment you need to open the html page with the rows in it and append to that file.
You need to be careful with this design however because you may run into write concurrency issues if two people attempt to read the file at the same time. Add code to handle this gracefully accordingly.