GPS Conversion ETSI LIP

I am writing a program where I am receiving an ETSI LIP string and need to convert it to decimal. I currently don't understand how it is converted.
I receive the following in HEX, which coverted to binary for ease, but can't figure out the conversion.
LONG:0110011100110110010011000  or in hex: 67 36 4C 00    (25 bits)
LAT:110010100001100101011001 or in hex: CA 19 59      (24 bits)
The above converts into this somehow (Taken from a logging program);
0110011100110110010011000 Longitude = 0x0CE6C98 (145.142012)
110010100001100101011001 Latitude = 0xCA1959 (-37.899131)
Does anyone have any idea how I go about converting the binary/hex to decimal using ETSI LIP?
Solved!
Go to Solution.

I guess it is a protocol question - I seen another user post http://forums.ni.com/t5/LabVIEW/GPS-Position/td-p/1863217 but was old so thought I'd start my own, and seeing as I am using VB, thought I'd give it a shot, as I'm sure I'll have plenty more questions.
The first document is the one I've been referencing - In there it states;
Longitude
Longitude information element shall indicate longitude of the location point in steps of 360/2^25 degrees in range
-180 degrees to +(180 - 360/2^25) degrees using two's complement presentation. Negative values shall be west of zero
meridian and positive values shall be east of zero meridian.
Latitude
Latitude information element shall indicate latitude of the location point in units of 180/2^24 degrees in range
-90 degrees to +(90 - 180 / 2^24) degrees using two's complement presentation. Negative values shall be south of equator
and positive values shall be north of equator.
Now I know the following is correct;
0110011100110110010011000   Longitude                       = 0x0CE6C98   (145.142012)
110010100001100101011001    Latitude                        = 0xCA1959    (-37.899131) 
I just need to find how they got the decimal lat/long
I can use the following for the Long (Although, referencing the above, this is the Lat formula)                   
0x0CE6C98 = 13528216
(180/(2^24))* 13528216=145.142011642
Do you know how I can find -37.899131 with Hex:CA1959/Dec:13244761?

Similar Messages

  • Aperture 3 to Lightroom 4 GPS metadata conversion

    Good day.  I'm needing help converting GPS data created in Aperture 3 to the images so that I can pull this information into Lightroom 4 (which I'm currently under the 30 day trial period but despirately wanting to change to!).  Does any of you have any advice on how to do this?  Please help!!!
    Chris

    John,
    Your advice continues to be spot-on, however, my ability to understand and implement appears to substantially lag when it comes to it's use.  Here's my steps (if you can let me know where I'm messing up I'd appreciate it).  I've exported the originals and the accompanying metadata in a .txt file, which I then converted to a .csv file to make it compatable with LR/T.  After installing the plug-in and importing the images, I selected Library > Plug-in Extras > Import Metadata using LR/Transporter.  After this, I get a window and select my .csv file (everything's beautiful to this point! ) in the "Input File" box.  What do I need to do at that point?  I see the latitude and longitude in separate columns, as expected, in the .csv file, along with other data; the latitude is expressed as (i.e.,) 41,5688700076N and longitude expressed as 87,39.35256521W.
    Thanks again for your continued dedicated assistance!
    Chris

  • Is there a way to have Siri resume an app (i.e. GPS) after you're done with it?

    Hey guys,
    Long time lurker, first time posting.  Please forgive me if this has been asked, but I have not found anything related to this question.
    I use a GPS app all the time when I am in my car.  I use a bluetooth headset and I love the fact that I don't need to touch/look at the phone to complete certain tasks.
    What I do not like is that while I'm using the GPS app, I need to send a text/call/whatever, and I activate Siri.  The screen then changes to the Siri conversation screen.  When I'm done with Siri, the screen stays there and does not switch back to the GPS.  This requires me to look and reach over to press the Home button, and sometimes re-select the GPS app again. This can be very distracting as I drive manual as well.
    Is there a command or something I can say to have Siri resume the previously open app?
    I have tried "Open previous app", "Resume app", and a bunch of other similar commands.  None worked.  Siri just says that it can't complete that task.
    Any help or solution is greatly appreciated!
    Cheers.

    I'd also like this to be the norm. Maybe it needs an entry for the SatNav app you use for siri in some config somewhere, as the other apps (phone, etc) are "built in". The siri could know to revert to that app.
    Regards

  • My gps is not working.  I cannot use turn-by-turn navigation in google maps.  I downloaded a GPS test app and it showed my phone is not locking on any satellites.  How can I correct this?

    My gps is not working.  I cannot use turn-by-turn navigation in google maps.  I downloaded a GPS test app and it showed my phone is not locking on any satellites.  How can I correct this?

    We certainly want to make sure you get the most out of the GPS, wplaxico! Was this tested primarily outdoors? When did this begin? Any other recent apps of updates installed when this started?
    Thank you,
    YaleK_VZW
    Follow us on Twitter @VZWSupport
    If my response answered your question please click the �Correct Answer� button under my response. This ensures others can benefit from our conversation. Thanks in advance for your help with this!!

  • Reports 10g Missing information during file conversion

    I have a large report that includes several graphs that keeps giving me an error during conversion that says the report is missing information and cannot create the file. I have never seen this before this report. It is actually giving me the message REP-1067 Some information is missing in the report. It just seems to happen when I add another graph. There is no information on REP-1067 in searching in the forums which does not give me a lot of hope.. Anyone have any ideas where to look. Report Builder 10g, Database 10g.
    There are already several graphs in the report, so I don't believe it is a graphing issue.
    Edited by: jdev_p8baller on Nov 11, 2011 1:00 PM

    Hi,
    check this if it is helpful.
    TABLES: likp, lips,itcpo.
    DATA: pdftab type standard TABLE OF tline,
    datab TYPE standard TABLE OF itcoo.
    itcpo-tdgetotf = 'X'.
    CALL FUNCTION 'OPEN_FORM'
    EXPORTING
    DEVICE = 'PRINTER'
    DIALOG = 'X'
    FORM = 'Z1989_PRAC'
    LANGUAGE = SY-LANGU
    OPTIONS = itcpo
    // call script using start_form and write_form.
    CALL FUNCTION 'END_FORM'
    IMPORTING
    RESULT = gi_ofc
    CALL FUNCTION 'CLOSE_FORM'
    TABLES
    OTFDATA = datab
    EXCEPTIONS
    UNOPENED = 1
    BAD_PAGEFORMAT_FOR_PRINT = 2
    SEND_ERROR = 3
    SPOOL_ERROR = 4
    CODEPAGE = 5
    OTHERS = 6
    CALL FUNCTION 'CONVERT_OTF'
    EXPORTING
    FORMAT = 'PDF'
    IMPORTING
    BIN_FILESIZE = BINFILE
    TABLES
    otf = datab
    lines = pdftab
    CALL FUNCTION 'GUI_DOWNLOAD'
    EXPORTING
    BIN_FILESIZE = binfile
    filename = 'D:\MYFILE.PDF' //give the address where u want output.
    FILETYPE = 'BIN'
    tables
    data_tab = pdftab
    Regards
    Rajesh Kumar

  • Determining Speed Data from GPS | Flash Training with Paul Trani | Adobe TV

    Using ActionScript you can get GPS data from the device. Often the latitude and longitude is used, but did you know you can also get the direction of movement, accuracy, altitude as well as the speed? In this video learn how to get the speed property to create a simple and effective running app.
    http://adobe.ly/zZJLBa

    That Geolocation demo is really cool, and very professionally produced.But, I think there must be something off with the conversion. A max speed of 7 mph for that sort of dead sprint cannot be right, since 7 mph comes out to a leisurely 8:34 mile. That sprint was easily twice that fast, so 14-15 mph, minimum, would have been expected as a max speed.

  • Probelm facing in Zprogram select statements developed for PBS conversion

    Hi,
    Am using PBS conversion tool to convert the Report programs for Archive. In that program am having select statement for KONV table which takes KWERT and KSCHL based on KNUMV. In this case PBS conversion tool is not able to do the conversion and this where needs manual editing is necessary, becoz KNUMV and KSCHL which are used for selection are not supported as index fields.
    Kindly suggest how to proceed ..
    Thanks in Advance.

    NAME1,
    STRAS,
    MCOD2
    MCOD3
    LAND1
    TELF1
    TELFX
    FOR KNA1
    namev, name1 for knvk table
    name1, street, house_num1, str_suppl1, city1, country post_code1 for adrc table
    vbeln for vbak table
    /cwm/pikmg, /cwm/pikme for lips table

  • Manual for GPS Cradle no.6120 for Palm TX

    Hi all!
    I have Palm TX and GPS Cradle no.6120, but no manual for this cradle. Where is possible to find this manual?
    If impossible my quations are:
    1. Is GPS receiver already integrated in this cradle? If not, what kind of antenna can be inserted in socket "Antenna" on cradle?
    2. Power jack is for 5.2 Volt and in car is 12 Volt, what can I do? What kind power cable must I have?
    Thanks for your replys in advance.
    Post relates to: Palm TX

    Thank you for reply.
    This model number (6120) is writen on cradle, I can take a picture of label. So must be official number. And I have find cradles like this by german ebay (Kirrio GPS-KFZ-Halterung Cradle 6120 für PALM TX /E2/T5 http://cgi.ebay.de/ws/eBayISAPI.dll?ViewItem&ssPageName=STRK:MEWAX:IT&item=180372172250 ). It seems strange that no accessories of this model by Palm. And no accessories in general as GPS cradle for my model Palm TX. But your cradle model 3224NA is like of mine.
    I suppose I need also a spezial driver for my Palm TX for GPS cradle. I organized power 5.2 V from battery to cradle (jack is usual from nokia jack), but no success with GPS - no blinking light as sign - GPS is searching for satellites. And battery symbol of Palm TX was with lightning as for loading and correct power.
    And one more question about power cord. The conversion 12V of car to 5.2V for cradle is going in cabel or is this cabel only simple wire and convertion to 5.2V is already in cralde? I mean - can I take normal car cabel with right jack for crandle and it will be enough?
    Message Edited by vitali126 on 06-28-2009 02:29 AM
    Message Edited by vitali126 on 06-28-2009 02:30 AM

  • Note 4 GPS

    Only had phone for 3 weeks and yesterday is first time I tried to use Google maps to navigate.  I had strong signal but phone kept telling me GPS signal lost.   Navigation may work for a few minutes then quit, or may not find Me at all.
    I have done restarts, pulled sim card, even done a factory reset. Nothing helps. Ran phone in safemode. nothing fixed the problem. Cannot take phone back to store because I am a few days past the 14 day return. If Verizon sends me another phone it will be a refurbished one.my phone is only 3 weeks old.
    Here is another .strange thing. My wife has an LG G2 and it is a year and a half old. The only thing these 2 phones have in Common is lollipop.
    I am wondering if Verizon is aware of this problem and if there are any updates coming soon.
    Please help.

    highwayman8792,
    Thanks for keeping us posted! I'm glad you were able to find the cause of your issue. Keep us posted if you need further assistance.
    JohnB_VZW
    Follow us on Twitter @VZWSupport
    If my response answered your question please click the "Correct Answer" button under my response. This ensures others can benefit from our conversation. Thanks in advance for your help with this!!

  • 8520 Upgraded to OS 6, now can't turn on GPS or Location

    My 8520 Upgraded to OS 6, now can't turn on GPS or Location.  Poynt and other Aps were working and would find current location, but this stopped. The GPS and location options won't let me change them.

    SamRichards wrote:
    I know it sounds unbelievable but it is true.
    if you have installed OS6 on your 8520, then it can only be a pirate OS.
    RIM as never published OS6 for that model.
    I strongly advise you to uninstall it. Who knows what is in your device right now ! a program to spy on you and track your conversation, a program that will log all your passwords, a program that will take pictures without you knowing, and so on.
    SamRichards wrote:
    When i go to Options\advanced options\location settings, GPS Data Source is set to "None" and i cannot change it, Location services are set to Location Off, and I cannot change that either.
    yes that is to be expected, because the 8520 does not have a GPS antenna. The behavior you are stating is the same for all 8520 models in the world.
    The search box on top-right of this page is your true friend, and the public Knowledge Base too:

  • Combinataion between VBRK AND LIPS

    hi,
    I have a requirement, where i have to combine two tables , which doesnt have any field in common. but i have to combine the tables
    VBRK and LIPS.
    from lips
    i have to select matnr and lfimg.
    from  vbrk, i have to take vkorg,vtweg, kunrg.
    how can i take the materials from lips for the partiicular VKORG or KUNRG.?
    the only possible link, i have got is linking vbuk with both the tables.since the vbuk-vbeln hold the vbeln of  both these tables.
    i m not willing to use join also.
    I prefer for all entries.
    can some one help me out with the codes.

    hi,
    DATA:it_lips LIKE lips OCCURS 0 WITH HEADER LINE.
    DATA:it_vbrp LIKE vbrp OCCURS 0 WITH HEADER LINE.
    DATA:it_vbrk LIKE vbrk OCCURS 0 WITH HEADER LINE.
    START-OF-SELECTION.
      SELECT * FROM lips
      INTO TABLE it_lips
    UP TO 1000 ROWS.
    *where vbeln in s_vbeln and matnr in s_matnr.
      IF NOT it_lips[] IS INITIAL.
        SELECT * FROM vbrp INTO TABLE it_vbrp
        FOR ALL ENTRIES IN it_lips
        WHERE vgbel = it_lips-vbeln
        AND vgpos = it_lips-posnr
        AND   vgtyp = 'J'.
      ENDIF.
      IF NOT it_vbrp[] IS INITIAL.
        SELECT * FROM vbrk INTO TABLE it_vbrk
        FOR ALL ENTRIES IN it_vbrp
        WHERE vbeln = it_vbrp-vbeln.
      ENDIF.
      LOOP AT it_vbrk.
        WRITE: / it_vbrk-vbeln,it_vbrk-vkorg,it_vbrk-vtweg,it_vbrk-kunrg.
      ENDLOOP.
    ( If you are not getting entries into it_lips means you have to use conversion exit function module for vbeln in the tbale s_vbeln )
    Regds
    Sivaparvathi
    Please dont forget to reward points if helpful..
    Edited by: Siva Parvathi on Jan 10, 2008 8:50 AM

  • DNG and MESZ timestamp / sony A100 RAW conversion

    Hello,
    i have a question regarding the timestamp within the EXIF metadata after the RAW to DNG conversion for my A100 pictures. Today I have seen that the timestamp betwen the RAW original file and the converted DNG file differs about 3 hours. I can't explain me this difference by myself. Has someone here an idea for this difference? I use the Mac Version of the actual free DNG converter. My timezone is MESZ/CEST what also means UTC+2 at the moment if I'm right. So 2 hours difference I could imagine because of such a time zone missmatch, but not 3 hours. But if i look at the RAW files the timestamp addition also shows MESZ like in the DNG after conversion. The main reason why I want to use DNG format is the linkage with my GPS logger data. But if the timestamps will convert wrong, this would be a no go for me.
    Thanks for your help.
    Greetings,
    Tschubi

    I think what you are seeing is a longstanding mis-match between how Exif and XMP record date-time values, and--possibly--a failure on the part of some of your software to understand how to use date-times read from XMP for the Exif date-time properties. When reading an Exif date-time from XMP, the UTC offset should always be ignored when interpeting the date-time--it has no meaning.
    Three date-time metadata properties are involved in this issue, in XMP they are stored as the following properties:
    exif:DateTimeDigitized
    exif:DateTimeOrigional
    xmp:ModifyDate
    When Adobe software reads Exif metadata from files, it maps the values in the Exif tag(s) to XMP properties. The XMP is stored inside the file when the software saves or updates a file (or sidecar .xmp file for RAW files).
    For exmaple, the exif:DateTimeDigitized the value is taken from two Exif tags, 0x9003 ("DateTimeDigized") and 0x9291 ("SubSecTimeDigizied"). See Part 2 of the XMP Specification for more details about how Exif is mapped to XMP.
    The Exif specification defines no way to record a time zone or UTC offset for its date-time values. If you are trying to figure out what time the picture was taken reading Exif, it's impossible to know what time zone is correct. If cameras are recording the time zone, they are storing it in propritary metadata in the file, and not in a standard Exif tag.
    Unfortunetly until recently the XMP Specification defined a date-time string format that requires a UTC offset. That's the mismatch. So, what's the software do when it's supposed to write a UTC offset, but doesn't have one to go with the time? Traditionally Adobe software uses whatever time zone your computer's clock has at the time the XMP property is created (that is, when the Exif is read).
    So, if your camera's clock was set to record 2009:08:28 11:26:07 in the Exif, and you convert your raw file to a DNG with a computer in Europe, you're probably going to get something like 2009-08-28T11:26:07+02:00 in the XMP. But if I convert the same RAW file to a DNG here in Seattle, I'm going to get 2009-08-28T11:26:07-07:00.
    Of course the right thing to do would be to just write 2009-08-28T11:26:07 in the XMP, leaving out the time zone designator (TZD). Expect that in the future. The XMP Specification now says that the TZD is optional and that "software should not assume anything about the missing time zone," but even the most recent release of the DNG Converter (5.5 as I write this) has not yet caught up with this update to the XMP Specification, and it still writes the bogus TZD. Also, any XMP written by older Adobe software will have the TZDs.
    What Adobe software like Bridge and Lightroom have done tradtionally is to ignore the TZD in the XMP when using these dates. You'll notice that browsing DNGs with the dates 2009-08-28T11:26:07+02:00 and 2009-08-28T11:26:07-07:00, and running Bridge anywhere in the world (that is regardless of the the clock's Time Zone setting on your computer), the metadata panel will still show you that you took the picture at 11:26 am on August 28, 2009. If other software is trying to shift dates to local times based on the UTC offsets recorded in XMP for these dates, that's a bug.
    Note that unlike other date-time values in Exif, the Exif specification says that the GPSTimeStamp is UTC, so this problem does not affect GPS metadata.
    I mentioned the XMP specification a few times, you can download it here:
    http://www.adobe.com/devnet/xmp/
    -David

  • Error - Conversion from .doc to pdf

    Hi,
    I'm using Trail version of LiveCycle ES 8.0(Turnkey Installation).
    I need to convert any native file format to PDF/A. In order to do that, I'm just trying to convert it(.doc) to PDF first. But I do end-up with the error that is given below:
    ALC-PDG-1000-000: com.adobe.livecycle.generatepdf.client.ConversionException: ALC-PDG-001-000-Conversion failed because of an exception.
    RuntimeException; CausedByException is:
    An unexpected exception while resolving a new connection to an Adobe Service.
    Caused by: javax.ejb.EJBException: RuntimeException; CausedByException is:
    An unexpected exception while resolving a new connection to an Adobe Service.
    at org.jboss.ejb.plugins.LogInterceptor.handleException(LogInterceptor.java:382)
    at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:196)
    at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor. java:122)
    at org.jboss.ejb.SessionContainer.internalInvoke(SessionContainer.java:624)
    at org.jboss.ejb.Container.invoke(Container.java:873)
    at org.jboss.ejb.plugins.local.BaseLocalProxyFactory.invoke(BaseLocalProxyFactory.java:415)
    at org.jboss.ejb.plugins.local.StatelessSessionProxy.invoke(StatelessSessionProxy.java:88)
    at $Proxy221.convertPDFMToPdf(Unknown Source)
    Caused by: java.lang.reflect.InvocationTargetException
    Caused by: java.lang.IllegalStateException: Connection to failed service.
    at com.adobe.service.ResourcePooler.allocateResource(ResourcePooler.java:87)
    at com.adobe.service.ConnectionFactoryManagerPeer.getConnectionResourceFromPool(ConnectionFa ctoryManagerPeer.java:79)
    at com.adobe.service.J2EEConnectionFactoryManagerPeerImpl.getConnection(J2EEConnectionFactor yManagerPeerImpl.java:84)
    ... 112 more
    Error OCCURRED: ALC-PDG-001-000-Conversion failed because of an exception.
    RuntimeException; CausedByException is:
    An unexpected exception while resolving a new connection to an Adobe Service.
    I'm using Generate PDF Service API(Java) to convert a document(.doc) to PDF.
    Can anyone please provide their inputs on the above issue. How it can be resolved?
    or
    Is there any API to convert any native file format to PDFA directly?
    Thanks.

    Hi,
    I'm facing a different problem. Please help.
    My requirement is to develop a standalone java program to convert Word documents to PDFs using Adoble LC ES.
    I found the code from the Adobe LC ES documentation. Please help me what's wrong in the code.
    I don't understand what i'm missing in the code...The "test.doc" file
    is there in the given location with proper data and Document object is not "NULL". Program is able to connect to Adobe LC Server. No issues with connection. But why the error ??
    Code & exception are below :
    CODE:
    import java.io.File;
    import java.util.Properties;
    import com.adobe.idp.Document;
    import com.adobe.idp.dsc.clientsdk.ServiceClientFactory;
    import com.adobe.livecycle.generatepdf.client.CreatePDFResult;
    import
    com.adobe.livecycle.generatepdf.client.GeneratePdfServiceClient;
    public class GeneratePDFFromNativeFiles {
    public static void main(String[] args)
    Properties ConnectionPropsForSOAP = new Properties();
    ConnectionPropsForSOAP.setProperty("DSC_DEFAULT_SOAP_ENDPOINT",
    "http://workspace-d.web.abbott.com:8080/soap/services/
    ConvertAllFileTypesToPDF?wsdl");
    ConnectionPropsForSOAP.setProperty("DSC_TRANSPORT_PROTOCOL", "SOAP");
    ConnectionPropsForSOAP.setProperty("DSC_SERVER_TYPE", "JBoss");
    ConnectionPropsForSOAP.setProperty("DSC_CREDENTIAL_USERNAME",
    "epaspdfgen");
    ConnectionPropsForSOAP.setProperty("DSC_CREDENTIAL_PASSWORD",
    "epaspdf1");
    ServiceClientFactory factory =
    ServiceClientFactory.createInstance(ConnectionPropsForSOAP);
    try{
    String currentDirectory = System.getProperty("user.dir");
    String sourceDocPath="/test.doc";
    String resultDocPath ="/bin/arg/util/simpleFTP/test.pdf";
    String inputFilePath = currentDirectory+sourceDocPath;
    File file = new File(inputFilePath);
    String adobePDFSettings = "Standard";
    String securitySettings = "No Security";
    String fileTypeSettings = "Standard";
    GeneratePdfServiceClient gps = new
    GeneratePdfServiceClient(factory);
    Document inputDoc = new Document(file,true);
    CreatePDFResult docResult=gps.createPDF (inputDoc, inputFilePath,
    fileTypeSettings, adobePDFSettings,
    securitySettings, null, null);
    Document createdDocument = docResult.getCreatedDocument();
    createdDocument.copyToFile(new File(currentDirectory
    +resultDocPath));
    catch (Exception e) {
    e.printStackTrace();
    System.out.println("Error OCCURRED: " + e.getMessage());
    EXCEPTION:
    ALC-DSC-000-000: com.adobe.idp.dsc.DSCRuntimeException: Internal
    error.
    at
    com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapAxisDispatcher.throwExceptionHandler(So apAxisDispatcher.java:
    207)
    at
    com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapAxisDispatcher.doSend(SoapAxisDispatche r.java:
    125)
    at
    com.adobe.idp.dsc.provider.impl.base.AbstractMessageDispatcher.send(AbstractMessageDispat cher.java:
    57)
    at
    com.adobe.idp.dsc.clientsdk.ServiceClient.invoke(ServiceClient.java:
    208)
    at
    com.adobe.livecycle.generatepdf.client.GeneratePdfServiceClient.createPDF(GeneratePdfServ iceClient.java:
    172)
    at
    arg.util.simpleFTP.GeneratePDFFromNativeFiles.main(GeneratePDFFromNativeFiles.java:
    73)
    Caused by: ALC-DSC-002-000:
    com.adobe.idp.dsc.RequiredParameterException: Parameter: inputDocument
    is required.
    at
    org.apache.axis.message.SOAPFaultBuilder.createFault(SOAPFaultBuilder.java:
    221)
    at
    org.apache.axis.message.SOAPFaultBuilder.endElement(SOAPFaultBuilder.java:
    128)
    at
    org.apache.axis.encoding.DeserializationContext.endElement(DeserializationContext.java:
    1087)
    at org.apache.xerces.parsers.AbstractSAXParser.endElement(Unknown
    Source)
    at
    org.apache.xerces.impl.XMLNSDocumentScannerImpl.scanEndElement(Unknown
    Source)
    at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl
    $FragmentContentDispatcher.dispatch(Unknown Source)
    at
    org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown
    Source)
    at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
    at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
    at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
    at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
    at org.apache.xerces.jaxp.SAXParserImpl$JAXPSAXParser.parse(Unknown
    Source)
    at javax.xml.parsers.SAXParser.parse(SAXParser.java:375)
    at
    org.apache.axis.encoding.DeserializationContext.parse(DeserializationContext.java:
    227)
    at org.apache.axis.SOAPPart.getAsSOAPEnvelope(SOAPPart.java:696)
    at org.apache.axis.Message.getSOAPEnvelope(Message.java:424)
    at
    org.apache.axis.handlers.soap.MustUnderstandChecker.invoke(MustUnderstandChecker.java:
    62)
    at org.apache.axis.client.AxisClient.invoke(AxisClient.java:206)
    at org.apache.axis.client.Call.invokeEngine(Call.java:2765)
    at org.apache.axis.client.Call.invoke(Call.java:2748)
    at org.apache.axis.client.Call.invoke(Call.java:2424)
    at org.apache.axis.client.Call.invoke(Call.java:2347)
    at org.apache.axis.client.Call.invoke(Call.java:1804)
    at
    com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapAxisDispatcher.doSend(SoapAxisDispatche r.java:
    123
    Please help me.
    Thanks a lot.
    VJ.

  • Is your GPS position 50-100 meters off center?

    For some reason, my GPS position is always 100 meters too far East. Anyone else have this problem?
    Can I calibrate it so I can shift the GPS position West 100 meters?
    Would the "Altitude Calibration" option in the GPS Data->Options help?
    The GPS position on the Map is constantly jumping off the road and thinking I am on a side road or driving through houses or bush.
    I am in Sydney Australian and downloaded the Eastern AUS maps through Map Loader, I was told we use WG584 or AUS66 or AUS84 GPS tracking in Sydney. Where can I set this up?

    It seems that us in AUS/NZ need to configure the GPS so it uses AUS66 or AUS84 Datum, which I think is what our local Maps use. Since the N95 uses the new WG584 Datum, it does not align us properly to our older AUS66 or AUS84 based maps, causing our maps to be about 100m-200m too far East
    "If you intend to use this technique ensure that your GPS is set to the global WGS84 datum, not one of the older local Australian datum's such as AUS66 or AUS84 upon which many existing maps are based. WGS84 is the standard for GPS and if you select another datum, the GPS does the conversion internally."
    http://www.cavedivers.com.au/articles/mapping.htm
    More info - Google Search:
    http://www.google.com.au/search?q=AUS66+AUS84&btnG=Search&hl=en
    Now the question is, can we set our N95 to use AUS66 or AUS84 ?
    Or do Nokia need to update our Maps to align with WGS84?

  • Conversion from PE 10 to PE 11

    In PE 10, all my 50,000 pix are tagged by name of  person, place, event,. etc.
    Why don't all tagged people go to below people title on 11?
    Same with events and places?

    CindiSell,
    Two things that would happen with the People named under "People" tag category after conversion to E11 catalog:
    1. people tags would be moved under separate pane "People Tags" and in addition they would be displayed in people view.  However by default, these are not shown in tags panel. They can be shown by turning ON the option from View menu> Show People in Tag Panel.
    2. People sub categories would also be reflected under People groups in People view if you choose the view as "Group" instead of "People" and their association would be maintained with people tags.
    The Scenario would be different for Events and Places tagged in earlier version catalog. Event tag would be renamed to "Events(Tags)" and Places tag to “Places(Tags)” in Tag panel itself.  They will not be shown in Events and Places view as the entities. E11 Events have a different purpose where each of the individual Event say "John's wedding" would be a separate event in Events view with the date of that actual event. However Event tag in earlier version would be as general as "Wedding" which can be tagged to any wedding pictures as they do not have a date metadata with them. Similarly in earlier version "Places" tag, "My Home" could be a tag or may be "My room" or "California". However, in E11, each of the Place as shown in Places view is a GPS location with some latitude and longitude defined on Google Maps. Hence it can be "California" but not "My room".  So to retain the earlier tagged data, the Events and Places from prior versions have been restored in Tags panel so that one can use them as earlier if they do not want to use the new Events or GPS tagging.
    I hope that helps!
    Regards,
    vaishali

Maybe you are looking for

  • Calling BPEL Process From ESB

    Hi Gurus, I'm experiencing an issue calling a BPEL process using the ESB SOAP Service. Basically, the ESB calls the BPEL process and manages to pass the message to the asychronous BPEL process however the first step in the BPEL process after the Reci

  • Error occurred during back-routing

    <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="1"><SAP:Category>XIServer</SAP:Category><SAP:Code area="OUTBINDING">CO_TXT_ROUTING_BACK_ERROR</SAP:Code><SAP:P1>,FileNE

  • IBook to eMac

    My iBook of course has AirPort from which I get the internet from but my eMac doesn't and needs to be updated is there a way I can channel AirPort the signal through my iBook to my eMac?

  • Photoshop CC:  Filter Other Custom

    Could anyone tell me please where to find detailed instructions for using Filter > Other > Custom. Thank you

  • Linking Screen With MBO

    hi all i working on designing the application for Blackberry i have created the screen and created the actions for that screen too. in that action i am calling a MBO operation at that time i am sending a value for textbox as Parameter to the method t