How can i obtain HTML code

Hi,
I need obtain the source code of one webpage (the page is http://www.banxico.org.mx/tipcamb/tipCamIHAction.do).
Until now, i obtained the source code of pages with the function module SCMS_HTTP_GET_WITH_URL, but this page return the code 404 (Not found). The esception is: Access error HTTP: IF_HTTP_CLIENT->RECEIVE 1 ICM_HTTP_CONNECTION_FAILED
How can i obtain the source code of this page? Exists other function module o class for this?
Best regards and, thanks!

amy be
1. the site was down when you called.
2. your ICM was down.
3. some authentication is required from your environment to call internet (proxy) which is missing in your call.
Exists other function module o class for this?
you can use cl_http_client class for the same

Similar Messages

  • How can I write HTML code in this forums

    Sorry but I didn't know where to post this thread.....
    How can I write HTML code in this forums?

    Hello,
    Every piece of code in your post should be wrapped with the forum tags [ code] and [ /code], without the blanks.
    In case of the <a> tag, that is not enough. In this case, you have several options. The most elegant one is to use the entity name for the less-then sign - & lt; - without any spaces. Other options is to add a space between the less-then and the ‘a’ character (and make a note of it) or change the less-then character with a left bracket one.
    When posting code, you should always use the forum preview option, just to make sure the forum software “understood” your code correctly.
    Hope this helps,
    Arie.

  • How can I view html codes ?

    I have some text and images composed in a yahoo group.  I need to cut and paste it into an html box on MYSPACE.  I've already tried checking Yahoo's "View html Source" box.  Nothing appears.  I also tried clicking on my imac "View Source" in the tool bar, pasted the code into the html box but only got code, not text and images. 
    Is this something that can't be done unless you are an html code wiz?

    I don't use Myspace, but if you're given an HTML box to fill in, it will almost certainly show as code until you submit it, and then, if the code is correct, it should display your layout correctly as text and images on the new page.
    Note that images may not transfer correctly unless their source tags contain absolute references - eg "http://yahoo.com/images/myimage1.jpg" should be fine, but "../images/image1.jpg" will not work.
    Matt

  • How can I edit HTML code that was previously inserted?

    Inserting HTML code is easy enough - Object -> Insert HTML...
    But editing the code does not seem possible. It seems that it's necessary to delete the HTML object and reinsert it to make a change. What am I missing?

    Right click. I'm on my phone, but an option like "Edit HTML..." should be among the choices when an HTML embed object is selected.

  • Can't access HTML code in Eloqua

    I want to enhance the functionality and looks and mobile email template. For that I am trying to access HTML Editor to modify HTML code. How can I edit HTML codes in Eloqua10?

    Hello Hammad,
    When it comes to email mobile templates, the feature that makes them a mobile template is the CSS code that can be accessed by going to the toolbox as demonstrated below:
    What this means to you is the following:
    While you cannot access the full source code of this email -- because it is a templated email and not an html uploaded email, you have two options to customize it:
    1) You can delete ALL the contents that come with the template -- the default image and text, and then add your contents to it.
    2) You can upload an email and use the css code that appears in the screenshot above.
    Hope this helps.
    Thanks,
    Tarek

  • How can i get the code html and css of my form please help me

    how can i get the code html and css of my form

    HI,
    If you like to embed the HTML form in your web page then you will need to obtain the form code from the Distribite/Embed tab. Additional information can be found here: http://forums.adobe.com/docs/DOC-1991
    You will not be able to access/modify the css code or the rest of the form html code.  If you like to view the source of of a HTML page, please use your browser 'view source code' functionality.
    I hope this answer your question,
    Thanks,
    Lucia

  • I need to install photoshop cs4 extended from a disk to a new computer because my old computer had a hard drive crash. There is no serial number on the back of the case.  How can I obtain a usable serial number?

    I have to install Photoshop CS4 extended on a new computer from a disk because my old computer had a hard drive crash.  There is no serial number on the back of the case.  How can I obtain a usable serial number?

    Find your serial number quickly
    You can activate software without following up and registering it... at least that was the case in the past.  The serial number is normally located on the disc case or a box inside the main box.  If you did not purchase the disc from Adobe then it is possible you would have dealt with a redemption code, in which case it would have been up to you to keep a record of the serial number, especially if you did not follow up and register the software.

  • How do i add html code to my muse site? I want pintrest to verify my site.

    how do i add html code to my muse site? I want pintrest to verify my site.

    Hi,
    There are multiple ways in which you can add the HTML code to your site. Few methods are :-
    1) Copy your HTML code, In Muse -> Select Objects-> Insert HTML . Paste your HTML code on the page.  Please reer to this screenshot :- http://prntscr.com/52vprn
    2) If you want to add the HTML code in the Head section of your page, Go to Page Properties-> Metadata-> HTML for <Head> .    Please refer to this screenshot :- http://prntscr.com/52vpx5
    Hope this helps
    Regards,
    Rohit Nair

  • How can I obtain the primary key of a table for an entity relation?

    hello everybody
    I am doing a consultation to a table in my data base, good this table has alone two fields, the first one is the code or pk and the second one is the description, to be presisos they are names of city and code.
    From the beginning!!: This method this one in another class that is a Dialog that is going to call to the class SelecPlace ();
      SelecPlace sl = new SelecPlace();
    public void capturarLugar(){  //  Simple void method in the mentioned class
            String place = txtProcedencia.getText() ;  //  a JTextField
            sl.executeStatement(place) ;                  
        }ok, now we see part of the code of the class SelectPlace
    public class SelecPlace extends AbstractTableModel{
        Connection con = null;
        Statement sentencia = null ;
        ResultSet rs = null;
        ResultSetMetaData rsmd = null ;
        String[] nameColum = {} ;
        Vector datos = new Vector() ;
        public SelecPlace() { }
        public void executeStatement(String query){
          try{
             con = DBManager.getConnection() ;
             sentencia = con.createStatement(rs.TYPE_SCROLL_INSENSITIVE,
                                                                          rs.CONCUR_UPDATABLE) ;
             String sql = "select * from Place where descripcion like %"+query+"%'";
              rs = sentencia.executeQuery(sql) ;
              rsmd = rs.getMetaData();
              int nroColumnas = rsmd.getColumnCount() ;
              nameColum = new String[nroColumnas] ;
              //obtengo los nombres de columnas en cache
               for(int colum = 0; colum < nroColumnas; columna++){
                    nameColum[colum] = rsmd.getColumnLabel(columna + 1) ;
               datos = new Vector();
                while(rs.next()){
                    Vector newRow = new Vector();
                    for(int i = 0; i < getColumnCount(); i++){
                    newRow.addElement(rs.getObject("place_ID"));
                    newRow.addElement(rs.getObject("description"));
                    datos.addElement(nuevaFila);
                fireTableChanged(null);
            }catch(SQLException e){
                System.err.println(e);
                e.printStackTrace(System.err);
                System.out.println("error in statement");
            }catch(ClassNotFoundException cnfe){
                System.err.println(cnfe);
        }Ok, this code me works and I obtain in this case the field description of the table Place
    Now my question is, how can I obtain the primary field of my table?
    I need this value of this field that in the base of information in a bigint, and to take it to the first class before mentioned, for that I am working with a data base related

    Certain duffymo and everyone!!, good I give you my scheme:
    And generalizing my question, I want to obtain the value of the primary key of a table in the database, I obtain more values of the same row, but I need the primary key, and you see one with the primary key I want to turn a Long and it to insert with code java in foreign clave in another table of the database
    Good of this form I believe that it would not be breaking the integrity relacional of the tables

  • How can I insert a code to switch between channels?

    I’ve got a HP4263A LCR meter which is being used with an ER-18 device to get multiple channel data acquisition, when I go to getting started to trigger the device, but this VI do not have an icon to change the channel how can I insert a code to switch between channels?

    I am just trying to use the drivers developed by NI for this device, but I don't know how to work on them to obtain data from three points, or three channels which I am using from an ER-16 device. So all what I have is the driver VI for the HP4263A.the only VI I can use is getting started, because whe I try to run any other one, this message appears:
    Error -1073807346 occurred at VISA Write in HP4263A Self-Test.vi.
    Possible reasons:
    VISA: (Hex 0xBFFF000E) The given session or object reference is invalid.
    your help would be very helpful
    thanks

  • How can i use ADF code in Trinidad

    Hi,
    I'm having an small Application which is Implemented to some extent using oracle ADF faces components But now, as the Trinidad is an open source i would like to do it in trinidad.
    If i replace the libraries to trinidad does my implement code in ADF Faces components needs to be Change,
    Please Suggest me how can use my ADF code in Trinidad.
    Thanks.

    Hi,
    Thanks for the Information a lot,it will helps me a lot.
    i am unable to navigate to down load the libraries given in oracle site in "How-to configure Apache Trinidad components in Oracle JDeveloper " can u help me,
    how can i get libraries to use in Oracle Jdeveloper for Trinidad.
    Can i use the libraries given on the Apache MyFaces Trinidad site (http://myfaces.apache.org/trinidad/download.html) but the libraries are different than the oracle given.
    Please Help me what libraries to used in Oracle jdeveloper 10g for trinidad.
    Thank You.

  • How can I obtain the coefficients m, b from MAX scale?

    I use CWAI ActiveX for acquire data. Also, I use MAX to set the virtual channels for CWAI. When I try to use scale option of MAX (for exemple y = 0.5x + 3 to transforn volts in my phisics values) I obtain true data from ScaledData (phisics values), but I can't obtain true data from (BinaryCodes x GetScaleMultiplyer) + GetScaleOffset. How can I obtain true value from binarycodes?
    How can I obtain m and b from ActiveX?

    drg,
    The GetScaleOffset & GetScaleMultiplier refer to the hardware factors used by the driver to transform the binary values produced by the ADC converter to actual Voltage values (not physical units of the Virtual Channel).
    The documentation (NI-DAQ 6.9.3) for the ScaleMultiplier property mentions this:
    "Returns the slope in the linear scaling formula for converting the binary codes of the analog-digital converter to voltages. The CWAI control multiplies the binary code by the ScaleMultiplier and adds the ScaleOffset to convert a binary code to a voltage.
    (BinaryCode * ScaleMultiplier) + ScaleOffset = Voltage"
    If the signal range was, for example +/- 5 V, the multiplier for a 12 bit board would be approximately 0.00244141 so that:
    2047 * 0.002441
    41 = 5V
    NOTE: The 12 bit range (4096 words) is divided into +2047 / -2048
    Unfortuantely there is not a function or method in the CWDAQ API to obtain or set parameters from the Custom Scales used by the Virtual Channels.
    The reason for this is probably due to the fact that once Virtual Channels are created, most users would read in scaled values directly rather than reading binary values, getting the scale constants and applying the custom scale themselves. Since the user specifies the values for the custom scales anyway, the application could as well store the scaling constants as part of its configuration.
    Still, it would be nice to have this functionality so I thank you for pointing this out. I will create a suggestion indicating the need for such functions.
    The ways to achieve the results you desire are:
    1) Use Virtual Channels and read scaled data
    or
    2) Use the ScaleMultiplier and ScaleConstants to transform binary values into actual voltage values. Once
    you obtain the voltage values you can manually apply the same custom linear scale you had created through MAX.
    Regards,
    Alejandro Asenjo
    Applications Engineer
    National Instruments

  • I installed Mac OS 10.9.4, but did not get iLife and iWorks. How can I obtain these

    I installed Mac OS 10.9.4, but did not get iLife and iWorks. How can I obtain these? Somebody talked about redemption codes, but I did not find any extra information. Any suggestions?
    Thanks in advance and best regards

    If your computer shipped with Mac OS X 10.6.8 or earlier, install them from the computer's original disks.
    If your computer shipped with Mac OS X 10.7 or newer, log into the Mac App Store with the Apple ID used to register the computer, click on the Purchases tab, and download them.
    If neither of these is applicable, buy them from the Mac App Store.
    (109450)

  • How can i merge javafx code and java fxml code in a single project

    how can i merge javafx code and java fxml code in a single project.
    Please let me Know as soon as possible.

    Everything that it is possible to retrieve from a class file can be deduced from the class file definition.
    http://java.sun.com/docs/books/vmspec/2nd-edition/html/ClassFile.doc.html
    Sylvia.

  • Satellite A100-912: How can I obtain a Toshiba step by step upgrade DVD

    I bought a Satellite A100-912 (with XP installed). Now I'm upgrading to Vista Ultimate. I don't have the Toshiba Step By Step Upgrade DVD; so how can I obtain (or buy) a copy of the DVD?

    I bought the notebook after the date (15 Mar 2007) for redeeming the express upgrade DVD for Vista from Toshiba. In this regards, I bought an origiona OEM Windows Vista Ultimate to upgrade from XP. I want to install the Toshiba Softeware that was bundled with notebook and works with Vista and thats why I want the upgrade DVD...

Maybe you are looking for

  • Faster split than String.split() and StringTokenizer?

    First I imrpoved performance of split by replacing the String.split() call with a custom method using StringTokenizer:                 final StringTokenizer st = new StringTokenizer(string, separator, true);                 String token = null;      

  • [URGENT] Performance problem with BC4J and partioned data

    Hi all, I have a big performance probelm with BC4J and partitioned data. As as partitioned table shouldn't have a primary key like a sequence (or something else) my partitioned table doesn't have any primary key. When I debug my BC4J application I ca

  • Stops after printing first page and does print graphics, etc. on page

    I am using WIN 7 64 bit, and until I got a new computer with this on it, my Photosmart 5580 worked fine. I bought the CD with the correct driver and software for WIN 7 from HP. However, when printing a web page, it leaves blank wherever a graph etc.

  • Mpd/sonata issue

    I followed the wiki but sonata does not play music at all.  Is there a hidden step or am I just a little slow? #Edit I think I have all the codecs installed, amarok works fine. Last edited by dustinw (2009-03-17 01:05:35)

  • Script to delete expired or errored scheduled workbooks for Discoverer

    Hi All, Can any one pont me to find a script to delete all expired and Errored workbooks in Database for discoverer? Appreciate all your assistance. Thankks -S