Servicegen and clientgen using WL 7.0

This is something strange ..
I have a backend SLSB which I tried to expose as a webservice using servicegen.
Got the Webservice working, have the wsdl, everything looked perfect untill i
tried to
generate the client stubs using clientgen. I used the useServerTypes = "true"
Clientgen failed, compiling XXXWebServicePort.java, saying it can not find one
of my class. I
looked in the /var/tmp/clientxxx/dir to find that it has all the non built in
class files and codec class files expect one class, which happened to be my superclass
from which all other classes extend.
It was then that I looked at the wsdl and found that it has no reference to my
superclass either.
Even more, I looked at the WEB_INF/classes of the war file and found that it has
all other classes except the superclass.
It is like this,
superclass a
b extends a
c, d, etc extend b.
classes b, c, d, etc exist but class a is not found anywhere....but the webservice
is working fine,
methods retrieve data from the database using classes b, c, d, etc.
where is my class a, why doesn't it exist in my wsdl ...or anywhere !!
how can i build my client stubs in this case...
am i missing some thing ..
any help is appreciated !
thanks,

I dont have enough info to guess what is
going wrong. I would suggest you to contact
support with a test case.
Also you could try servicegen with
useServerTypes="false".
Regards,
-manoj
http://manojc.com
"S S" <[email protected]> wrote in message news:3f21c83f$[email protected]..
>
how can i build my client stubs in this case....
clientgen fails complaining the super class is not found while
compiling WebServicePort.java
your help is appreciated...
thanks,
"manoj cheenath" <[email protected]> wrote:
I think this is because WLS 7.0 flattens the
java inheritance hierarchy. WLS 8.1 does
map this to schema inheritance.
Regards,
-manoj
http://manojc.com
"S S" <[email protected]> wrote in message
news:3f21994c$[email protected]..
>>>
This is something strange ..
I have a backend SLSB which I tried to expose as a webservice usingservicegen.
Got the Webservice working, have the wsdl, everything looked perfectuntill i
tried to
generate the client stubs using clientgen. I used the useServerTypes=
"true"
Clientgen failed, compiling XXXWebServicePort.java, saying it cannot
find one
of my class. I
looked in the /var/tmp/clientxxx/dir to find that it has all the nonbuilt
in
class files and codec class files expect one class, which happenedto be
my superclass
from which all other classes extend.
It was then that I looked at the wsdl and found that it has no
reference
to my
superclass either.
Even more, I looked at the WEB_INF/classes of the war file and foundthat
it has
all other classes except the superclass.
It is like this,
superclass a
b extends a
c, d, etc extend b.
classes b, c, d, etc exist but class a is not found anywhere....butthe
webservice
is working fine,
methods retrieve data from the database using classes b, c, d, etc.
where is my class a, why doesn't it exist in my wsdl ...or anywhere!!
how can i build my client stubs in this case...
am i missing some thing ..
any help is appreciated !
thanks,

Similar Messages

  • WLS 7.0.0.0 and clientgen from 7.0.0.1 & NoSuchFieldError

    I am trying to run the following code on one of our dev servers that is
    running WLS 7.0.0.0.
    I generated the Web Service client code using clientgen on my local machine
    using 7.0.0.1.
    The code is below (I marked the line where it chokes).
    // Setup the global JAX-RPC service factory
    System.setProperty( "javax.xml.rpc.ServiceFactory",
    "weblogic.webservice.core.rpc.ServiceFactoryImpl");
    // Execute the Web Service
    String reportName = "CustomerHasLicensed";
    String[] arguments = new String[1];
    try {
    logger_.logInfo(CLASSNAME,METHOD,"in try block");
    AuthHeader authHeader = new AuthHeader("ebase","ebase");
    logger_.logInfo(CLASSNAME,METHOD,"created AuthHeader");
    arguments[0] = "100";
    SystemReports_Impl test = new SystemReports_Impl();
    logger_.logInfo(CLASSNAME,METHOD,"Created impl");
    SystemReportsSoap soap = test.getSystemReportsSoap();
    logger_.logInfo(CLASSNAME,METHOD,"got soap");
    // #### THIS IS WHERE IT CHOKES ####
    Reports reports = soap.getReports(reportName, arguments,
    authHeader);
    logger_.logInfo(CLASSNAME,METHOD,"fired webservice");
    String head = reports.getHead();
    logger_.logInfo(CLASSNAME,METHOD,"got header");
    String body = reports.getBody();
    String foot = reports.getFoot();
    logger_.logInfo(CLASSNAME,METHOD,"##### head:"+head+"
    #####body:"+body+ " ####foot:"+foot);
    catch (Exception e) {
    logger_.logError(CLASSNAME,METHOD,e.toString());
    throw new ProgramException(e);
    catch (Throwable t) {
    logger_.logError(CLASSNAME,METHOD,t.toString());
    throw new ProgramException(t);
    I get the following stack trace:
    at
    weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(Servle
    tStubImpl.java:945)
    at
    weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
    :332)
    at
    weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
    :242)
    at
    weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(W
    ebAppServletContext.java:5363)
    at
    weblogic.security.service.SecurityServiceManager.runAs(SecurityServiceManage
    r.java:721)
    at
    weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletCo
    ntext.java:3043)
    at
    weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java
    :2466)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:152)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:133)
    java.lang.NoSuchFieldError: elementQ
    at
    weblogic.webservice.xml.XMLNodeInputStream.open(XMLNodeInputStream.java:80)
    at
    weblogic.webservice.xml.XMLNodeInputStream.<init>(XMLNodeInputStream.java:48
    at weblogic.webservice.xml.XMLNode.stream(XMLNode.java:141)
    at weblogic.webservice.core.DefaultPart.toJava(DefaultPart.java:291)
    at weblogic.webservice.core.DefaultMessage.toJava(DefaultMessage.java:359)
    at
    weblogic.webservice.core.DefaultOperation.invoke(DefaultOperation.java:465)
    at
    weblogic.webservice.core.DefaultOperation.invoke(DefaultOperation.java:359)
    at weblogic.webservice.core.rpc.StubImpl._invoke(StubImpl.java:205)
    Do I have to run this on WLS 7.0.0.1? My understanding was that 7.0.0.1
    just included the WLS Platform stuff and Workshop.
    Maybe there was a bug fix that I'm tripping on?
    FYI, this works fine from the command line.
    Thanks.
    Mike

    When all else fails read the documentation ;) I'm assuming this is somehow
    related to this. This just reinforces my decision to migrate from 6.1 to 7
    sp1 (counting the days).
    Mike
    WebLogic Web Services Changes Between Versions 7.0 and 7.0.0.1
    Version 7.0.0.1 of WebLogic Web services implements version 1.0 of the Java
    API forn XML based RPC (JAX-RPC) specification. Version 7.0 of WebLogic Web
    services implemented version 0.8.
    Because of the different versions of JAX-RPC implemented between the two
    versions of WebLogic Server, some features of WebLogic Web services have
    changed between versions 7.0 and 7.0.0.1, as described in the following
    sections.
    Upgrading Web Services From 7.0 to 7.0.0.1
    Because of the changes in WebLogic Web services between versions 7.0 and
    7.0.0.1, you must upgrade all WebLogic Web services you created on version
    7.0 so that they deploy correctly on version 7.0.0.1. You must also upgrade
    your client applications that invoke the Web services.
    The following procedure describes the steps you must follow to upgrade:
    1.. Upgrade WebLogic Server from Version 7.0 to 7.0.0.1.
    2.. Re-assemble your 7.0 Web service by re-running the servicegen Ant
    task. Use the same build.xml file that you used in version 7.0 of WebLogic
    Server.
    3.. Regenerate the client JAR file by re-running the clientgen Ant task.
    Either use the same build.xml file that you used in version 7.0 of WebLogic
    Server, or add the new attributes listed in New Attributes of the clientgen
    Ant Task.
    4.. Update your Java client application that invokes your Web service by
    making the JAX-RPC API changes described in Changed Names of Stubs Generated
    by the clientgen Ant Task and JAX-RPC API Changes.
    Refer to Assembling and Deploying WebLogic Web Services and Invoking Web
    Services for detailed information about the servicegen and clientgen Ant
    tasks and writing Java client applications that invoke Web services.
    "Mike" <[email protected]> wrote in message
    news:[email protected]...
    I am trying to run the following code on one of our dev servers that is
    running WLS 7.0.0.0.
    I generated the Web Service client code using clientgen on my localmachine
    using 7.0.0.1.
    The code is below (I marked the line where it chokes).
    // Setup the global JAX-RPC service factory
    System.setProperty( "javax.xml.rpc.ServiceFactory",
    "weblogic.webservice.core.rpc.ServiceFactoryImpl");
    // Execute the Web Service
    String reportName = "CustomerHasLicensed";
    String[] arguments = new String[1];
    try {
    logger_.logInfo(CLASSNAME,METHOD,"in try block");
    AuthHeader authHeader = new AuthHeader("ebase","ebase");
    logger_.logInfo(CLASSNAME,METHOD,"created AuthHeader");
    arguments[0] = "100";
    SystemReports_Impl test = new SystemReports_Impl();
    logger_.logInfo(CLASSNAME,METHOD,"Created impl");
    SystemReportsSoap soap = test.getSystemReportsSoap();
    logger_.logInfo(CLASSNAME,METHOD,"got soap");
    // #### THIS IS WHERE IT CHOKES ####
    Reports reports = soap.getReports(reportName, arguments,
    authHeader);
    logger_.logInfo(CLASSNAME,METHOD,"fired webservice");
    String head = reports.getHead();
    logger_.logInfo(CLASSNAME,METHOD,"got header");
    String body = reports.getBody();
    String foot = reports.getFoot();
    logger_.logInfo(CLASSNAME,METHOD,"##### head:"+head+"
    #####body:"+body+ " ####foot:"+foot);
    catch (Exception e) {
    logger_.logError(CLASSNAME,METHOD,e.toString());
    throw new ProgramException(e);
    catch (Throwable t) {
    logger_.logError(CLASSNAME,METHOD,t.toString());
    throw new ProgramException(t);
    I get the following stack trace:
    at
    weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(Servle
    tStubImpl.java:945)
    at
    weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
    :332)
    at
    weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
    :242)
    at
    weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(W
    ebAppServletContext.java:5363)
    at
    weblogic.security.service.SecurityServiceManager.runAs(SecurityServiceManage
    r.java:721)
    at
    weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletCo
    ntext.java:3043)
    at
    weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java
    :2466)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:152)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:133)
    java.lang.NoSuchFieldError: elementQ
    at
    weblogic.webservice.xml.XMLNodeInputStream.open(XMLNodeInputStream.java:80)
    at
    weblogic.webservice.xml.XMLNodeInputStream.<init>(XMLNodeInputStream.java:48
    at weblogic.webservice.xml.XMLNode.stream(XMLNode.java:141)
    at weblogic.webservice.core.DefaultPart.toJava(DefaultPart.java:291)
    atweblogic.webservice.core.DefaultMessage.toJava(DefaultMessage.java:359)
    at
    weblogic.webservice.core.DefaultOperation.invoke(DefaultOperation.java:465)
    at
    weblogic.webservice.core.DefaultOperation.invoke(DefaultOperation.java:359)
    at weblogic.webservice.core.rpc.StubImpl._invoke(StubImpl.java:205)
    Do I have to run this on WLS 7.0.0.1? My understanding was that 7.0.0.1
    just included the WLS Platform stuff and Workshop.
    Maybe there was a bug fix that I'm tripping on?
    FYI, this works fine from the command line.
    Thanks.
    Mike

  • How do I delete two old Apple ID's and just use my current Apple ID?

    I had an Apple ID with an AOL email, I switched over to yahoo. While making the switch I misspelled the yahoo email address. I could not delete it, so I made another yahoo email address ID. Eventually I lost access to my previous purchases that were associated with the faulty email address even though I was using my current (correct email) to log onto iTunes. I found this out when my Macbook crashed (iPhoto) and I could not access my previous purchases. Eventually I was able to convince Apple Account Security Support that I was the person who set up the account (I am living in Barcelona currently and calling for support cost a lot of euro on a pay as you go sim and holding for 1 hour is a big waste of euro, but I understand that Apple Support is busy BUT, if you (Chris and Tyler) say you will call a customer back if you are disconnected you should follow through, not leave the customer hanging) (A SHOUT OUT TO MERCEDES, SHE FOLLOWED THROUGH!!!) (Chris and Tyler you guys need additional customer training from Mercedes)
    Anyway, back on topic. By a stroke of luck, while I was on hold for 30 minutes, I found the crossed out password to my faulty email ID, I was able to view/restore ALL of my previous purchases. So, my problem now is that I still have two unused Apple ID's. I want to delete them and just use the current. I don't want to call Apple again because I cannot waste anymore euro on hold and I do not feel confident that the Account Security representative will call me back, Mercedes is an exception to that. It would be nice to resolve this by email correspondence OR and actual call from Apple Account Security.
    On a side note, I have purchased three Apple devices while here in Barcelona. Europe has a mandatory two year warranty, but if you have a US iTunes Account serial numbers written in for warranty information only are recognized by US one year warranty standards. Apple should Should acknowledge this loophole/oversight.
    So that's a brief summary as it relates to my question. Sorry for the length of it. I hope I can get some good opinions for a possible resolution for my question/issue.
    Thanks

    On a side note, I have purchased three Apple devices while here in Barcelona. Europe has a mandatory two year warranty, but if you have a US iTunes Account serial numbers written in for warranty information only are recognized by US one year warranty standards.
    Your account isn't US or Spanish or any country but should be associated with the country in which you are resident.  Your US account  becomes a Spanish account if that is where you now live but it is all the same AppleID.  Before you change country make sure you have downloaded and backed up any purchases from your previous country's store.  You will not be able to re-download them again once you change countries and it won't be easy to change countries to the previous one once you lose your payment method for the former country (as well as a wait period).  As long as you have them on your computer you will be okay.
    Change the country of your iTunes Store, App Store, iBooks Store, and Mac App Store account - http://support.apple.com/kb/ht6119 - "After you change the country of your account, you won't see the items you purchased from the previous country’s store in the Purchased section."
    Even if you do not change country you are not supposed to use your account outside the USA. The iTunes Store in a country is intended for use only by that country's residents, and only while they are in the country. To use the iTunes Store in a country you need a credit card (or other card type if acceptable in a country) issued in that country, billed to an address in that country, and also be physically present in that country when using the store.  You are also restricted to waiting 90 days between country changes.
    E.g., "The iTunes Service is available to you only in the United States, its territories, and possessions. You agree not to use or attempt to use the iTunes Service from outside these locations. Apple may use technologies to verify your compliance." - http://www.apple.com/legal/itune/us/terms.html#SERVICE
    As for the devices, I believe except for computers the warranties only apply in the country/region of purchase.  If you return to the USA with them you would have to return them to Spain for any service (and no, Apple will not ship them back to another country either direction -- you'll have to get a friend to take them in).
    Apple Hardware Warranties - http://www.apple.com/legal/warranty/ - select device, then model, then country, then view warranty button.  Look for:
    "IMPORTANT RESTRICTION
    Apple may restrict warranty service to the country where Apple or its Authorized Distributors originally sold the Apple Product." - http://www.apple.com/legal/warranty/products/iphone-english.html

  • My emails do not go - they exit outbox and go to recovered. How can I delete my Icloud account and just use gmail.

    My emails go from outbox into I cloud recovered section. I have gmail too. how can I delete my icloud account and just use gmail? Speed test on wifi good.
    Any ideas please.

    Sign out of iCloud (System Preferences>iCloud)

  • Is there a way to create an object using Trapcode Form and then use that object as a particle in Trapcode Particular?

    I made some objects in Cinema 4D and I tried to import them into After Effects CC 2014.  I get an error saying 'Cannot find Adobe Premiere Pro Dynamic Link'.  So I tried it in AE CC and that worked.  However, I want to create a form object and then use that as a particle for Trapcode Particular.  Is this even possible?
    Thank you for any help!

    There are also size limitations or rather suggestions for particle size. If I were creating an animated 3D shape using Form or C4D and wanted to use it as a particle I would keep the size of the particle about 1/6 to 1/8 of the comp size. You would create a new comp for your particle, animate it, then nest the particle comp in your main comp, turn off visibility, and then use it as a particle in Particular.

  • What is RID in non clustered index and its use

    Hi All,
    I need help regarding following articles on sql server
    1) what is RID in non clustered index and its use.
    2) What is Physical and virtual address space. Difference in 32 bit vs 64 bit Virtual address space
    Regards
    Rahul

    Next time Please ask single question in a thread you will get better response.
    1. RID is location of heap. When you create Non clustered index on heap and
    lookup happens to get extra records RID is used to locate the records. RID is basically Row ID. This is basic definition for you. Please read
    this Thread for more details
    2. I have not heard of Physical address space. I Know Virtual address space( VAS)
    VAS is simple terms is amount of memory( virtual )  'visible' to a process, a process can be SQL Server process or windows process. It theoretically depends on architecture of Operating System. 32 bit OS will have maximum range of 4 G VAS, it's calculated
    like a process ruining on 32 bit system can address max up to 2^32 locations ( which is equivalent to 4 G). Similarly for 64 bit max VAS will be 2^64 which is theoretically infinite. To make things feasible maximum VAS for 64 bit system is kept to 8 TB. Now
    VAS acts as layer of abstraction an intermediate .Instead of all request directly mapping to physical memory it first maps to VAS and then mapped to physical memory so that it can manage request for memory in more coordinated fashion than allowing process
    to do it ,if not it will  soon cause memory crunch.Any process when created on windows will see virtual memory according to its VAS limit.
    Please read
    This Article for detailed information
    Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it
    My Technet Wiki Article
    MVP

  • Get "Creation Script" of the existing table ( in SQL database) using C# and without using SMO dlls

    Hi All,
    I need to get the "Creation Script" of the existing table using c# and without using SMO dlls (is it possible? I don't know).
    I.e. In SQL Management Studio -> right click on any table -> Script table as -> Create To  - > open in the new query editor window. This will give you the schema of the table with the constraints of the table.
    For E.g. In Northwind database, for the table "Categories", I would like to get it as show below
    USE [Northwind]
    GO
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    CREATE TABLE [dbo].[Categories](
        [CategoryID] [int] IDENTITY(1,1) NOT NULL,
        [CategoryName] [nvarchar](15) NOT NULL,
        [Description] [ntext] NULL,
        [Picture] [image] NULL,
     CONSTRAINT [PK_Categories] PRIMARY KEY CLUSTERED
        [CategoryID] ASC
    )WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
    ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
    GO
    I would like to get the same schema using c#. Please help.
    Thanks & Regards,
    Kalai.

    SMO is the easiest way to get this. This is what Management Studio uses. If you can't use SMO, get a Profiler trace of the queries that SMO executes when generating the script and execute the same using ADO.NET.
    Regards,
    Farooq Mahmud
    Support Escalation Engineer 
    •  Microsoft Health Solutions Group

  • I bought and downloaded iWork when i bought my macbook pro and i used to save my documents on words. then a few weeks ago, i downloaded a free trial of microsoft office but unregistered and deleted it a week after. now i can't save my documents on word.

    i bought and downloaded iWork when i bought my macbook pro and i used to save my documents on words. then a few weeks ago, i downloaded a free trial of microsoft office but unregistered and deleted it a week after. now i can't save my documents on word. It used to ask me if I want to save my documents on word, now it doesn't. And the W icon keeps on appearing on my dock. Can I return my computer to an earlier date? Please help me. Thanks

    No, I don't have a back-up of TIme Machine... to tell you the truth, I have this computer for a few years now and I still don't know how to work all of the apps that are here. Anything else I can do?

  • I got the iPhone 4S and I use google calendar and when the Sprint salesperson set up my phone only 2 months of my calendar went on my phone. How do I get my whole calendar to sync on my phone?

    I got the iPhone 4s and i use google calendar and when the Sprint sales person set up my phone, only 2 months showed up on my iPhone. How do I sync all of google calendar to my iPhone!

    Settings/Mail,Contacts,Calendar - there's a setting for how far back to sync calendars.

  • I have an iPhone 3gs and it used to show up on my computer, but now it shows up on my screen that it is charging however, does not appear in iTunes or My Computer so i can't sync it. Can anybody help? Thanks

    I have an iPhone 3gs and it used to show up on my computer, but now it shows up on my screen that it is charging however, does not appear in iTunes or My Computer so i can't sync it. Can anybody help? Thanks.

    Did you already make sure that Apple Mobile Device Service is installed and active on your computer?
    http://support.apple.com/kb/TS1567
    More troubleshooting about your device not recognized in Windows can be found here: http://support.apple.com/kb/TS1495

  • I have recently bought a macbook and am using outlook 2011 as email. i am getting an error message 4.7.0 not allowed when sending emails how do I fix?

    i have a macbook and am using outlook 2011 as email.   receiving okay.   sending okay sometimes.  am now getting error message 4.7.0 not allowed when sending.  what is the cause? how do I fix please?

    I have discovered that the emails have in fact been sent but much later, maybe it's a network problem with the people i am sending it to.  so i checked my sent items and they are there, but at the time the email doesn't go straight into the sent box or drafts so i'm assuming it's disappeared and type it again.  i'll keep going with it, until someone can give me a possible solution or explanation as to what is happening.

  • HT4623 I just got an ipad and I use att/yahoo for a server, it comes with free mcafee virus software, but my ipad says that it cant download it because of my upgrade to higher over 6.1.0 and I dont know what to do can anyone help me,want to have mcafee on

    I just got an Ipad and I really dont know much about them its a 32gb 4g wi-fi, I use at&t as my server(dsl) and that works fine but I need to download my mcafee which comes with my at&t for free but it wont let me download it says I need more than 6.1.0and I dont know what to do can anyone help, I know someone that has 1 just like mine but she doesnt use a antivirus and doesnt have any trouble but,,, I have a laptop and a desktop and I use mcafee on both,, so any suggestions, I just down know what to do,,, can anyone give me input on what to do, and I also what to know is there anyway I can use my portable device that I got thru at&t that I can buy minutes on, is there an adapter for this ipad that I can use this on,, help I need all I can get,, thanks chrystie

    You can not install it.
    Only apps from the official Apple App Store can be installed.

  • I got a new iPhone 5 and since it wasn't updated to ios 8 version it didn't let me use my latest update, now I can't login to my iCloud without it saying it's incorrect but it does let me reset it and I use the password still tells me wrong Apple Id

         I recently received a new iPhone 5 to replace my old broken iPhone 5 I backed up my old broken iPhone 5 into iCloud I checked to see it was all there, when it came to set up my new iPhone 5 my new iPhone 5 wasn't updated to the latest version my old one had ios8 my new one has ios7 so it gave me the choice to use another back up date which was from a year ago and I used to have another email as my primary for Apple ID and now my new iPhone is setup with my old Apple ID and every time I try to log in it tells me it's incorrect I reset the password  but since it's another email it won't let me log on what can I do?

    Use the trackpad to scroll, thats what it was designed for. The scroll bars automatically disappear when not being used and will appear if you scroll up or down using the trackpad.
    This is a user-to-user forum and most people will post on here if they have problems. You very rarely get people posting to say there update went smooth. The fact is the vast majority of Mountain Lion users will not be experiencing any major problems with the OS, or maybe with apps which are not compatible, but thats hardly Apple's fault if developers don't update their apps.

  • HT1871 Hello i have one IPhone 4S and I use 3G net in my mobile sometime I have problem with temperature in my phone at the SIM card or battery how can I fix this problem. By update or version of 6.1.3

    Hello i have one IPhone 4S and I use 3G net in my mobile sometime I have problem with temperature in my phone at the SIM card or battery how can I fix this problem. By update or version of 6.1.3

    Could it be because the SIM card got damaged while I cut it to fit the IPhone?
    Very likely. Hard to believe the carrier in Mexico doesn't have a micro-SIM card available.
    Or somehow the Chinese carrier found out and locked it?
    No, which is not possible.
    What can I do? Get a new SIM and see if it works again?
    Get a micro-SIM from the carrier in Mexico that you don't have to manually cut down. If that carrier doesn't provide one, switch to another carrier that is not so low-budget.

  • I am trying to pair my cell phone and tablet using Messages   App,  but only MMS messages will come through on my tablet.   I've tried pairing and unpaired,  reinstalling app on my tablet,  and can't figure it out.   Any idea how to fix this?

    I am trying to pair my cell phone and tablet using Messages   App,  but only MMS messages will come through on my tablet.   I've tried pairing and unpaired,  reinstalling app on my tablet,  and can't figure it out.   Any idea how to fix this?
    Thanks

    I Shared my most ridiculous situation but didn t log under your problem.
    sorry, I gave you your answer under sunshine99 or Dianna. I want out and you want in.
    if you not find just email me at [removed]
    thanks
    Personal information removed as required by the Verizon Wireless Terms of Service
    Message was edited by: Admin Moderator

Maybe you are looking for

  • Directive #Import : Incorrect character in the tooltip?

    Hi, I inserted the directive #Import, and I had tooltip before compiled.  The message have unusual path to file.  More precisely, instead the character"\" the message have the character  "/" (see image). Question: its correct or Microsoft have petty

  • EDI order on quota block before EDI block

    Hi, Order xxxx is received via EDI. Checking the order in VA14L shows that the order is on quota block where it is expected to be on EDI block first. Checking the change log of the order shows there was no release of the order from EDI block. Please

  • Sub query results use in main query.

    I need to query a specific parameter in one table called parameter_id which will return a list of location id's.  Utilizing those i then need to query another table for the max(date_time) values in another table. Select LOCATION_ID FROM TABLE1 WHERE

  • Why the grub-mount command invoked ?

    Do we have any clue upon this question ? As I was on my Laptop I heard the CPU fun struggling and I ran the top command to see what's happening and I saw the grub-mount command (invoked by root) with a CPU footprint of 100%. My query is : why this co

  • Is there a way to burn old cd's with new cd's and get the same volume/quality on playback?

    is there a way to burn old cd's with new cd's and get the same volume/quality on playback?