Typing not shown in web forms

All of a sudden, the keys I type on web forms on some sites are not displayed in the text boxes. Some sites (like this one, and Google) work fine - others (such as the BBC and my favourite bulletin board) do not. The characters themselves are transmitted correctly to the web sites (when I have the confidence to submit them!). Also, I've noticed the layout of the affected sites looks a bit different (font, spacing or something like that), though I can't find any settings I may have accidentally altered.
Safari under other logins on the same computer work fine. Other browsers on this login work fine.
I've tried 'reset Safari', I've tried re-booting and I've tried deleting the plist file, all to no avail.
Can anyone help? Please?
iMac G5   Mac OS X (10.4.6)   Safari 2.0.3
iMac G5   Mac OS X (10.4.6)   Safari 2.0.3

Neil,
Do you have any duplicate fonts?
I would also recommend that you check out Font Management in Mac OS X Tiger and Panther, by Kurt Lang.
;~)

Similar Messages

  • ODBC not working in WEB FORM(Dev6i)!!!

    Hi :
    I found ODBC are not working in Dev6i Web Forms , my reports all based on excel though ODBC .
    Can anyone help me to solve this problem ?
    Help me !!!!
    Thanks in advenace !!!

    Answering Oracle Reports questions is a bit out of my league, but I deal with a lot of ODBC apps, so I'll take a shot.
    Try doing the following-
    1) Open the Control Panel, Open the Data Sources (ODBC) control, and select the DSN you'll be using.
    2) Put mnewman in the User ID field and mnn4578 in the password field.
    3) I'm not familiar with the Oracle Reports dialog you're referring to when you say "I put in mnewman/mnn4578@ODBC:*", but make sure that you aren't providing more information than is being asked for (i.e. putting user/password@ODBC:* in a field that just asks for username). Since it's asking you to pick a DSN, it should be able to pull username/password information from the DSN.
    Justin Cave
    ODBC Development

  • Date picker css not showing in web form

    Hi there, I have a web form and added the date picker.
    When you try this within BC admin it displays very nicely, yet when Ive inserted the webform in the html page,
    the css styling for the date picker is not included.
    Can anyone help me here so that I can add the css to style the calendar to look a bit prettier!
    The source code of the datepicker:
            <label for="CAT_Custom_95263">Date of last vaccination</label>
            <br /><input type="text" name="CAT_Custom_95263" id="CAT_Custom_95263" class="cat_textbox" readonly="readonly" style="background-color:#F0F0F0;" onfocus="displayDatePicker('CAT_Custom_95263');return false;" />

    Hello VickiTuch,
    The date picker, once loaded, will get a bunch of inline styles applied to it from BC. This can override your CSS if you are not specific enough.  If you give your declarations an important:
    #datepicker{
        background-color: #333 !important;
    Should override their inline styles.
    Hope this helps,
    Chad Smith | http://bcgurus.com/Business-Catalyst-Templates for only $7

  • Suppress Missing Data not work in web form with formula column inside

    Dear All,
    I've a planning web form with formula column inside to calculate the variance and % variance. But missing cell can't be suppressed, although I've checked the 'Suppress Missing Blocks' and 'Suppress Missing Data' options.
    Anyone have face the same problem..?? and how to fixed it..??
    thanks.
    Regards,
    VieN

    There is a known issue that sounds like the problem you are experiencing
    10358200 - If a formula column exists in a data form, selecting the Suppress missing option does not hide rows that do not contain data.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Error shown in Web form doesnt pop up in Smartview

    Hi
    I have a web form where users enter data in runtime prompts and there is a validation which prompts an error if the user selects an year less than the current forecast year. This error is hanlded through a script and @return function.
    Th errors popsup when the user selects the year in webform but if the same form is opened in smartview, and the user selects an year less than the forecast year, the error is not popping up.
    Please suggest
    Thanks

    Are you still getting the error message? Can you see the error in Planning Job Console?
    Regards
    Celvin
    http://www.orahyplabs.com

  • Why can I not open the web form link in ms outlook

    I copied a link to my web form to ms outlook recipients.  They cannot open the link.

    Are all the recipients using Outlook?  Which version?  Can they open any other web links from Outlook?   Could you send me a copy of the form link to [email protected]?

  • File Dialog not appearing in web form after Note:74140.1

    Hello, I have implemented the source given in Note:74140.1 to replace the get_file_name function that displays the file dialog box. However I still am not able to see the dialog that the JavaBean should display. I am relativly new at linking JavaBeans with forms, so there might be something that I am missing.
    I have created the class files for FDialog and FDialogPJC and put them in an ear file. I have also modified the fiels server.xml and default-web-site.xml to include the ear file. The respective code for a button has been added to the button trigger in the form, as well as the code for the JavaBean.
    So far this has been unsuccessful. If you have a suggestion, your help is much appreciated.
    Justin.

    the problem is that when I type JDialogPJC in the implementation class property of the java bean when working in JDeveloper, it cannot locate the java class file JDialogPJC.class. This happens when I put both the JDialogPJC and JDialog classes in the jar file and put the jar file in the forms90/java directory.
    However, if I just put both class files (not contained in a jar file) in the forms90/java directory, and I specify the JDialogPJC in the implementation class property of the java bean, it works fine.
    I would like to be able to use the jar file instead of a whole load of class files sitting in the directory.

  • Re: MySQL Database - NOT SAVING USER WEB-FORM DATA, ANY SUGGESTIONS...

    Hi, after adding the missing <html> tag, still doesn't make any difference, see below the php code and html form in context, the one you've asked me to paste.
    Note: I am trying to incorporate this, into an existing webpage, "the html form has to work with the existing html tags without duplicating" it's an existing webpage currently online.
    *Corrected the typing error Murray mentioned previously, about mysqli
    THE PHP CODE...
    <?php
    class MySessionHandler implements SessionHandlerInterface
    private $savePath;
    public function open($savePath, $sessionName)
      $this->savePath = $savePath;
      if (!is_dir($this->savePath)) {
       mkdir($this->savePath, 0777);
      return true;
    public function close()
      return true;
    public function read($id)
      return (string)@file_get_contents("$this->savePath/sess_$id");
    public function write($id, $data)
      return file_put_contents("$this->savePath/sess_$id", $data) === false ? false : true;
    public function destroy($id)
      $file = "$this->savePath/sess_$id";
      if (file_exists($file)) {
       unlink($file);
      return true;
    public function gc($maxlifetime)
      foreach (glob("$this->savePath/sess_*") as $file) {
       if (filemtime($file) + $maxlifetime < time() && file_exists($file)) {
        unlink($file);
      return true;
    $handler = new MySessionHandler();
    session_set_save_handler($handler, true);
    session_start();
    ?>
    <?php
    class session {
    var $lifeTime;
    var $dbHandle;
    function open($savePath, $sessName) {
      $this->lifeTime = get_cfg_var("session.gc_maxlifetime");
      $dbHandle = @mysql_connect("server", "user","password");
      $dbSel = @mysql_select_db("database",$dbHandle);
      if(!$dbHandle || !$dbSel)
       return false;
      $this->dbHandle = $dbHandle;
      return true;
    function close() {
      $this->gc(ini_get("session.gc_maxlifetime"));
      return @mysql_close($this->dbHandle);
    function read($sessID) {
      $res = mysql_query("SELECT session_data AS d FROM ws_sessions
         WHERE session_id = '$sessID'
         AND session_expires > " .time(), $this->dbHandle);
      if($row = mysql_fetch_assoc($res))
         return $row['d'];
      return "";
    function write($sessID, $sessData) {
      $newExp = time() + $this->lifeTime;
      $res = mysql_query("SELECT * FROM ws_sessions
         WHERE session_id = '$sessID'", $this->dbHandle);
      if(mysql_num_rows($res)) {
       mysql_query("UPDATE ws_sessions
          SET session_expires = '$newExp',
          session_data = '$sessData'
          WHERE session_id = '$sessID'", $this->dbHandle);
       if(mysql_affected_rows($this->dbHandle))
          return true;
      else {
       mysql_query("INSERT INTO ws_sessions (
          session_id,
          session_expires,
          session_data)
          VALUES(
          '$sessID'
          '$newExp'
          '$sessData')", $this->dbHandle);
       if(mysql_affected_rows($this->dbHandle))
          return true;
      return false;
    function destroy($sessID) {
      mysql_query("DELETE FROM ws_sessions WHERE session_id = '$sessID'", $this->dbHandle);
      if(mysql_affected_rows($this->dbHandle))
         return true;
      return false;
    function gc($sessMaxLifeTime) {
      mysql_query("DELETE FRKOM ws_sessions WHERE session_expires < " .time(), $this->dbHandle);
      return mysql_affected_rows($this->dbHandle);
    $session = new session();
    session_set_save_handler(array(&$session,"open"),
        array(&$session,"close"),
    array(&$session,"read"),
    array(&$session,"write"),
    array(&$session,"destroy"),
    array(&$session,"gc"));
    session_start();
    ?>
    <?php
    $conn = new mysqli("1and1.com", "dbo501129768", "simpsys", "db501129768");
    if ($mysqli->connect_error) {
    die('Connect Error (' . $mysqli->connect_errno . ') '  //CHECK CONNECTION.
       . $mysqli->connect_error);
    if (array_key_exists('submit', $_POST)){
    $userName = $_POST['username'];
    $firstName = $_POST['firstname'];
    $lastNmae = $_POST['lastname'];
    $password = $_POST['password'];
    $confirmPassword = $_POST['confirmPassword'];
    $conn->query("INSERT INTO ws_sessions (`user_name`, `first_name`, `last_name`, `email`, `password`, `confirm_password`) VALUES('$userName', '$firstName', '$lastName', '$email', '$password', '$confirmPassword')");
    ?>
    THE HTML FORM...   EDITED
    <!DOCTYPE html>
    <html>
    <head>
    <title>Admin</title>
    </head>
    <body>
    <form name='registration' method='post' action='insert_2.php' enctype="application/x-www-form-urlencoded">
        <p>Username: *</p>
        <p>
        <label for='username'></label>
        <input type='text' name='username' maxlength='40' size='60' tabindex='1'/>
        </p>
    <p>Firstname: *</p>
    <p>
    <label for='firstname'></label>
    <input type='text' name='firstname' maxlength='40' size='60' tabindex='2'/>   
    <p>Lastname: *</p>
    <p>
    <label for='lastname'></label>
    <input type='text' name='lastname' maxlength='40' size='60' tabindex='3'/>
        <p>Email: *</p>
        <p>
        <label for='email'></label>
        <input type='text' name='email' maxlength='40' size='60' tabindex='4'/>
        </p>
        <p>Password: *</p>
        <p>
        <label for='password'></label>
        <input type='password' name='password' id='password' maxlength='40' size='60' tabindex='5'/>
        </p>
        <p>Confirm password: *</p>
        <p>
        <label for='confirm password'></label>
        <input type='password' name='confirmPassword' id='confirmPassword' maxlength='40' size='60' tabindex='6'/>
        </p>
        <p>
        <input type='submit' value='Register'/>
        </p>
        <p> </p>
    </form>
    </body>
    </html> End of Form
    </div> "This tag and the ones below already exist inside the webpage"
    </div>
    </body>
    </html>
    I hope this helps - I appreciate your help.
    smartCode

    smartCode wrote:
    Hi, after adding the missing <html> tag, still doesn't make any difference, see below the php code and html form in context, the one you've asked me to paste.
    Note: I am trying to incorporate this, into an existing webpage, "the html form has to work with the existing html tags without duplicating" it's an existing webpage currently online.
    *Corrected the typing error Murray mentioned previously, about mysqli
    THE PHP CODE...
    <?php
    class MySessionHandler implements SessionHandlerInterface
    private $savePath;
    public function open($savePath, $sessionName)
      $this->savePath = $savePath;
      if (!is_dir($this->savePath)) {
       mkdir($this->savePath, 0777);
      return true;
    public function close()
      return true;
    public function read($id)
      return (string)@file_get_contents("$this->savePath/sess_$id");
    public function write($id, $data)
      return file_put_contents("$this->savePath/sess_$id", $data) === false ? false : true;
    public function destroy($id)
      $file = "$this->savePath/sess_$id";
      if (file_exists($file)) {
       unlink($file);
      return true;
    public function gc($maxlifetime)
      foreach (glob("$this->savePath/sess_*") as $file) {
       if (filemtime($file) + $maxlifetime < time() && file_exists($file)) {
        unlink($file);
      return true;
    $handler = new MySessionHandler();
    session_set_save_handler($handler, true);
    session_start();
    ?>
    <?php
    class session {
    var $lifeTime;
    var $dbHandle;
    function open($savePath, $sessName) {
      $this->lifeTime = get_cfg_var("session.gc_maxlifetime");
      $dbHandle = @mysql_connect("server", "user","password");
      $dbSel = @mysql_select_db("database",$dbHandle);
      if(!$dbHandle || !$dbSel)
       return false;
      $this->dbHandle = $dbHandle;
      return true;
    function close() {
      $this->gc(ini_get("session.gc_maxlifetime"));
      return @mysql_close($this->dbHandle);
    function read($sessID) {
      $res = mysql_query("SELECT session_data AS d FROM ws_sessions
         WHERE session_id = '$sessID'
         AND session_expires > " .time(), $this->dbHandle);
      if($row = mysql_fetch_assoc($res))
         return $row['d'];
      return "";
    function write($sessID, $sessData) {
      $newExp = time() + $this->lifeTime;
      $res = mysql_query("SELECT * FROM ws_sessions
         WHERE session_id = '$sessID'", $this->dbHandle);
      if(mysql_num_rows($res)) {
       mysql_query("UPDATE ws_sessions
          SET session_expires = '$newExp',
          session_data = '$sessData'
          WHERE session_id = '$sessID'", $this->dbHandle);
       if(mysql_affected_rows($this->dbHandle))
          return true;
      else {
       mysql_query("INSERT INTO ws_sessions (
          session_id,
          session_expires,
          session_data)
          VALUES(
          '$sessID'
          '$newExp'
          '$sessData')", $this->dbHandle);
       if(mysql_affected_rows($this->dbHandle))
          return true;
      return false;
    function destroy($sessID) {
      mysql_query("DELETE FROM ws_sessions WHERE session_id = '$sessID'", $this->dbHandle);
      if(mysql_affected_rows($this->dbHandle))
         return true;
      return false;
    function gc($sessMaxLifeTime) {
      mysql_query("DELETE FRKOM ws_sessions WHERE session_expires < " .time(), $this->dbHandle);
      return mysql_affected_rows($this->dbHandle);
    $session = new session();
    session_set_save_handler(array(&$session,"open"),
        array(&$session,"close"),
    array(&$session,"read"),
    array(&$session,"write"),
    array(&$session,"destroy"),
    array(&$session,"gc"));
    session_start();
    ?>
    <?php
    $conn = new mysqli("1and1.com", "dbo501129768", "simpsys", "db501129768");
    if ($mysqli->connect_error) {
    die('Connect Error (' . $mysqli->connect_errno . ') '  //CHECK CONNECTION.
       . $mysqli->connect_error);
    if (array_key_exists('submit', $_POST)){
    $userName = $_POST['username'];
    $firstName = $_POST['firstname'];
    $lastNmae = $_POST['lastname'];
    $password = $_POST['password'];
    $confirmPassword = $_POST['confirmPassword'];
    $conn->query("INSERT INTO ws_sessions (`user_name`, `first_name`, `last_name`, `email`, `password`, `confirm_password`) VALUES('$userName', '$firstName', '$lastName', '$email', '$password', '$confirmPassword')");
    ?>
    THE HTML FORM...   EDITED
    <!DOCTYPE html>
    <html>
    <head>
    <title>Admin</title>
    </head>
    <body>
    <form name='registration' method='post' action='insert_2.php' enctype="application/x-www-form-urlencoded">
        <p>Username: *</p>
        <p>
        <label for='username'></label>
        <input type='text' name='username' maxlength='40' size='60' tabindex='1'/>
        </p>
    <p>Firstname: *</p>
    <p>
    <label for='firstname'></label>
    <input type='text' name='firstname' maxlength='40' size='60' tabindex='2'/>   
    <p>Lastname: *</p>
    <p>
    <label for='lastname'></label>
    <input type='text' name='lastname' maxlength='40' size='60' tabindex='3'/>
        <p>Email: *</p>
        <p>
        <label for='email'></label>
        <input type='text' name='email' maxlength='40' size='60' tabindex='4'/>
        </p>
        <p>Password: *</p>
        <p>
        <label for='password'></label>
        <input type='password' name='password' id='password' maxlength='40' size='60' tabindex='5'/>
        </p>
        <p>Confirm password: *</p>
        <p>
        <label for='confirm password'></label>
        <input type='password' name='confirmPassword' id='confirmPassword' maxlength='40' size='60' tabindex='6'/>
        </p>
        <p>
        <input type='submit' value='Register'/>
        </p>
        <p> </p>
    </form>
    </body>
    </html> End of Form
    </div> "This tag and the ones below already exist inside the webpage"
    </div>
    </body>
    </html>
    I hope this helps - I appreciate your help.
    smartCode
    I'm trying to establish if the code I supplied is working or not, i.e. if something is being inserted into your database or not. Including all the other php classes/functions does not help at this time as there is probably some conflict going on -  you CAN'T mix mysqli and mysql
    What happens if you just use the code below. Yes, it's a basic form and mysqli connection BUT it should insert something in your ws_sessions table.
    Then you can start adding in the other php  functions one by one and see where it breaks down.
    <?php
    $conn = new mysqli("1and1.com", "dbo501129768", "simpsys", "db501129768");
    if (array_key_exists('submit', $_POST)){
    $userName = $_POST['username'];
    $firstName = $_POST['firstname'];
    $lastNmae = $_POST['lastname'];
    $password = $_POST['password'];
    $confirmPassword = $_POST['confirmPassword'];
    $conn->query("INSERT INTO ws_sessions (`user_name`, `first_name`, `last_name`, `email`, `password`, `confirm_password`) VALUES('$userName', '$firstName', '$lastName', '$email', '$password', '$confirmPassword')");
    ?>
    <!DOCTYPE html>
    <html>
    <head>
    <title>Admin</title>
    </head>
    <body>
    <form name='registration' method='post' action='insert_2.php' enctype="application/x-www-form-urlencoded">
        <p>Username: *</p>
        <p>
        <label for='username'></label>
        <input type='text' name='username' maxlength='40' size='60' tabindex='1'/>
        </p>
    <p>Firstname: *</p>
    <p>
    <label for='firstname'></label>
    <input type='text' name='firstname' maxlength='40' size='60' tabindex='2'/>   
    <p>Lastname: *</p>
    <p>
    <label for='lastname'></label>
    <input type='text' name='lastname' maxlength='40' size='60' tabindex='3'/>
        <p>Email: *</p>
        <p>
        <label for='email'></label>
        <input type='text' name='email' maxlength='40' size='60' tabindex='4'/>
        </p>
        <p>Password: *</p>
        <p>
        <label for='password'></label>
        <input type='password' name='password' id='password' maxlength='40' size='60' tabindex='5'/>
        </p>
        <p>Confirm password: *</p>
        <p>
        <label for='confirm password'></label>
        <input type='password' name='confirmPassword' id='confirmPassword' maxlength='40' size='60' tabindex='6'/>
        </p>
        <p>
        <input type='submit' value='Register'/>
        </p>
        <p> </p>
    </form>
    </body>
    </html>

  • Warning message not shown in web browser after account is locked.

    Hi,
    I have the following configuration enabled for Access Manager:
    Access Manager 7.0 with patch 120955-04
    Web server 6.1 with patch 116649-20
    Directory Server 5.2 SP4
    1.) Individual password policy setup in directory server to lockout accounts after 3 failed login attempts.
    2.) Account lockout option enabled in Access Manager to lockout accounts after 3 failed login attempts.
    The issue that I face is the following:
    After, 3 consecutive failed login attempts and from the fourth login attempt,
    the Access manager does not give
    any error/warning messages on the browser, but redirects the user back to the login screen as the
    account is locked/inactive.
    This is sort of annoying as the user is confused as to why he is being redirected to the
    login screen.
    This issue is very much reproducible as below:
    1.) Create an individual password policy to lockout user after 3 failed login attempts and assign it to the specific user.
    2.) configure access manager to lock the account after 3 failed login attempts.
    3.) on attempting to login on the fourth attempt (correct or incorrect) the user is redirected to the login screen without any warning.
    Is this a known issue in Access Manager ?
    Can we configure the Access Manager so that a warning message is provided to the user after the account is locked.
    Thanks,

    This option has been set and we do get a warning after the second failed login attempt.
    When a failed login occurs the third time consecutively the user account is locked and a warning is shown.
    However, now if the user tries to login (say fourth time with the correct/incorrect password) he is redirected back to the login screen without any warning or error messages.
    This seems to be annoying as the user is redirected back to the login screen continuously without any messages.
    I am able to reproduce this problem on my test box and was wondering
    if this is a known issue.
    Thanks,

  • I add some node to a tree but it is not shown in web page.

    Hi
    thank you for reading my post.
    I read some tutorial in the web and i add some tree node to a tree dynamically.
    but none of them is shown :(.
    I should say that i write the code that create a tree in session scope bean because my tree is placed in a fragment and fragment has no preRender method.
    here is code that initiate a tree, and i think it is correct.
        public void initiateTree() {
            getTree1().setClientSide(true);       
            System.out.println("Setter called");
            Context ctx=null;
            DataSource ds=null ;
            Connection con=null ;
            Statement st = null ;
            List rootMenuItems = new ArrayList();
            ResultSet rs = null;
            try {
                ctx = new InitialContext();
                ds= (DataSource) ctx.lookup("java:comp/env/jdbc/dataSource");
                con= ds.getConnection();
                st= con.createStatement();
            } catch (Exception ex) {
                ex.printStackTrace();
            try {
                java.sql.PreparedStatement childsPSt  = con.prepareStatement("select * from categories where parentcategory = ?");
                rs=  st.executeQuery("select * from categories where parentcategory= 0 and language = " +"'"+getLang()+"'");
                //roots
              while(rs.next()){
                  int parentID = rs.getInt("categoryID");
                                System.out.println("A root has been added   "+parentID );
    TreeNode aRootNode =  new TreeNode();
    aRootNode.setText(rs.getString("categoryname"));
                //childs
                    childsPSt.setInt(1,parentID);
                    ResultSet cRs = childsPSt.executeQuery();
                    while(cRs.next()){
                        System.out.println("Achild has been added "+ cRs.getString("categoryname")+ " " + parentID);
    TreeNode childNode = new TreeNode();
    childNode.setText(cRs.getString("categoryname"));
    aRootNode.getChildren().add(childNode);
    getTree1().getChildren().add(aRootNode);
            } catch (SQLException ex) {
                ex.printStackTrace();
       I call this method in session bean constructor.
    here is code that bind the tree in page fragment to session bean tree1
                <ui:tree binding="#{SessionBean1.tree1}" id="tree1" style="height: 167px"/>here is console output that prove the initiate method do some works.
    Setter called
    A root has been added   1
    Achild has been added cat name 2  1
    Achild has been added cat name 3 1
    A root has been added   5

    i think u need to add hyperlink component to the node thus cause node must carry hyperlink or anything u like to add like staticText or checkBox ....
    add this code after creation the aRootNode and childNode
    it may works :)
    Hyperlink h = new Hyperlink();
    h.setText(cRs.getString("categoryname"));
    childNode .getFacets().put( childNode .CONTENT_FACET_KEY, h );

  • Why fields are not shown in list form ?

    Hello,
    I have performed below steps to create list programmatically in my project :
    Programmatically created content types having columns named – Contact Email,Contact Person,Location,Type and Postion.
    I manually created list named test and attached above content type.
    Issue: Content type has been created and attached to the list named
    test.I added columns from content type to list via modify view.
    However when I click on Add new item, I am unable to see the content type fields in the form.
    I can see only inbuilt Title field in list form while above fields are not there.
    Any idea what can be the possible reason for this and how to resolve it?
    Thanks and Regards,
    Dipti Chhatrapati

    Refer this article
    The Microsoft.SharePoint.SPFieldCollection.AddFieldAsXml method
    http://blogs.msdn.com/b/sharepointdev/archive/2011/01/20/why-do-my-new-list-fields-not-appear-on-the-new-edit-or-display-forms.aspx
    Please remember to click 'Mark as Answer' on the answer if it helps you

  • Image Not Shown in Web

    Hai, Every body, I have a problem with showing my image on the
    web. My problem is like this :
    I create an employee table with one of its field is to store
    the employee photo or picture. I create this field with the data
    structure of Long Row. Then I craete a data entry screen for
    entering employee record and browse every single record. I can
    get the image from the directory and save it to my employee
    table and event browse every record with no problem on the
    CLIENT system
    But when I deploy the application to the web, I can't see the
    image. The Image should be part of the data but it doesn't show.
    Why ? can any body help me up.
    For your information the image file I select is JPEG file type.
    Thanks in advance
    Eric
    null

    Hi,
    You probably applied the suggested project alias "jaxws" when you created your Scout project.
    In the tutorial, the project alias "tutorial" is used as shown in [1]. Therefore, the URL to use in the tutorial is localhost:8080/tutorial/jaxws whereas in your case, it is localhost:8080/jaxws/jaxws as you've already found it.
    [1] wiki.eclipse.org/Image:Org.eclipse.scout.tutorial.jaxws.CreateScoutProject_1.png

  • 'Email' address not shown in mail form (file export)

    Hi Gurus,
    I am working with Campaigns in SAP CRM EHP3.
    The problem appears when I execute Campaign through communication method "File Export" , because of  'Email' address doesn't appears in the file (although Business partners have them informed).
    The steps I followed :
    Create the Campaign with communication method "File Export"
    Create a new structure in the attributes contexts to add: BAPIBUS1006_ADSMTP to  dispose the field "Email" from BP
    Now, from therole IC_MANAGER , I created a mailform incluiding new field 'email'
    Execute campaign with a segment (all the BP in target group have Email address informed)
    Theoutput filedoesn’t showemails addresses..
    Thank you in advanced!
    Regards

    HI
    I NEED HELP !!
    IN MY CASE I HAVE IPHONE 5 LATEST UPDATE I NOTICE FROM A FEW WEEKS EVEN THE EXCHANGE MAIL IS ON BANNER MODE AND LOCK SCREEN IS SET ON TOO WHAT I ONLY HEARD IS THE SOUND WHEN IS PUSHED FROM SERVER THE EXCHANGE EMAILS DO NOT APPEAR IN THE NOTIFICATION CENTER BESIDE THIS EVERYTHING ELSE IS WORKING PERFECT.
    THANKS
    L

  • Blue background when I type and typing not shown on google

    Entry boxes turn blue when I type and when searching on google I can't see what I am typing at all. The subject line on Yahoo email turns blue but I can see what I am typing there.

    Uninstalled Constant Guard. Was afraid I'd lose Norton Security Suite, too, but that remained. Blue box in Google problem went away. Can't say it's forever, but for now it's better.

  • Canadian postal code not taking in web forms

    Seems like Safari changes a postal code entry like N1C to 1-1 and will not allow me to edit the 1-1. Any ideas?

    Hi Mark
    I see the problem. The zip field is designed to accept only 5 characters. Tried it on Firefox too with the same result.
    I believe Canada codes are at least 6 characters. Did Safari return an error when you sent the "contact us" info, while Firefox did not? If so, Firefox would have accepted the alpha characters, Safari not.
    If that's the case, coding errors exist on the site which Safari would not accommodate, but Firefox probably would - it's much more forgiving with this type of poor coding.
    Anyhow, good lesson in using another browser when rendering difficulties happen with Safari.
    Thanks for the and Aloha from Big Island.
    iMac G5 Rev C 20" 2.5gb RAM 250 gb HD/iBook G4 1.33 ghz 1.5gb RAM 40 gb HD   Mac OS X (10.4.8)   LaCie 160gb d2 HD Canon i960 printer, Airport Express (2 units)

Maybe you are looking for

  • Runtime error R6025 message after log on to Vista - Flash Card not working

    Hi I'm a newbie & would appreciate any advice. I am getting a runtime error message R6025 when I log on to Windows Vista. When I click out of the box I then get a message saying Toshiba Flash Card not working. I cancel that and my laptop is ok except

  • HT1430 iPad2 is no longer recognizing that the SIM card is installed

    My iPad2 is no longer recognizing that the SIM card is installed. I keep ketting a "NO SIM CARD" message even though the card is in the slot. I've tried switching on and off, resetting and removing and then reinstalling the SIM card. Any ideas?

  • Password not "cached" in Adobe X

    When I sign a document (in a window IE browser), Adobe Reader X (10.1) ask for a  password to verify my signature. Then a open a new IE window with another pdf document to sign, again I have to give the password of my digital certificate. I have seve

  • Ubuntu Problem in Pavillion dv6 3208-tx Notebook PC

    I own an HP dv6 3208-tx Notebook PC. I installed Ubuntu 11.04 recently and I'm facing the following problem. From the bootloader, when I select Ubuntu, it doesn't load. It gets stuck at a black screen without any cursor. If I go to Windows and turn o

  • Lent movie no longer available in iTunes Store.

    Already lent movie (Headhunters) is no longer available as a hire movie in iTunes Store. Therefore playing back this movie is not available any longer. Please Help!