Need to grab the client's machine ID

I am working on a Web-Enabled Application and I need to grab the machine identification (Machine Name or TCPIP Address) of the client (MS NT). Does anyone know which package/class I need to use to do this? I have looked around, and cannot seem to find the one I need.
John

Not a problem,
BTW don't blame me if it doesn't work, as I've found with Java, it never quite works how the documentation says it should.
I would check that it return the actual IP address and not the 127.0.0.0 IP for localhost.
Chris

Similar Messages

  • Need to grab the data from Web Page and send it to SAP using PI

    Hello Experts,
    I need to grab the exchanges rates from the below link.
    http://www.cbr.ru/scripts/XML_daily.asp?date_req=09-06-2011.
    This link returns an XML . I need to get the data from this XML page and post it to SAP ECC using PI.
    My requirement is that, process should start from the ECC and grabs the data from the web page which gives you the XML and post this data into ECC using PI. We have a RFC written in ECC side to post the data in ECC.
    Please help me to identify the adaptor's needed and what should I need to do to initiate the process from ECC.
    Would it be a Async or Sync process ?
    I would really appreciate the inputs.
    Thanks.
    Gaurav.

    Hi,
         Any particular reason that you want to go for a sync process as then you would need to either use a BPM (RFC to BPM where you use sync/async bridge to get the xml file from the specified link and then send the response back to ECC) or go for a synchronous Java proxy on the receiver side which will grab the exchange rates and then map back to the RFC response structure. In this case, you can avoid the BPM.
    Else, as mentioned in Michal's blog, you can break it up into 2 seperate scenarios. RFC/Proxy to File and then File to IDoc/RFC/Proxy which will get the exchange rates into ECC.
    Another option can be Proxy --> PI --> ECC(IDoc/Proxy/RFC). Here you can grab the exchange rates from the link in your message mapping through a UDF.
    Regards

  • How do I pick up the attachment from the client's machine, in a web-based

    Hi Friends,
    I just wanted some help from u all.
    How do I pick up the attachment from the client's machine, in a web-based email system?
    I have done a prog. where a file attachment can be done sitting on the server machine...but not on the client.
    Thank u .
    do mail me to [email protected]

    use the input type file tag in html page and get connected to some of your servlet and then open the streams to read the file byte by byte.

  • Applet needing to access the client system

    Hi,
    Ive got an applet that I need to be able to launch a .exe that exists on a client's computer...the applet is going to be signed etc.
    Ive read that it can do this if the client running it explicitly allows the applet access to the required resources...
    My problem is I need the applet to run with as little hastle as possible....preferrably it pops up a security warning, says who the applet is from and if the user accepts the certificate, the applet has access to what it needs...I cant have the client having to go download this or that or bring up another program to grant access.
    I know that this is possible through Active X controls and basically I just need to know whether or not its even worth while attempting to develop a solution in Java. If you can give me any info at all in any level of detail (the more the better) I would be eternally in your debt. (Ive got 2 days to solve this problem.)
    Thankyou for your time.
    Sincerely,
    Nickolas Fellows
    [email protected]

    Oh hey,
    Ive been looking at something call authenticode as a solution....anyone know if this will give me the effect I desire? I wish I could get away with sticking with pure Java tools but this is war!!
    Thx,
    Nick
    [email protected]

  • I need to grab the UPC for Each and place it under Case unit

    Here's what I have....
    Product:      UPC              Unit of Measure
    12005         123456           EA
    12005          789000          CS
    I want it to look like this:
    Populate the EA upc into CS upc, basically swap it.
    Product:        UPC               Unit of Measure
    12005          123456              CS
    thanks.

    I think you might have got it wrong. Let's try this again:
    1) Create a formula named 'CS' with this code:
    If {Unit of Measure} = "EA" then {UPC}
    2) Create another formula named 'Display' with this code and place it on the Details section:
    If {Unit of Measure} = "CS" then Maximum({@CS}, {@Grp1}) else {UPC}
    -Abhilash

  • Stopping the player at the client machine independent of the server playing

    can anyone help me i need to allow the client to stop a player independent of the server transmitting the movie. can anyone help me plz!!
    here are rhe codes for the client and the client gui
    import javax.swing.*;
    import javax.swing.UIManager;
    import java.awt.*;
    import java.awt.event.*;
    public class ClientChoice
         public static void main(String args[])
              try
                             UIManager.setLookAndFeel(UIManager.getCrossPlatformLookAndFeelClassName());
                        catch(Exception e)
         }//main
         JFrame frame=new JFrame("--- New Line Movie ---");
         //Create the menu bar
         JMenuBar menuBar;
         JMenu menu;
         menuBar = new JMenuBar();
         //Build the file menu in the menu bar
         menu = new JMenu("File");
         menu.setMnemonic(KeyEvent.VK_F);
         menuBar.add(menu);
         JMenuItem menuItem= new JMenuItem("Exit",KeyEvent.VK_X);
         menuItem.addActionListener(new ActionListener()
              public void actionPerformed(ActionEvent e)
                        System.exit(0);
         menu.add(menuItem);
         //Build help menu in the menu bar.
         menu = new JMenu("Help");
         menu.setMnemonic(KeyEvent.VK_H);
         menuBar.add(menu);
         JMenuItem help_item=new JMenuItem("Help Topics",KeyEvent.VK_T);
         menu.add(help_item);
         JMenuItem about_item=new JMenuItem("About Us");
         menu.add(about_item);
         frame.setJMenuBar(menuBar);
              ImageIcon icon=new ImageIcon("images/potter.jpg","");
              JButton clickmovie=new JButton(icon);
              //final JLabel latest=new JLabel("<html><caption>Harry Potter</caption></html>");
              //clickmovie.add(latest);
              final JLabel welcome1=new JLabel("<html><font color=blue face=arial size=3><strong>New Line Movie</strong> gives you the possibility to view your favorite movies.<br>You can choose your category of movies below and click on any movie to get more information about it. <br>Latest News about new movies are also available. ENJOY!!!</font></html>");
              frame.getContentPane().add(welcome1,BorderLayout.EAST);
              final JLabel copyright=new JLabel("<html><font color=blue face=arial size=3><p align=center>&copy Copyright 2004</p></font></html>");
              //frame.getContentPane().add(copyright,BorderLayout.EAST);
              JPanel actionPanel=new JPanel();
              JPanel cartoonPanel=new JPanel();
              JPanel comedyPanel=new JPanel();
              JPanel fictionPanel=new JPanel();
              JPanel mainPanel=new JPanel();
              mainPanel.setLayout(new GridLayout(2,1,5,5));
              mainPanel.setBorder(BorderFactory.createEmptyBorder(5,5,5,5));
              mainPanel.add(actionPanel);
              mainPanel.add(cartoonPanel);
              mainPanel.add(comedyPanel);
              mainPanel.add(fictionPanel);
              //mainPanel.add(copyright);
              actionPanel.setBorder(BorderFactory.createCompoundBorder(BorderFactory.createTitledBorder("Action"),BorderFactory.createEmptyBorder(5,5,5,5)));
              cartoonPanel.setBorder(BorderFactory.createCompoundBorder(BorderFactory.createTitledBorder("Cartoon"),BorderFactory.createEmptyBorder(5,5,5,5)));
              comedyPanel.setBorder(BorderFactory.createCompoundBorder(BorderFactory.createTitledBorder("Comedy"),BorderFactory.createEmptyBorder(5,5,5,5)));
              fictionPanel.setBorder(BorderFactory.createCompoundBorder(BorderFactory.createTitledBorder("Science Fiction"),BorderFactory.createEmptyBorder(5,5,5,5)));
              frame.getContentPane().add(mainPanel,BorderLayout.SOUTH);
              frame.getContentPane().add(clickmovie,BorderLayout.WEST);
              // Create combo box with action movies choices
              final JComboBox actionChoices;
              String[] actionmovie={"-Select a movie-","X-Men","Spiderman"};
              actionChoices=new JComboBox(actionmovie);
              actionChoices.setSelectedIndex(0);
              actionPanel.add(actionChoices);
              actionChoices.addActionListener(new ActionListener()
                   public void actionPerformed(ActionEvent e)
                        JComboBox cb = (JComboBox)e.getSource();
                        String act = (String)cb.getSelectedItem();
                        if(act=="X-Men")
                             JFrame action_xmen= new JFrame("--- New Line Movie: X-Men --- ");
                   action_xmen.setSize(400,350);
                   JPanel main=new JPanel();
                   main.setLayout(new GridLayout(2,1,5,5));
                             main.setBorder(BorderFactory.createEmptyBorder(5,5,5,5));
                             ImageIcon icon_men=new ImageIcon("images/x-men.jpg","");
                   JButton clickmovie_men=new JButton(icon_men);
                   final JLabel xmen_overview=new JLabel("<html><font color=blue face=arial size=3><b>Title:</b></font> <font color=black><strong>X-Men 2 </strong></font> <br><br><font color=blue face=arial size=3><b>Starring:</b> Hugh JACKMAN and Halle BARRY<br><br><b>Story:</b> The time has come for those who are different to stand united. <br><br>A military officer with a link to Wolverine's mysterious past conspires <br><br>to eradicate the mutant population for once and all. In order to defeat <br><br>this new menace, the X-men will be forced to join forces with Magneto. <br><br><b>Duration:</b> 1hr45min </font></html>");
                   final JLabel copyright=new JLabel("<html><font color=blue face=arial size=3><p align=center>&copy Copyright 2004</p></font></html>");
                             action_xmen.getContentPane().add(copyright,BorderLayout.SOUTH);
                   JButton view=new JButton("View");
                   view.setLayout(new BoxLayout(view,BoxLayout.X_AXIS));
                                            view.add(Box.createHorizontalGlue());
                             view.add(Box.createRigidArea(new Dimension(30,0)));
                   view.setMinimumSize(new Dimension(20,100));
                   view.setPreferredSize(new Dimension(20,100));
                   view.setMaximumSize(new Dimension(Short.MAX_VALUE,Short.MAX_VALUE));
                   view.setMnemonic('v');
                   view.addActionListener(new ActionListener()
                                  public void actionPerformed(ActionEvent e)
                                            String a="172.22.45.44/42050";
                                            String b="172.22.45.44/42052";
                                            String argv=a+b;
                                            Client cl= new Client(a,b);
                                            String[] c={a,b};
                                            cl.mainCl(c);
                                            //this is the code i added so that on clicking the view button
                                            //the client is automatically connected to the server and the player
                                            //plays on the current machine
                   main.add(clickmovie_men);
                             main.add(view);
                             //action_xmen.getContentPane().add(view,BorderLayout.SOUTH);
                   action_xmen.getContentPane().add(main,BorderLayout.WEST);
                   action_xmen.getContentPane().add(xmen_overview,BorderLayout.EAST);
                   action_xmen.show();
                        else if(act=="Spiderman")
                             JFrame action_spider= new JFrame("--- New Line Movie: Spiderman --- ");
                             action_spider.setSize(400,350);
                   action_spider.show();
              //Create combo box with cartoon movies choices
              JComboBox cartoonChoices=null;
              String[] cartoonmovie={"-Select a movie-","Le Roi Lion"};
              cartoonChoices=new JComboBox(cartoonmovie);
              cartoonChoices.setSelectedIndex(0);
              cartoonPanel.add(cartoonChoices);
              //cartoonChoices.addActionListener();
              //Create combo box with comedy movies choices
              JComboBox comedyChoices=null;
              String[] comedymovie={"-Select a movie-"};
              comedyChoices=new JComboBox(comedymovie);
              comedyChoices.setSelectedIndex(0);
              comedyPanel.add(comedyChoices);
              //comedyChoices.addActionListener();
              //Create combo box with fiction movies choices
              JComboBox fictionChoices=null;
              String[] fictionmovie={"-Select a movie-","ET"};
              fictionChoices=new JComboBox(fictionmovie);
              fictionChoices.setSelectedIndex(0);
              fictionPanel.add(fictionChoices);
              //fictionChoices.addActionListener();
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              frame.pack();
              frame.setVisible(true);
    //Implement player function here
    import java.io.*;
    import java.awt.*;
    import java.net.*;
    import java.awt.event.*;
    import java.util.Vector;
    import javax.media.*;
    import javax.media.rtp.*;
    import javax.media.rtp.event.*;
    import javax.media.rtp.rtcp.*;
    import javax.media.protocol.*;
    import javax.media.protocol.DataSource;
    import javax.media.format.AudioFormat;
    import javax.media.format.VideoFormat;
    import javax.media.Format;
    import javax.media.format.FormatChangeEvent;
    import javax.media.control.BufferControl;
    * Client to receive RTP transmission using the RTPConnector.
    public class Client implements ReceiveStreamListener, SessionListener,
         ControllerListener
    String sessions[] = null;
    RTPManager mgrs[] = null;
    Vector playerWindows = null;
    boolean dataReceived = false;
    Object dataSync = new Object();
    public Client(String sessions[]) {
         this.sessions = sessions;
    public Client(String a, String b)
         }//constructor
    protected boolean initialize() {
    try {
         mgrs = new RTPManager[sessions.length];
         playerWindows = new Vector();
         SessionLabel session;
         // Open the RTP sessions.
         for (int i = 0; i < sessions.length; i++) {
              // Parse the session addresses.
              try {
              session = new SessionLabel(sessions);
              } catch (IllegalArgumentException e) {
              System.err.println("Failed to parse the session address given: " + sessions[i]);
              return false;
              System.err.println(" - Open RTP session for: addr: " + session.addr + " port: " + session.port + " ttl: " + session.ttl);
              mgrs[i] = (RTPManager) RTPManager.newInstance();
              mgrs[i].addSessionListener(this);
              mgrs[i].addReceiveStreamListener(this);
              // Initialize the RTPManager with the RTPSocketAdapter
              mgrs[i].initialize(new RTPSocketAdapter(
                             InetAddress.getByName(session.addr),
                             session.port, session.ttl));
              // You can try out some other buffer size to see
              // if you can get better smoothness.
              BufferControl bc = (BufferControl)mgrs[i].getControl("javax.media.control.BufferControl");
              if (bc != null)
              bc.setBufferLength(350);
    } catch (Exception e){
    System.err.println("Cannot create the RTP Session: " + e.getMessage());
    return false;
         // Wait for data to arrive before moving on.
         long then = System.currentTimeMillis();
         long waitingPeriod = 30000; // wait for a maximum of 30 secs.
         try{
         synchronized (dataSync) {
              while (!dataReceived &&
                   System.currentTimeMillis() - then < waitingPeriod) {
              if (!dataReceived)
                   System.err.println(" - Waiting for RTP data to arrive...");
              dataSync.wait(1000);
         } catch (Exception e) {}
         if (!dataReceived) {
         System.err.println("No RTP data was received.");
         close();
         return false;
    return true;
    public boolean isDone() {
         return playerWindows.size() == 0;
    * Close the players and the session managers.
    protected void close() {
         for (int i = 0; i < playerWindows.size(); i++) {
         try {
              ((PlayerWindow)playerWindows.elementAt(i)).close();
         } catch (Exception e) {}
         playerWindows.removeAllElements();
         // close the RTP session.
         for (int i = 0; i < mgrs.length; i++) {
         if (mgrs[i] != null) {
    mgrs[i].removeTargets( "Closing session from AVReceive3");
    mgrs[i].dispose();
              mgrs[i] = null;
    PlayerWindow find(Player p) {
         for (int i = 0; i < playerWindows.size(); i++) {
         PlayerWindow pw = (PlayerWindow)playerWindows.elementAt(i);
         if (pw.player == p)
              return pw;
         return null;
    PlayerWindow find(ReceiveStream strm) {
         for (int i = 0; i < playerWindows.size(); i++) {
         PlayerWindow pw = (PlayerWindow)playerWindows.elementAt(i);
         if (pw.stream == strm)
              return pw;
         return null;
    * SessionListener.
    public synchronized void update(SessionEvent evt) {
         if (evt instanceof NewParticipantEvent) {
         Participant p = ((NewParticipantEvent)evt).getParticipant();
         System.err.println(" - A new participant had just joined: " + p.getCNAME());
    * ReceiveStreamListener
    public synchronized void update( ReceiveStreamEvent evt) {
         RTPManager mgr = (RTPManager)evt.getSource();
         Participant participant = evt.getParticipant();     // could be null.
         ReceiveStream stream = evt.getReceiveStream(); // could be null.
         if (evt instanceof RemotePayloadChangeEvent) {
         System.err.println(" - Received an RTP PayloadChangeEvent.");
         System.err.println("Sorry, cannot handle payload change.");
         System.exit(0);
         else if (evt instanceof NewReceiveStreamEvent) {
         try {
              stream = ((NewReceiveStreamEvent)evt).getReceiveStream();
              DataSource ds = stream.getDataSource();
              // Find out the formats.
              RTPControl ctl = (RTPControl)ds.getControl("javax.media.rtp.RTPControl");
              if (ctl != null){
              System.err.println(" - Recevied new RTP stream: " + ctl.getFormat());
              } else
              System.err.println(" - Recevied new RTP stream");
              if (participant == null)
              System.err.println(" The sender of this stream had yet to be identified.");
              else {
              System.err.println(" The stream comes from: " + participant.getCNAME());
              // create a player by passing datasource to the Media Manager
              Player p = javax.media.Manager.createPlayer(ds);
              if (p == null)
              return;
              p.addControllerListener(this);
              p.realize();
              PlayerWindow pw = new PlayerWindow(p, stream);
              playerWindows.addElement(pw);
              // Notify intialize() that a new stream had arrived.
              synchronized (dataSync) {
              dataReceived = true;
              dataSync.notifyAll();
         } catch (Exception e) {
              System.err.println("NewReceiveStreamEvent exception " + e.getMessage());
              return;
         else if (evt instanceof StreamMappedEvent) {
         if (stream != null && stream.getDataSource() != null) {
              DataSource ds = stream.getDataSource();
              // Find out the formats.
              RTPControl ctl = (RTPControl)ds.getControl("javax.media.rtp.RTPControl");
              System.err.println(" - The previously unidentified stream ");
              if (ctl != null)
              System.err.println(" " + ctl.getFormat());
              System.err.println(" had now been identified as sent by: " + participant.getCNAME());
         else if (evt instanceof ByeEvent) {
         System.err.println(" - Got \"bye\" from: " + participant.getCNAME());
         PlayerWindow pw = find(stream);
         if (pw != null) {
              pw.close();
              playerWindows.removeElement(pw);
    * ControllerListener for the Players.
    public synchronized void controllerUpdate(ControllerEvent ce) {
         Player p = (Player)ce.getSourceController();
         if (p == null)
         return;
         // Get this when the internal players are realized.
         if (ce instanceof RealizeCompleteEvent) {
         PlayerWindow pw = find(p);
         if (pw == null) {
              // Some strange happened.
              System.err.println("Internal error!");
              System.exit(-1);
         pw.initialize();
         pw.setVisible(true);
         p.start();
         if (ce instanceof ControllerErrorEvent) {
         p.removeControllerListener(this);
         PlayerWindow pw = find(p);
         if (pw != null) {
              pw.close();
              playerWindows.removeElement(pw);
              //p.close(); //i added to know if player close when click
         System.err.println("Client internal error: " + ce);
    * A utility class to parse the session addresses.
    class SessionLabel {
         public String addr = null;
         public int port;
         public int ttl = 1;
         SessionLabel(String session) throws IllegalArgumentException {
         int off;
         String portStr = null, ttlStr = null;
         if (session != null && session.length() > 0) {
              while (session.length() > 1 && session.charAt(0) == '/')
              session = session.substring(1);
              // Now see if there's a addr specified.
              off = session.indexOf('/');
              if (off == -1) {
              if (!session.equals(""))
                   addr = session;
              } else {
              addr = session.substring(0, off);
              session = session.substring(off + 1);
              // Now see if there's a port specified
              off = session.indexOf('/');
              if (off == -1) {
                   if (!session.equals(""))
                   portStr = session;
              } else {
                   portStr = session.substring(0, off);
                   session = session.substring(off + 1);
                   // Now see if there's a ttl specified
                   off = session.indexOf('/');
                   if (off == -1) {
                   if (!session.equals(""))
                        ttlStr = session;
                   } else {
                   ttlStr = session.substring(0, off);
         if (addr == null)
              throw new IllegalArgumentException();
         if (portStr != null) {
              try {
              Integer integer = Integer.valueOf(portStr);
              if (integer != null)
                   port = integer.intValue();
              } catch (Throwable t) {
              throw new IllegalArgumentException();
         } else
              throw new IllegalArgumentException();
         if (ttlStr != null) {
              try {
              Integer integer = Integer.valueOf(ttlStr);
              if (integer != null)
                   ttl = integer.intValue();
              } catch (Throwable t) {
              throw new IllegalArgumentException();
    * GUI classes for the Player.
    class PlayerWindow extends Frame {
         Player player;
         ReceiveStream stream;
         PlayerWindow(Player p, ReceiveStream strm) {
         player = p;
         stream = strm;
         public void initialize() {
         add(new PlayerPanel(player));
         public void close() {
         player.close();
         setVisible(false);
         dispose();
         public void addNotify() {
         super.addNotify();
         pack();
    * GUI classes for the Player.
    class PlayerPanel extends Panel {
         Component vc, cc;
         PlayerPanel(Player p) {
         setLayout(new BorderLayout());
         if ((vc = p.getVisualComponent()) != null)
              add("Center", vc);
         if ((cc = p.getControlPanelComponent()) != null)
              add("South", cc);
         public Dimension getPreferredSize() {
         int w = 0, h = 0;
         if (vc != null) {
              Dimension size = vc.getPreferredSize();
              w = size.width;
              h = size.height;
         if (cc != null) {
              Dimension size = cc.getPreferredSize();
              if (w == 0)
              w = size.width;
              h += size.height;
         if (w < 160)
              w = 160;
         return new Dimension(w, h);
    public static void mainCl(String argv[])
         if (argv.length == 0)
         prUsage();
         Client avReceive = new Client(argv);
         if (!avReceive.initialize()) {
         System.err.println("Failed to initialize the sessions.");
         System.exit(-1);
         // Check to see if Client is done.
         try {
         while (!avReceive.isDone())
              Thread.sleep(1000);
         } catch (Exception e) {}
         System.err.println("Exiting Client");
    static void prUsage() {
         System.err.println("Usage: Client <session> <session> ...");
         System.err.println(" <session>: <address>/<port>/<ttl>");
         System.exit(0);
    }// end of Client

    hi,
    i have try compile your source code...anyway, there is 28 errors..I m not sure where is the errors come from. Currently , i m working on the same project as you. Trying to play the media at client machine, but stil can't manage to do so. Can i have your email address? I want to consult you a bit about my project .Is it ok? Thanks =).

  • Time on the client machine

    Hi,
    Thanks for reading my post in advance.
    I am working on this code to read the time on the client machine which could be locations outside the USA also.
    Is there a way I can code so that I can get what the time running on the client machine.
    I did some research on the internet and a found a code which gives some ideas about the date format on the client machine.
    Is there a way we can modify this code so we can see the time client running on the client's machine.
    <%
    // get client locale
    java.util.Locale locale = request.getLocale();
    // get Dateformat for client's locale
    java.text.DateFormat dateFormat =
    java.text.DateFormat.getDateTimeInstance(
    java.text.DateFormat.LONG,
    java.text.DateFormat.LONG, locale);
    %>
    <%=dateFormat.format( new java.util.Date() ) %>

    Is there a way we can modify this code so we can see the time client running on the client's machine.Use JavaScript.

  • Time of the client machine

    Hi,
    Thanks for reading my post in advance.
    I am working on this code to read the time on the client machine which could be locations outside the USA also.
    Is there a way I can code so that I can get what the time running on the client machine.
    I did some research on the internet and a found a code which gives some ideas about the date format on the client machine.
    Is there a way we can modify this code so we can see the time client running on the client's machine.
    <%
    // get client locale
    java.util.Locale locale = request.getLocale();
    // get Dateformat for client's locale
    java.text.DateFormat dateFormat =
         java.text.DateFormat.getDateTimeInstance(
              java.text.DateFormat.LONG,
              java.text.DateFormat.LONG, locale);
    %>
    <%=dateFormat.format( new java.util.Date() ) %>

    You have mentioned in your post that you are trying to find out the time on the Client Machine. It does not clarify if code running on server itself is acting as client or it is the code running on the browser.
    If it is the browser then the code that you have posted may not be of any help as Java does not run on the browser(except in applet). You will have to use the Date class of JavaScript. If you make an instance of this class in JavaScript with default constructor it will be initialized by the time of the machine where the browser is running.
    If you want to have the time of the server where your jsp code is converted into html, you can use the GregorianCalendar class. The default constructor initialize itself with the date and time of the machine on which the application/web server is running. You can use the methods of this class to retrieve the different parameters of date and time.
    HTH.

  • Need to customize the variable info sent to a query string

    Hello,
    I have run into a small issue while trying to send user data
    selected from 1 DateField and 3 ComboBoxes in a form. Everything is
    sending correctly except for the DateField, when sent is places
    much un-needed info in the query string.
    For example, this is what I need it to look like in the query
    string:
    https://reservations.ihotelier.com/onescreen.cfm?LanguageID=1&HotelID=13337&DateIn=09%2F28 %2F2006&Children=1&Adults=3&Length=3
    Here is what is actually showing up right now:
    https://reservations.ihotelier.com/onescreen.cfm?LanguageID=1&HotelID=13337&DateIn=Thu%20S ep%2028%2000%3A00%3A00%20GMT%2D0700%202006&Children=1&Adults=3&Length=3
    You'll notice that everything is fine except for the DateIn
    variable. So, I guess I'm asking if anyone knows how I can
    customize the data that is sent to the query string, with specific
    characters (example: I don't need "%20" in the DateIn, however I
    need those to be "%2F"), as well as the name of the month to be
    just the month number. I need to get rid of all the time
    information in the DateIn variable. Please, any help would be
    greatly appreciated! Thank you in advance! :)
    Here is my action script right now:

    The functionality of the GIS map was important. I was given the email for the person in charge of the map, who helped me out. It appeared that he was able to outline the road in the neighborhood that I needed to focus on. That provided a parcel ID, which in turn made it possible to focus in on the proper area. This is supposition on my part; perhaps he has other info that gave him the parcel ID.
    I'm not a huge fan of Flash on other than desktops and laptops, but it is what it is, client needs to use it, I need to help the client out!
    B

  • Listing contents of the client's CD/flash/hard drive

    Hi,
    I am new to Coldfusion and am having trouble doing the
    following: When the users click on a button, all the folders on a
    CD drive or on a USB drive, should be parsed automatically, and
    whichever folders contain the .ini file type, all the files from
    that folder should be automatically uploaded to the server.
    Is there any way to do this? I read about the CFDirectory
    tag, but i think it is used to list all directories on the
    coldfusion server. How can I parse the contents of a
    folder/directory on the client's machine (CD/USB drive)? Is there
    any other tag I should use?
    Any help is highly appreciated.
    Thanks

    Basically you can't. This is because of security
    But you can write/get an activeX control to do this, but it
    has to be allowed by the user.
    Ken

  • Subsidiary company, differentiate the client or company code?

    Hi All,
    I have a question. I am new to SAP and I want to implement SAP HR in subsidiary company. I will use the same server which has been use by parent company. The business process will be different between the two company and also the data will be separate completely.
    Do I need to differentiate the client? or better just differentiate the company code?
    What are the advantages and disadvantages between the two options?
    Thank you for your answer. It will be very helpful for me.
    Best Regards,
    Mart.

    Hi Mart,
    Because there usually is more than one way to do something in SAP, I will take the opposite view.  You should have only 1 production client, but separate the subsidiary by Company Code.  Thus, you will only have to do configuration once, rather than separate configuration in each client.  Also, master data is client specific, so you could not report on subsidiary employees if logged into the parent company client.  Employees could not be transferred between clients so you would have to terminate the employee in one client and hire them into the other.  Could easily do a transfer without having to recreate all master data by only a change in company code.  I know they promise there will be no transfers, but I guarantee after go-live, there will be many.  You did not mention Payroll or Benefits, but if either is managed by the Parent Company, then you would want all set-up and record generation done in one client, again arguing for all the master data to be available in that client.  You are also doubling the work for your Basis team by having to apply all updates, Support Packs, etc. in both clients.
    You may get arguments either way, it is up to you and the company which would be the better approach.
    Paul

  • Finding Certificate in client's machine

    Hi,
    I wanted to know that my certificate is installed to the client's machine or not ? Please help me to get that registry entry for that or any other way to get the details wether certificate is installed on client machine ??.
    Thanks...

    I have find out where the keystore resides but sometimes it is not storing in that keystore. for the different version of jdk may be it is intalling some another place. I found that keystore in default application data folder/Sun/java/deployment/security folder. keystore name is - deployment.certs

  • Save files to the client

    Is there a way to download files to the client's machine? for
    example i want the user to be able to download 5 doc files in
    succession and save them to their local file system.

    Answer!
    UAC (User Account Control) must be set to OFF to disable this message.
    Another error message that really has nothing to do with what's really happening!
    Ugh.

  • Decrease the Hyper-V machine Size

    The host machine is running on Windows Server 2012 STD. and two Hyper-v machine running with dynamic HDD. one hyper-v machine HDD size increase as because of so many file copy in the hyper-v machine. and now i delete this file. But HDD hype-v machine size
    not reduce. So, how can i reduce the Hyper-v machine size. on that Hyper-v machine Exchange 2010SP3 running. the physical HDD getting space low. So, need to reduce the Hyper-v machine size.
    Please suggest

    Hi Parvez,
    Sorry for the delay.
    "Virtual disks that use differencing or delta mechanisms (such as Hyper-V's differencing VHDs or snapshots) are not supported."
    Please refer to following article of exchange2010 :
    http://technet.microsoft.com/en-us/library/cc794548(v=exchg.80).aspx
    I would suggest you try to shutdown the VM and backup it , then you may try to copy the vhd and AVHD to large enough disk space to merge snapshot for test .
    Best Regards
    Elton Ji
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • How to grab the viewattribute in a string programatically

    Hi,
    I need to grab the viewattribute in a string say test programatically.
    Please send the code for this clearly....
    Thanks in Advance.
    Vijay

    Write this code in AMImpl.java
    OAViewObject appPropsVO = (OAViewObject)findViewObject("XXVO1");
    iif(appPropsVO != null)
    OARow xrow = (OARow)appPropsVO.getCurrentRow();
    String test= xrow.getAttribute("VoAttributeName")+"";
    Thanks,
    --Anil                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

Maybe you are looking for

  • How to load data from a virtual cube with services

    Hello all, we have set up a virtual cube with service and create a BEx report to get the data from an external database. That works fine. The question is now: Is it some how possible to "load" the data from this virtual cube with service (I know that

  • How do I update Itunes when music is on external hard drive

    I have all of my music on a external hard drive and I need to update Itunes. When I tried to update Itunes this week, it gave me an error message saying that it could not update it. I also tried to update Itunes directly from the this website and I g

  • Web service returned error: "Unable to process the request"

    Hello, i´ve created a small Rule Project to test creating webservices. I´m using XSD to define the Rules. After this, i´ve created the .ear file with the webservice generation tool and i´ve deployed the file. I´ve built and deployed the Rule Project

  • Search help: default value for 'Maximum no of hits'

    Hello, I have a request from a user to change the default value for maximum number of hits in the search help. Any quick hint? Regards, Michal

  • Can I show multiple rows of bookmarks?

    In Firefox 3, I have three rows of bookmarks on the toolbar. I want to replicate this in Firefox 4. Is there a way to do this?