How to import Solarwinds Dashboards into a SharePoint 2010 site?

Hello ,
I am planning to import solarwinds dashboard in a SharePoint 2010 site, so could anyone please tell me how to achieve this.
Thanks and Regards,
Srikanth G.

Hi Srikanth,
Main purpose of the dashboard is to display the real time data and the dashboard should be updated very often. This can be achieved by using RSS feed.
RSS feed gives data in XML format. By Using the  below piece of code, you can iterate the XML and fetch the data. Once you receive the data , keep it in datatable and display it in the dashboard webpart as you like.
XmlReaderSettings settings = new XmlReaderSettings();
settings.IgnoreComments = true;
settings.IgnoreWhitespace = true;
settings.CheckCharacters = true;
settings.CloseInput = true;
settings.IgnoreProcessingInstructions = true;
var client = new WebClient();
string URL = <SolarWindsRSSURL>;
try
var feedAsString = client.DownloadString(URL).Replace((char)(0x1F), Convert.ToChar(" "));
XmlReader reader = XmlReader.Create(new MemoryStream(Encoding.Default.GetBytes(feedAsString)), settings);
//XmlReader reader = XmlReader.Create(URL);
SyndicationFeed Feed = SyndicationFeed.Load(reader);
reader.Close();
foreach (SyndicationItem item in Feed.Items)
//Solar Winds RSS data
Thanks, Sures | MCTS SharePoint

Similar Messages

  • How to "Capture Multiple Levels" of a SharePoint 2010 site

    Hello!  I have an end user I'm trying to support who is trying to update her SharePoint site so she can print the .pdf format.  Whenever she tries to "Get Entire Site she gets an authorization failure and it says Error:  Nothing Done.  We have migrated the site content over from the old intranet page into a SharePoint 2010 site.  However, user informed me that she needs to have the ability to print the entire site content and she had been doing this using Adobe Acrobat X Pro.  How do I correct the authorization failure message?  I'm a SharePoint administrator so please let me know what I need to do on the back end to get this to work.  Thanks! 

    I have seen the same error a number of times. I found that certain domains would not work and give me the error msg. and not allow me to capture a website into PDF format.
    http://www.wisconsindot.gov/projects/index.htm generates the 'Authorization Failure' error msg. and will not create a PDF file.
    http://www.dot.wi.gov/projects/index.htm and http://www.dot.state.wi.us/projects/index.htm both work fine and create a PDF file as intended.
    Do you have an alternative domain you can use for the URL? If so, try that and let me know if it works.
    Gregory A. Simonis | DTSD Publications Editor/DTSD Extranet Web Administrator | WisDOT SW Region - Madison, WI

  • How to do a load testing in Sharepoint 2010 site

    Hi,
    I have never done a performance or load testing on SharePoint 2010 site.
    I have a site which has only one custom code written for consolidating documents. I want to check the performance of the site.
    How do I go about this ? I want to know how many users can login at a time and view the site without any delay and
     check how many people can consolidate documents at a time .
    Thanks in Advance.
    Pallavi

    There's several ways to do it, the most common is to use the SharePoint load testing kit detailed in the second link below. For a more general guide try the first:
    http://technet.microsoft.com/en-us/library/ff758659.aspx#createtests
    http://technet.microsoft.com/en-us/library/ff823736(v=office.14).aspx

  • How to import .pdf files into iBooks?

    How to import .pdf files into iBooks?

    Or send the file from your computer to your ipod by emailing yourself the pdf. Then if you open the Mail client and you open the pdf there is an option to select open in ibooks. It will save it to your device for remote viewing.

  • How to deploy SCOM Dashboard solution to sharepoint online

    i have come through many articles saying how to deploy scom dashboard solution to sharepoint server,
    but how do i deploy SCOM WSP solution to sharepoint online office 365.
    i need to show my SCOM dashboards on sharepoint online.
    Can anyone help me in doing this?
    Thanks & Regards, Suresh Gaddam

    Yes i did the same thing but when i hit activate it threw some error saying you cannot deploy farm solution to sharepoint
    This solution
    contains invalid markup or elements that cannot be deployed as part of a sandboxed solution. Solution manifest for solution 'c125f6b7-8c1e-40ae-86e2-bd2d5e568ca2' failed validation, file manifest.xml, line 14, character 4: The element 'Solution' in namespace
    'http://schemas.microsoft.com/sharepoint/' has invalid child element 'RootFiles' in namespace 'http://schemas.microsoft.com/sharepoint/'. List of possible elements expected: 'ActivationDependencies, FeatureManifests' in namespace 'http://schemas.microsoft.com/sharepoint/'.
    TECHNICAL
    DETAILS
    Thanks & Regards, Suresh Gaddam

  • How to import epub/pdf into macvericks' ibooks ?

    how to import epub/pdf into macvericks' ibooks ?

    Placing the PDF into an InDesign document shouldn't be a problem, but if it is, please post back. What I think you're asking for is how to edit a PDF with InDesign, which can't be done. You would need the source document, edit that and then export to another PDF (if PDF is the end goal). There are some programs that can edit PDFs or convert PDFs to other formats (Word, InDesign, etc.), and they will work to one extent or another. You should expect to have to rework parts of it should you go that way. Keep in mind that PDF is generally considered a final document that isn't intended to be edited.

  • How to import the IDOC into Seeburger BIC mapping designer

    Hi All,
    Can u please tell me how to import the IDOC into Seeburger BIC mapping desginer.
    I have scenario My scenario is SAP GTS 7.0.....>Seeburger BIS.....>Atlas customs system for Germany
    Idoc coming from SAP GTS to Seeburger BIS and then convert to EDIFACT send
    to Atlas systeam.
    Regards,
    Ramesh.

    Hi Ramesh
    BIC is a tool from Seeburger to transmit the XML data to EDI and EDI to XML.
    Seeburger mapping programs for transferring the XML data to EDI data and EDI data to XML data, but not for the structure changing, in the IR your mapping program is same.
    Receiver side you need AS2 Adapter for converting data to EDI target structure. we have many EDI versions are available, for converting the EDI to XML or vice versa AS2 gives some default mapping programs, xml to EDI or EDI to XML convertion done through this mapping programs.
    Seeburger AS adapter provider provides some mapping programs(for example EDI4010 version or other), if you are using the same EDI version(4010) then you can use that mapping programs, if the version is different then we can manually generate the Seeburger X2E and E2X mappings for the corresponding version and signal(850 or 810 or ..), for this seeburger provides the mapping designer tool (BIC), there we can develope the X2E and E2X mapping programs and configure this in the Seeburger work bench.
    Regards
    Ramesh

  • How to import csv data into Oracle using c#

    Hello,
    How to import csv data into Oracle using c #. Where data to be imported 3GB in size and number of rows 7512263. I've managed to import csv data into Oracle, but the time it takes about 1 hour. How to speed up the time it takes to import csv data into oracle. Thank you.
    This is my code:
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Diagnostics;
    using System.Threading;
    using System.Text.RegularExpressions;
    using System.IO;
    using FileHelpers;
    using System.Data.OracleClient;
    namespace sqlloader
    class Program
    static void Main(string[] args)
    int jum;
    int i;
    bool isFirstLine = false;
    FileHelperEngine engine = new FileHelperEngine(typeof(XL_XDR));
    //Connect To Database
    string constr = "Data Source=(DESCRIPTION=(ADDRESS_LIST="
    + "(ADDRESS=(PROTOCOL=TCP)(HOST= pt-9a84825594af )(PORT=1521 )))"
    + "(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=o11g)));"
    + "User Id=xl;Password=rahasia;";
    OracleConnection con = new OracleConnection(constr);
    con.Open();
    // To Read Use:
    XL_XDR[] res = engine.ReadFile("DataOut.csv") as XL_XDR[];
    jum = CountLinesInFile("DataOut.csv");
    FileInfo f2 = new FileInfo("DataOut.csv");
    long s2 = f2.Length;
    int jmlRecord = jum - 1;
    for (i = 0; i < jum; i++)
    ShowPercentProgress("Processing...", i, jum);
    Thread.Sleep(100);
    if (isFirstLine == false)
    isFirstLine = true;
    else
    string sql = "INSERT INTO XL_XDR (XDR_ID, XDR_TYPE, SESSION_START_TIME, SESSION_END_TIME, SESSION_LAST_UPDATE_TIME, " +
    "SESSION_FLAG, VERSION, CONNECTION_ROW_COUNT, ERROR_CODE, METHOD, HOST_LEN, HOST, URL_LEN, URL, CONNECTION_START_TIME, " +
    "CONNECTION_LAST_UPDATE_TIME, CONNECTION_FLAG, CONNECTION_ID, TOTAL_EVENT_COUNT, TUNNEL_PAIR_ID, RESPONSIVENESS_TYPE, " +
    "CLIENT_PORT, PAYLOAD_TYPE, VIRTUAL_TYPE, VID_CLIENT, VID_SERVER, CLIENT_ADDR, SERVER_ADDR, CLIENT_TUNNEL_ADDR, " +
    "SERVER_TUNNEL_ADDR, ERROR_CODE_2, IPID, C2S_PKTS, C2S_OCTETS, S2C_PKTS, S2C_OCTETS, NUM_SUCC_TRANS, CONNECT_TIME, " +
    "TOTAL_RESP, TIMEOUTS, RETRIES, RAI, TCP_SYNS, TCP_SYN_ACKS, TCP_SYN_RESETS, TCP_SYN_FINS, EVENT_TYPE, FLAGS, TIME_STAMP, " +
    "EVENT_ID, EVENT_CODE) VALUES (" +
    "'" + res.XDR_ID + "', '" + res[i].XDR_TYPE + "', '" + res[i].SESSION_START_TIME + "', '" + res[i].SESSION_END_TIME + "', " +
    "'" + res[i].SESSION_LAST_UPDATE_TIME + "', '" + res[i].SESSION_FLAG + "', '" + res[i].VERSION + "', '" + res[i].CONNECTION_ROW_COUNT + "', " +
    "'" + res[i].ERROR_CODE + "', '" + res[i].METHOD + "', '" + res[i].HOST_LEN + "', '" + res[i].HOST + "', " +
    "'" + res[i].URL_LEN + "', '" + res[i].URL + "', '" + res[i].CONNECTION_START_TIME + "', '" + res[i].CONNECTION_LAST_UPDATE_TIME + "', " +
    "'" + res[i].CONNECTION_FLAG + "', '" + res[i].CONNECTION_ID + "', '" + res[i].TOTAL_EVENT_COUNT + "', '" + res[i].TUNNEL_PAIR_ID + "', " +
    "'" + res[i].RESPONSIVENESS_TYPE + "', '" + res[i].CLIENT_PORT + "', '" + res[i].PAYLOAD_TYPE + "', '" + res[i].VIRTUAL_TYPE + "', " +
    "'" + res[i].VID_CLIENT + "', '" + res[i].VID_SERVER + "', '" + res[i].CLIENT_ADDR + "', '" + res[i].SERVER_ADDR + "', " +
    "'" + res[i].CLIENT_TUNNEL_ADDR + "', '" + res[i].SERVER_TUNNEL_ADDR + "', '" + res[i].ERROR_CODE_2 + "', '" + res[i].IPID + "', " +
    "'" + res[i].C2S_PKTS + "', '" + res[i].C2S_OCTETS + "', '" + res[i].S2C_PKTS + "', '" + res[i].S2C_OCTETS + "', " +
    "'" + res[i].NUM_SUCC_TRANS + "', '" + res[i].CONNECT_TIME + "', '" + res[i].TOTAL_RESP + "', '" + res[i].TIMEOUTS + "', " +
    "'" + res[i].RETRIES + "', '" + res[i].RAI + "', '" + res[i].TCP_SYNS + "', '" + res[i].TCP_SYN_ACKS + "', " +
    "'" + res[i].TCP_SYN_RESETS + "', '" + res[i].TCP_SYN_FINS + "', '" + res[i].EVENT_TYPE + "', '" + res[i].FLAGS + "', " +
    "'" + res[i].TIME_STAMP + "', '" + res[i].EVENT_ID + "', '" + res[i].EVENT_CODE + "')";
    OracleCommand command = new OracleCommand(sql, con);
    command.ExecuteNonQuery();
    Console.WriteLine("Successfully Inserted");
    Console.WriteLine();
    Console.WriteLine("Number of Row Data: " + jmlRecord.ToString());
    Console.WriteLine();
    Console.WriteLine("The size of {0} is {1} bytes.", f2.Name, f2.Length);
    con.Close();
    static void ShowPercentProgress(string message, int currElementIndex, int totalElementCount)
    if (currElementIndex < 0 || currElementIndex >= totalElementCount)
    throw new InvalidOperationException("currElement out of range");
    int percent = (100 * (currElementIndex + 1)) / totalElementCount;
    Console.Write("\r{0}{1}% complete", message, percent);
    if (currElementIndex == totalElementCount - 1)
    Console.WriteLine(Environment.NewLine);
    static int CountLinesInFile(string f)
    int count = 0;
    using (StreamReader r = new StreamReader(f))
    string line;
    while ((line = r.ReadLine()) != null)
    count++;
    return count;
    [DelimitedRecord(",")]
    public class XL_XDR
    public string XDR_ID;
    public string XDR_TYPE;
    public string SESSION_START_TIME;
    public string SESSION_END_TIME;
    public string SESSION_LAST_UPDATE_TIME;
    public string SESSION_FLAG;
    public string VERSION;
    public string CONNECTION_ROW_COUNT;
    public string ERROR_CODE;
    public string METHOD;
    public string HOST_LEN;
    public string HOST;
    public string URL_LEN;
    public string URL;
    public string CONNECTION_START_TIME;
    public string CONNECTION_LAST_UPDATE_TIME;
    public string CONNECTION_FLAG;
    public string CONNECTION_ID;
    public string TOTAL_EVENT_COUNT;
    public string TUNNEL_PAIR_ID;
    public string RESPONSIVENESS_TYPE;
    public string CLIENT_PORT;
    public string PAYLOAD_TYPE;
    public string VIRTUAL_TYPE;
    public string VID_CLIENT;
    public string VID_SERVER;
    public string CLIENT_ADDR;
    public string SERVER_ADDR;
    public string CLIENT_TUNNEL_ADDR;
    public string SERVER_TUNNEL_ADDR;
    public string ERROR_CODE_2;
    public string IPID;
    public string C2S_PKTS;
    public string C2S_OCTETS;
    public string S2C_PKTS;
    public string S2C_OCTETS;
    public string NUM_SUCC_TRANS;
    public string CONNECT_TIME;
    public string TOTAL_RESP;
    public string TIMEOUTS;
    public string RETRIES;
    public string RAI;
    public string TCP_SYNS;
    public string TCP_SYN_ACKS;
    public string TCP_SYN_RESETS;
    public string TCP_SYN_FINS;
    public string EVENT_TYPE;
    public string FLAGS;
    public string TIME_STAMP;
    public string EVENT_ID;
    public string EVENT_CODE;
    I hope someone can give me a solution. Thanks

    The fastest way is to use external tables or sql loader (sqlldr). (If you use external tables or sql loader, you don't use C# at all).

  • How to import one photo into iphoto 11

    how to import one photo into iphoto 11 in the exact order i want it?

    How many orders do you need to import one photo?
    Perhaps you need to explain that again
    Regards
    TD

  • How to import jsf libraries into eclipse

    hi,
    i want to run jsf applications in eclipse......
    i installed tomcat, j2sdk, eclipse, and tomcat plugin.... and configured everything....now i want to excute jsf applications in eclipse...how to import jsf libraries into eclipse....
    plz help me

    ok thank u
    i have other doubt
    i am using tomcatplugin instead of myeclipse plugin
    is tomcat plugin supports jsf or not?

  • How to import maven projects into jdev

    Hi.
    i have maven project created in other than jdev IDE.i am trying to import maven project into jdev.
    i configured maven in jdeveloper 11.1.1.4 with help manu check for updates.
    i am follwoing the [how to import maven project into jdev|http://www.oracle.com/technetwork/developer-tools/jdev/maven11g-090173.html#4]
    after updating my jdev with maven extensions,i could not see maven project in file|import project menu.
    why maven project is not appearing in jdev 11.1.1.4. file|import project menu ?
    please help appriciate your help

    Though it's not clear in that link, I believe those instructions to be for JDev 11.1.2.1.0, not 11.1.1.4.0. However somebody may correct me.
    CM.

  • How to import VLC downloads into final cut?

    my new final cut express does not accept VLC trailers which i downloaded ,
    can i transform VLC into Quicktime?

    i checked again
    those downloads i made with VLC
    actually are WMV (they only look like VLC
    so th question is :
    how cani import those WMVs into final cut express?
    thx for responding

  • How to import LDAP users into OSM users?

    Can you please guide how to import LDAP users into OSM users?
    Regards,
    Menaka

    Hi Menaka,
    Refer http://docs.oracle.com/cd/E35413_01/doc.722/e35414/adm_security.htm u would find the necessary soultion.
    Thanks..

  • How to import legacy data into apex tables

    Hi All,
    Please tell me How to import legacy data into apex tables.
    Thanks&Regards,
    Raghu

    SQL WorkshopUtilitiesData Workshop...
    you can import the data from already exported as (text/csv/xml) data
    Note: the table name and column name should be equal if the table already Existing table.

  • How to Import Shake scripts into FCP?

    Hello,
    There may be info here on the Forum, but I wanted to ask this anyway: I've made a Shake script and a File Out Node and rendered that, but when I go to FCP I can't import, or Open that file. I did make it a Quicktime file, but I'm sure that I'm missing something. Could someone tell me how to import Shake comps into FCP? Thanks!

    I guess I'm not sure what you mean, then - You can't render to a "script" file.
    What format was was the QuickTime file you produced with your File Out node? Are you trying to do something with an Alpha Channel? If so, you could use the Animation codec with colors set to Millions+ or a TIFF sequence (or PNG), or maybe ProRes 4444, but I don't know if Shake can output to that codec.
    More detail please,
    Patrick

Maybe you are looking for

  • How to determine errors in vi's

    I have been going through the tutorials, and somehow I created an error in the first tutorial that I can't figure out. When I try to run the vi from the front pannel, LabVIEW immediately jumps to the block diagram which is highlighted black and then

  • A pcui newbie question

    Hello everybody, I am quiet new to SAP. Now we try to integrate a standard mySAP CRM into a portal over/with PCUI. I down loaded a business package from service marketplace and several inst/admin guides. But to be honest I am not really sure how to a

  • "Download linked file as".....

    Whenever I use Safari 8 on Yosemite to download a file from OWA (Outlook Web Access) via "Download linked file as".....the file downloads as Attachment.ashx (this happens as well using "Download linked file". This does not happen when using Firefox,

  • I started a creative cloud student membership but Premiere Pro and After Effects are not in the app

    I started a creative cloud student membership but Premiere Pro and After Effects are not in the app and won't download from the adobe website, all that happens is that the creative cloud app opens and sends me to the list of programs available for do

  • Clone() method error

    When I compile the following program I get the "incompatible types error". Are not s1 and s2 of class Object?! public class CloneApp {      public static void main(String args[]) {           CloneApp s1, s2;           s1 = new CloneApp();           s