AS3: No variables in testing environment

So one of the ways I work is to publish my swf into the
testing environment. If things are quite what I expect I often go
to the Debug menu and select "List Variables." Then I can see the
status of all my variables and often realize what is going on.
Try this with AS3.
Make a new AS3 FLA.
On the first frame put this.
var myVal:Number=10;
Publish and then List Variables.
Do you get anything other than:
Level #0:
Variable _level0.$version = "MAC 9,0,45,0"
That is all I ever see. Not so useful.
Was this just a bad habit to develop? Or is this something
missing from AS3?

I am sorry but List Variables is not supported for
ActionScript 3.
The Flash player has no way of identifying whether the movie
being tested is
ActionScript 1 and 2 where it is supported or ActionScript 3
where it is
not, so the feature still remains accessible for both even
though it will
only work for ActionScript 1 and 2.
"Rothrock" <[email protected]> wrote in
message
news:f221t4$rlv$[email protected]..
> So one of the ways I work is to publish my swf into the
testing
> environment. If
> things are quite what I expect I often go to the Debug
menu and select
> "List
> Variables." Then I can see the status of all my
variables and often
> realize
> what is going on.
>
> Try this with AS3.
>
> Make a new AS3 FLA.
> On the first frame put this.
> var myVal:Number=10;
> Publish and then List Variables.
>
> Do you get anything other than:
>
> Level #0:
> Variable _level0.$version = "MAC 9,0,45,0"
>
> That is all I ever see. Not so useful.
>
> Was this just a bad habit to develop? Or is this
something missing from
> AS3?
>

Similar Messages

  • Customer registration form won't display in testing environment.

    Hi everyone,
    I am using DWCS3 with the free version of MAMP.
    I have put a customer registration form together and have just started to add the php $mailSent code.
    In design view everything seems to be o.k the three gold shields are displayed at the top of my page.
    However when I try to view the page in my local testing environment, the page doesn't display at all I just get a white screen. I was also getting an error message suggesting my site url's weren't mapped properly, or, my server wasn't serving pages with a .php extension.
    I checked my datetest page and that is displaying today's date, I also checked my phpinfo page and that is also displaying.
    I also checked that my site url's are mapped properly, I would say they are because my other site pages e.g. index page, links page, about page ect are opening up in my testing browser.
    I have added my code for anyone to take a look at;
    the 1st block of code I added at the top of the document before the <!DOCTYPE> (suggested in The Essential Guide to Dreamweaver CS3)
    the 2nd block of code is added just after the page's main heading.
    the 3rd line of code is added to the form action in the opening form tag.
    Could someone please help, as I am stumped.
    Thankyou.
    <?php
    if (array_key_exists('send', $_POST)) {
    //mail processing script
    $to = '[email protected]';
    $subject = 'Customer Registration from HLPhotography';
    //process the $_POST variables
    $name = $_POST['name'];
    $email = $_POST['email'];
    $postcode = $_POST['postcode'];
    //build the message
    $message = "Name: $name\n\n";
    $message .= "Email: $email\n\n";
    $message .= "Postcode: $postcode";
    //limit line length to 70 characters
    $message = wordwrap($message, 70);
    //send it
    $mailSent = mail($to, $subject, $message);
    ?>
       <?php
    if ($_POST && !$mailSent) {
    ?>
        <p class="warning">Sorry there was a problem sending your message, please try later.</p>
        <?php
    elseif ($_POST && $mailSent) {
    ?>
        <p><strong>Your message has been sent thankyou for registering your details.
        </strong></p>
        <?php } ?>
    <form id="formcusrg" name="formcusrg" method="post" action="<?php echo $_SERVER['PHP_SELF']; ?">

    Sorry, I can't help with your question, I'm not a php guru  :-)   but you may want to edit out that email address if it's a live one - it will get hit by the bots if left here too long !
    Nadia
    Adobe® Community Expert : Dreamweaver
    Unique CSS Templates |Tutorials |SEO Articles
    http://www.DreamweaverResources.com
    http://csstemplates.com.au/
    http://twitter.com/nadiap

  • Xquery testing environment

    He guys!
    There is a question about creating the xquery testing environment.
    I have Altova XML Spy editor to write xquery. How to load OSM automation classes which xquery script will see in xml spy runtime?
    Typical xquery automator contains next external objects:
    automator, outboundMessage, context. How to declare this variables in xml spy for debuging goals?

    The problem was solved by using SaxonB implementation of Xquery processor.
    The sample application for testing xquery scripts for automation cartridges:
    package xq;
    import net.sf.saxon.query.*;
    import net.sf.saxon.Configuration;
    import java.io.*;
    import java.util.Properties;
    import java.util.logging.Logger;
    import javax.xml.transform.OutputKeys;
    import javax.xml.transform.stream.StreamResult;
    import javax.xml.transform.stream.StreamSource;
    import javax.jms.QueueConnection;
    import javax.jms.QueueConnectionFactory;
    import javax.jms.QueueSession;
    import javax.jms.TextMessage;
    import oracle.communications.ordermanagement.automation.plugin.XQuerySender;
    import com.mslv.oms.automation.*;
    import org.apache.commons.logging.*;
    public class XQueryAutomatorCustom {
         @SuppressWarnings("deprecation")
         public static void main(String[] args) {
              String xQueryFileName="query.xq";
              String inputXMLFileName="input.xml";
              if (args.length==2)
                   xQueryFileName=args[0];
                   inputXMLFileName=args[1];
              try {
              java.util.Hashtable env = new java.util.Hashtable();
              env.put(javax.naming.Context.INITIAL_CONTEXT_FACTORY, "weblogic.jndi.WLInitialContextFactory");
              env.put(javax.naming.Context.PROVIDER_URL, "t3://ip:port");
              javax.naming.Context ctx = new javax.naming.InitialContext(env);
              QueueConnectionFactory qconFactory = (QueueConnectionFactory) ctx.lookup("test/jms/ConnectionFactory");
              QueueConnection qcon = qconFactory.createQueueConnection();
              QueueSession qsession = qcon.createQueueSession(false, javax.jms.Session.AUTO_ACKNOWLEDGE);
              TextMessage msg = qsession.createTextMessage();
              Configuration config = new Configuration();
              StaticQueryContext staticContext = new StaticQueryContext(config);
              XQueryExpression exp = staticContext.compileQuery(new FileInputStream(xQueryFileName), "UTF-8");
              DynamicQueryContext dynamicContext = new DynamicQueryContext(config);
              dynamicContext.setContextNode(config.buildDocument(new StreamSource(
                        new File(inputXMLFileName))));
              dynamicContext.setParameter("outboundMessage", msg);
              dynamicContext.setParameter("context", new TaskContextBean());
              dynamicContext.setParameter("log", LogFactory.getLog(XQueryAutomatorCustom.class));
              dynamicContext.setParameter("automator", new XQuerySender());
              Properties props = new Properties();
              props.setProperty(OutputKeys.METHOD, "xml");
              props.setProperty(OutputKeys.INDENT, "yes");
              exp.run(dynamicContext, new StreamResult(System.out), props);
              System.out.println("\n**************\nAssigned corrID: "+msg.getJMSCorrelationID());
              } catch (Exception e) {e.printStackTrace(); System.exit(0);
    build.xml file:
    <project name="xq_test">
         <path id="class.path">
              <pathelement location="C:\saxon\saxonb\saxon9.jar" />
              <pathelement location="D:/wlserver/server/lib/wljmsclient.jar"
              />
              <pathelement location="C:/OSM/SDK/Automation/automationdeploy_bin/automation_plugins.jar"
              />
              <pathelement location="C:/OSM/SDK/Automation/automationdeploy_bin/commons-logging-1.1.jar"
              />
         </path>
         <target name="cli">
              <java classname="net.sf.saxon.Query" classpathref="class.path">
                   <arg value="-t" />
                   <arg value="-s:GetOrder.xml" />
                   <arg value="-q:query1.xq" />
                   <classpath>
                        <pathelement location="C:\app\research\saxon\saxonb\saxon9.jar"
                        />
                   </classpath>
              </java>
         </target>
         <target name="run">
              <java classname="xq.XQueryAutomatorCustom"
              classpathref="class.path"
              classpath="bin"
              >
                   <arg value="sw_create_sender.xq" />
                   <!--arg value="createwacallback_element.xml" /-->
                   <arg value="response.xml" />
              </java>
         </target>
    </project>
    Edited by: 889824 on 06.10.2011 2:05

  • Correct idea to scale out testing environment and test service pack2 installation

    Hi
    I have a sharepoint 2010 farm it has one sharepoint server, one database server
    In one server  below services are running
    Central administration service
    SharePoint Server Search 
    User Profile Service 
    Microsoft SharePoint Foundation Web Application
    so i want to scale out this form  to
    1 application server
    1 web front end server
    1 Search server (index server)
    1 databse server
    here how i scale out to this form
    1)here how i move  sharepoint  server search service to new  index server and
    2) here how i move  Microsoft SharePoint Foundation Web Application to new webfront end server
    and in this single server  some web appllications are running also how i move these to new wf server
    i want to do like this  because i want to test service pack 2 installation, now  sharepoint version is : service pack1
    my actual production environment has
    2 application servers
    2 webfront end servers
    2 index servers
    1 databae server
    so this correct idea to scale out testing environment and test service pack2 installation
    adil

    Hi Adil,
    The link below describes how to scale SharePoint Web Front-End with only web applications and the search query server  out of one SharePoint server with all roles running.
    http://sharepointsolutions.com/sharepoint-help/blog/2011/02/how-to-scale-out-a-sharepoint-2010-farm-from-two-tier-to-three-tier-by-adding-a-dedicated-application-server/
    Now you have two SharePoint server with:
    Tier 1 – SharePoint Server dedicated as a Web Front-End (WFE) with only the web application(s) and the search query service running on it
    Tier 2 – SharePoint Server dedicated as an Application Server with all of the other service applications running on it, but no web applications or query service
    Tier 3 – SQL Server for the databases
    Then you would scale out WFE server with web applications from tier1. Now please install a new SharePoint server and join it to the existing farm and deploy it as Web Front Server. Enable the relevant services on Web Front servers per the topology picture
    below, and stop the services running on the old server.
    http://technet.microsoft.com/en-us/library/cc263044(v=office.14).aspx
    Regards
    Rebecca Tu
    TechNet Community Support

  • Workbook won't open after import into test environment - Function Related

    Hi Experts,
    We have a disco report that uses a custom database function. The function has been registered and is valid in the development environment and the report works fine.
    We have exported the business area, report and relevant functions from the development environment and imported them into the test environment (Using diso admin import/export tool) in the following order:
    1. Functions
    2. Business Area
    3. Workbook
    There were no errors during the import with the exception of a failed grant which was my logon and does not exist in the target environment.
    When I attempt to open the workbook in the test environment I receive the following error message: Item dependancy"" not found in the EUL. Attempt to open workbook failed.
    At first I though that this was a folder developer key issue because I did have to change the id of a folder that this report uses however I have re-synced the ID's by ensuring the eul id's were different and I have decompiled the workbook using the d51wkdmp tool and I have confirmed that the workbook is looking at the correct items.
    I noticed that the workbook had three function references so in the development environment I deleted the fields that used the functions and re-imported the workbook, guess what it worked OK meaning that the folder ID's etc... are ok and all in sync.
    I attempted to create a new workbook in the test environment that used the imported function. When I did I got an error message saying that there was too many parameters for the function, exactly the same process works in the development environment and the calculation creates ok. I checked the function definition in discover administrator (test environment) and the function is correct, parameters present and validates OK exactly the same as the dev environment however when I try to use it discoverer plus falls over!!!!
    Any ideas/pointers, at the moment I can't see how this can be anything except a bug in the import utility as the function is OK in Development and doesnt work in Test, we have used the standard export/import tools.
    Thanks
    Keith

    Hi Rod,
    This error is occuring with functions that only have 2 or 3 parameters. My standard install processes do use the refresh option.
    I have been following this up with Oracle Support and they have managed to replicate the bug in there environment. It has something to do with optional parameters, when you change all the parameters to required it works ok however I have other functions that have optional parameters that do work ok so it is clearly not just the presence of optional parameters that is causing the problem.
    This is the first time (and probably the last) that I have tried to do disco migration using the admin import tool I have always used the command line interface to automate installs in the past, as I havn't run into this before I would imagine the bug is not present in the command line tool.
    I will post an update when I hear back from Oracle Development on a fix.
    Keith

  • In app purchase is not working in testing environment in sandbox for the past 5 days. Please anyone know about this issue.

    in app purchase is not working in testing environment in sandbox for the past 5 days. Please anyone know about this issue.
    What i did
      1 . Added three products more to the existing in-app
      2 . Tested with sanbox
    i am getting the error "cannot connect to itunes store" with error code "0" when trying to purchase product in sandbox.
    Is sandbox is down?Please help guys..

    Apple's sandbox has been down practically all month. You can check the status here:
    http://sandbox.itunes.apple.com

  • Issue with External Form Repost in Testing Environment

    Please help!
    We are attempting to add an Eloqua repost to our webform on https://www.2checkout.com/signup. We are a payment processor and therefore, our customer admin area, of which this page is a part, must maintain various compliance standards. With this in mind, we are testing the repost in our test environment, which sits on https://va.test.2checkout.com. I've double-checked and our eloqua tracking scripts are picking up these pages.
    When we run the repost, the line of code to get the GUID - 
    elqQ.push(['elqGetCustomerGUID']);
    is erroring. I've attached a screenshot.
    For reference, we're using the code illustrated in Thomas Reyto's Topliner's post: http://topliners.eloqua.com/community/do_it/blog/2012/04/17/how-to-repost-an-externally-hosted-form-to-eloqua.
    Any assistance in determining the issue would be most appreciated! As mentioned, we really want to get this working in the test environment before we push it live, as it could break our sign up process otherwise.
    Thank you Topliners!

    Jennifer Comisford the JavaScript snippet to include elqcfg.min.js on your page?  The waituntilCustomerGuidIsRetrieved function is defined in the elqcfg.min.js tracking script.  From the error it looks like your page has not loaded the file correctly.
    <script type="text/javascript">
        var _elqQ = _elqQ || [];
        _elqQ.push(['elqSetSiteId', '#########']);
        _elqQ.push(['elqTrackPageView']);
        (function () {
            function async_load() {
                var s = document.createElement('script'); s.type = 'text/javascript'; s.async = true;
                s.src = '//img.en25.com/i/elqCfg.min.js';
                var x = document.getElementsByTagName('script')[0]; x.parentNode.insertBefore(s, x);
            if (window.addEventListener) window.addEventListener('DOMContentLoaded', async_load, false);
            else if (window.attachEvent) window.attachEvent('onload', async_load);
    </script>

  • SSRS 2012 Subscription Error in Test Environment

    Hi All,
    I was trying to set-up Email Subscription for SSRS in my Test Environment using "Reporting Services Configuration Manager" and after providing SMTP server details. I was getting error "Failed to sent Email to [email protected]"
    What could be the reason?
    I tried pining SMTP IP address from the Machine where SSRS installed and I was able to ping SMTP Server using CMD ping command.
    Thanks Shiven:) If Answer is Helpful, Please Vote

    Hi All,
    I found the issue. The IP address of Machine, where SSRS server installed, was not included in to the SMTP relay and that's why I was getting error "Failed
    to sent Email to [email protected]".
    Once my network team, added IP address, it started working fine.
    Another thing I noticed, due to some reason SQL Server Agent was stopped and was not running and one
    of my colleagues was trying to create new subscription and was getting error 'The SQL Agent service is not running. This operation requires the SQL Agent service. (rsSchedulerNotResponding)'.
    Once I started SQL Server Agent, My colleague was able to create new subscription. 
    Thanks Shiven:) If Answer is Helpful, Please Vote

  • Office Web Apps Integration in a Test Environment

    I am trying to test Office Web Apps in an Exchange 2013 test environment and therefore have setup my farm for HTTP only.  I have set the WAC Discovery End Point on the Exchange server and I can browse to the XML successfully however when I preview files
    they are still being displayed using Web-Ready Document Viewer.  I have checked the Event Log and found event ids 140 and 141.  
    Event 141 lists the following error - There was a failure connecting to or otherwise retrieving Data from the Wac Discovery Service. We will fall back to stellent. Successfully retrieved configuration data from http://server01/hosting/discovery, but
    retrieved discovery xml does not contain an external https net zone node.
    Do I need to configure HTTPS with a certificate in order to get this working in a test environment or should it work with HTTP?
    Thanks

    Hi Luke,
    Based on my research, I found some people solved this issue via resarting MBX server and CAS server on Exchange 2013 server.
    Similar thread for your reference:
    Exchange 2013 and Office Web Apps Server Integration
    http://social.technet.microsoft.com/Forums/en-US/927a84db-cf54-4546-8b94-374c64eaac2d/exchange-2013-and-office-web-apps-server-integration?forum=exchangesvrgeneral
    Please also double check whether there is anything missing during the integration. Offical articles for your reference:
    Deploy Office Web Apps Server
    http://technet.microsoft.com/en-us/library/jj219455(v=office.15).aspx
    Office Web Apps Server Integration
    http://technet.microsoft.com/library/2591b1be-92c4-4192-9f5e-e4e6b319170a
    Hope it is helpful
    Thanks
    Mavis
    Mavis Huang
    TechNet Community Support

  • Use of DataGuard in a testing environement

    Hi all,
    whenever an incident occurs on our production system, we import a dump from our production database into our test database to reproduce the incident and to find a solution for the issue.
    Taking a dump and import this into a test database takes several hours.
    Now I'm thinking about a solution using DataGuard to speed up this scenario. It is quiet important for us to solve production incidents as soon as possible (banking environement).
    So I think about the following:
    DB PROD => master
    DB TEST1 => standby
    When an incident occurs I want to
    - remove DB TEST1 from DataGuard and use this DB as an independent DB where we can reproduce the incident.
    - add a new stand by to DataGuard to have a test DB for the next incidents
    Does anyone use DataGuard in the same manner or does anyone can tell me if this would be a possible way?
    Many thanks in advance fpr your support.
    Andreas

    Its a thought, but its not the best use of Data Guard (in my humble opinion). When I think Data Guard I think:
    Recovery Plan
    Read-only services
    Minimize downtime
    You are looking for a quick way to refresh your test environment and I believe RMAN Duplicate might be a better answer. You can have everything setup in advance just like Data Guard.
    If you do decide to use Data Guard for this sooner or later you will probably trash your standby setup and have to use RMAN Duplicate to fix it.
    However if your database is really huge it might be a great idea to have the standby the way you say with a short delay on apply on the standby end.
    Best Regards
    mseberg

  • Best practice for the test environment  &  DBA plan Activities    Documents

    Dears,,
    In our company, we made sizing for hardware.
    we have Three environments ( Test/Development , Training , Production ).
    But, the test environment servers less than Production environment servers.
    My question is:
    How to make the best practice for the test environment?
    ( Is there any recommendations from Oracle related to this , any PDF files help me ............ )
    Also please , Can I have a detail document regarding the DBA plan activities?
    I appreciate your help and advise
    Thanks
    Edited by: user4520487 on Mar 3, 2009 11:08 PM

    Follow your build document for the same steps you used to build production.
    You should know where all your code is. You can use the deployment manager to export your configurations. Export customized files from MDS. Just follow the process again, and you will have a clean instance not containing production data.
    It only takes a lot of time if your client is lacking documentation or if you re not familiar with all the parts of the environment. What's 2-3 hours compared to all the issues you will run into if you copy databases or import/export schemas?
    -Kevin

  • Best Practice - Hardware requirements for exchange test environment

    Hi Experts,
    I'm new to exchange and I want to have a test environment for learning, testing ,batches and updates.
    In our environment we have co-existence 2010 and 2013 and I need to have a close scenario on my test environment.
    I was thinking of having an isolated (not domain joined) high end workstation laptop with (quad core i7, 32GB RAM, 1T SSD) to implement the environment on it, but the management refused and replied "do it on one of the free servers within the live production
    environment at the Data Center"... !
    I'm afraid of doing so not to corrupt the production environment with any mistake by my configuration "I'm not that exchange expert who could revert back if something wrong happened".
    Is there a documented Microsoft recommendation on how to do it and where to do so to be able to send it to them ??
    OR/ Could someone help with the best practice on where to have my test environment and how to set it up??
    Many Thanks
    Mohamed Ibrahim

    I think this may be useful:
    It's their official test lab set up guide.
    http://social.technet.microsoft.com/wiki/contents/articles/15392.test-lab-guide-install-exchange-server-2013.aspx
    Also, your spec should be fine as long as you run the VMs within their means.

  • Runtime error in F-48( Test environment error in SAPLGLT0 program )

    Hi Expert,
    i am getting the run time error while run the F-48 tcode in program "SAPLGLT0" and include "LGLT0FER"
    if i do the Extended program check of SAPLGLT0 program i am getting
    Test environment error like : The namespace of the program SAPLGLT0 has the setting "C" and cannot be tested A pssible cause for this is that an SAP program is being checked in a customer System
    How to correct that ? is any sap note available ?
    Thanks and Regards,
    GR

    Hi,
    Please check the following notes
    Note 1242773 - Getting short dump when doing GR for combined requisitions
    Note 1047059 - Run time error in migo/Goods receipt
    Regards,
    Jigar

  • Problem in Transporting Data in test environment

    Hi,
    I've added some new attributes to an existing object. I load it in Developement environment, everything is working fine in that. But when I transported the object and Transfer rules in Test environment, the data in new fields is not getting loaded. I tried to run simulation and  data is coming correctly in Transfer rules but not getting loaded to new fields in Communication structure.
    So, its working fine in developement system but not in Test system
    Any clue what's happening.
    Regards
    Tarun

    Yes,
    But I found something. I ran the transfer in debugging mode and noticed that code was not being transported correctly to Test environment. Though I don't know the reason behind that, but I've just initiated a new transport request.
    Hopefully, this will solve the problem.
    Regards
    Tarun

  • German Umlauts OK in Test Environment, Question Marks (??) in production

    Hi Sun Forums,
    I have a simple Java application that uses JFrame for a window, a JTextArea for console output. While running my application in test mode (that is, run locally within Eclipse development environment) the software properly handles all German Umlauts in the JTextArea (also using Log4J to write the same output to file-- that too is OK). In fact, the application is flawless from this perspective.
    However, when I deploy the application to multiple environments, the Umlauts are displayed as ??. Deployment is destined for Mac OS X (10.4/10.5) and Windows-based computers. (XP, Vista) with a requirement of Java 1.5 at the minimum.
    On the test computer (Mac OS X 10.5), the test environment is OK, but running the application as a runnable jar, german umlauts become question marks ??. I use Jar Bundler on Mac to produce an application object, and Launch4J to build a Windows executables.
    I am setting the default encoding to UTF-8 at the start of my app. Other international characters treated OK after deployment (e, a with accents). It seems to be localized to german umlaut type characters where the app fails.
    I have encoded my source files as UTF-8 in Eclipse. I am having a hard time understanding what the root cause is. I suspect it is the default encoding on the computer the software is running on. If this is true, then how do I force the application to honor german umlauts?
    Thanks very much,
    Ryan Allaby
    RA-CC.COM
    J2EE/Java Developer
    Edited by: RyanAllaby on Jul 10, 2009 2:50 PM

    So you start with a string called "input"; where did that come from? As far as we know, it could already have been corrupted. ByteBuffer inputBuffer = ByteBuffer.wrap( input.getBytes() ); Here you convert the string to to a byte array using the default encoding. You say you've set the default to UTF-8, but how do you know it worked on the customer's machine? When we advise you not to rely on the default encoding, we don't mean you should override that system property, we mean you should always specify the encoding in your code. There's a getBytes() method that lets you do that.
    CharBuffer data = utf8charset.decode( inputBuffer ); Now you decode the byte[] that you think is UTF-8, as UTF-8. If getBytes() did in fact encode the string as UTF-8, this is a wash; you just wasted a lot of time and ended up with the exact same string you started with. On the other hand, if getBytes() used something other than UTF-8, you've just created a load of garbage. ByteBuffer outputBuffer = iso88591charset.encode( data );Next you create yet another byte array, this time using the ISO-8859-1 encoding. If the string was valid to begin with, and the previous steps didn't corrupt it, there could be characters in it that can't be encoded in ISO-8859-1. Those characters will be lost.
    byte[] outputData = outputBuffer.array();
    return new String( outputData ); Finally, you decode the byte[] once more, this time using the default encoding. As with getBytes(), there's a String constructor that lets you specify the encoding, but it doesn't really matter. For the previous steps to have worked, the default had to be UTF-8. That means you have a byte[] that's encoded as ISO-8859-1 and you're decoding it as UTF-8. What's wrong with this picture?
    This whole sequence makes no sense anyway; at best, it's a huge waste of clock cycles. It looks like you're trying to change the encoding of the string, which is impossible. No matter what platform it runs on, Java always uses the same encoding for strings. That encoding is UTF-16, but you don't really need to know that. You should only have to deal with character encodings when your app communicates with something outside itself, like a network or a file system.
    What's the real problem you're trying to solve?

Maybe you are looking for

  • How can I see, use and edit contacts on PC without...

    Now I finally worked out how to sync my contacts to my N95 8G (see earlier posts), I would like to use this data, plus the calendar data on a daily basis on my PC and update it where necessary, before finally synching back to the N95 at the end of th

  • Select first rows with rowno

    Problem: I search for 20 companies with highest turnover in a table. Its a dynamic SQL (created at runtime), I can not use a hard coded fetch of 20 rows. (Example is a simple table with companyID, turnover and a key) I read in documentation, that fir

  • Will stacks show in pic's when burning a dvd?

    Hi all, just wanted to know if the stacks in my pic's will show when burning a dvd. When I fix red-eye or auto smart fix it shows the stacks on my pic's. I don't want the stacks to show when burning the pic's on a dvd. Thanks, alot

  • Wlan on E71

    I have problem with my the sets of my WLAN@ school. i need 802.1x on wep peap mschsp I did everything but the 802.1x use only wpa\wpa2, is there any chance i am missing something?

  • I have been unable to update my ipod software. I continue to get error message number (-1).  I have followed all sugesstions

    I continue to get an error message when I attempt to update my ipod software. the error number is (-1)  I followed the suggestions made on the help pages