Plz-Tel me how to connect to the DME using JNDI

This is my final sem [ M.Tech IT] project work. Problem is " I cant get connection to the DME. Though i searched a lot from Google I cant get a solution. Plz help me to get connection to the Data Mining Engine. If possible plz mail me a detailed code or any links that says how to.
Thanks
Srinivasa Babu

I work in the power conversion industry and do these types of measurements all the time…
Do you want to just measure power quality or create and measure power quality problems?
What hardware are you using?
Power quality analyzer?
Programmable AC power source?
Fast Transient Generator?
Here is an example of what I do.
To create PQ problems I use a California Instruments AC source set to nominal power for the unit under test. Using Labview I program several transients consisting of fixed and random duration dropouts and surges. I also use a Schaffer Fast Transient Burst Generator to apply high frequency noise bursts directly onto power lines.
For measuring power quality I use a Voltech PM3000A power analyzer and Labview to measure everything from voltage, current, and frequency, to  harmonics and %THD
Message Edited by RTSLVU on 07-23-2008 10:31 AM

Similar Messages

  • CAN SOMEONE PLZ TELL ME HOW TO SHUT OFF THE LIGHT FROM FLASHING WHEN I RECIEVE A CALL?

    CAN SOMEONE PLZ TELL ME HOW TO SHUT OFF THE LIGHT FROM FLASHING WHEN I RECIEVE A CALL?

    Settings>general>accessibility>led flash alerts off

  • How to connect to the net using n8 as a modem thro...

    on the connection window for when im connecting my pc to the net, using my phone as a modem, can i use the bt homehub through my phone as a connection for my pc to save my bill going up, ive tried to connect it, but it isnt working any one else had any trouble?
    dev

    This feature doesn't support WLAN config.
    ‡Thank you for hitting the Blue/Green Star button‡
    N8-00 RM 596 V:111.030.0609; E71-1(05) RM 346 V: 500.21.009

  • How to connect to the internet using ethernet

    I have an iMac 10,1 and am unable to connect it to the internet using an ethernet cable.
    I have a more recent Mac Book and I just plugged in the ethernet cable to it, clicked the setting in Network settings, and I was connected.
    On the iMac it keeps saying, diagnostics can't fix it etc..?
    On the left panel in Diagnostics, Ethernet has a green light, Network Settings an orange light, and ISP a green light (internet and Server are Red).
    I'm using Comcast cable, and they just say the settings should appear automatically on a Mac (which they apparently did on my Mac Book!)
    Any suggestions, appreciated.
    Alan.

    From the menu bar, select 
               ▹ System Preferences... ▹ Network ▹ Advanced ▹ TCP/IP
    What values are shown for the following?
              Configure IPv4
              IPv4 Address
              Subnet Mask
              Router

  • How to validate if the baseBN using JNDI..?

    Hi,
    I have the directory server's admin username, admin password, system ip and port along with the BaseDN, how do i check whether the BaseDN that was entered by the user is valid one using JNDI..?
    thanks,
    Barani

    >
    gopalkrishna baliga wrote:
    > The field is defined as CHAR type and I can't change this type.
    Heard about string operator C ontains O nly (CO) ? SAP Help link: [http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb3516358411d1829f0000e829fbfe/content.htm]

  • Plz, tell me How can i solve the -- start:applet not initilized error..

    Here is my code
      * Sigmoid Function Generator
      * @author
      * @version
    *<applet code="Sigmoid" width=500 height=500></applet>
    import java.awt.*;
    public class Sigmoid extends java.applet.Applet implements Runnable
        private static final long serialVersionUID = 5622349801036468572L;
       boolean finished = false;          //indicates when the curve has been completed
       double k = .025;                   //non-linearity constant
       double y = k / 4;                  //output value
       double x = 0;                      //input value
       double dx = k / 10;                //plotting (or look-up table) increment
       int s = 200;                       //pixels per unit real (scaling factor)
       int H = 0, V = s - 1;              //window co-ordinate of graphical origin
       int X, Y;                          //dimensions (in pixels) of the applet window
       Image I = null;                    //reference for an off-screen image I
       Graphics i = null;                 //graphics context for the off-screen image
       long TF = 50;                      //total Time Frame for plotting update cycle
       long T;                            //time at which the next new cycle is due to begin
       Thread plotting;                   //declare a thread reference variable
       Font font;                         //and a font reference for annotations
       Color tr;                          //trace colour
       boolean TypeFlag = false;          //set for unipolar presentation
       public void init()
          {                                         //INITIALISE THE APPLET
          int Xy, Yx;                                 //co-ords of axis labels
          tr = new Color( 0, 128, 64);                //create special dark green for trace
          font = new Font("Dialog", Font.PLAIN, 12);  //choose the lettering font for this applet
          Dimension d = getSize();                    // instead of size() use this method, get size of window as given in HTML applet tag
          X = d.width; Y = d.height;                  //establish window width and height
          I = createImage(X, Y);                      //create the off-screen image I
          i = I.getGraphics();                        //graphics context reference for off-screen image
          if(getParameter("type").equals("bipolar"))
              {                                       //if applet parameter 'type' = 'bipolar'
             TypeFlag = true;                         //set the TypeFlag true;
             k = .011;                                //non-linearity constant
             y = 0;                                   //output value
             x = 0;                                   //input value
             dx = .0025;                              //plotting (or look-up table) increment
             s = 100;                                 //pixels per unit real (scaling factor)
             H = 100; V = 100;                        //window co-ordinate of graphical origin
             Xy = V + 10; Yx = H - 10;                //co-ords of axis letters
          else
             {                                         //if doing a unipolar graph
             Xy = V - 5; Yx = H + 5;                  //co-ords of axis letters
          i.setColor(Color.lightGray);                //set background colour for the off-screen image
          i.fillRect(0, 0, X, Y);                     //paint background of off-screen image
          i.setFont(font);                            //set up the annotation font
          i.setColor(Color.gray);                     //set colour for drawing the graph axes
          i.drawLine(0, V, X, V);                     //draw x axis
          i.drawLine(H, 0, H, Y);                     //draw y axis
          i.setColor(Color.black);                    //set colour for lettering
          i.drawString("X", X - 10, Xy);        
          i.drawString("Y", Yx, 10);                  //print the X and Y axis letters
          i.setColor(tr);                             //set colour to paint the trace on image
          T = System.currentTimeMillis() + TF;        //set end time for current update time frame
       public void paint(Graphics g)
       {         //set up the graphics
          g.drawImage(I, 0, 0, null);          //(re)draw from the off-screen image I
       public void update(Graphics g)
            {                                            //PLOT THE SIGMOID GRAPH
          if(x > 1 || y > 1)                   //if plot has reached edge of graph
             finished = true;                  //set the 'finished' flag
          else {                               //if not yet finished plotting graph
             int h = (int)(s * x);             //convert horizontal plot to pixels
             int v = (int)(s * y);             //convert vertical plot to pixels
             g.setColor(tr);                   //set colour to paint the trace on screen
             int a = h, b, c = V - v, d;       //simplify pixel co-ordinates
             if(TypeFlag)
                a = H - h; b = H + h;          //simplify pixel co-ordinates
                c = V + v; d = V - v;
                g.drawLine(b, d, b, d);        //do next plot in lower left quadrant
                i.drawLine(b, d, b, d);        //do next plot in lower left quadrant
                y += k * (1 - y);              //advance the output difference equation
             } else
                y += k * y * (1 - y);          //advance the output difference equation
             x += dx;                          //advance the input value
             g.drawLine(a, c, a, c);           //do next plot in upper right quadrant
             i.drawLine(a, c, a, c);           //do next plot in upper right quadrant
       public void run() {                            //run the plotting thread
          while(true) {                               //permanent loop broken by external event
             if(!finished) repaint();                 //if not yet finished, do next plot
             long s = T - System.currentTimeMillis(); //get time remaining in this cycle's time frame
             if (s < 5) s = 5;                        //in case host PC is too slow for ideal trace speed
             try {
                 Thread.currentThread().sleep(s);    //sleep for remaining time
             catch (InterruptedException e)
                 System.out.println(e);
                                                        //allow browser events to break the thread
                 }                                        //happens if you return to applet's HTML page
             T = System.currentTimeMillis() + TF;     //set finish time of next time frame
       public void start() {                          //Start program thread by
          plotting = new Thread(this);                //creating the thread object
          plotting.start();                           //and starting it running
       }                                              //[returns a call to run()]
    // public void stop() {plotting.stop();}          //Stop program thread
    private volatile Thread blinker;
        public void stop() {                           // new method to stop thread
            blinker = null;

    Hi there Abdullah ch,
    You may find the information in the article below helpful.
    iOS: Understanding Restrictions (parental controls) 
    Important: If you lose or forget your Restrictions passcode, you'll need to perform a factory restore to remove it.
    -Griff W.  

  • Can anyone tell me how to connect ipad to tv using a composite cable as mine doesn't seem to connect. Thanks

    II'm trying to view ipad content on tv using a composite cable but it doesn't seem to connect.
    Any help gratefully received

    II'm trying to view ipad content on tv using a composite cable but it doesn't seem to connect.
    Any help gratefully received

  • How to display all the surveys using content query web part

    Can you please tell me how to display all the surveys using content query web part in more details? I also created a subsite and multiple surveys in that site. Then, I inserted a Content Query Web Part and select the List Type to be "Survey",
    however, it returned nothing. Did I miss anything?

    Hi,
    OOTB Survey List does not contain any
    Content Types and it has the following structure:
    Response entry is represented by
    List Item
    Response entry consist of questions and answers, where Question correspond to
    Field and Answer to Item value respectively.
    For querying Survey List via CQWP  the following properties could be used
    BaseType 
    <Lists BaseType="4">
    ServerTemplate
    <Lists ServerTemplate="102">
    Example
    To retrieve all the responses from Survey lists, specify List Type property as shown on picture
    Reference:
    http://stackoverflow.com/questions/17280778/display-all-surveys-using-content-query-web-part
    Best Regards,
    Eric
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • How to connect from java without using oracle client installation

    hi ,
    Please tell me how to connect from java without using oracle client
    Thanks & Regars

    http://www.orafaq.com/wiki/JDBC#Thin_driver

  • Okay so my iphone says its connected to the internet but the internet only works for games so i cant use things like facebook twitter or youtube PLZ TELL ME HOW TO FIX THISf

    Okay so my iphone says its connected to the internet but the internet only works for games so i cant use things like facebook twitter or youtube PLZ TELL ME HOW TO FIX THISf by the way it an iphone 4s and i have never encountered this problem before my dads iphone is the same after we updated to ios 8.1.1 but my mum hasnt updated yet and hers is fine

    If deleting then reinstalling the apps doesn't work, then contact the app developer for support.
    It sounds, though, like your internet connection is simply very slow.
    Try making a backup, then restoring the iPhone as new, and testing again.

  • I have iPhoto 11 with Lion and when I try to post photos into MobileMe in Share I get the message that iPhoto is not connected to internet. Can anyone tell me how to connect iPhoto to internet?

    I have iPhoto 11 with Lion and when I try to post photos into MobileMe in Share I get the message that iPhoto is not connected to internet. Can anyone tell me how to connect iPhoto to internet?

    My solution, which is not much, is to restart iPhoto and it then connects to the Internet. This has been an ongoing unsolved problem.

  • Downloaded Reader XI and started to recieve error 40000015, found the fourm with the patch to the registery fix, now it tells me unable to connect to the server. To many bugs with the reader, how do reinstall an older version?

    downloaded Reader XI and started to recieve error 40000015, found the fourm with the patch to the registery fix, now it tells me unable to connect to the server. To many bugs with the reader, how do reinstall an older version?
    I click on the launcher and nothing happens, 15 min later it will tell cant connect to the server.
    My computer is a windows 8.1; 64 bit operating system. I am stationed in South Korea, but that should not affect the program. Help please.
    John

    Hi johnd83157268,
    Sorry for the inconvenience that has caused to you.
    Could you please let me know what changes have you made in the registry.
    You might need to uninstall Adobe Reader from Control Panel and try install it again from the following link:
    Adobe Reader Install for all versions
    Please ensure that you are logged in as administrator and anti-virus is disabled as that might interrupt installation.
    Try again and then let me know.
    Regards,
    Anubha

  • Can you plz tell m how to write Design Strategy in the scenario IDoc-- File

    Hi,
    can any body plz tell me how to write Design strategy, Preprocessing logic and post processing logic in the scenario IDoc-->File.
        My idoc is:
                Message Type: ZMMIPORDCHG
                Basic Type  : ORDERS05.
    lookup's are available.

    Hi,
    take a look at this document for an IDOC to IDOC Scenario,
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/cdded790-0201-0010-6db8-beb9bb2b2660
    Use it as a template to design one side of the Interface and also take a look at this blog,
    /people/prateek.shah/blog/2005/06/08/introduction-to-idoc-xi-file-scenario-and-complete-walk-through-for-starters
    Regards,
    Bhavesh

  • Plz tell me how I can get back from the recovery mode to my normal mode without lossing data ... actually I was trying to update ios 7 in my 4s so then mobile stuck into recovery mode...plz help?

    plz tell me how I can get back from the recovery mode to my normal mode without lossining data...I stuck in this mode while I was try to update ios 7 in my 4s

    If it's in recovery mode, anything on the phone is already gone.  Restore the phone using iTunes, then restore it from your last backup. If you've been backing up on a regular basis as intended, you won't lose anything except what's changed since the last backup.

  • Dear frnz, i am doing my prjct in Lview. ie online PQ monitoring​. i need to simulate the system with disturbanc​es generated in Lview. so can any bdy plz tel me how to genrte PQ problems in labview. thanks in advance..

    dear frnz, i am doing my prjct in Lview. ie online PQ monitoring. i need to simulate the system with disturbances generated in Lview. so can any bdy plz tel me how to genrte PQ problems in labview. thanks in advance..

    I work in the power conversion industry and do these types of measurements all the time…
    Do you want to just measure power quality or create and measure power quality problems?
    What hardware are you using?
    Power quality analyzer?
    Programmable AC power source?
    Fast Transient Generator?
    Here is an example of what I do.
    To create PQ problems I use a California Instruments AC source set to nominal power for the unit under test. Using Labview I program several transients consisting of fixed and random duration dropouts and surges. I also use a Schaffer Fast Transient Burst Generator to apply high frequency noise bursts directly onto power lines.
    For measuring power quality I use a Voltech PM3000A power analyzer and Labview to measure everything from voltage, current, and frequency, to  harmonics and %THD
    Message Edited by RTSLVU on 07-23-2008 10:31 AM

Maybe you are looking for

  • Unable to update firmware in my Acrobat X standard

    I've purchase my Acrobat X standard from your web site and downloaded it onto my computer. After installing the software, it requested that i update my software. i tried downloading the software but everytime after downloading, a error message came u

  • Not able to add program to report group

    Hi All, I am getting following error while adding program to report group. APP-FND-01590 - This group name is already in use. Please enter unique name. Cause: Report security group name along with application name uniquely identifies a report securit

  • Consuming Cloud Web Services (SFDC) from ABAP

    We are implementing a project where we integrate with SalesForce.Com (SFDC). We received the Salesforce.com Enterprise WSDL API and created an ABAP proxy based on it. http://www.salesforce.com/us/developer/docs/api/index.htm However we have 2 issues

  • Third Party Attendance System Integration with Oracle Payroll

    Hi, How to integrate Third Party Attendance System like Bio-Metric System with Oracle Payroll. Please help me in this regard. Thanks in Advance,

  • How can i make a field mandatory in SO header .

    Dear expart How can i make Customer group  mandatory in SO header data.Under sales tab pricing and static. Plz give me spro or the direct transaction code if any. Yeasin