Resolve NamingService

Hi.
I'm trying resolve a NamingService from MT-DORB (an ORB to Delphi) but I can not.
If I use a orbd from Java, I can not resolve NamingService from server coded in Delphi.
Why I can not use NamingService from others ORBs? If I can use, how can I do this?
Thanks a lot.
F�bio.

I can use stringified IOR. It works good, but do you know why I can't use NameService? Or even corbaloc?
Thanks so much for your help.

Similar Messages

  • Deploying a Java CORBA application in Web Start

    I am a novice to Java Web Start. I have a sample Client-Server application with CORBA as a middle ware. The front end (Client) is in Java and back end (Server) is in C++. The application is run and tested with jar and batch file. Now I want to deploy that application in Java Web Start and JNLP.
    I have configured the same by creating a JNLP file and signed jars.
    Now as all knows any CORBA application needs a domain file ( .cfg ) and some org.omg classes to communicate with the server by RPC.
    I am stuck with how to specify these domain file name, path, CORBA classes etc in my JNLP. Not even that, I can't understand exactly what configuration will make the CORBA apps work properly in Java Web Start so that it can communicate with the server as well. All the Orbix jars's, IDL Stub jars are present and signed. I am giving my JNLP file as a reference. Actually I have tried adding these domain files and CORBA classes as parameters. But as usual it is not working and after running the JNLP the Java console suddenly gets disappeared.
    CORBADemo.jnlp
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp spec="1.0+" codebase="http://172.28.1.139:8400/Test_CORBA_App" href="CORBADemo.jnlp">
    <information>
         <title>CORBA Demo</title>
         <vendor>Ushacomm</vendor>
    </information>
    <resources>
         <j2se version="1.6+" href="http://java.sun.com/products/autodl/j2se"/>
         <jar href="lib_6.3-Signed/UI_Fall_Test63.jar" main="true" download="eager" />
         <jar href="lib_6.3-Signed/ConfigurationService.jar" download="eager" />
         <jar href="lib_6.3-Signed/IDLStub.jar" download="eager" />
         <jar href="lib_6.3-Signed/art-rt.jar" download="eager" />
         <jar href="lib_6.3-Signed/art.jar" download="eager" />
         <jar href="lib_6.3-Signed/atli2-rt.jar" download="eager" />
         <jar href="lib_6.3-Signed/atli2.jar" download="eager" />
         <jar href="lib_6.3-Signed/atli2_ip-rt.jar" download="eager" />
         <jar href="lib_6.3-Signed/atli2_ip.jar" download="eager" />
         <jar href="lib_6.3-Signed/atli2_ip_cio-rt.jar" download="eager" />
         <jar href="lib_6.3-Signed/atli2_ip_cio.jar" download="eager" />
         <jar href="lib_6.3-Signed/atli2_ip_nio-rt.jar" download="eager" />
         <jar href="lib_6.3-Signed/atli2_ip_nio.jar" download="eager" />
         <jar href="lib_6.3-Signed/atli2_tls-rt.jar" download="eager" />
         <jar href="lib_6.3-Signed/atli2_tls.jar" download="eager" />
         <jar href="lib_6.3-Signed/codeset.jar" download="eager" />
         <jar href="lib_6.3-Signed/concurrency-rt.jar" download="eager" />
         <jar href="lib_6.3-Signed/concurrency.jar" download="eager" />
         <jar href="lib_6.3-Signed/ifc-rt.jar" download="eager" />
         <jar href="lib_6.3-Signed/ifc.jar" download="eager" />
         <jar href="lib_6.3-Signed/iiop.jar" download="eager" />
         <jar href="lib_6.3-Signed/java_management_logging-rt.jar" download="eager" />
         <jar href="lib_6.3-Signed/java_mgmt_plugin-rt.jar" download="eager" />
         <jar href="lib_6.3-Signed/java_portable_interceptor-rt.jar" download="eager" />
         <jar href="lib_6.3-Signed/management-rt.jar" download="eager" />
         <jar href="lib_6.3-Signed/management.jar" download="eager" />
         <jar href="lib_6.3-Signed/mgmt.jar" download="eager" />
         <jar href="lib_6.3-Signed/omg-rt.jar" download="eager" />
         <jar href="lib_6.3-Signed/omg.jar" download="eager" />
         <jar href="lib_6.3-Signed/perf_logging.jar" download="eager" />
         <jar href="lib_6.3-Signed/portable_interceptor.jar" download="eager" />
         <property name="Dorg.omg.CORBA.ORBClass" value="com.iona.corba.art.artimpl.ORBImpl"/>
         <property name="Dorg.omg.CORBA.ORBSingletonClass" value="com.iona.corba.art.artimpl.ORBSingleton"/>
         <property name="ORBdomain_name" value="VOIAMODOMAINNEW"/>
    </resources>
    <application-desc name="CORBADemo Demo Application" main-class="Launch" width="300" height="300">
    </application-desc>
    <update check="background"/>
    <argument>1</argument>
    <security>
         <all-permissions/>
    </security>
    </jnlp>
    .

    *@ gimbal2 and EJP :*
    The firewall is present and allowed to access apps. When I am running the jar of my application from batch file then everything is running fine. The CORBA Server is a remote RHEL5 (Enterprise Linux 5) machine whose 'IP' and 'Hostname' is specified in *"C:\WINDOWS\system32\drivers\etc\hosts"* file. Server is running fine and after starting the Client the Server side remote method is invoked. Data fetched properly and everything is working like a charm.
    When running from batch (.bat) file using jar My applications folder hierarchy is something like this.
    Test_CORBA_App
    ------+config ( contains resources file and domain file )
    ------+lib_6.3 ( contains all Jars)
    ------+log ( will contaiin the generated log files )
    -------runCORBA_App.bat ( the batch file I am running )
    As depicted above the folder hierarchy, my domain file resides in "config" folder. The contents of the batch file are as follows :
    runCORBA_App.bat
    C:\jdk1.6.0_14\bin\java -Xms64M -Xmx512M -Dorg.omg.CORBA.ORBClass=com.iona.corba.art.artimpl.ORBImpl -Dorg.omg.CORBA.ORBSingletonClass=com.iona.corba.art.artimpl.ORBSingleton -jar lib_6.3\UI_Fall_Test63.jar -ORBdomain_name VOIAMODOMAINNEW 1
    pause
    The following things are specified in the batch file :
    1. JDK path : ( C:\jdk1.6.0_14\bin\java )
    2. Java VM arguments for max and min memory : ( -Xms64M -Xmx512M )
    3. ORB class name: ( -Dorg.omg.CORBA.ORBClass=com.iona.corba.art.artimpl.ORBImpl )
    4. ORB singleton class name : ( -Dorg.omg.CORBA.ORBSingletonClass=com.iona.corba.art.artimpl.ORBSingleton )
    5. Jar file name to run : ( -jar lib_6.3\UI_Fall_Test63.jar )
    6. Domain Name : ( -ORBdomain_name VOIAMODOMAINNEW )
    7. Main function args : ( 1 )
    I am trying to deploy this simple CORBA application in Java Web Start and JNLP. I kept this in my tomcat server web apps. The folder hierarchy is as follows :
    tomcat
    ---+ bin
    ---+ conf
    ---+ ..
    ---+ ..
    ---+ ..
    ---_ webapps
    ----------+ host-manager
    ----------+ manager
    ----------+ ..
    ----------+ ..
    ----------_ Test_CORBA_App
    -------------------+ config
    -------------------+ lib_6.3
    -------------------+ lib_6.3-Signed
    -------------------+ log
    --------------------CORBADemo.jnlp (.jnlp file)
    --------------------index.html (.html file)
    As you can see I maintained the same folder structure as it was when running from batch file. The jars I am using is signed and kept in lib_6.3-Signed folder.
    My updated "CORBADemo.jnlp" is :
    CORBADemo.jnlp
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp spec="1.0+" codebase="http://172.28.1.139:8400/Test_CORBA_App" href="CORBADemo.jnlp">
    <information>
         <title>CORBA Demo</title>
         <vendor>Ushacomm</vendor>
    </information>
    <resources>
         <j2se version="1.6" href="http://java.sun.com/products/autodl/j2se" java-vm-args="-Xms64M -Xmx512M 1" />
         <jar href="lib_6.3-Signed/UI_Fall_Test63.jar" main="true" download="eager" />
         <jar href="lib_6.3-Signed/ConfigurationService.jar" download="eager" />
         <jar href="lib_6.3-Signed/IDLStub.jar" download="eager" />
         <jar href="lib_6.3-Signed/art-rt.jar" download="eager" />
         <jar href="lib_6.3-Signed/art.jar" download="eager" />
         <jar href="lib_6.3-Signed/atli2-rt.jar" download="eager" />
         <jar href="lib_6.3-Signed/atli2.jar" download="eager" />
         <jar href="lib_6.3-Signed/atli2_ip-rt.jar" download="eager" />
         <jar href="lib_6.3-Signed/atli2_ip.jar" download="eager" />
         <jar href="lib_6.3-Signed/atli2_ip_cio-rt.jar" download="eager" />
         <jar href="lib_6.3-Signed/atli2_ip_cio.jar" download="eager" />
         <jar href="lib_6.3-Signed/atli2_ip_nio-rt.jar" download="eager" />
         <jar href="lib_6.3-Signed/atli2_ip_nio.jar" download="eager" />
         <jar href="lib_6.3-Signed/atli2_tls-rt.jar" download="eager" />
         <jar href="lib_6.3-Signed/atli2_tls.jar" download="eager" />
         <jar href="lib_6.3-Signed/codeset.jar" download="eager" />
         <jar href="lib_6.3-Signed/concurrency-rt.jar" download="eager" />
         <jar href="lib_6.3-Signed/concurrency.jar" download="eager" />
         <jar href="lib_6.3-Signed/ifc-rt.jar" download="eager" />
         <jar href="lib_6.3-Signed/ifc.jar" download="eager" />
         <jar href="lib_6.3-Signed/iiop.jar" download="eager" />
         <jar href="lib_6.3-Signed/java_management_logging-rt.jar" download="eager" />
         <jar href="lib_6.3-Signed/java_mgmt_plugin-rt.jar" download="eager" />
         <jar href="lib_6.3-Signed/java_portable_interceptor-rt.jar" download="eager" />
         <jar href="lib_6.3-Signed/management-rt.jar" download="eager" />
         <jar href="lib_6.3-Signed/management.jar" download="eager" />
         <jar href="lib_6.3-Signed/mgmt.jar" download="eager" />
         <jar href="lib_6.3-Signed/omg-rt.jar" download="eager" />
         <jar href="lib_6.3-Signed/omg.jar" download="eager" />
         <jar href="lib_6.3-Signed/perf_logging.jar" download="eager" />
         <jar href="lib_6.3-Signed/portable_interceptor.jar" download="eager" />
         <property name="Dorg.omg.CORBA.ORBClass" value="com.iona.corba.art.artimpl.ORBImpl"/>
         <property name="Dorg.omg.CORBA.ORBSingletonClass" value="com.iona.corba.art.artimpl.ORBSingleton"/>
         <property name="ORBdomain_name" value="VOIAMODOMAINNEW"/>
    </resources>
    <application-desc name="CORBADemo Demo Application" main-class="Launch" width="300" height="300">
    </application-desc>
    <update check="background"/>
    <argument>1</argument>
    <security>
         <all-permissions/>
    </security>
    </jnlp>
    N.B
    *1. I am running the Tomcat server in my own machine on port 8400 ( for sure, as I have deployed many .war files using this tomcat and all worked ). And using the URL below running the WebStart application.*
    *2. I am running the JNLP from my own machine.*
    *3. CORBA server is running on a remote RHEL 5 machine as I mentioned before also.*
    URL : http://<My Machine IP>:8400/Test_CORBA_App/
    As desired the Web Start application will make a call to the remote CORBA server on RHEL5 machine by initializing the ORB and resolving the CORBA NamingService. But exception is occurring as I posted in previous post i.e exception while resolving NamingService.
    Now my query is whether the domain file ( DOMAIN.cfg ) is reading/ accessing properly from my machine while running the JNLP or not. Because I presume in Java Web Start special attention is required to read any .cfg file. If everything is fine why the error is occurring.
    *@ EJP :* The ORB is desired to run and running on the CORBA Server remote macine i.e RHEL5 machine, because from batch file it is working fine.
    Is it so that I need to run the Tomcat Web Server and CORBA Server from the same machine.

  • I have a problem with wifi in my iphone 4s, i already try everything and download latest version 7.1(11D167) but wifi switch is not working, its my humble request to Apple support team that pls resolve this problem as soon as possible because

    I have a problem with wifi in my iphone 4s, i already try everything and download latest version 7.1(11D167) but wifi switch is not working, its my humble request to Apple support team that pls resolve this problem as soon as possible because its a prestiage of Apple Company.
    Pls inform me how can i resolve the problem of wifi.

    You have to go to autherized iPhone agent.

  • Some of my apps refuse to open. For example, google crome gives me the message that it quit unexpectedly and gives me the option to submit a report to no resolve. Does anyone have suggestions?

    Some of my apps refuse to open. For example, google crome gives me the message that it quit unexpectedly and gives me the option to submit a report to no resolve. Does anyone have suggestions?

    Welcome to the Apple community.
    Does anyone have suggestions?
    Trash the spyware (Chrome) and use Safari.

  • Class vector can't be resolved

    hi ,
    plz i got the following error while running a J2ME
    program
    cannot resolve symbol
    symbol : method add (java.lang.String)
    location: class java.util.Vector
    any ideas????

    First of all, crosspost:
    http://forum.java.sun.com/thread.jspa?threadID=629578
    Please only use one thread.
    There is no method "add(someStringVariable)" in the Vector library for j2me. However, there is "addElement (Object o)".
    j2me specs and j2se specs are very different.
    J2ME leaves out alot of methods due for mobile usage.
    To get specs for cldc and midp, look here:
    http://java.sun.com/j2me/docs/index.html

  • Vector class can't be resolved

    hi ,
    plz i got the following error while running a J2ME
    program
    cannot resolve symbol
    symbol : method add (java.lang.String)
    location: class java.util.Vector
    any ideas????

    The name of the method is addElement(). A quick glance at the javadocs would have solved that problem in no time.
    shmoove

  • No Disk Error - How do I resolve this...

    Every now and then while using itunes or connecting my ipod I get a box popping up saying:
    header; iTunes.exe - No disk
    There is no disk in the drive. Please insert a disk into drive \Device\Harddisk\DR5.
    I try and click cancel or continue and sometimes it resolves itself. How can I get this msg to go away permanently???
    I'm not much of a computer guy so hopefully you can spell it out for me!
    Thanks!

    As long as it is a MacBook Pro labelled DVD analyzing a MacBook Pro, Disk Utility should be fine as far as analyzing basic directory structure issues with the Repair Disk and Verify Disk functions. I say basic, because Alsoft Disk Warrior when it repairs the disk directory is much more thorough in its efforts to construct a brand new directory to replace one which is damaged than Disk Utility or fsck. Regardless of the method used, directory damage can have the same symptoms as a dying hard drive. Even a modern MacBook Pro is not immune from its drive dying quickly. And since repairing the directory is a much more invasive routine than pure data recovery, I only recommend fixing the directory on a machine that has been backed up, or you have at least attempted a data recovery with Prosoft Data Rescue.

  • HT204416 My Safari is no longer working with many sites.  However Chrome and Firefox work fine.  I would like to re-install Safari in an effort to clear up the problem I can not resolve.

    My Safari is no longer working with many sites.  However Chrome and Firefox work fine.  I would like to re-install Safari in an effort to clear up the problem I can not resolve.

    1. From the Safari menu bar, select
              Safari ▹ Preferences... ▹ Extensions
    Turn all extensions OFF and test. If the problem is resolved, turn extensions back ON and then disable them one or a few at a time until you find the culprit.
    2. Select
              Safari ▹ Preferences... ▹ Privacy ▹ Remove All Website Data...
    and confirm. Test.
    3. If the above steps don't resolve the problem, please describe it in more detail.

  • Adobe Acrobat XI Pro causes an error when starting it - Adobe Acrobat has stopped working. How do I resolve this?

    I've had Adobe Acrobat XI Pro for some time, but yesterday it stopped working and I started having an 'Adobe Acrobat has stopped working' error. It then tells me to Close the Program.
    How do I resolve this?
    Thanks and regards
    Roxanne

    Thanks Pat. I was able to resolve the problem.
    OS is Windows 7 Pro, Adobe Acrobat Pro 11.0.07.
    I went into the Properties file where I identified that Users only had Read & Execute and Read properties, I changed properties for Everyone to Full Control. That fixed the problem.
    I don't know how the properties got changed to just Read & Execute, but there had been an automatic update the night before.
    Regards
    Roxanne

  • Error when starting Firefox 3.6. "Javascript Application error. Invalid username/password combination. If you continue to get this error, try entering your email address as your username." Any suggestions on what to look for to resolve this?

    When starting Mozilla Firefox 3.6, I get an error window which opens up additionally overtop my browser windows stating:
    "Javascript Application"
    followed with :
    "Invalid username/password combination. If you continue to get this error, try entering your email address as your username."
    Obviously it is happening with one of my email addresses/usernames & password combinations of which I know the username for (which I choose not to post here) and I'm not sure where to begin looking for a resolution to this problem.

    I was able to resolve this by disabling (under Tools - Add-ons) Yahoo! Mail Notifier
    Hope this helps some of you also!

  • Adobe Bridge CS6 has stopped working - has issue been resolved?

    Hello.
    I am experiencing the above problem with a new install of CS6.
    Has this issue been resolved?
    CS6 Design and Web Premium installed on Win 7 pro 64 bit Dell Precision laptop. Error with Adobe Bridge cs6: "Adobe Bridge CS6 has stopped working", problem event name "APPCRASH". Error occurs when opening Bridge from Photoshop and other apps (Browse in Bridge) and directly from desktop or start menu. Also a cache directory is not being created under c:\user\<user>\appdata\roaming\adobe\bridge\. Holding ctrl key down and double clicking icon gets same message, cannot get at reset window.
    Performed the following with no change: verified Bridge and full suite is on latest version (Bridge=5.0.2.4); created desktop icon directly from bridge.exe; verified application was installed and is starting with administrator privileges; verified latest display driver installed; performed complete uninstall of CS6, CC cleaner tool run, then full reinstall; Error under Event Viewer: faulting application: Bridge.exe and faulting module name: ntdll.dll; disabled UAC; tested memory for damage using MemTest86-good.
    Thanks for any help you can provide.

    A follow up to the above.
    There appears to be a number of possible causes for this type of error. In my case it was somewhat specific. I had a stand alone copy on this same machine previously of Adobe Photoshop CS2 (only) which was completely uninstalled prior to the installation of CS6. There is an issue with Bridge CS6 being installed on a machine that has Bridge CS2 on it. I wasn't aware of Bridge being present with my copy of Photoshop CS2 but apparently there were at least some components of Bridge CS2 left after the uninstall. The workaround that solved the issue for me was the creation of an empty folder:
    C:\Users\[your user name]\AppData\Roaming\Adobe\Bridge CS2
    For those of you who may have this situation.
    Here is where I found the solution (sixth thread down):
    Bridge CS6 won't open running on Win7

  • I bought an I pad 2 from us but I can not activate the Facetime in UAE(Dubai)as I can not see the country in the I pad's  drop list, anyone has an idea as how to resolve this issue

    I bought an I pad 2 from us but I can not activate the Facetime in UAE(Dubai)as I can not see the country in the I pad's  drop list, anyone has an idea as to how to resolve this issue

    I'm not that familiar with how FaceTime works. I know how to set It up but I don't use it. I just know that you can't activate in the UAE. I believe that you can activate in any country that permits it's use. Whether you will need a new ID or not, I can't confirm.
    You can Google this and get all sorts of articles on workarounds. Apparently if you set up a VPN you can use it in the UAE. Here is one article that I found.
    http://talkfree7.blogspot.com/2010/09/how-to-facetime-voip-call-from-uae.html
    I Googled "workaround for FaceTime in UAE" to find this.

  • Instalei o Windows7 x64 num computador limpo. Quando sincronizei o iPhone, perdi todos os meus contatos. Como resolver esse problema?

    Tenho o iTunes versão 10.4 para windows x64. Tudo instalado corretamente e estou tendo muita dificuldade para sincronizar o iPhone4. Numa primeira vez, o programa fez um monte de atualizações e depois de terminada a "sincronização" verifiquei que tinha perdido todos os contatos gravados no iPhone!?!
    Como resolver isso?
    Essas dificuldades também estão acontecendo na sincronização do iPad (!!?!!)
    Nada disso acontecia quando o sistema instalado era o velho Windows XP x86. Não digo bom e velho porque não é. O novo Win7 é bastante superior e melhor que o velho WinXP. O problema começou a acontecer quando instalei a versão nova do iTunes (a tal 10.4 instalada de acordo com os requisitos da Apple e feita sem nenhum problema e sem relatar nenhum erro durante nem depois da insatalação), que aliás é o único programa que está dando problema na nova instalação.
    Como resolver isso?

    Tenho o iTunes versão 10.4 para windows x64. Tudo instalado corretamente e estou tendo muita dificuldade para sincronizar o iPhone4. Numa primeira vez, o programa fez um monte de atualizações e depois de terminada a "sincronização" verifiquei que tinha perdido todos os contatos gravados no iPhone!?!
    Como resolver isso?
    Essas dificuldades também estão acontecendo na sincronização do iPad (!!?!!)
    Nada disso acontecia quando o sistema instalado era o velho Windows XP x86. Não digo bom e velho porque não é. O novo Win7 é bastante superior e melhor que o velho WinXP. O problema começou a acontecer quando instalei a versão nova do iTunes (a tal 10.4 instalada de acordo com os requisitos da Apple e feita sem nenhum problema e sem relatar nenhum erro durante nem depois da insatalação), que aliás é o único programa que está dando problema na nova instalação.
    Como resolver isso?

  • Icones de documentos pdf se transformaram em icones do Firefox e nenhuma solução postada neste site consegue resolver o problema. Como resolvo este problema?

    Os documentos do tipo PDF, depois da última atualização do firefox, se transformaram em icones do firefox. Configurei-o para abrir com o visualizador padrão PDF(no caso Adobe), ele abre com o Adobe mas o icone é do Firefox. As soluções postadas neste guia de suporte tais como: clicar em preferências abrir com e mudar para programa padrão não estão solucionando o problema. fiz a configuração no firefox em ferramentas, aplicativos e pedi para abrir com e nada. Já fui em painel de controle e em opões de pasta e verifiquei o tipo de arquivo está tudo certo. Já baixei um fix it da microsoft e não conseguir resolver o problema.
    Na minha opinião e algum bug do Firefox. Estou aguardando alguma sugestão além destas que descrevi. Se alguém puder me ajudar. Agradeço.
    Tania

    Atualize o sistema operacional que o problema será resolvido, o problema na verdade é com o Windows XP e infelizmente ele não é mais suportado.

  • Alguém conseguiu resolver o problema da tecla do Wi-fi que apagou do 4s após atualização do sistema ?? isso é um absurdo !! E ainda dizem que temos que pagar pelo conserto !! FORA APPLE !!

    Boa tarde,
    Possuo um  Iphone 4S  que logo após atualizar seu sistema operacional  parou de funcionar o WiFi, a tecla para selecionar o Wifi só fica cinza e não seleciona o mesmo, ou seja, não fica verde, aparelho intacto, nunca caiu, nada, perfeito externamente e isso ocorreu logo após o sistema operacional indicar atualização do mesmo, uma vez que a o próprio fabricante coloca a atualização do IOS.
    Logo em seguida entrei em contato via telefone com o suporte técnico, onde o mesmo me fez fazer  todos os procedimentos possíveis e imagináveis da Apple para o IPhone 4s, depois disso fui orientado a restaurar todo o sistema do meu Iphone 4s por um consultor chamado Felipe, levei em média 2,5 horas para atualizar o aparelho e ao fim de todas as tentativas continuou o mesmo defeito e simplesmente baniu todas as informações, registros, fotos, vídeos entre outros do meu aparelho e o suporte nada tinha me dito antes sobre o que aconteceria com a atualização e restauração.
    Visualizando os atendentes que não iriam conseguir resolver meu problema chamaram na mesma ligação uma outra representante ( porta voz ) da Apple, cujo nome seria Rachel.
    A mesma por sua vez começou me atendendo de uma forma plausível e me conduzindo a aceitar o que ela estava falando, uma vez que deixo bem claro: Comprei um aparelho novo na caixa com nota fiscal, pagando todos os impostos e sem pedido de desconto para que eu pudesse ter em mãos um aparelho funcional, para uso da minha parte profissional, onde ouvia dizer que a Apple poderia me atender neste quesito, hoje por sua vez ouço mais reclamações do que elogios.
    A primeira compra ocorreu em 2012, no começo de 2013 meu aparelho sofreu danos e fui orientado a ir em um representante Apple no Brasil. Fui diretamente a loja iTown situada no Shopping Barra Shopping 1º Piso Av. das Américas , 4.666 - Barra da Tijuca - RJ, chegando lá fui informado que meu aparelho teria que ser trocado e que teria que pagar uma quantia para possuir um outro aparelho das mesmas configurações só que novo, sem uso e com uma nova nota fiscal enviado diretamente da Apple, já que estava em um representante legal da mesma.
    Feito isso, esperei exatos 30 dias para que pudesse retirar da loja acima citada o aparelho comprado e pago para poder usufruir dos benefícios aos quais já não estava tendo tanta confiança.
    Hoje, exatos 10 meses e 11 dias após a retirada do aparelho na loja iTown representante Apple, fui informado pela Srta. Rachel mencionada acima que o meu aparelho que por sua vez deu problema após atualização do sistema feita pelo próprio fabricante, está sem garantia. E conforme mencionado acima, fui atendido pela mesma cordialmente no começo da conversa que por sua vez logo em seguida a mesma representante me tratou com descaso chegando ao ponto de mencionar que nada poderia fazer, e que se eu quisesse procuraria o setor jurídico da empresa, já que eu tinha mencionado que iria procurar os meus direitos, pois era um absurdo estar sendo tratado daquela forma.
    Pedi que a mesma me mandasse por e-mail o relato de toda nossa conversa e mais uma vez com total descaso a mesma disse que iria mandar um e-mail da forma que teria que ser enviado, ou seja, da forma que melhor iria convir. Questionando mais uma vez o e-mail, a mesma me informou que estava sem sistema, questionando a mais uma vez sobre o prazo de envio a mesma de forma ríspida me disse que não podeira prever tal retorno.
    É com total desgosto que envio esse e-mail para vocês, isso se chegar as pessoas que devem ler o que está escrito aqui, pois a Apple nem e-mail de ouvidoria ou SAC possui e temos que ficar a merce de quem nos atendeu.
    Informo que irei certamente procurar meus direitos e a quem eu puder como consumidor, falar, relatar, esse total descaso ao qual passei em relação a marca e atendentes, farei sempre que possível.
    Fica o relato de um consumidor totalmente insatisfeito.
    Rodrigo Andrade
    IMei : 01 318300 374680 6
    N. de Série: DQJJM112DTD1

    Eis como ficou resolvido o meu problema:
    Viajei aos Estados Unidos e entrei na primeira Apple Store que encontrei (Del Monte Mall em Monterrey, Califórnia).
    Após 15 minutos de conversa com o vendedor, a assistente de suporte e o "Apple Genius" trocaram meu IPAD Mini por outro.
    Ficou claro que a garantia propagandeada pela Apple funciona nos EUA mas não no Brasil.

Maybe you are looking for