URL PARSE HTML IN ORACLE;;; PLEASE HELP ME;;;

Hi Everybody,
I am beginner in Oracle ;;; somebody can help me please There 're two days and I can't resolve the problem :
I must recover from a giving URL values to insert them in an Oracle table.
The form of the URL is www.url1.com or www.url2.com and the data in my HTML page is like :
Salary: 123.45
Name: DAVID
I want to ask if exist in Oracle a means of recovering data starting from the URL to insert it in a table. The structure of my table is TAB(URL, SALARY, NAME)
For example in our case, I must insert: (url1, 123,45, DAVID)
Thanks a lot,
Best Regards
Message was edited by:
Wissem

Thank you Yoann,
But I need to parse the contents of my HTML page and insert them in my Oracle table.
tye contents of my HTML page is always like that :
Salary: DATA
Name: DATA
and I have to get the url as a parameter and to parse the HTML page and then
insert it in a table. The structure of my table is TAB(URL, SALARY, NAME)
For example in our case, I must insert: (url1, 123,45, DAVID)
Thanks a lot,
Best Regards
Message was edited by:
Wissem

Similar Messages

  • HTML into Flash please help!

    I want to put a HTML webpage into a certain field that is
    scrollable and when a link is clicked that box will change to give
    the content from the new page in that field ... please help, and
    also can javascript hover-off links from a webpage be put into
    flash?

    1. Flash contains a TextField component which has
    limited
    html support, not enough to support the usual html required of
    an active web page.
    Supported
    html tags for Flash Player 8
    2. You can use usual html
    anchor
    tag in a Flash TextField.
    3. You need to turn on html for a Flash TextField. This can
    be done in the
    IDE
    or in
    Actionscript.
    4. You can also use
    CSS
    formatting in a Flash TextField.
    5. For rollovers of specific parts of a Flash TextField, you
    will need to use Actionscript and generate TextFields for each part
    of the addressable text such as every word or every phrase goes
    into a separate TextField and then the TextFields are aligned to
    appear as one larger TextField.
    Flash requires a different design mentality than do
    HTML/CSS/JavaScript pages. So there are more creative approaches to
    present the information you have using Flash that are not easy or
    even possible in HTML/CSS/JavaScript.

  • Error installing Oracle.Please help me.

    Hellow.
    At the beggining I had a problem.
    I executed runInstaller and I see :BAD Address, but I see a similar Post.
    I executed GNOME, in the directory /install/linux I had click over runIns.sh and !!!TA CHAN!! the installation begin.
    The problem is:
    - Windows 1 -> I click over next
    - Windows 2 -> There is that configure the source and destination.Is good so I click over next. In this moment i see a error window.THE DESTINATION AREA .../STAGE DON`T BE ABLE TO USE BECAUSE YOUR STATE ISN'T CORRECT.
    PLEASE, help me....
    null

    You need to add the javax.servlet classes to your classpath.
    Easiest way is to extend the JRE in eclipse with those classes so that it would automatically be applied to every new project. Go to Window - Preferences - Java - Installed JREs - Select the JRE used - Edit - Add External JARs - add the JAR with javax.servlet classes to the JRE system libraries.
    You can use the javaee.jar of the Java EE 5.0 SDK [1] or the Glassfish /lib directory [2], or the servlet-api.jar of Tomcat's /lib directory [3].
    [1] http://java.sun.com/javaee
    [2] https://glassfish.dev.java.net
    [3] http://tomcat.apache.org

  • Error while connecting with the url using odata...please help

    hi All,
    I was trying to do one basic ODATA example which i got from the threads.
    <!DOCTYPE html>
    <html><head>
      <meta http-equiv='X-UA-Compatible' content='IE=edge' />
      <meta http-equiv='Content-Type' content='text/html;charset=UTF-8'/>
      <title>Table with OData Binding</title>
         <script id='sap-ui-bootstrap' type='text/javascript'
            src='https://sapui5.hana.ondemand.com/resources/sap-ui-core.js'
            data-sap-ui-libs="sap.m,sap.ui.commons,sap.ui.table"
      data-sap-ui-theme="sap_bluecrystal"></script>
      <script>
      // the root URL of the OData service - prefixed with a local URL to a proxy which forwards the request,
    circumventing cross-domain restrictions
      // IMPORTANT: this proxy must be available for the code example to run!
      var url = "http://services.odata.org/Northwind/Northwind.svc";
    // create an ODataModel from URL
      var oModel = new sap.ui.model.odata.ODataModel(url, true);
      var oTable = new sap.ui.table.Table("sampleTable");
      oModel.read("/Customers",null,null,null,function(){
      var metadata = oModel.getServiceMetadata();
      var entityCustomerRef = metadata.dataServices.schema[0].entityType[2];
      var listOfProperties = entityCustomerRef.property;
      for ( var i = 0; i < listOfProperties.length; i++) {
      oTable.addColumn(new sap.ui.table.Column().setLabel(
      new sap.ui.commons.Label({
      text : listOfProperties[i].name,
      })).setTemplate(
      new sap.ui.commons.TextField().bindProperty("value",
      listOfProperties[i].name))) }
      oTable.setModel(oModel); // set model to Table
      oTable.bindRows("/Customers");
      oTable.placeAt("content"); // place model onto UI
      </script>
      </head>
      <body class='sapUiBody'>
      <div id='content'></div>
      </body>
    </html>
    but when i try to execute the same it is not loading any data and showing the error as :
    2014-07-21 16:04:05 (default) : https://sapui5.hana.ondemand.com/resources/ - sap.ui.ModuleSystem sap-ui-core.js:80 
    2Failed to load resource: the server responded with a status of 501 (Not Implemented) http://services.odata.org/Northwind/Northwind.svc/$metadata
    XMLHttpRequest cannot load http://services.odata.org/Northwind/Northwind.svc/$metadata. Invalid HTTP status code 501 odata.html:1
    2014-07-21 16:04:16 The following problem occurred: Failed to execute 'send' on 'XMLHttpRequest': Failed to load 'http://services.odata.org/Northwind/Northwind.svc/$metadata'. -  sap-ui-core.js:80
    Failed to load resource: the server responded with a status of 501 (Not Implemented) http://services.odata.org/Northwind/Northwind.svc/CustomersXMLHttpRequest cannot load http://services.odata.org/Northwind/Northwind.svc/Customers. Invalid HTTP status code 501 odata.html:1
    2014-07-21 16:04:17 The following problem occurred: HTTP request failed0,, -  sap-ui-core.js:80;;
    But i can launch the url with metadata through browser..kindly help???

    Hi Arun,
    replace the following line in your code:
    var url = "http/services.odata.org/Northwind/Northwind.svc";
    with the following:
    var url = "proxy/http/services.odata.org/Northwind/Northwind.svc";
    It will either work fine or this error will be skipped.

  • Cant click or type anywhere but the URL field in Safari! please help

    hi,
    i got my touch a few days ago and everything was fine
    until today,
    i turned it on, got connected and tried to check my email, via yahoo
    but when i was asked to enter my email, i couldnt click on the field where i was supposed to enter it
    then i tried going to apple, as with the other websites i tried, the home page came up, but when i tried clicking on something, it wouldnt work...please tell me what i can do
    Thanks
    Richard

    Googling the error you reported found this:
    http://forums.macosxhints.com/archive/index.php/t-43873.html
    from there, you can focus in on:
    I've had the same problem, and with the help of this forum have resolved it. Here's the simple summary, condensed from Hogster's description of his troubleshooting in response to other posters' suggestions.
    In your home,
    Go to Library/Caches.
    Probably you will discover that the Safari folder in there has a little padlock on the icon, indicating it is locked. This may have been done by Safari Enhancer or something else, to prevent caching and speed things up. But it interferes with certain uploading processes (my troubles were always with uploading photos to photo websites).
    Select the Safari folder (inside ~/Library/Caches), and hit Apple-I (for GetInfo). Uncheck the "Locked" checkbox.
    Problem should be solved! I did not find it necessary to logout and back in. Simply unchecking that one box was a complete fix for a problem that had been nagging me for months!
    If this doesn't help, keep googling.
    hth
    Jeff

  • How do I centre javascript in a HTML page? Please help!

    Ok, I recently set up a website with advertising space. The space is split into banner engines of 10 banners each rotating every 7 seconds.
    I have fully tested the coding which I downloaded and it all seems to work as well as I need it to.
    The only problem that I have is that the javascript or at least the banner it produces are always firmly stuck to the left. They need to mbe in the centre to fit the rest of the page, but I can't seem to get them to centre.
    Here's how the page is set up and coded:
    in the page I have:<html>
    <head>
    <center>
    <p>Each test banner links back to this page. Your banner would link to whatever site/location you required.</p>
    <p>
    <script type=text/javascript src="http://www.UkVariety.co.uk/banner/div_construct2.js"></script>
    <script type=text/javascript>
    var _banners = new Array();
    function addBanner(_bannerHTML){
      _banners[_banners.length?_banners.length:0]=_bannerHTML;
    addBanner("<a href='http://www.ukvariety.co.uk/banners.html'><img border=0 alt='Advertiser 1' src='http://www.ukvariety.co.uk/Images/banners/Ad1.gif'></a>");
    addBanner("<a href='http://www.ukvariety.co.uk/banners.html'><img border=0 alt='Advertiser 2' src='http://www.ukvariety.co.uk/Images/banners/Ad2.gif'></a>");
    addBanner("<a href='http://www.ukvariety.co.uk/banners.html'><img border=0 alt='Advertiser 3' src='http://www.ukvariety.co.uk/Images/banners/Ad3.gif'></a>");
    addBanner("<a href='http://www.ukvariety.co.uk/banners.html'><img border=0 alt='Advertiser 4' src='http://www.ukvariety.co.uk/Images/banners/Ad4.gif'></a>");
    addBanner("<a href='http://www.ukvariety.co.uk/banners.html'><img border=0 alt='Advertiser 5' src='http://www.ukvariety.co.uk/Images/banners/Ad5.gif'></a>");
    addBanner("<a href='http://www.ukvariety.co.uk/banners.html'><img border=0 alt='Advertiser 6' src='http://www.ukvariety.co.uk/Images/banners/Ad6.gif'></a>");
    addBanner("<a href='http://www.ukvariety.co.uk/banners.html'><img border=0 alt='Advertiser 7' src='http://www.ukvariety.co.uk/Images/banners/Ad7.gif'></a>");
    addBanner("<a href='http://www.ukvariety.co.uk/banners.html'><img border=0 alt='Advertiser 8' src='http://www.ukvariety.co.uk/Images/banners/Ad8.gif'></a>");
    addBanner("<a href='http://www.ukvariety.co.uk/banners.html'><img border=0 alt='Advertiser 9' src='http://www.ukvariety.co.uk/Images/banners/Ad9.gif'></a>");
    addBanner("<a href='http://www.ukvariety.co.uk/banners.html'><img border=0 alt='Advertiser 10' src='http://www.ukvariety.co.uk/Images/banners/Ad10.gif'></a>");
    var div2 = new NewDiv2(window, "banner", _banners[0],0,0,50,50,500,"ABSOLUTE");
    var count=0; /* which one to start with */
    function doIt() {
    count++;
    count%=_banners.length;
    div2.setBody(_banners[count]);
    setInterval('doIt()',7000);
    </script>
    </p>
    </head>
    <body>
    <script type=text/javascript>
    div2.output();
    </script>
    </body></center>
    </html>The javascript links to a file caled div_construct2.js
    This file contains the following coding:
    isNS = document.layers?true:false;
    isIE = navigator.appName.indexOf("Microsoft") != -1
    isNS6=document.getElementById&&!isIE?true:false;
    function NewDiv2(window, id, body, left, top, width, height, zIndex, absolute) {
        this.window = window;
        this.id     = id;
        this.body   = body;
        var d = window.document;
        d.writeln('<STYLE TYPE="text/css">#' + id + ' {');
         if (absolute) d.write('position:absolute;');
         else          d.write('position:relative;');
        if (left)   d.write('left:'  + left  + ';');
        if (top)    d.write('top:'   + top   + ';');
        if (width)  d.write('width:' + width + ';');
         if (height) d.write('height:' + height + ';');
         if (zIndex) d.write('z-index:' + zIndex + ';');
        d.writeln('}</STYLE>');
    if (isNS) {
        NewDiv2.prototype.output             = function()      { var d = this.window.document;d.writeln('<DIV ID="' + this.id + '">');d.writeln(this.body);d.writeln("</DIV>");this.layer = d[this.id];}
        NewDiv2.prototype.moveTo             = function(x,y)   { this.layer.moveTo(x,y); }
        NewDiv2.prototype.moveBy             = function(x,y)   { this.layer.moveBy(x,y); }
        NewDiv2.prototype.show               = function()      { this.layer.visibility = "show"; }
        NewDiv2.prototype.hide               = function()      { this.layer.visibility = "hide"; }
        NewDiv2.prototype.setZ               = function(z)     { this.layer.zIndex = z; }
        NewDiv2.prototype.setBgColor         = function(color) { this.layer.bgColor = color; }
        NewDiv2.prototype.setBgImage         = function(image) { this.layer.background.src = image;}
        NewDiv2.prototype.getX               = function() { return this.layer.left; }
        NewDiv2.prototype.getY               = function() { return this.layer.top; } //was right .. ??
        NewDiv2.prototype.getWidth           = function() { return this.layer.width; }
        NewDiv2.prototype.getHeight          = function() { return this.layer.height; }
        NewDiv2.prototype.getZ               = function() { return this.layer.zIndex; }
        NewDiv2.prototype.isVisible          = function() { return this.layer.visibility == "show"; }
        NewDiv2.prototype.setBody            = function() { for(var i = 0; i < arguments.length; i++) this.layer.document.writeln(arguments);this.layer.document.close();}
    NewDiv2.prototype.addEventHandler = function(eventname, handler) {this.layer.captureEvents(NewDiv2._eventmasks[eventname]); var newdivel = this;this.layer[eventname] = function(event) { return handler(newdivel, event.type, event.x, event.y, event.which, event.which,((event.modifiers & Event.SHIFT_MASK) != 0),((event.modifiers & Event.CTRL_MASK)  != 0),((event.modifiers & Event.ALT_MASK)   != 0));}}
    NewDiv2.prototype.removeEventHandler = function(eventname) {this.layer.releaseEvents(NewDiv2._eventmasks[eventname]);delete this.layer[eventname];}
    NewDiv2.prototype.centerX = function() {this.layer.moveTo(Math.round((window.pageXOffset+document.width-100)/2),this.layer.top)}
    NewDiv2._eventmasks = {onabort:Event.ABORT,onblur:Event.BLUR,onchange:Event.CHANGE,onclick:Event.CLICK,ondblclick:Event.DBLCLICK, ondragdrop:Event.DRAGDROP,onerror:Event.ERROR, onfocus:Event.FOCUS,onkeydown:Event.KEYDOWN,onkeypress:Event.KEYPRESS,onkeyup:Event.KEYUP,onload:Event.LOAD,onmousedown:Event.MOUSEDOWN,onmousemove:Event.MOUSEMOVE, onmouseout:Event.MOUSEOUT,onmouseover:Event.MOUSEOVER, onmouseup:Event.MOUSEUP,onmove:Event.MOVE,onreset:Event.RESET,onresize:Event.RESIZE,onselect:Event.SELECT,onsubmit:Event.SUBMIT,onunload:Event.UNLOAD};
    if (isIE) {
    NewDiv2.prototype.output = function() { var d = this.window.document;d.writeln('<DIV ID="' + this.id + '">');d.writeln(this.body);d.writeln("</DIV>");this.element = d.all[this.id];this.style = this.element.style;}
    NewDiv2.prototype.moveTo = function(x,y) { this.style.pixelLeft = x;this.style.pixelTop = y;}
    NewDiv2.prototype.moveBy = function(x,y) { this.style.pixelLeft += x;this.style.pixelTop += y;}
    NewDiv2.prototype.show = function() { this.style.visibility = "visible"; }
    NewDiv2.prototype.hide = function() { this.style.visibility = "hidden"; }
    NewDiv2.prototype.setZ = function(z) { this.style.zIndex = z; }
    NewDiv2.prototype.setBgColor = function(color) { this.style.backgroundColor = color; }
    NewDiv2.prototype.setBgImage = function(image) { this.style.backgroundImage = image;}
    NewDiv2.prototype.getX = function() { return this.style.pixelLeft; }
    NewDiv2.prototype.getY = function() { return this.style.pixelRight; }
    NewDiv2.prototype.getWidth = function() { return this.style.width; }
    NewDiv2.prototype.getHeight = function() { return this.style.height; }
    NewDiv2.prototype.getZ = function() { return this.style.zIndex; }
    NewDiv2.prototype.isVisible = function() { return this.style.visibility == "visible"; }
    NewDiv2.prototype.setBody = function() { var body = "";for(var i = 0; i < arguments.length; i++) {body += arguments[i] + "\n";}this.element.innerHTML = body;}
    NewDiv2.prototype.addEventHandler = function(eventname, handler) { var NewDiv = this;this.element[eventname] = function() { var e = NewDiv2.window.event;e.cancelBubble = true;return handler(NewDiv2, e.type, e.x, e.y, e.button, e.keyCode, e.shiftKey, e.ctrlKey, e.altKey); }}
    NewDiv2.prototype.removeEventHandler = function(eventname) { delete this.element[eventname];}
         NewDiv2.prototype.centerX = function() { this.style.pixelLeft=Math.round((document.body.clientWidth+document.body.scrollLeft-300)/2)}
    * The following was written by:
    * Dario Guzik
    * Spam unfriendly email address: dguzik AT bigfoot DOT com
    if (isNS6) {
    NewDiv2.prototype.output = function() { var d = this.window.document;d.writeln('<DIV ID="' + this.id + '">');d.writeln(this.body);d.writeln("</DIV>");this.element = d.getElementById(this.id);this.style = this.element.style;}
    NewDiv2.prototype.moveTo = function(x,y) { this.style.pixelLeft = x;this.style.pixelTop = y;}
    NewDiv2.prototype.moveBy = function(x,y) { this.style.pixelLeft += x;this.style.pixelTop += y;}
    NewDiv2.prototype.show = function() { this.style.visibility = "visible"; }
    NewDiv2.prototype.hide = function() { this.style.visibility = "hidden"; }
    NewDiv2.prototype.setZ = function(z) { this.style.zIndex = z; }
    NewDiv2.prototype.setBgColor = function(color) { this.style.backgroundColor = color; }
    NewDiv2.prototype.setBgImage = function(image) { this.style.backgroundImage = image;}
    NewDiv2.prototype.getX = function() { return this.style.pixelLeft; }
    NewDiv2.prototype.getY = function() { return this.style.pixelRight; }
    NewDiv2.prototype.getWidth = function() { return this.style.width; }
    NewDiv2.prototype.getHeight = function() { return this.style.height; }
    NewDiv2.prototype.getZ = function() { return this.style.zIndex; }
    NewDiv2.prototype.isVisible = function() { return this.style.visibility == "visible"; }
    NewDiv2.prototype.setBody = function() { var body = "";for(var i = 0; i < arguments.length; i++) {body += arguments[i] + "\n";}this.element.innerHTML = body;}
    NewDiv2.prototype.addEventHandler = function(eventname, handler) { var NewDiv = this;this.element[eventname] = function() { var e = NewDiv2.window.event;e.cancelBubble = true;return handler(NewDiv, e.type, e.x, e.y, e.button, e.keyCode, e.shiftKey, e.ctrlKey, e.altKey); }}
    NewDiv2.prototype.removeEventHandler = function(eventname) { delete this.element[eventname];}
    NewDiv2.prototype.centerX = function() { this.style.pixelLeft=Math.round((document.body.clientWidth+document.body.scrollLeft-300)/2)}
    If anyone could help, I would be most grateful and could even offer a free advert for a while if needs be.
    Thanks in advance
    Dave
    "I think my brain exploded"

    You might want to ask this on a JavaScript forum.
    Java and JavaScript are not related.Now his brain probably experienced not just a mere explosion, but more like an atomic one.

  • Unable to pass report column value to url in select statement. Please help

    Hi all,
    I am trying to pass the report column value as follows:
    select key, num,
    case when Attachmentcnt(KEY) != 0 then
    'f?p=&APP_ID.:91:&SESSION.:'' '':NO::P91_KEY,P91NUM,P91_PREVPG:'And I am passing values as follows:
    {noformat}
    '#KEY#,'#NUM#','9' ELSE null
    END Attachment
    from tableA
    {noformat}
    But, I am not able to figure out correct sysntax to pass these column values. Can anyone give me some help. I appreciate it.
    rgds,
    Suma.
    Edited by: sumak on Jun 23, 2009 12:11 PM
    Edited by: sumak on Jun 23, 2009 12:22 PM

    Suma,
    If you're trying to generate a column with a URL, try something like the following:
    select key, num,
    case when Attachmentcnt(KEY) != 0 then
    'f?p=&APP_ID.:91:&SESSION.:'' '':NO::P91_KEY,P91NUM,P91_PREVPG:'
    || tableA.key || ',' || tableA.num || ',' || :P91_PREVPG
    else NULL
    end
    FROM tableA;
    But the best way to pass these would include checksum values against the values of your parameters (to make sure a user doesn't hack them). You'll need to check the Apex User manual for details - See "Understanding Session State Protection".
    Good luck,
    Stew

  • I can not make my button open up an anchor tag on a url in Flash PRO. PLEASE HELP!?

    Example
    step1btn.addEventListener(MouseEvent.CLICK, fl_ClickToGoToWebPage_1);
    function fl_ClickToGoToWebPage_1(event:MouseEvent):void
      navigateToURL(new URLRequest("http://www.wfftutah.com/courses.html#step1"));

    So I finally got the code to work but not in Chrome. I've been trying to tweak the code to work in Chrome but my head is hurting.
    Anyone else have this problem with Chrome not working with .swf files and urls?

  • Xerces Parser... Please Help.

    Hello,
    I have a problem when I use the XERCES Parser.
    I want to generate a Option FieldType of a HTMLForm.
    My code is:
    Element select = sourceDoc.createElement("select");
       select.setAttribute("name", name);
       select.setAttribute("required", required);
       if (Numitems > 0){
        for(int k=0;k<Numitems;k++){
           Element option = sourceDoc.createElement("option");
           option.setAttribute("value", items[k]);
         select.appendChild(option);
    }and then generate:
    <select name="form/camp1" required="true" value="">
    <option value="hola"/>
    <option value="adeu"/>
    <option value="peich"/>
    </select>
    But I want that the parser result could be:
    <select name="form/camp1" required="true" value="">
    <option value="hola" HOLA </option>
    <option value="adeu" ADEU </option>
    <option value="peich" PEICH </option>
    </select>
    How can I do it??
    Thank you.
    PD:Excuse me my English.

    As I understand you want to add a text to your node.
    option.appendChild(sourceDoc.createTextNode(items[k]));
    that should do it

  • After clicking hyperlink URL, slide restarts at beginning - please help

    I'm having this same problem which was posted a few months back and didn't receive any replies. Does anyone know how to fix this. It is a major problem as I have several slides where I'll need to click a URL and the return to the presentation only to have to click away to get back to where I was:
    I have set up a slide with several bullet points contain name of various websites. These bullets are set to appear on each click. They also have their hyperlinks activated and linked to their respective URLs. The problem occurred when the slide is in play mode, when clicked on any of the bullet which opens the website in the web browser (this part is perfect); but when going back to the slide, it does not go back to where the sequence of the bullet it was at; instead, it start from the beginning state of that particular slide. For example, if I click on the 3rd bullet (after I clicked build in for the first two bullets), it active the 3rd bullet’s website, but when I go back to Keynote, it revert back as none of the bullet has already been displayed (it revert back to the beginning blank slide). My question is after the website link ifs opened, how can I get back to where I left off in Keynote instead going back to the beginning of the slide?

    I'm having this same problem which was posted a few months back and didn't receive any replies. Does anyone know how to fix this. It is a major problem as I have several slides where I'll need to click a URL and the return to the presentation only to have to click away to get back to where I was:
    I have set up a slide with several bullet points contain name of various websites. These bullets are set to appear on each click. They also have their hyperlinks activated and linked to their respective URLs. The problem occurred when the slide is in play mode, when clicked on any of the bullet which opens the website in the web browser (this part is perfect); but when going back to the slide, it does not go back to where the sequence of the bullet it was at; instead, it start from the beginning state of that particular slide. For example, if I click on the 3rd bullet (after I clicked build in for the first two bullets), it active the 3rd bullet’s website, but when I go back to Keynote, it revert back as none of the bullet has already been displayed (it revert back to the beginning blank slide). My question is after the website link ifs opened, how can I get back to where I left off in Keynote instead going back to the beginning of the slide?

  • Please help with fontface

    Hi Guys, can anyone help please, I am really loosing my mind after several hours of failing to figure this out.
    I tried to insert (metadata - html for head) the code provided here: http://tinyurl.com/kvvn582 It works excelent for all browser except IE (off course), but curiously also Firefox (both mac and win version)
    To be completely sure that there is no problem on my side I inserted code from W3schools that was linked above, with fonts on their server:
    <style>
    @font-face
    font-family: myFirstFont;
    src: url('http://www.w3schools.com/css3/Sansation_Light.ttf'),
    url('http://www.w3schools.com/css3/Sansation_Light.eot'); /* IE9 */
    div
    font-family:myFirstFont;
    </style>
    but same problem again - all browsers display font fine, but firefox and IE dont.
    I also created html file with the code below and opened the file it in all browsers, same problem again only Firefox now uses Verdana..
    <!DOCTYPE html>
    <html>
    <head>
    <style type="text/css">
    @font-face {
        font-family: "myFirstFont";
        src: url(http://www.w3schools.com/css3/Sansation_Light.ttf) format("truetype");
    div
        font-family: "myFirstFont", Verdana, Tahoma;
    </style>
    </head>
    <body>
    <p><b>Note:</b> Internet Explorer 9 only supports .eot fonts.</p>
    <div>
    With CSS3, websites can finally use fonts other than the pre selected "web-safe" fonts.
    </div>
    </body>
    </html>
    Can you please help? Thank you.

    You may look into Mozilla and Microsoft bug references or known issues for this one.
    I found a somewhat similar issue being discussed on Mozilla forums: https://support.mozilla.org/en-US/questions/956597
    Doesn't look like anything with Muse.
    Cheers,
    Vikas

  • Please help me configure a new 8core for FCP

    PLEASE HELP A PC GUY MOVE OVER...
    I need to configure a new 8-core for FCP mainly. I need to keep the expense reasonable so dont want to spend extra $$$ if i dont have to.
    I edit files from many different camera's these days. Mostly weddings & demos.
    I want to go with an 8 core either Two 2.26GHz, OR 2.66GHz? Is the 2.2 fast enough with FCP?
    How much ram do i need?
    Do I need to stripe 2 sata drives together for the video?
    Which video card?
    Can you recommend any other software/hardware that will help me?
    Here is a link to apples spec page:
    http://www.apple.com/macpro/specs.html
    THANKS

    sarecco wrote:
    PLEASE HELP A PC GUY MOVE OVER...
    Welcome to the family. if you are not familiar with the Macintosh operating system, get yourself a book.
    sarecco wrote:
    I want to go with an 8 core either Two 2.26GHz, OR 2.66GHz? Is the 2.2 fast enough with FCP?
    Either will work fine.
    sarecco wrote:
    How much ram do i need?
    As much as you want but 8G will be adequate. More might not help significantly.
    sarecco wrote:
    Do I need to stripe 2 sata drives together for the video?
    Depends on the video you're trying to use or if you want to do 9 camera multiclips. Maybe.
    sarecco wrote:
    Which video card?
    The stock 4870 is the gold standard for Motion; the current rev of FCP does not care much about the GPU but we are hoping future revs will use the card directly.
    sarecco wrote:
    Can you recommend any other software/hardware that will help me?
    Umm, withotu knowing what you need to do, of course not.
    sarecco wrote:
    THANKS
    No sweat, ignore those other guys. We see this post about once a week around here so you can easily research it on the forum. Strongly urge you to locate your local Macintosh user group.
    bogiesan

  • CSS IE fine not Firefox,safari, etc Please help

    Hi,
    I am new and learning. I build a website and online the CSS works fine with IE (windows), but Firefox( windows,mac) and Safari (mac) are  not using the css.  I did run the browser compatibility check in Dreamweaver and says it's ok, not issues. 
    Checking the mozillaezine I saw people reporting the same issue and the members of that forum are saying that it happens because the "doctype declaration" used is not standard. They say "Make sure you use a DOCTYPE that causes the page to be rendered in standard mode in all browsers".
    sounds good, but  I have no idea about it, I don't know if I can use the declaration they are advising or not, I am learning this thing trial/error basis I guess.
    I did use a Dreamweaver template  to create my template page - the doctype declaration was there - . I did use my template page then to develop the site.  the declaration I am using is :
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml">
    Other site advised to change the <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    for <meta http-equiv="X-UA-Compatible" content="IE=8;FF=3;OtherUA=4" /> I did change it and nothing happens.
    the mm_BibleGarden.css link is set relative to the document, as it was the linking in the original template.
    http: //PalmBeachBibleGarden.org
    <http://web.me.com/stmarks/PalmBeachBibleGarden/Index.html>  redirects to http://web.me.com/stmarks/PalmBeachBibleGarden/Index.html
    Could you please help me? I am really tired trying to fix and learn myself what to do to fix it.
    Ta,
    sotota

    , everybody.
    I FIXED!
    After surfing on the net as crasy, I found the problem and the solution.
    It's a server configuration problem. My website is hosted at mobile.me (Apple) my server reports itself as "AppleIDiskServer-1D2305".
    in which CSS is ignored when viewed from the production server, but works fine locally. This is usually caused by a misconfiguration of the server and is not a browser bug.
    I fixed the problem as follows
    1. Login to me.com and go to iDisk
    2. Compress all the css/html files into an archive using the gears menu in the online interface.
    3. Delete the original files.
    4. Decompress the files and move them from the decompressed archive to their original spot.
    I did this and it did correct the mime type so now the site displays with formatting via the external stylesheet.
    I hope this thread will help people who are hosting with Apple mobile.me and
    Regards,
    Sotota

  • Definitons of scema,direcotry,dictionary,control file,library..please help

    hi ,
    Can you please tell me the defintions of scema,direcotry,dictionary,control file amd library in oracle
    Please help me by giving the definitions.....

    Is it a kind of homework ?
    Information you ask for are available through many system views. When I ain't sure of it's name I usually do something like this:
    select *
      from all_objects
    where object_name like '%CONTROL%'to get a list of objects that might help me finding control files.
    Another method is actually searching for information in dictionary view.

  • Please help How to clear session after calling method..is anything wrong

    I am facing issue while adding and removing text fields, looks like somehow textfields values are stored in session.
    Please help, is there anything wrong in the code...
    Example Detail :
    a) I am genereating textfields dynamicaaly using ui:repeat
    If I add 3 textfields say with Values "AAAA", "BBBB" and "CCCC" in a row.
    b) When I click on remove link against "BBBB" row, on the UI it removes "CCCC" BUT I checked the backend methods which handles this, it looks like it is removing correct "BBBB" in ProjectHome.removeTreatmentLink().
    c) Even if "CCCC" is removed, assuming 2 rows with "AAAA", "BBBB" are left on clicking "Add treatment link" it adds a row but displays value as "CCCC"
    There is no database interaction at this point.
    Log on clicking "ProjectHome.removeTreatmentLink()" link:
    +[STDOUT] ProjectHome.removeTreatmentLink(), compare reagent hashcode : reagentEnitty[0]16784247, HASCODE FROM FORM UI=16784247+
    +[STDOUT] ProjectHome.removeTreatmentLink(), Size of T=3+
    +[STDOUT] ProjectHome.removeTreatmentLink(), FINAL Comp name left = AAAA+
    +[STDOUT] ProjectHome.removeTreatmentLink(), compare treatment hashcode 2 : TreatmentEntity[1]5700104, HASCODE FROM FORM UI=5700104+
    +[STDOUT] ProjectHome.removeTreatmentLink(), TreatMent.CompName TO REMOVE =BBBB+
    +[STDOUT] ProjectHome.removeTreatmentLink(), FINAL Comp name left = CCCC+
    +[STDOUT] ProjectHome.removeTreatmentLink(), outside for, reagent.getTreatment() = [com.entity.Treatment@b4818[+
    treatmentCompoundName=AAAA
    +.......+
    +], com.entity.Treatment@56fa08[+
    treatmentCompoundName=BBBB
    +.....+
    +], com.entity.Treatment@127d1b4[+
    treatmentCompoundName=CCCC
    +......+
    +]]+
    XHTML:------
    <ui:repeat value="#{projectHome.reagent.treatment}" var="itreat">
    <h:inputText value="#{itreat.treatmentCompoundName}"/>
    </ui:repeat>
    <h:commandLink action="#{projectHome.removeTreatmentLink}"
      value="Remove"
      onclick="if (!confirm('Are you sure you want to remove this treatment?')) return false;">
    <f:param name="re_hashcode" value="#{info.hashCode()}"/>
    <f:param name="tr_hashcode" value="#{itreat.hashCode()}"/>
    </h:commandLink>
    ProjectHome.java----------------
    @Name("projectHome")
    public class ProjectHome extends EntityHome<Project> {
    public String removeTreatmentLink(){
      javax.faces.context.FacesContext facesContext = (new org.jboss.seam.faces.FacesContext()).getContext();
      javax.servlet.http.HttpServletRequest hsr=(javax.servlet.http.HttpServletRequest)facesContext.getCurrentInstance().getExternalContext().getRequest();
      String reagentHashcode=hsr.getParameter("re_hashcode");
      String treatmentHashcode=hsr.getParameter("tr_hashcode");
      for(int i=0;i<reagent.length;i++){
          System.out.println("ProjectHome.removeTreatmentLink(), compare reagent hashcode : reagentEnitty["+i+"]"+reagent.hashCode()+", HASCODE FROM FORM UI="+reagentHashcode);
    if(reagent[i].hashCode()==Integer.parseInt(reagentHashcode)){
    int sz=reagent[i].getTreatment().size();
    Treatment t[] = new Treatment[reagent[i].getTreatment().size()];
    for(int k=0;k<t.length;k++){
    t[k]=reagent[i].getTreatment().get(k);
    System.out.println("ProjectHome.removeTreatmentLink(), Size of T="+t.length);
    Treatment t1[] = new Treatment[t.length-1];
    ArrayList<Treatment> al= new ArrayList<Treatment>();
    for(int j=0;j<t.length;j++){
    if(t[j].hashCode()==Integer.parseInt(treatmentHashcode)){
    System.out.println("ProjectHome.removeTreatmentLink(), compare treatment hashcode 2 : TreatmentEntity["+j+"]"+t[j].hashCode()+", HASCODE FROM FORM UI="+treatmentHashcode);
    System.out.println("ProjectHome.removeTreatmentLink(), TreatMent.CompName TO REMOVE ="+t[j].getTreatmentCompoundName());
    }else{
    System.out.println("ProjectHome.removeTreatmentLink(), FINAL Comp name left = "+t[j].getTreatmentCompoundName());
    al.add(t[j]);
    System.out.println("ProjectHome.removeTreatmentLink(), outside for, reagent[i].getTreatment() = "+reagent[i].getTreatment());
    reagent[i].getTreatment().clear();
    reagent[i].setTreatment(al);
    break;
    return "";

    In the future, you should be posting JSF related questions at the JSF forum.
    I see in your message history that you already posted one there some days ago. Since I saw it again, yes I recall your topic and I also recall that I initially ignored it because you marked it as urgent. [That was not so smart|http://www.catb.org/~esr/faqs/smart-questions.html].
    val_123 wrote:
    Please help, is there anything wrong in the code... According to your problem: you need to preserve exactly the same datamodel during the apply request values phase of the form submit request as it was during the render response phase of the initial display request. This is also told several times in all of those countless "commandlink dont work in datatable" topics in the JSF forum. The same story goes on other UIData components like ui:repeat as well.
    Edited by: BalusC on 1-dec-2008 14:47

Maybe you are looking for

  • Download Error in my Creative Cloud Apps Folder

    In my Adobe Creative Cloud "Apps" folder I'm getting the following message: Download error. Unable to reach Adobe servers. Please check your internet connectivity, firewall settings, and then try again. (400) Any ideas on what's going on?

  • Photo Galleries into Albums?

    I see how to create different Photo galleries in BC, however is there a way to make Albums out of the different photo Galleries? Also, can there be a title over or under each event/album? I want, if possible to make this "point and lclick" simple for

  • Awesome WM: how to return focus to parent of dialog after close

    Hello all, I've been a happy Awesome WM user for about three weeks. But in some programs, if a dialog pops up and I click 'ok' or whatever, focus is lost on the current program and I must change to another tag and back before my key commands will be

  • EP5.0 to EP7.0 KM applications

    Hi, My client has a few applications accessing KM APIs that were functioning properly in EP5.0 but won't function in EP7.0. What needs to be done here exactly to make these applications work in EP 7.0. Does it require use of new KM APIs? If so, how t

  • How to unlock a Iphone 4s on Verizon 11.2 simlock, out of the Netherlands (Europe)

    Back in The Netherlands i found out that my Verizon IPhone 4s that i got in the states had a simlock!!! I really would like to use my iPhone here in Holland but not with Verizon (don't have it here). The problem is that I'm not a customer anymore so