Verification widget code

How to stop this annoying verification code. I don't like! In order to get on this site, I have to find my phone and get the code. It's a PITA!

I think you are referring to two-step verification. For your safety, you should not turn off: it will save you headaches where your devices are stolen. However, there is another way, you can protect your devices without be requested for a verification code: verification of the two factors--> for Apple ID - Apple Support two-factor authentication

Tags: iLife

Similar Questions

  • Download error. The downloaded file has no verification. Code of error = 0x80040507__Google Chrome Installer

    Hello. I have a problem that I recently received these messages on computer blue screen comes and goes... (bsofd) when im using the internet only. Told me to stop using ie 8 and google chrome but when I tried to download it it was the message that I received... "Download error. The downloaded file has no verification. error code = 0 x 80040507 ". I have windows xp... SP3. my hardware is dual cpu, 2 GB ram, 1 TB hard drive and 512 graphics card. Please help me

    Hi Arvind,

    You try to run chkdsk on the machine and check if the problem persists.

    How to perform disk error checking in Windows XP

    Hope the helps of information. Please post back and we do know.

    Concerning
    Joel S
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • Email verification and Code that I do not receive the verification email

    When I get the message that says I need to verify my identity by receiving an email from the team at Microsoft, I didn't send it to me. I checked my email is correct. Is there another way to verify this account without having to create a new e-mail account?

    As the account of emissions contain private information that can be shared in a public forum, please use the online form below. They are the only ones who have access to your account information, we simply don't have.


    Account of all the partners must now wonder online by using the Microsoft online form


    Select the error you must help with and fill in the information requested on the next page.  You must be connected to a Microsoft account to access the form.
    If you are unable to access your main account, you can use another account (if you have one) or create a new one https://signup.live.com/
  • ' Update the "widget? the code?

    I would like to add a date at the bottom of some of my pages which displays "update" and the date when this page (or the whole site) has been updated. Does anyone know how to do this? A widget, code suggestions? I am open.

    Thanks a bunch,

    Barb

    Hi Barbara!

    Add the following code to an HTML object.

    <>

    echo "Last modified:". "." Date ("F d Y H:i:s.", getlastmod());

    ?>

    You will need to change the extension of the name of the page for .html to .php. Since you can't do that in Muse, you will need to use an FTP client to rename the file once it's downloaded and each time thereafter that you re - download your site.

  • Widget to the Web service, parsing XML

    I worked on the communication with my web services and back to my widget.

    By using the code below, I was able to perform a GET and repay the XML, but I can't find data where I expect it to be node-wise when parsing XML. I return an object with 3 variables attached to it. I expect to be child nodes 1, 2, and 3. They proved to be 1, 3 and 5 nodes.

    Any ideas on why or how? I feel I'm missing just a simple thing in all of this.

    XML response

    
    - http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://tempuri.org/">
      1000
      Test Station
      105.285
      
    

    The widget code

    //****************** Ajax Logic ******************
    var xmlHttp;
    function getStationUpdate() {
    
        alert("in station update");
        xmlHttp = new XMLHttpRequest();
    
        var Posturl = "http://MachineIPGoesHERE:51107/Service1.asmx/HelloWorld2?";
        alert("after post url");
        xmlHttp.onreadystatechange = updateData;
        alert("after onReadyStateChange");
        xmlHttp.open("GET", Posturl, true);
        alert("after GET");
    
        xmlHttp.send(null);
    }
    
    function updateData() {
        if (xmlHttp.readyState == 4) {
            alert(xmlHttp.responseText);
            parser = new DOMParser();
            var xmlDoc = parser.parseFromString(xmlHttp.responseText, "text/xml");
    
            alert(xmlDoc.documentElement.childNodes[1].tagName + " " + xmlDoc.documentElement.childNodes[1].childNodes[0].nodeValue);
            //alert(xmlDoc.documentElement.childNodes[1].childNodes.length);
            //alert(xmlDoc.documentElement.childNodes[1].hasChildNodes());
            //alert(xmlDoc.documentElement.childNodes[2].hasChildNodes());
            //alert(xmlDoc.documentElement.childNodes[2].tagName + " " + xmlDoc.documentElement.childNodes[2].childNodes[0].nodeValue);
            alert(xmlDoc.documentElement.childNodes[3].tagName + " " + xmlDoc.documentElement.childNodes[3].childNodes[0].nodeValue);
            alert(xmlDoc.documentElement.childNodes[5].tagName + " " + xmlDoc.documentElement.childNodes[5].childNodes[0].nodeValue);
    
            alert(xmlDoc.documentElement.childNodes.length);
        }
    

    Web service

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    using System.Web.Services;
    using System.Xml.Serialization;
    
    namespace WebService1
    {
        /// 
        /// Summary description for Service1
        /// 
        [WebService(Namespace = "http://tempuri.org/")]
        [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
        [System.ComponentModel.ToolboxItem(false)]
        // To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line.
         [System.Web.Script.Services.ScriptService]
        public class Service1 : System.Web.Services.WebService
        {
    
            [WebMethod]
            public string HelloWorld()
            {
                return "Hello World";
            }
    
            [WebMethod]
            public myTestObj HelloWorld2()
            {
                myTestObj test = new myTestObj();
                return test;
            }
        }
    
        [Serializable]
        public class myTestObj
        {
            private int _StationID;
            private string _StationName;
            private double _Volume;
    
            [XmlElementAttribute(Order = 0)]
            public int StationID
            {
                get
                {
                    return this._StationID;
                }
                set
                {
                    this._StationID = value;
                }
            }
    
            [XmlElementAttribute(Order = 1)]
            public string StationName
            {
                get
                {
                    return this._StationName;
                }
                set
                {
                    this._StationName = value;
                }
            }
    
            [XmlElementAttribute(Order = 2)]
            public double Volume
            {
                get
                {
                    return this._Volume;
                }
                set
                {
                    this._Volume = value;
                }
            }
    
            public myTestObj()
            {
                StationID = 1000;
                StationName = "Test Station";
                Volume = 105.285;
            }
        }
    }
    

    > Any ideas on why or how? I feel I'm missing just a simple thing in all of this.

    White space nodes?

  • Inline CSS of my widget ECWID adds extra CSS, How Do I Get Rid Of It?

    My site is www.hershbergerfurniture.com, I use ECWID to the store and pulling on the site of muse. Everything works fine, however, I get a weird text in front of the "Buy now" button, it looks like this:

    Screen Shot 2016-02-11 at 10.35.43 AM.png

    Now, when I inspect it, I see that it comes from here:

    Screen Shot 2016-02-11 at 10.36.51 AM.png

    When I delete the 'content' attribute, the text disappears.

    My question is, how in the world actually delete it from my CSS Web site?

    When I inspect in firefox, it says that the code is inline:48

    Screen Shot 2016-02-11 at 10.45.18 AM.png

    I know how to edit and mess with CSS, I do it all the time. However, in this case, I don't really know how the hell to find this code string in files and how to fix.

    Help, please.

    It's not CSS, this is a reference to variable used in the widget code. It is likely that the name has a typo in; If there is no matching name, just Muse puts the parameters name verbatim, as it has here.

    Drop the developer an email asking to be fixed.

    I hope this helps.

    David

    http://creativemuse.co

  • Insert several Widgets in Edge Animate

    Hello, I am currently working on a project animated dashboard and inserted to the Twitter Widget in my design.  I am also installing a Facebook Widget next to my Twitter Widget.  The problem that continues to happen is when I go to insert the code into the Panel shares, it will mimic to the div above tends in my Twitter Widget.  At first, I thought it might because they have the same ID or are part of the same group.  But I made a whole new Div Rectangle outside the Group and when I go to add code in the Panel shares, she continues to imitate on.  If someone knows how to fix this help please!  I also have a hard time finding the Facebook Widget plug in the code.

    Twitter Code œuvres!

    The Twitter Widget code:

    "var code = ' < a class ="twitter-timeline"href ="https://twitter.com/EBcoffeeandpub"data-widget-id ="496150319181467649"> Tweets by @EBcoffeeandpub < /a > ';"

    code += ' < script >! function (d, s, id) {(var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)? 'http': "https";} « ;

    code += ' if (! d.getElementById (id)) {js = d.createElement (s); js.id = id; js.src = p + "om/widgets.js :/ / platform.twitter.c ' fjs.parentNode.insertBefore(js,fjs) ;}}} (document, 'script', 'twitter-wjs'); </s cript > ';

    How to integrate a widget of http

    SYM.$("TwitterTL"). Append (code);


    Need help with the Facebook Code

    The Facebook Widget code:

    Screen Shot 2014-08-04 at 12.51.07 AM.png

    How to integrate a widget of http any help?

    Try the following code to update in the sample: (I also downloaded the example updated @ https://www.dropbox.com/s/fqip7qbm3wkvu60/widgets1.zip). Hope this is what you are looking for.

    -------

    fbCode += '

    "fb-like-box" data-href = "www.facebook.com/EBcoffeeandpub" .

    data-width = '300' data-height = "400".

    data-colorscheme = "light".

    data-show-faces = "false".

    data header = "true".

    stream = "true".

    data-show-border = "true" > ';

    -------

    I've never used a widget of the activity, but according to the documentation, it displays the most interesting activity, the latter taking place on your site, using measures (such as love them) from your friends and other people. You may need to set the following attributes for your case:

    Class = "fb-inventive".

    Site - Data = "developers.facebook.com.

    data filter = "EBCofeeandpub".

    action-data = "like, recommend.

    DIA-

  • Twitter Hashtag widget does not load

    Hello peoples of Muse.

    I'm big fan of your product and I was thurally with learning and its use.

    A question that I fell trying to work with the official Twitter Hashtag Widget.

    A text via the code HTML provides for twitter, but the others while the real widget interface does not load.

    I'm not sure if there is a problem with the code they feed me or if Muse has trouble to read this code specfic.

    Any help out there?

    It was very difficult for me to find Twitters of widget interface, then here is a link if you are not familiar with it.

    https://Twitter.com/settings/widgets

    Any help would be amazing, especially because of me clients.

    Thank you!

    Hello

    Have a look here that would very likely solve the problem for you - https://dev.twitter.com/docs/embedded-timelines-most-frequent-problems-and-their-solution

    This problem seems to be frequently encountered as well - https://dev.twitter.com/discussions/10706

    I've tested this on my end, and the domain name in the field areas seems to work well. See the screenshot for the appropriate below widget settings.

    http://screencasteu.worldsecuresystems.com/Vinayak/2012-11-06_0541.PNG

    However, it does not appear in preview mode that the widget code is probably check for the recessed area.

    Thank you

    Vinayak

  • A bar of menus spry can cause an AddThis widget?

    I am trying to include a widget AddThis for my horizontal menu spry, but with success only marginal. By bothering with the margins, the page width and the width menu items, I was finally able to center the menu shwon below. But once I included the AddThis widget (between the 'index' and 'next page'), the menu fell: it's is more focused and 'next page' falls on a second line. I've been messing about with it all day and I can't make it work.

    narBar example.png

    Yet, I'm not online so I can't provide a URL. But a part of my code is below (widget code is at the bottom):

    CSS

    UL. MenuBarHorizontal
    {
    list-style-type: none;
    do-size: 14pt;
    cursor: default;
    Width: 760px;
    do-family: "Times New Roman", Times, serif;
    background-color: #FFF;
    padding: 0;
    margin: 0 auto;
    }
    / * Value of the menu bar active with this class, currently the definition of z-index to accommodate IE rendering bugs: http://therealcrisp.xs4all.nl/Meuk/IE-zindexbug.html */
    UL. MenuBarActive
    {
    z-index: 1000;
    }
    / * Menu item containers, position of children relative to this container and are a fixed width * /.
    UL. MenuBarHorizontal li
    {
    margin: 0;
    padding: 0;
    list-style-type: none;
    do-size: 100%;
    position: relative;
    cursor: pointer;
    Width: auto;
    float: left;
    }
    / * Submenus should appear under their parent (top: 0) with a higher z-index, but they are first the left side of the screen (-1000em) * /.
    UL. MenuBarHorizontal ul
    {
    margin: 0;
    padding: 0;
    list-style-type: none;
    do-size: 100%;
    z index: 1020;
    cursor: default;
    Width: 8.2em;
    position: absolute;
    left:-1000em;
    }

    HTML:

    < div id = "navBar" >
    < ul id = "MenuBar1" class = "MenuBarHorizontal" >
    < li > < a href = "#" > & #8249; & #8249; Previous page < /a > < /li >
    < li > < a href = "#" > home < /a > < /li >
    < li > < a href = "#" > on < /a > < /li >
    <!-TemplateBeginEditable name = "menuPage"->
    "< li > < a href ="... / Pages/menu_1.html "> menu < /a > < /li >"
    <! - TemplateEndEditable - >
    < li > < a href = "#" > contact < /a > < /li >
    < li > < a class = "MenuBarItemSubmenu" href = "#" > index < /a >
    < ul >
    < li > < a href = "#" class = "MenuBarItemSubmenu" > first category < /a >
    < ul >
    "" < li > < a href = "... / Pages/essay.html first" < /a > < /li >
    < /ul >
    < /li >
    < li > < a class = "MenuBarItemSubmenu" href = "#" > second category < /a >
    < ul >
    "" < li > < a href = "... / Pages/second essay.html ' < /a > < /li >
    "" < li > < a href = "... / Pages/essay.html third ' < /a > < /li >
    < /ul >
    < /li >

    <! - AddThis button BEGIN - >
    < div class = 'addthis_toolbox addthis_default_style' >
    " < a href =" http://www.AddThis.com/bookmark.php?v=250 & amp; username = budocat "class ="addthis_button_compact"addthis:url =" http://example.com "> < /a > on part " "
    < / div >
    < script type = "text/javascript" > var addthis_config = {'data_track_clickback': true}; < /script >
    " < script type =" text/javascript"src =" http://S7.AddThis.com/JS/250/addthis_widget.js#username=budocat "> < / script > .
    <! - END AddThis button - >


    < li > < a href = "#" > next page & #8250; & #8250; < /a > < /li >
    < /ul >

    < / div > <! - close the navigation bar - >

    Hi, BudoCat,

    You have posted this question in the two instances, and I think that we licked in the other thread.

    Try to post a question at once, place in the future, so it will get the maximum assistance in collaboration with other users!

    Best,

    Beth

  • 3rd generation Apple TV

    Since the last update, whenever I try to open anything (movie, song, etc.), it asks me to connect to the iTunes store. I'll enter my name of user and password (get the verification of code on one of my iOS devices and enter), but then it loop back to ask me my name of user and password. Cannot open/launch anything.

    Hello. You should be able to add the code to your password and login in this way. Otherwise, you may need to temporarily disable the mode of verification by logging in to your Apple ID from a browser.

  • movable control problems and onTouch event

    Hi guys

    In my last question, I posted about how can I make a movable control and it works fine, but now I have another question, when I drag a control and put on another control, which moves another control I guess that the elements are mixed with the OnTouch event.

    Here's an example I want to:

    But instead, the control move another decline of the level controls (when I drag control too close to a third party):

    I don't know how I can fix, I use a DockLayout, so that shouldn't happen.

    I use the following code on my movable controls:

    ImageView {
             id: watermark1
             imageSource: watermark.imageSource
             opacity: watermark.opacity
             translationX: 0
             translationY: 100
             attachedObjects: [
                 ImplicitAnimationController {
                     id: translationControllerY
                     propertyName: "translationY"
                 },
                 ImplicitAnimationController {
                                         id: translationControllerX
                                         propertyName: "translationX"
                 }
             ]
             property real iniX : 0;
             property real iniY : 0;
             property real posicionY: 100;
             property real posicionX: 0;
             onTouch: {
                 translationControllerY.enabled = false;
                 translationControllerX.enabled = false;
    
                 if (event.isDown()) {
                     iniX = event.windowX;
                     iniY = event.windowY;  
    
                 }
                 if (event.isMove()) {
                    guide.opacity = 0.6
                    guide1.opacity = 1.0
                    watermark1.translationX = posicionX + event.windowX - iniX;
                    watermark1.translationY = posicionY + event.windowY - iniY;
                    console.debug(iniX, iniY)
                    console.debug(watermark1.translationX + " and " + watermark1.translationY)
    
                 }
                 if (event.isUp()){
                     guide.opacity = 0
                     guide1.opacity = 0
                     posicionX = watermark1.translationX
                     posicionY = watermark1.translationY
                     console.debug("item left")
                 }
                 if (event.isCancel()){
                     guide.opacity = 0
                     guide1.opacity = 0
                     posicionX = watermark1.translationX
                     posicionY = watermark1.translationY
                     console.debug("Cancel)
                 }
               }
             }
    

    Hope you can help me

    Bravo and thank you!

    If you have this movement attached to each 'widget' code, then you will need to cover the event notecard for each other widget outside that you drag.

    The simplest but not the most elegant way is to set a global variable because everyone can see who puts a simple if statement around the code onTouch.

  • Problem: How to upload files to server

    I'm a newbie to BB development. I have problems to download the file from my BB to the server.

    Any help would be appreciated... Thank you...

    Code of the thread:

    class UploadThrd extends Thread
    {
    Limit string = "*";
    String lineend = "\r\n";
    String twoHyphens = "-";
    int maxBufferSize = 0;
    DataInputStream fileInputStream = null;
    public void run()
    {
    try {}
    FileConnection fis=(FileConnection)Connector.open("file:///store/home/user/newfile.txt");
    CreateFileScreen.showMsg ("recovered file name");
    InputStream inputStream = fis.openInputStream ();

    ByteArrayOutputStream Bos = new ByteArrayOutputStream();
    int buffersize = (int) fis.fileSize ();
    ubyte [] buffer = new byte [buffersize];
    int length = 0;
    While ((length = InputStream.Read (buffer))! = - 1).
    {
    Bos.Write (buffer, 0, Length);
    }
    Byte [] b = bos.toByteArray ();
    CreateFileScreen.showMsg ("copied file...");

    ConnectionFactory connFact = new ConnectionFactory();
    ConnectionDescriptor connDesc;
    connDesc = connFact.getConnection ("http://www.myserver.net/z/upload.php");
    If (connDesc! = null)
    {
    HttpConnection conn;
    Conn = (HttpConnection) connDesc.getConnection ();
    UiApplication.getUiApplication () .invokeLater (new Runnable()
    {
    public void run() {}
    Dialog.Alert ("http connected...");
    }
    });
    conn.setRequestMethod (HttpConnection.POST);
    conn.setRequestProperty ("Content-Type", "multipart/form-data; limit = "" + limit); "
    conn.setRequestProperty ("login", "Keep-Alive");
    UiApplication.getUiApplication () .invokeLater (new Runnable()
    {
    public void run() {}
    Dialog.Alert ("' HTTPConnection TOGETHER... verification response Code.. '");
    }
    });
    conn.setRequestProperty ("Content-Length", Long.toString (b.length));
    end of series

    If (conn.getResponseCode () == HttpConnection.HTTP_OK)
    {
    UiApplication.getUiApplication () .invokeLater (new Runnable()
    {
    public void run() {}
    Dialog.Alert ("response Code: HTTP_OK!");
    }
    });
    OutputStream os = conn.openOutputStream ();
    Write bytes
    UiApplication.getUiApplication () .invokeLater (new Runnable()
    {
    public void run() {}
    Dialog.Alert ("written bytes..");
    }
    });

    String CT = "Content-Type: multipart/form-data;" limit = "+ limit;"
    OS. Write ("Content-Disposition: form-data;") Name =-"source\" "." GetBytes());
    OS. Write (LineEnd.GetBytes ());
    OS. Write (LineEnd.GetBytes ());
    OS. Write ("BlackBerry". GetBytes());
    OS. Write (LineEnd.GetBytes ());

    OS. Write (twoHyphens.GetBytes ());
    OS. Write (Boundary.GetBytes ());
    OS. Write (LineEnd.GetBytes ());

    String filename = "z\newfile.txt; »
    OS. Write ("Content-Disposition: form-data;") name =-"Filedata\"; filename =------"". GetBytes());
    OS. Write (FileName.GetBytes ());
    OS. Write("\"".) GetBytes());
    OS. Write (LineEnd.GetBytes ());

    OS. Write (CT. GetBytes());
    OS. Write (LineEnd.GetBytes ());
    OS. Write (LineEnd.GetBytes ());

    OS. Write (b, 0, b.length);

    OS. Write (LineEnd.GetBytes ());

    OS. Write (twoHyphens.GetBytes ());
    OS. Write (Boundary.GetBytes ());
    OS. Write (twoHyphens.GetBytes ());
    OS. Write (LineEnd.GetBytes ());
    UiApplication.getUiApplication () .invokeLater (new Runnable()
    {
    public void run() {}
    Dialog.Alert ("downloaded file!");
    }
    });
    OS. Flush();
    OS. Close();
    }
    on the other
    UiApplication.getUiApplication () .invokeLater (new Runnable()
    {
    public void run() {}
    Dialog.Alert ("no connection");
    }
    });
    Conn.Close ();
    }

    }
    catch (Exception e) {}
    UiApplication.getUiApplication () .invokeLater (new Runnable()
    {
    public void run() {}
    Dialog.Alert("===exception!");
    }
    });
    }
    }
    }

    Class app:

    SerializableAttribute public class CreateFileApp extends UiApplication
    {
    /**
    * Entry point for application
    @param args command-line arguments (not used)
    */
    Public Shared Sub main (String [] args)
    {
    Try
    {
    FileConnection fc = (FileConnection)Connector.open("file:///store/home/user/newfile.txt");
    If (! fc.exists ())
    {
    FC. Create(); create the file if it doesn't exist
    }
    OutputStream outStream = fc.openOutputStream ();
    outStream.write ("happy test".getBytes ());
    outStream.close ();
    FC. Close();
    CreateFileScreen.showMsg ("I'll upload file..");
    Thread UploadThrd = new UploadThrd();
    thread. Start();
    }
    catch (IOException e)
    {
    System.out.println ("= IOException:"+ e.getMessage () ");
    }
    catch (Exception e1)
    {
    System.out.println ("= Exception:"+ e1.getMessage () ");
    }
    Create a new instance of the application and make the currently
    who runs the thread of the application of the event dispatch thread.
    PAP CreateFileApp = new CreateFileApp();
    theApp.enterEventDispatcher ();
    }

    /**
    * Creates a new CreateFileApp object
    */
    public CreateFileApp()
    {
    Push a screen onto the stack in the user interface for rendering.
    pushScreen (CreateFileScreen.cfs);
    }
    }

    The screen class:

    / public final class CreateFileScreen extends screen
    {
    /**
    * Creates a new CreateFileScreen object
    */
    public static CreateFileScreen SFC = new CreateFileScreen();
    public CreateFileScreen()
    {
    Set the displayed title of the screen
    setTitle ("create a file");
    }
    public static void showMsg (String msg)
    {
    LabelField lbl = new LabelField (msg);
    CFS. Add (LBL);
    }
    }

    Hello, welcome to the Forums!

    You must use the property tto line allow multi part download on your BB using Post server.

    It is a good example in nokia Forums, where you can fashion it accordint to your settings & file Type.

    http://www.developer.Nokia.com/community/wiki/HTTP_Post_multipart_file_upload_in_Java_ME

    Thank you

  • AJAX troubles after the Beta 3

    Hello

    I recently installed the Beta 3 SDK. After which, the widget that I built under Beta 2 stops working. After that some digging, it seems that the piece that broke is the Ajax requests.

    The error:

    The answer comes back with an error 500 and a responseText telling me the url is not in my config.xml file when it is.

    Ajax are requested from a server that renders the XML based on the GET parameters in the URL. The server runs a J2EE application, xml is rendered through JSP pages.

    The MDS Simulator is running. The browser in the Simulator is able to connect to Web sites.

    As a basic test, I created a simple widget to make an ajax, request a service and view the responseText on-screen. The request is made to the following address:

    http://windev3:8080/WebServiceConsumer/MobileWebService.do

    The request is made as follows, the runDiagnostics is connected to an onclick event of a button:

    var req;
    
    function runDiagnostics() {   try {      var url = "http://windev3:8080/WebServiceConsumer/MobileWebService.do?action=runDiagnostics&pin=2100000a";      req = new XMLHttpRequest();      req.open("GET", url, true);      req.onreadystatechange = handleResponse;      req.send(null);   } catch(e) {        alert('Run Exception: ' + e.name + '; ' + e.message);   }}
    
    function handleResponse() {   try {      displayOutput("Ready state is " +req.readyState);      if (req.readyState == 4) {         displayOutput(req.status);         if (req.status == 200) {            displayOutput("Response Text: " + req.responseText);         } else {            displayOutput("Error: " + req.statusText + " " + req.responseText);         }      }      displayOutput("Returning from handler");   } catch(e) {       alert('handleResponse exception: ' + e.name + '; ' + e.message);   }}
    

    The server returns the text with diagnostic information. When you run the widget code in a regular web browser (Firefox), everything works as expected. However, when I run it as a widget in the Simulator, it fails. I have tried all the following settings in my config.xml file

    Attempt 1: Fails with the above error

    All the s added to the elements of

    Attempt 2: Fails with the above error

    No s added to the elements of

    Attempt 3: fails with the above error

    http://192.168.2.203"/ >

    No s added to the elements of

    Attempt 4: fails with the above error

    http://192.168.2.203:8080"/ >

    No s added to the elements of

    Attempt 5: fails with the above error

    No s added to the elements of

    Attempt 6: under-Achiever

    The ready state is 4, the response code is 200. the response text is "null" the first time I demand, but by demand of the 4th or 5th saw the text you want. I actually had this problem while working on the basis of Beta 2.

    Local environment:

    Widget Packager Beta 3 SDK

    MDS/Email 4.1.4 Simulator

    Java 1.6

    More recent simulators 9700 and 9500

    Windows Vista Business 32-bit

    Server environment:

    Windows Vista Business 32-bit

    Java 1.6

    Sun GlassFish 2.1

    Any help is greatly appreciated.

    Hi bbswede,

    Thanks for the reply. It made me think. We do not have a proxy server, but we have a domain. After trying a few settings, it seems that the use of the full domain name WITH works of port number.

    For future people who may read this thread. We consider that the remote resource, you are trying to access is on a specific port. I don't know if this applies when you use the default of 80.

    http://computerName.domain.com:port - works
    
    http.//xxx.xxx.xxx.xxx:port - works
    
    http://computerName.domain.com - does not work
    
    http.//xxx.xxx.xxx.xxx- does not work
    

    computer name - the name of the network to a computer

    domain.com - is the domain that the computer is turned on

    xxx.xxx.xxx.xxx IP address of the resource you are trying to use

    A few final questions for the RIM team. Including the port in the will be a continuation of the practice releases in the future?

    Is the responseText random null I get associated with this or some other problem? I should start a new thread with this question.

    Thank you

  • Buttons in mucow

    Maybe it's a silly question, but is possible to make a widget that acts as a status button?  Which means have a widget, where it is possible to copy the content inside.  The reason is to have a container with the predefined classes and IDs

    Thanks for any suggestions.

    When you create a button on the State, the feature is drag-and - déposer is inherent in Muse design editor; a widget is only arbitrary code that is placed on the page with little or no interaction. It is possible to do what you ask, but it must be addressed from a different angle:

    • Create a status button as you normally would.
    • Create a new graphic Style and apply it on the State button container - this must be unique.
    • Write your code in the widget, addressing the CSS style name, you gave to the State of button
    • The group the widget and the status button and save it to the library

    Any design element placed in the area of key State, as long as the graphic Style is not replaced or removed, is now affected by everything that your widget code doesn't.

    I hope this helps.

    David

    Creative muse

  • How to enter defaultvalue empty?

    For some settings of muse adobe such as text boxes, I would like a vacuum/no default value. This could be because the text box is disabled by default. Even when the settings are disabled, they always come by default in the final output in < pageItemHTML >. Is it possible to pass without a default value? Thank you!

    You cannot use a null value. Around her, the only way is to use a single space. It's annoying, but I guess it's because of the way the widget code is translated in the background.

    David

    Creative muse

Maybe you are looking for