Serious problem with getAppletShareableInterfaceObject (not from a newbie)

Hi,
I'm dealing whith some shareable objects the way below.
package com.test.testalakon;
import javacard.framework.Shareable;
public interface Partaged extends Shareable
    public short Methode(short param, byte[] buffer);
package com.test.testalakon;
import javacard.framework.AID;
import javacard.framework.APDU;
import javacard.framework.Applet;
import javacard.framework.ISO7816;
import javacard.framework.ISOException;
import javacard.framework.JCSystem;
import javacard.framework.Shareable;
import javacard.framework.Util;
public class Talk extends Applet implements Partaged {
    private AID eServerAid;
    private byte[] eData;
    public static void install(byte[] buffer, short offset, byte length) {
        // Install & register applet
        new Talk(buffer,offset,length).register(buffer, (short) (offset + 1), buffer[offset]);
    private Talk(byte[] inArray, short inOffset, short inLength) {
        eData = new byte[10];
        short vOffsetData                     = inOffset;
        vOffsetData                          = (short) (vOffsetData + (short)(inArray[vOffsetData]&0xff) + 1);
        vOffsetData                          = (short) (vOffsetData + (short)(inArray[vOffsetData]&0xff) + 2);
        inLength                          = (short) ( inArray[(short) (vOffsetData - (short) 1)  ]&0xff   );
        if(inLength==0) { // no data provided in install, we are the champions
            eServerAid = null;
            eData[0] = (byte)0xaa;
            eData[1] = (byte)0xbb;
            eData[2] = (byte)0xcc;
            eData[3] = (byte)0xdd;
        } else { //data provided, this is the server aid
            eServerAid = JCSystem.lookupAID(inArray, vOffsetData, (byte)inLength);
            eData[0] = (byte)0x11;
            eData[1] = (byte)0x22;
            eData[2] = (byte)0x33;
            eData[3] = (byte)0x44;
    public void process(APDU inApdu) throws ISOException {
    Partaged eServer;
    if(eServerAid == null) {
        eServer = this;
    } else {
        eServer = (Partaged) JCSystem.getAppletShareableInterfaceObject(eServerAid, (byte)0);
    byte[] vApdu = inApdu.getBuffer();
        if ( selectingApplet() ) {
            vApdu[0]=(byte)0xca;
            vApdu[1]=(byte)0xfe;
            vApdu[2]=(byte)0xba;
            vApdu[3]=(byte)0xbe;
            inApdu.setOutgoingAndSend((short)0, (short)4);
            ISOException.throwIt(ISO7816.SW_NO_ERROR);
        short CLA=(short)(vApdu[ISO7816.OFFSET_CLA]&(short)0xff);
        short INS=(short)(vApdu[ISO7816.OFFSET_INS]&(short)0xff);
        if(CLA!=(short)0x42) {
            ISOException.throwIt(ISO7816.SW_CLA_NOT_SUPPORTED);
        short ret;
        switch(INS) {
            case 0x10:
                ret = eServer.Methode(INS, vApdu);
                break;
            case 0x20:
                ret = this.Methode(INS, vApdu);
                break;
            default:
                ISOException.throwIt((short)0x6d00);
        inApdu.setOutgoingAndSend((short)0, (short)4);
    public Shareable getSharedInterfaceObject(AID client, byte param) {
        return this;
    public short Methode(short param, byte[] buffer) {
        Util.arrayCopyNonAtomic(eData, (short)0, buffer, (short)0, (short)8);
        if(param==1) {
            for(short i = 0;i<8;i++) {
                buffer[i] ^= (byte)0xff;
        return (short)eData[0];
}Do not give installation data to the server, and give the server's aid to the client
Here is the result:
resetATR: 3b 6e 00 00 80 31 80 66 b0 84 0c 01 6e 01 83 00 90 00
select 112233445566=> 00 a4 04 00 06 11 22 33 44 55 66
(36,0 ms)
<= ca fe ba be 90 00
apdu 4210000000=> 42 10 00 00 00
(22,7 ms)
<= aa bb cc dd 90 00
aa bb cc dd 90 00
apdu 4220000000=> 42 20 00 00 00
(22,8 ms)
<= aa bb cc dd 90 00
aa bb cc dd 90 00
select 111122223333=> 00 a4 04 00 06 11 11 22 22 33 33
(31,4 ms)
<= ca fe ba be 90 00
apdu 4220000000=> 42 20 00 00 00
(24,4 ms)
<= 11 22 33 44 90 00
11 22 33 44 90 00
apdu 4210000000=> 42 10 00 00 00
(9,7 ms)
<= 6f 00
6f 00
In the server, "this" and the shared object are the same, of course. Returned data is aabbccdd
in the client (111122223333) the local data is returned, but 6f00 is thrown (this is a NullPointerException) instead of the server's data.
The error is the same if I allocate the shared object in the constructor and make the eServer an instance field.
I'm aware that the only byte[] buffer I can use is the apdu buffer, that is the case.
I tested on optelio and jcop31, the problem is the same.
lexdabear, safarmer, others, Any thoughts?
thanks

Hi Sebastien,
The code is failing because the SOI is not found when you do the lookup. This will give you a NPE when you try to access eServer.Methode. SOI is for accessing data across the applet firewall. Since you are instantiating two instances of the same applet, they are in the same package and as such share the same context. In this case you do not need SOI. Here an example of what you are trying to achieve without using SOI.
package com.test.testalakon;
public interface Partaged {
    public short Methode(short param, byte[] buffer);
package com.test.testalakon;
import javacard.framework.APDU;
import javacard.framework.Applet;
import javacard.framework.ISO7816;
import javacard.framework.ISOException;
import javacard.framework.Util;
public class Talk extends Applet implements Partaged {
    private byte[] eData;
    private Talk other;
    public static void install(byte[] buffer, short offset, byte length) {
        // Install & register applet
        new Talk(buffer, offset, length).register(buffer, (short) (offset + 1), buffer[offset]);
    private Talk(byte[] inArray, short inOffset, short inLength) {
        eData = new byte[10];
        short vOffsetData = inOffset;
        vOffsetData = (short) (vOffsetData + (short) (inArray[vOffsetData] & 0xff) + 1);
        vOffsetData = (short) (vOffsetData + (short) (inArray[vOffsetData] & 0xff) + 2);
        inLength = (short) (inArray[(short) (vOffsetData - (short) 1)] & 0xff);
        if (inLength == 0) { // no data provided in install, we are the champions
            other = this;
            eData[0] = (byte) 0xaa;
            eData[1] = (byte) 0xbb;
            eData[2] = (byte) 0xcc;
            eData[3] = (byte) 0xdd;
        } else { // data provided, this is the server aid
            other = null;
            eData[0] = (byte) 0x11;
            eData[1] = (byte) 0x22;
            eData[2] = (byte) 0x33;
            eData[3] = (byte) 0x44;
    public void process(APDU inApdu) throws ISOException {
        Partaged eServer;
        if (other == null) {
            eServer = this;
        } else {
            eServer = other;
        byte[] vApdu = inApdu.getBuffer();
        if (selectingApplet()) {
            vApdu[0] = (byte) 0xca;
            vApdu[1] = (byte) 0xfe;
            vApdu[2] = (byte) 0xba;
            vApdu[3] = (byte) 0xbe;
            inApdu.setOutgoingAndSend((short) 0, (short) 4);
            ISOException.throwIt(ISO7816.SW_NO_ERROR);
        short CLA = (short) (vApdu[ISO7816.OFFSET_CLA] & (short) 0xff);
        short INS = (short) (vApdu[ISO7816.OFFSET_INS] & (short) 0xff);
        if (CLA != (short) 0x42) {
            ISOException.throwIt(ISO7816.SW_CLA_NOT_SUPPORTED);
        short ret;
        switch (INS) {
            case 0x10:
                ret = eServer.Methode(INS, vApdu);
                break;
            case 0x20:
                ret = this.Methode(INS, vApdu);
                break;
            default:
                ISOException.throwIt((short) 0x6d00);
        inApdu.setOutgoingAndSend((short) 0, (short) 4);
    public short Methode(short param, byte[] buffer) {
        Util.arrayCopyNonAtomic(eData, (short) 0, buffer, (short) 0, (short) 8);
        if (param == 1) {
            for (short i = 0; i < 8; i++) {
                buffer[i] ^= (byte) 0xff;
        return (short) eData[0];
}If you need the two instances to have their own context (e.g. for security reasons) you will need two applets with each applet in a separate package. Otherwise you can use the code above to access the second applet instance.
Cheers,
Shane
Edited by: safarmer on 22/12/2009 10:52

Similar Messages

  • I downloaded IOS6 earlier today and my 4S has died twice, it has gone from 45 to 32% in the last 5 minutes and i have icloud, internet, all apps closed with nothing running at all!! There is a serious problem with ios6, my phone was hot at charging time.

    I downloaded IOS6 earlier today and my 4S has died twice, it has gone from 45 to 32% in the last 5 minutes and i have icloud, internet, all apps closed with nothing running at all!! There is a serious problem with ios6, my phone was working hot at chargering time. Apple need to address this asap!!!!

    Hi Suzy Q,
    I can send and receive calls.
    I get "messaging stopped" when doing a lot of texts.
    Texts come up "ghosted" meaning they have the text on the bottom and a transparent one overlaid  on top. they then become one. But I get the ghosting most of the time when I go into a message from a contact to send a text.
    When I go to call logs or text logs, the numbers come up first, and then then the names pop up randomly, meaning not in order down the page, until they are all shown. lots of lag time.
    It runs slow.
    I have 5 apps on here. I should be able to have a  lot of apps on here, and play music, and have files, and...and....and.
    I can get online but doing a Google search, when the page with the choices comes up, it is blurred and I have to tap on the screen for it to become clear and readable.
    When online and scrolling, it hitches sometimes/lags/gets stuck then unstuck
    I get VZWAVS has stopped. (not sure if those are the right letters)
    The status bar that is supposed to be gray with the new update, goes back and forth between green--the old os--to gray. And I have found no continuity with when I get green or when I get gray.
    I get a black screen on occasion.
    sometimes the proximity sensor doesn't work.
    sometimes when I have my bluetooth on and have "hands free mode" on, I get the a text message read through the headset and also through the handset.
    I soft reboot often--turn it off wait a bit and

  • I have a 13.5 month old Ipad2, wifi only that has had problems with wifi com from the beginning. I am learning that this is not unusual for apple. Any suggestions?

    I have a 13.5 month old Ipad2, wifi only that has had problems with wifi com from the beginning. I am learning that this is not unusual for apple. Any suggestions?
    ronald1094

    Try #5.
    Some things to try first:
    1. Turn Off your iPad. Then turn Off (disconnect power cord for 30 seconds or longer) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    2. Go to Settings>Wi-Fi and turn Off. Then while at Settings>Wi-Fi, turn back On and chose a Network.
    3. Change the channel on your wireless router (Auto or Channel 6 is best). Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    4. Go into your router security settings and change from WEP to WPA with AES.
    5.  Renew IP Address: (especially if you are droping internet connection)
        •    Launch Settings app
        •    Tap on Wi-Fi
        •    Tap on the blue arrow of the Wi-Fi network that you connect to from the list
        •    In the window that opens, tap on the Renew Lease button
    ~~~~~~~~~~~~~~~~~~~~~~~~~
    iOS 6 Wifi Problems/Fixes
    How To: Workaround iPad Wi-Fi Issues
    http://www.theipadfan.com/workaround-ipad-wifi-issues/
    Another Fix For iOS 6 WiFi Problems
    http://tabletcrunch.com/2012/10/27/fix-ios-6-wifi-problems-ssid/
    Wifi Doesn't Connect After Waking From Sleep - Sometimes increasing screen brightness prevents the failure to reconnect after waking from sleep. According to Apple, “If brightness is at lowest level, increase it by moving the slider to the right and set auto brightness to off.”
    Fix For iOS 6 WiFi Problems?
    http://tabletcrunch.com/2012/09/27/fix-ios-6-wifi-problems/
    Did iOS 6 Screw Your Wi-Fi? Here’s How to Fix It
    http://gizmodo.com/5944761/does-ios-6-have-a-wi+fi-bug
    How To Fix Wi-Fi Connectivity Issue After Upgrading To iOS 6
    http://www.iphonehacks.com/2012/09/fix-wi-fi-connectivity-issue-after-upgrading- to-ios-6.html
    iOS 6 iPad 3 wi-fi "connection fix" for netgear router
    http://www.youtube.com/watch?v=XsWS4ha-dn0
    Apple's iOS 6 Wi-Fi problems
    http://www.zdnet.com/apples-ios-6-wi-fi-problems-linger-on-7000004799/
    ~~~~~~~~~~~~~~~~~~~~~~~
    How to Fix a Poor Wi-Fi Signal on Your iPad
    http://ipad.about.com/od/iPad_Troubleshooting/a/How-To-Fix-A-Poor-Wi-Fi-Signal-O n-Your-iPad.htm
    iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    WiFi Connecting/Troubleshooting http://www.apple.com/support/ipad/wifi/
    How to Fix: My iPad Won't Connect to WiFi
    http://ipad.about.com/od/iPad_Troubleshooting/ss/How-To-Fix-My-Ipad-Wont-Connect -To-Wi-Fi.htm
    iOS: Connecting to the Internet http://support.apple.com/kb/HT1695
    iOS: Recommended settings for Wi-Fi routers and access points  http://support.apple.com/kb/HT4199
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Connect iPad to Wi-Fi (with troubleshooting info)
    http://thehowto.wikidot.com/wifi-connect-ipad
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxE
    Fix Slow WiFi Issue https://discussions.apple.com/thread/2398063?start=60&tstart=0
    How To Fix iPhone, iPad, iPod Touch Wi-Fi Connectivity Issue http://tinyurl.com/7nvxbmz
    Unable to Connect After iOS Update - saw this solution on another post.
    https://discussions.apple.com/thread/4010130
    Note - When troubleshooting wifi connection problems, don't hold your iPad by hand. There have been a few reports that holding the iPad by hand, seems to attenuate the wifi signal.
    ~~~~~~~~~~~~~~~
    If any of the above solutions work, please post back what solved your problem. It will help others with the same problem.
     Cheers, Tom

  • Hi guys. i have some problem with a link from a pdf on-line,when i click on it,the page adds a "%" at the and of the link and says "page not found" because of it

    Hi guys. i have some problem with a link from a pdf on-line,when i click on it,the page adds a "%" at the and of the link and says "page not found" because of it.
    This happens only when a load my pdf file on my server, because if i click on the link when the file is on my iPad, the page opens without problem.
    Any help please?
    thanx

    the % sign is often used when there's a space in a name. HTML doesn't like spaces so it fills them with % or %20
    try, on the end of that link, see if there's a space built into the page or the link when the page was made
    On the web address you may be able to 'backspace' at the end and erase that space to get the address, but whomever made the page possibly put a mistake in the link

  • I just stared having problems with importing files from nikon D810 into LR 5.7 it pop a window saying it can not read files on working on a imac 27" running yosemite on my mac pro after a few times it finally was able to read files and import them into LR

    I just stared having problems with importing files from nikon D810 into LR 5.7 it pop a window saying it can not read files on working on a imac 27" running yosemite on my mac pro after a few times it finally was able to read files and import them into LR I never had this problem before was there some kind of update that could of cause this?

  • HT203200 Is there a problem with redeeming movies from itunes?  I purchased some movies with digital copies.  But I can not download, due to Code redemption being temporary unavailable for the past 2 days.

    Is there a problem with redeeming movies from itunes.  I purchased some movies with digital copies.  But i can not download movies, due to code redemption being temporary unavailable.

    Hi there Cedric!
    I have an article here for you that I believe will help you out with this issue by reporting it to iTunes. That article can be found right here:
    How to report an issue with your iTunes Store, App Store, Mac App Store, or iBookstore purchase
    http://support.apple.com/kb/HT1933
    Thanks for being a part of the Apple Support Communities!
    Regards,
    Braden

  • My Client is having a serious problem with the Contact Form Widget

    My Client is having a serious problem with the Contact Form Widget that I can not figure out how to correct.
    I created a website for a client and inserted a Contact Form widget on their 'Contact Us' page. Whenever anyone uses the form, the e-mail my client receive shows my e-mail address as the sender. So, when they 'reply' to the e-mail, the reply is sent to me and not the person who sent the original message. This creates a major problem in that I get barraged with e-mail replies while my client's potential customers go without a response.
    When I look at  'Site Manager > System E-Mails > Workflow Information > E-mail From Address' on the site's Admin Console, it shows my e-mail information. Is this is what needs to be changed?  If it is, what needs to be placed in that field so that the e-mail my client receives shows the senders e-mail information in the 'From' field.  My client wants to be able to click reply and have the message sent to the right party. They would be very upset if they have to cut and past the senders e-mail address from the body text on every contact they receive.
    Their feeling is that if I can't find a way to make the contact form work the way it should, then it's useless to them.
    Can anyone help me figure this out? I really don't want to disappoint my first client.

    Are you on a plan that has the CRM feature that stores your customers' data? If so, the idea of the contact form is that you'll receive a notification that there's been an inquiry filled out on your contact form and there should be a link in that email notification that leads to the "Case" that was created when that customer filled out a contact form.  You can click that link and visit the case for that customer in your BC site and reply to them from there so that all of the correspondence is logged in the CRM for safe-keeping and for your records.
    If your client finds this is too much work to login to BC to reply every time, then you should check to see if you have the "Customer Service Ticketing" feature on your hosting plan.  This is a feature where you create a dedicated email account (like [email protected]) and the BC system will automatically login to that email account and pull any emails in that inbox and convert them to a customer case for the sender of the email and then it will send out a notification via email to any of the BC Admin users you delegate as "Customer Service Agents".  Since the CST integrates with the BC CRM it lets you reply directly within the email-- but when you reply it will be going to that same email address dedicated to the CST but once the CST service checks your email again and sees that you replied to this inquiry it will log your reply against the customer's case and sends your reply via email back to them so that all the correspondance gets logged on BC's CRM but you can still reply via email.
    There's no way to use the default web forms to update the "From" or "Reply-To" address.. it must come from an approved email address to avoid spam issues.  On most web services you cannot change the "from" address anyway but usually you can at least specify the "Reply-To" address so that when someone hits "reply" in their email client it will reply to whoever you setup as the "Reply-To" address.
    Here's some more information about CST: http://kb.worldsecuresystems.com/kb/customer-service-ticketing.html?bc-partner
    I don't think the CST feature is in the webMarketing BC plan-- I think it's only in the webCommerce plan so if you have less than an webCommerce plan you have to tell your client to reply through BC by clicking the link in the notification they get.  You can justify it by saying its one or two more steps but it keeps the entire convo on record in their CRM for easy referral later.

  • Word experienced a serious problem with the 'acrobat pdfmaker office com addin' add-in. after Office Updates.

    I cant cant use mail merge feature in Winword in conjunction with Abobe Acrobat 10 (pdfmaker add-in) after the recent Office April Windows and Office Updates.
    Here is a quick note from the event viewer:
    The program WINWORD.EXE version 14.0.7134.5000 stopped interacting with Windows and was closed. To see if more information about the problem is available, check the problem history in the Action Center control panel. 
     Process ID: 1138 
     Start Time: 01d07dcede19c458 
     Termination Time: 15 
     Application Path: C:\Program (file:///C:/Program) Files (x86)\Microsoft Office\Office14\WINWORD.EXE 
     Report Id: 
    Microsoft Word: Accepted Safe Mode action : Word experienced a serious problem with the 'acrobat pdfmaker office com addin' add-in. If you have seen this message multiple times, you should disable
    this add-in and check to see if an update is available. Do you want to disable this add-in?.
    I do not wish to disable the pdfmaker add-in as I use it to run mail merge on WORD and send 10s and 1000s of pdfs via email to external users. I am not sure what are my options here and I wish
    someone could help me get to the root cause of the matter.
    My environment is as follows:
    Windows 7 x64 SP1
    Office 2010 v 14.0.7128.5000
    Adobe Reader MUI X and Adobe Acrobat X
    Feroze

    Hi,
    As the event log indicated, this is due to acrobat pdfmaker office com addin doesn't work well with Microsoft Word.
    I would suggest you go ahead and try to upgrade your Adobe product to the latest version and see if issue persists.
    Or contact the support of Adobe and see if there is a known compatibility issue or not.
    Regards,
    Ethan Hua
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Connection problems with my MBA from Nov. 2011. It doesn't connect to home wi-fi. How do I fix this?

    I have a MBA that I bought in Nov 2011 and have had serious problems with its wi-fi connection to my home router for the past 3 months. Initially it worked fine. The router works perfectly, as other PCs and devices connect to it without any problem.. All my software updates are OK (except one that says mid 2013 which apparently is not supported by my MBA?). I read in another thread a suggestion to delete all saved networks. That sometimes works, but not always. How do I fix this? I have tried calling Apple support but since my warantee is over (a year ago) they want to charge 50€ just for attending my call... shocking... Please, can somebody help me? Thank you!!!

    Back up all data before making any changes.
    Step 1
    Take all the applicable steps in this support article.  
    Step 2
    If you're running OS X 10.8.4 or later, run Wireless Diagnostics and take the remedial steps suggested in the summary that appears, if any. The program also generates a large file of information about your system, which would be used by Apple Engineering in case of a support incident. Don't post the contents here.
    Step 3
    If you're not using a wireless keyboard or trackpad, disable Bluetooth by selecting Turn Bluetooth Off from the menu with the Bluetooth icon. If you don't have that menu, open the Bluetooth preference pane in System Preferences and check the box marked Show Bluetooth in menu bar. Test. Continue if you find that Wi-Fi is faster with Bluetooth disabled.
    From that same menu, select Open Bluetooth Preferences. If the box labeled Discoverable is checked, uncheck it. Click the Advanced button, and in the sheet that opens, uncheck the top three boxes, if any are checked. Click OK. Enable Bluetooth and test again.
    If the application called "Bluetooth Setup Assistant" is running, quit it.
    Step 4
    This step will erase all your settings in the Network preference pane. Make a note of them before you begin, and recreate them afterwards. It may be helpful to take screenshots of the preference pane.
    Triple-click the line below on this page to select it:
    /Library/Preferences/SystemConfiguration
    Right-click or control-click the highlighted line and select
    Services ▹ Reveal
    from the contextual menu.* A folder should open with an item named "SystemConfiguration" selected. Move the selected item to the Trash. You may be prompted for your administrator password.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard (command-C). In the Finder, select
    Go ▹ Go to Folder...
    from the menu bar, paste into the box that opens (command-V). You won't see what you pasted because a line break is included. Press return.
    Step 5
    Reset the System Management Controller.
    Step 6
    Make a "Genius" appointment at an Apple Store, or go to another authorized service center.
    Back up all data on the internal drive(s) before you hand over your computer to anyone. There are ways to back up a computer that isn't fully functional — ask if you need guidance.
    If privacy is a concern, erase the data partition(s) with the option to write zeros* (do this only if you have at least two complete, independent backups, and you know how to restore to an empty drive from any of them.) Don’t erase the recovery partition, if present. 
    Keeping your confidential data secure during hardware repair
    *An SSD doesn't need to be zeroed.

  • Some serious problems with Mountain Lion

    Hi everyone,
    I upgraded my mid 2010 15" MBP to Mountain Lion 2 days ago, and I have some serious problems with my machine now.
    - Wifi problem: like many members 's machines, mine has problem to connect to the wifi after sleep or restarting, I had to wait 10 to 15 minutes for it to connected to my home network. Anh I tried to remove all of my settings in System Preferences/Network and added new connection. And now it cant connect to wifi anymore. I'm writing this article while sitting on the floor with my Ethernet cable plugged in my MBP. I connected to internet through a DSL modem and a Airport Extreme as a bridge and Access Point. I also tried to set up all of my network device but my MBP can't connect to the wifi still.
    - Keyboard problem with Pages: I was very happy with the new iCloud syncing for Pages documents but after 5 minutes, I met a big problem with Mountain Lion. Whenever I type in Pages with Vietnames Keyboard( Mac OS X built in or from another developer: http://www.trankynam.com/gotv/ ), Pages stops working immediately. I can still drag the Pages's window around but can't type or do any editing. After that I have to force quit pages. It is really stupid that I'm writing a book in Pages and now I have to stop my working till apple fixes this ridiculous bug. I tried German Keyboard as well and Pages worked flawlessly. Do you hate Vietnamese, Apple?
    - Messages problem: Since upgrading to Mountain Lion I couln't send or receive any messages. It worked perfectly in Messages beta.
    Does anyone have the same problems like me? Any solution such as how to reinstall Messages(I googled but found nothing)
    Apple, please test your software more before release it. I feel like I have no computer at the moment because I can't work, can't surfing the web wirelessly and can't communicate with my friends.

    HI,
    - Messages problem: Since upgrading to Mountain Lion I couldn't send or receive any messages. It worked perfectly in Messages beta.
    Does anyone have the same problems like me? Any solution such as how to reinstall Messages(I googled but found nothing)
    What Messages to what type of Buddies or Contacts ?
    This
    I found out that the problem with my wifi was my MBP received automatically a ridiculous IP such as 169.254.170.0 instead of 192.168.1.4 as it should be.
    WIll be part of the Issue as will be DNS issues.
    mDNSresponder crashed with Handsoff! v1.5.3. After upgrading Handsoff! to v2.0.2, it works again.
    In this case mDNSresponder also being stopped will stop DNS working.
    I would guess if you have resolved these that you can Chat to people again.
    4:33 PM      Friday; July 27, 2012
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Lion 10.7.2)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Serious problem with Ipod touch 4g

    Hi.
    Sorry form my bad english but i have a serious problem with my Ipod.
    Couple days ago my Ipod touch 4g was little bit weted on rain(just couple drops on screen and maybe little bit in headphones and dock connectors) When  saw this, i putted Ipod in rice for 72 hours.
    After being wet i not try ot tuned on or charge, just stay in rice. After that i try tuned on. but the device isnt'starting.
    When putted oncharge, and after 2 hours i pushed sleep and home buttons and he turned on. On the display had a "z" or other name sig-sag symbol,
    later i readthis meeans battery is fully discharged and it's need from couple hours to charge. Butwhen i saw this symbol, on the display in upper corner have a little spot(maybe moisture),and putted in rice for other 24 hours. On nextday try to charge and turned on, but this time the ipod isn't turned on. Even can't start recovery or dfu mode.
    My question is - did wet and not warking Ipod is normal to be not recognises by pc?-  even date recovery programs cant'recognised him.
    Also the important is condition on my cabble. Its verry bad condition, and even before weting Ipod,ismaking problmes wih charging.
    Its posible problem is cabble?
    Pleasa help.

    Try:                                               
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try another cable       
    - Try on another computer                            
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar                                     

  • Serious problem with encrypting options of Symbian...

    Hello to all
    Yesterday I've got a serious problem with the encrypting options of my Nokia C7 with Symbian Belle.
    After encrypting all memories (300MB C: internal memory, 8GB D: mass memory and 8GB microSDHC memory card) I saw that even for the user all files were unreadable (even the name of the file).
    It's not like the old password system for memory card present until Symbian Anna (that made the memory card inaccessible only for other phones and pc).
    So I decrypt them, wanting to turn back the situation. The 300MB C: internal memory was correctly decrypted, same as the 8GB E: microSDHC external memory card.
    But the internal 8GB D: mass memory was decrypted and wiped out. Or, for better explanation, it was formatted.
    FORTUNATELY I'm obsessed with data security so the internal mass memory contains only the maps and some video copied inside the memory (I don't remember well but I think that was all).
    But I think that is a serious problem. I sincerely don't want to retry again for checking if this was only a case or a recurrent bug...

    Hi baboo85,
    Welcome to the Nokia forum.
    Thank you for your feedback and good to hear haven't lost any crucial data.
    All posts on this forum are read by us as moderators as well as our software developers and will be looked at when software updates are being created.
    Please continue to post valuable feedback!
    Regards,
    Iris9290
    If my post has helped you in any way, please accept it as a solution or click on the white star, so that other users will be able to benefit from it too.

  • Serious problems with WYSIWYG

    Hi,
    I have some serious problems with placements in 3.0. Items sits just fine i design mode, but in quick preview or in browser preview, items goes all over the place.
    The only way to go around the problem is to shift the item in design mode and make successive previews to see, if the item now sits correct. And even this metode is not optimal, because sometimes this action moves other objects on the page in preview as well....
    This ofcourse means, that I do not have any WYSIVYG at all.  And the worst is, that I never know which of the items on a page will course the next problem. Very, very frustrating!
    My last updated version (must have been 2.3...) was faultless. I made a customer site in this version before upgrading.
    This page has now been approved, but opening the site in version 3.0 is futile. In designmode everything looks fine, but in preview it looks like something I tried to code myself.... I don't know what I will tell my customer, but it's not good. Not good at all.  
    I have attached two screendumps. The first one shows the page in design mode. Everything looks fine and every item sits correct. On the second screendump you see the slideshow is going up and behind the topbar, which is center pinned. Notice that there is no scrollbar, so I can't scroll down. This problem is just one of the above mentioned. Other problems are text or pictures that refuses to align horizontally, pictures that goes way out to the top - or the bottom....
    I tried to check the sticky footer on and off, but no result either. I have even rebuilt the version 2 site, pasting the items anew, but still it goes wrong in the browser. 
    Am I the only one experiencing this problem? If you want to see the muse file, you are welcome.
    Regards a very unhappy customer  

    Hi Sachin, no, But I do have a center pinned topbar. I have tried to un-pin the topbar, but the problem with misplaced items still appears. Its important to emphasize that in designmode everything looks fine, but in preview or a browser files are misplaced or hidden behind each other.
    I tried to check the sticky footer on and off, take away footers on the masterpage etc. because it seems that something on the page is pushing or attracting some of the placed items.
    The problem basically is, that Muse 3.0 does not give me WYSIWYG, and that is a dissaster for a designer!
    Regards
    John
    Sendt fra min iPad
    Den 19/12/2012 kl. 07.23 skrev "Sachin Hasija" <[email protected]>:
    Re: Serious problems with WYSIWYG
    created by Sachin Hasija in Adobe Muse Bugs - View the full discussion
    Hello,
    Please confirm if you have the items Right pinned? There is a known issue with Right pinning of items and restarized items in footer and our team is working on it to get them fixed as soon as possible.
    We should have a Muse update available very soon which fixes these issues and a few others.
    Apologies for the inconvenience.
    Regards,
    Sachin
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/4932472#4932472
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4932472#4932472
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4932472#4932472. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Adobe Muse Bugs by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Face time fades out and then tries to reconnect on new ipad retina display on WiFi.  Iphone 4s has no problem with face time from exact same location and same contact.  WiFi signal strong on both devices.  What gives?

    Face time fades out and then retries to connect (new Ipad Retina Display) on WiFi. Iphone 4s has no problem with face time from same location and same contact.  What gives?

    rdallas001 wrote:
    Is the router to small?
    Not necessarily, if you are using Facetime all the data goes through your WiFi router, your cable/DSL modem, your ISP and the internet to Apple's Facetime servers and then, in reverse, down to the Facetime recipient. If your ISP connection is too slow or there is excessive traffic on the internet you can have Facetime problems.
    Most WiFi routers can handle this unless others in the house are also using WiFi at the same time. The problem may be your ISP connection or congestion on the internet, etc.

  • Problem with date format from Oracle DB

    Hi,
    I am facing a problem with date fields from Oracle DB sources. The date format of the field in DB table is 'Date base type is DATE and DDIC type is DATS'.
    I mapped the date fields to Date characters in BI. Now the data that comes to PSA is in weird format. It shows like -0.PR.09-A
    I have changing the field settings in DataSource  to internal and external and also i have tried mapping these date fields to text fields with out luck. All delivers the same format.
    I have also tried using conversion routines like, CONVERSION_EXIT_IDATE_INPUT to change format. It also delivers me the same old result.
    If anybody of you have any suggestions or if anybody have you experienced such probelms, Please share your experience with me.
    Thanks in advance.
    Regards
    Varada

    Thanks for all your reply. I can only the solutions creating view in database. I want some solution to be done in BI. I appreciate if some of you have idea in it.
    The issue again in detail
    I am facing an issue with date fields from oracle data. The data that is sent from Oracle is in the format is -0.AR.04-M. I am able to convert this date in BI with conversion routine in BI into format 04-MAR-0.
    The problem is,  I am getting data of length 10 (Output format) in the format -0.AR.04-M where the month is not in numericals. Since it is in text it is taking one character spacing more.
    I have tried in different ways to convert and increased the length in BI, the result is same. I am wondering if we can change the date format in database.
    I am in puzzle with the this date format. I have checked other Oracle DB connections data for date fields in BI, they get data in the format 20.081.031 which will allow to convert this in BI. Only from the system i am trying creating a problem.
    Regards
    Varada

Maybe you are looking for