Why MAP doesn't work in Sri Lanka?

im Lakmal, i'm using i phone 5s , MAP , This app doen't give direction in here.it shows the location bt can not get direction. thank you

I'm afraid you're not on the list:   http://www.apple.com/ios/feature-availability/

Similar Messages

  • One reason why commandLink doesn't work in dataTable

    Ok, so I think I've got an explanation why commandLink doesn't work in dataTable when the model bean is request scoped. Maybe somebody can tell me if I'm wrong.
    I have a model bean that generates table rows based on some input criteria (request parameters).
    So, we validate the inputs, apply them to the bean and render the page. Once the inputs have been applied to the bean, a request for table rows returns rows, no problem.
    However, we put a commandLink in each row, so we can expand the details. Maybe we even get smart and repeat the input row-generating criteria as a hidden field in the page.
    Unfortunately, when the user hits the commandLink, the list page simply refreshes, maybe even w/out table rows. The user doesn't get the details page as expected.
    Why not?
    Because: in the DECODE phase (even before validation and before "immediate" values have had their valueChangeListeners called), we ask the model bean for the table rows, so we can decode the commandLinks. Unfortunately, in "decode" phase, the request-scoped model bean has not had its row-generating criteria updated (that happens in the "update model" normally, or at the END of the decode phase if we got cute by (1) setting the "immediate" attribute on the row-generating criteria to "true" AND (2) set a valueChangeListener to allow us to update the model bean early. The END of the decode phase isn't good enough -- in the middle of that phase, when we're attempting to deocde commandLinks, the model bean has no citeria, so there's no row data. No row data means no iteration over commandLinks to decode them and queue ActionEvents. So, we march through the rest of the phases, process no events, and return to the screen of origin (the list screen) with no errors.
    So, what's the solution?
    One solution is to make the model bean session-scoped. Fine, maybe we can store a tiny bit of data in it (the search criteria), so it's not such a memory drag to have it live in the session forever. How do we get that data in? A managed property in faces-config.xml with value #{param.PARENT_KEY} won't work because it's assigning request-scoped data to a session-scoped holder. JBoss balks, and rightly so. Do we write code in the model bean that pulls the request parameter out of thin air? (FacesContext.getExternalContext()....) I don't really like to code the name of a specific http request parameter into the bean, I think it's the job of the JSP or faces-config.xml to achieve that binding (request parameter to model propery). Plus, I'd be sad to introduce a dependency on Faces in what was previously just a bean.
    Is there a better way?
    In my particular situation, we're grafting some Faces pages onto an already-existing non-Faces application. I don't get the luxury of presenting the user an input field and binding it to a bean. All I've got to work with is a request parameter.
    Hmm, I guess I just answered my own question. if all I've got to work with is a request parameter, some ugliness is inevitable, I guess.
    I guess the best fix is to cheat and have the bean constructor look for a request parameter. If it finds it, it initializes the criteria field (which, in my case, is the key of an object that has a bunch of associated objects (the rows data), but could be more-general d/b search criteria).
    (I looked at the "repeater" example code in the RI, but it basically statically-generates its data and then uses 100% Faces (of course) to manage the paging (where "page number" is essentially the "criteria").
    Comments? Did I miss something obvious?
    John.

    ...or I could just break down and do the thing I was hoping to avoid (outputLink instead of commandLink):
    <h:outputLink value="/faces/Detail.jsp">
      <f:param name="PARENT_KEY" value="#{bean.parentKey}"/>
      <h:outputText value="#{bean.label}"/>
    </h:outputLink>It's still a "hardcoded" parameter name, but at least the binding is in the JSP and faces-config.xml, not the bean Java code.

  • Updated to IOS6, maps doesn't work

    So I updates my software to ios6, was really looking forward to it as iv waited months like so may others and its terrible.
    My maps doesn't work at all, the location is completely wrong and when I switch to hybrid or satellite view it just goes into black grids and doesn't come on, when I do get a picture in an area miles away from me it's black and white, I understand it only came out today and there will be glitches but the new maps is one of the main things in the update so I expected that to be up to scratch, also my keypad is forever freezing since iv updated.
    In all honesty I'm actually really disappointed in the update and if I'd have know I'd have stuck with ios5, the colour scheme was a lot better in the old version to, just wondering if anyone else has came across the map problem?

    im having the same trouble funny how they never mentioned this before we updated i wasnt expecting the 3d flyover view to work on iphone 4 because of the lack of appropiate processing power but i wasnt expecting to lose the hybrid or satellite view all im left with is the basic mapping view
    cmon apple fix it or at least let us have google maps back as an option

  • Confused as to why this doesn't work...

    I wrote this code correctly, but it doesn't seem to work. I'm not sure if I'm leaving something out or not using something correctly. If anyone can tell me why this doesn't work, it would be greatly appreciated!
    P.S. in the actionPerformed method, I want to put the window to close once someone clicks an "ok" button. How is this done? I've tried using setDefaultCloseOperation(3), but it doesn't seem to work.
    peace,
    Mark
    //?2002 Copyright. MJA Technologies.  All Rights Reserved.
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class About extends JFrame implements ActionListener
        JTextArea textarea;
        JPanel panel1;
        JButton okbutton;
        String output;
        public About()
            super("Pages");
            Container container = getContentPane();
            textarea = new JTextArea();
            textarea.setText("Pages 1.0 beta 0\n?2002 MJA Technologies.\nAll Rights Reserved.");
            container.add(textarea);
            setDefaultCloseOperation( 3);
            setVisible(true);
            setSize(400, 300);
        public void actionPerformed(ActionEvent event)
            if(event.getSource() == okbutton)

    Oh see, you said this:
    "P.S. in the actionPerformed method, I want to put the window to close once someone clicks an "ok" button. How is this done? I've tried using setDefaultCloseOperation(3), but it doesn't seem to work."
    so I said this:
    "setVisible(false)"
    NOOOOOOOOOOOW you say the TextArea doesn't show up...that's a whole other problem.
    Jeeeeeeeeeeeeeeeez.
    So what layout manager are you using in the container? (hint hint)

  • Error mapping doesn't work for me. Plz Help!

    I have created a .war using deploytool and added "404, /WEB-INF/NoSuchPage.html" in the error mapping area in file refs on the right tabbed panes.
    When I deploy the war and test it, the error mapping doesn't work. The server still display the default 404 page to me.
    What is the problem?
    I do have checked the descriptor. It contains:
    <error-page>
    ������<error-code>404</error-code>
    ������<location>/WEB-INF/NoSuchPage.html</location>
    </error-page>
    Any help will be greatly appreciated!

    <?xml version="1.0" encoding="UTF-8" ?>
    <web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
    <display-name>WebApp</display-name>
    - <welcome-file-list>
    <welcome-file>login.html</welcome-file>
    </welcome-file-list>
    - <error-page>
    <error-code>404</error-code>
    <location>/Error.html</location>
    </error-page>
    <jsp-config />
    </web-app>
    This is a very simple war with no component and an error page is defined. But this doesn't work. When I type something like /loginnnn.htmllll, it doesn't give me the error page. That is my problem. Any idea???

  • Why FaceTime doesn't work in Saudi Arabia ?

    why FaceTime doesn't work in Saudi Arabia ?

    we have stores sell apple products some of them sell with faetime at a high rate,
    and some other sell apple products without facetime at a normal price.
    finaly we need apple stores in Saudi Arabia to prevent this fraud.
    thank you
    what you're saying here is that some people parallel import apple products around the normal channels and they are from other countries so they havent got facetime blocked
    and others normally import apple products and they are blocked
    and then you go on believing that if apple had a store in saudi things would be better rest asured that if they did they would sell products with facetime blocked

  • Blackberry Maps doesn't work at all

    HI, Blackberry Maps doesn't work. It doesn't Find my location. trying to get BB Maps to work on my Q10-nothing seems to work. On the BB Maps, when I enter the 2 locations for directions, I get the following message: "The beginning of your route is too far away from a road. Proceed to nearest road and try again. (3003)." The first time I got this I was ON a road, pulled over, trying to get directions. It has never worked. I do get the blue dot telling me where I am, so I think the GPS function is working. Someone could help me?

    Hello,
    Something sounds quite wrong...if you have already done the obvious things (reboot, updated OS, updated app, etc.), then I'd recommend you seek formal support. That is available by contacting your mobile service provider, your original place of purchase, or an authorized service center -- it varies by region and issue. Since it's a BB-developed app, you need this formal support, and only they have the power to escalate your case up to BlackBerry for their attention.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • IPhone 2.0 - Maps doesn't work and Contacts is sluggish

    Updated to 2.0 and installed the new MobileMe Update.
    Maps doesn't show my position accurately. It shows I am 6 miles to the North East from my actual position and also can't find any locations when entered into Search or when an address is selected via the field in Contacts.
    Also, since going over to Push Mail, Calendars and Contacts (I deleted my itools account and then logged into the MobileMe account), whenever I open up Contacts, it won't do anything for 10 seconds and then starts working normally.
    Small note: I don't seem to be getting the E in the top left hand corner anymore. I get a square with a dot in it. What does this mean?
    Any thoughts or suggestions?
    Cheers

    The 2.0 map now claims I'm 6-7 miles SW of where I really am. I'm glad I'm not alone with the map bug, but I don't have the other problems you are describing.

  • I cannot sync Ical on my iMac with my professional calendar (outlook web access). and I don't understand why it doesn't work since I have already made it with my iPhone. Help

    Hello,
    I bought an iMac few days ago. I would like to sync ical on my iMac with my professional calendar I use in my company (from outlook web access).
    I was easy to manage it on my iPhone (I just add a new "exchange" mail account and ask for a calendar sync only) and it worked very quickly.
    But I cannot do it with the iMac, and I don't undersatnd why?
    the domain is is used for my iPhone is the following :
    owa.companyname.com
    I tried all the solutions I found in this forum but it doesn't work.
    Many thanks in advancefor your help.
    Matt

    Does it have to be an applet?
    If you want the same behaviour as in the code with traffic lights, change
    class MortgageApplet extends JApplet implements ActionListener {
    to
    class MortgageApplet extends JFrame implements ActionListener {
    and change
    public void init() {
    to
    public MortgageApplet() {                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Abap multi-mapping doesn't work

    Hi,
    We have a 7.1 PI system and we are trying to set up a multi-mapping. This should process one IDOC into multiple XML-files.
    If we do this with a message mapping everything works fine. If we do this with an abap mapping it doesn't work. We receive the following error message:
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!--  Message canceled -->
    - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="">
      <SAP:Category>XIServer</SAP:Category>
      <SAP:Code area="MAPPING">MISSING_INTERFACE</SAP:Code>
      <SAP:P1>2</SAP:P1>
      <SAP:P2 />
      <SAP:P3 />
      <SAP:P4 />
      <SAP:AdditionalText />
      <SAP:Stack>No interface specified for parameter 2</SAP:Stack>
      <SAP:Retry>M</SAP:Retry>
      </SAP:Error>
    I can make it work by changing a value in debugging. In class CL_MERGE_SPLIT_SERVICE, method ENTER_SPLIT_SERVICE, there is a read on table split_data:
              set interface
                READ TABLE split_data
                  WITH KEY
                    param_type = c_param_type_inbound
                    param_numb = <payload_line>-numb
                  ASSIGNING
                    <split_line>.
    Now if I change the <payload_line>-numb to 1 each time the table is read, everything works fine.
    What am I doing wrong here? Or is this a bug?
    Thanks,
    Wim
    Edited by: Wim Van Linden on May 19, 2009 12:32 PM

    Hi,
    What ws you mistake ? caus I have the same error, here is my XML generated :
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:Messages
         xmlns:ns0="http://sap.com/xi/XI/SplitAndMerge">
         <ns0:Message1>
              <SOAP:Envelope
                   xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/">
                   <SOAP:Header>
                        <OPER_REF>SAPPI</OPER_REF>
                   </SOAP:Header>
                   <SOAP:Body>
                        <ns2:createSapProductRequest
                             xmlns:ns2="http://xxxxxx.com/PI/ZIN243/SendMaterialList">
                             <country>FR</country>
                             <division>1300</division>
                             <productStage>
                             </productStage>
                             <productCode>000000000001207062</productCode>
                             <typeCode>VERP</typeCode>
                             <productLab>PALETTE INTERCO</productLab>
                             <productHierarchy>
                             </productHierarchy>
                             <productCreateDt>2009-06-19</productCreateDt>
                        </ns2:createSapProductRequest>
                   </SOAP:Body>
              </SOAP:Envelope>
         </ns0:Message1>
         <ns0:Message2>
              <SOAP:Envelope
                   xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/">
                   <SOAP:Header>
                        <OPER_REF>SAPPI</OPER_REF>
                   </SOAP:Header>
                   <SOAP:Body>
                        <ns2:createSapProductRequest
                             xmlns:ns2="http://xxxxxxx.com/PI/ZIN243/SendMaterialList">
                             <country>FR</country>
                             <division>1500</division>
                             <productStage>
                             </productStage>
                             <productCode>000000000001207062</productCode>
                             <typeCode>VERP</typeCode>
                             <productLab>PALETTE INTERCO</productLab>
                             <productHierarchy>
                             </productHierarchy>
                             <productCreateDt>2009-06-19</productCreateDt>
                        </ns2:createSapProductRequest>
                   </SOAP:Body>
              </SOAP:Envelope>
         </ns0:Message2>
    </ns0:Messages>

  • XML SQL Utility:Why it doesn't work?

    I am trying to use the XML SQL Utility
    by modifying the given example samp1.java
    for the JDBC-ODBC driver but errors emerged.
    Is there any thing wrong? Thanks.
    (The classpath setting is ok, I think)
    ***** Here is the error message:
    D:\OracleXSU\sample>java Sample
    Exception in thread "main" java.lang.NoClassDefFoundError: oracle/sql/Datum
    at oracle.xml.sql.query.OracleXMLQuery.<init>(OracleXMLQuery.java:127)
    at Sample.main(Sample.java:42)
    D:\OracleXSU\sample>
    ***** Here is the source code:
    /** Simple example on using Oracle XMLSQL API; this class queries the database with "select * from emp" in scott/tiger schema; then from the results of query it generates an XML document */
    import java.sql.*;
    import java.math.*;
    import oracle.xml.sql.query.*;
    // import oracle.jdbc.*;
    // import oracle.jdbc.driver.*;
    public class Sample
    //========================================
    // main() - public static void
    public static void main(String args[]) throws SQLException
    String tabName = "sbook";
    String user = "scott/tiger";
    try {
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    } catch(java.lang.ClassNotFoundException e) {
    System.err.print("ClassNotFoundException: ");
    System.err.println(e.getMessage());
    // DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
    //init a JDBC connection
    // Connection conn =
    // DriverManager.getConnection("jdbc:oracle:oci8:"+user+"@");
    Connection conn = DriverManager.getConnection("jdbc:odbc:SQLUtil");
    // create statement and execute it to get the ResultSet
    Statement stmt = conn.createStatement();
    ResultSet rset = stmt.executeQuery("select * from "+tabName );
    if(rset!=null)
    // init the OracleXMLQuery; note we could have passed the sql query string
    // instead of the ResultSet
    OracleXMLQuery qry = new OracleXMLQuery(conn,rset);
    // get the XML document is the string format
    String xmlString = qry.getXMLString();
    // print out the result
    System.out.println(" OUPUT IS:\n"+xmlString);
    null

    Firstly I think it is because the XML SQL Utility does not work with JDBC-ODBC driver.
    So I try it again with Oracle driver.
    But it still doesn't work? Why?
    ***** Here is the source code:
    /** Simple example on using Oracle XMLSQL API; this class queries the database with "select * from emp" in scott/tiger schema; then from the results of query it generates an XML document */
    import java.sql.*;
    import java.math.*;
    import oracle.xml.sql.query.*;
    import oracle.jdbc.*;
    import oracle.jdbc.driver.*;
    public class Sample2
    //========================================
    // main() - public static void
    public static void main(String args[]) throws SQLException
    String tabName = "emp";
    String user = "scott/tiger";
    DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
    //init a JDBC connection
    // Connection conn =
    // DriverManager.getConnection("jdbc:oracle:oci8:"+user+"@");
    //init a JDBC connection
    Connection conn = DriverManager.getConnection ("...Connection information...");
    // create statement and execute it to get the ResultSet
    Statement stmt = conn.createStatement();
    // ResultSet rset = stmt.executeQuery("select * from "+tabName );
    ResultSet rset = stmt.executeQuery("select * from COFFEES" );
    // Test if connection is sucessful -- it works!
    int i=0;
    while(rset.next())
    i++;
    System.out.println("Total rows="+i);
    // init the OracleXMLQuery; note we could have passed the sql query string
    // instead of the ResultSet
    OracleXMLQuery qry = new OracleXMLQuery(conn,rset);
    // get the XML document is the string format
    String xmlString = qry.getXMLString();
    // print out the result
    System.out.println(" OUPUT IS:\n"+xmlString);
    null

  • Why EL doesn't work with custom tags ?!

    I don't know why expression lang. doesn't work with me.
    here's an example, and please tell me why :
    --- the jsp page with EL ==> doesn't work :
    <%-- In the name of ALLAH most gacious most merciful --%>
    <%@ page language="java" %>
    <%@ taglib uri="/cartlib" prefix="cart" %>
    <html>
    <jsp:useBean id="product" class="ch16.cart.ProductCatalog" scope="application" />
    <cart:showCatalog productCatalog="${product}" addToShoppingCartUri="<%= response.encodeURL("AddToShoppingCart.jsp") %>" />
    </html>
    when using expressions instead, the page works .
    the new page is :
    <%-- In the name of ALLAH most gacious most merciful --%>
    <%@ page language="java" %>
    <%@ taglib uri="/cartlib" prefix="cart" %>
    <html>
    <jsp:useBean id="product" class="ch16.cart.ProductCatalog" scope="application" />
    <cart:showCatalog productCatalog="<%= product %>"
    addToShoppingCartUri="<%=
    response.encodeURL("AddToShoppingCart.jsp") %>" />
    </html>
    The error was :
    HTTP Status 500 -
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    org.apache.jasper.JasperException: jsp.error.beans.property.conversion
    org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper
    .java:512)
    org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:377)
    org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
    org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    root cause
    org.apache.jasper.JasperException: jsp.error.beans.property.conversion
    org.apache.jasper.runtime.JspRuntimeLibrary.getValueFromPropertyEditorManager(Js
    pRuntimeLibrary.java:885)
    org.apache.jsp.ShowProductCatalog_jsp._jspService(ShowProductCatalog_jsp.java:77
    org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:334)
    org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
    org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    note The full stack trace of the root cause is available in the Apache Tomcat/5.5.20 logs.

    Regarding setup, see this post reply #6
    http://forum.java.sun.com/thread.jspa?threadID=629437&tstart=0
    Other potential things to check: make sure you are getting the right value passed in
    productCatalog="${applicationScope.product}"
    ${product} by preference would take a pageContext, request or session attribute before the application level one (it uses pageContext.findAttribute).
    What do you get if you just print out ${product} on the screen?
    It should call a toString() on it for rendering purposes.

  • Compass & Maps Doesn't work

    Hello,
    when i using my COMPASS also MAPS in my iPhone3Gs OS 4.0.1.
    it's look doesn't work exactly. when i taping to Compass always shown " Compass Interference move away from any interference................"
    in the same case on MAPS, also my position on map and the blue ball not according, i don't know if it's come from network provider career.
    but i have not moving away, just stay on my position but alway shown like this picture's on link:
    http://www.flickr.com/photos/36700715@N08/?saved=1
    or
    http://www.manjam.com/iphone3Gs
    even i have been restore many time my device iPhone 3Gs,.
    what is solution?
    thank you..!!

    So are you saying it will not show me the compass and GPS mode?
    I can get the compass to appear at all when under directions...so you are saying if you have point A to point B directions on your phone...with the gps dot pulsing (like it does on search) it will also give you the white compass highlight?

  • Iphone 5  LTE (4G) isNow working in Sri Lanka

    Apple
    iphone 5  LTE (4G) is NOW working in Sri Lanka

    There are no supported carriers at all in Sri Lanka, much less carriers that support LTE on the iPhone there.
    You can't overcome this until your carrier has their LTE network tested and certified as compatilbe by Apple and a carrier update is issued to support it.

  • Iphone bought in middle east not working in Sri Lanka

    I tried to use an iphone bought in the middle east, back home in Sri Lanka, is not working. According to the technicians it's not compatible with the networks here. If anyone have ideas please share with me...

    According to the technicians it's not compatible with the networks here
    The iphone is a world phone, compatible with any GSM network. Where did you buy your phone? Perhaps your phone is "locked" to a carrier network other than what's available where you live.

Maybe you are looking for

  • 3rd party order quesiton

    For the 3rd party Normally when we create the 3rd party order system automatically  create the PR ,Next to create the PO.and if we change the data(quantity / deliver date) in the sales order the  system will  automatically made the information date i

  • How to display the status of a SubVI on the front panel?

    Hi, I am writing a program to control an instrument through a serial communication port. The control and communication functions are integrated in a SubVI and they work fine. In the front panel of the main VI, I want to add some indicators to display

  • Trying to get my Ibook G4 wireless

    Hi I have an ibook g4 and im trying to make it wireless. Ive been readying and it says something about and airport extreme card. Is this right? I don't want to buy it and find out that its wrong. Furthermore is it easy to install? Any information wou

  • Why JVM treats every thing as a String only

    Hi If i am passing any input i.e primitive values from command prompt, I want to convert it once again back to primitives by using Integer.parseInt(). Why JVM is treating everything as a String only. why can't it read as primitives itself ? Any reaso

  • How to replicate data to hana server based on company code?

    I have huge data in ECC system related to different company codes in multiple tables. So while replicating data into hana system i want to pass company code as a parameter for selected tables. Cos we have size constraints in HANA server. So plz help