Fix on MedRec Tutorial 10 will break tutorial 11

According to Chris Wall, tutorial 10 of MedRec needs the following fix:
1.) Add the following jars to your classpath. If these jars do not exist,
compile and create them thru the src/common build script.
C:\medrec_tutorial\build\physicianEar\APP-INF\lib\log4j-1.2.8.jar;
C:\medrec_tutorial\build\physicianEar\APP-INF\lib\value.jar;
C:\medrec_tutorial\build\physicianEar\APP-INF\lib\webServicesEjb_client.jar;
C:\medrec_tutorial\build\physicianEar\APP-INF\lib\utils.jar
2.) EJBGen 2.15 contains the -descriptorDir feature; 8.1 GA contains EJBGen
2.13beta. Please remove this flag from your cmdline. You will also need to
manually create the META-INF directory and copy the resultant descriptors to
this directory.
==============================================
Ok, I did that, and it worked. But when I did tutorial 11 Step 2, it gave me
this err msg:
C:\medrec_tutorial\src\medrecEar>ant -f my_webserv.xml
Buildfile: my_webserv.xml
build.ws:
[autotype] Autotyping for javaComponents com.bea.medrec.webservices.MedRecWebServices
[autotype] java.lang.NoSuchMethodException: weblogic.webservice.context.WebServiceContext.<init>()
[autotype] at java.lang.Class.getConstructor0(Class.java:1769)
[autotype] at java.lang.Class.getConstructor(Class.java:1002)
[autotype] at weblogic.xml.schema.binding.internal.codegen.JavaInspector.ensureValidClass(JavaInspector.java:1049)
[autotype] at weblogic.xml.schema.binding.internal.codegen.JavaInspector.fillDescriptor(JavaInspector.java:174)
[autotype] at weblogic.xml.schema.binding.internal.codegen.JavaInspector.getDescriptor(JavaInspector.java:139)
[autotype] at weblogic.xml.schema.binding.internal.codegen.JavaInspector.createDescriptorForClass(JavaInspector.java:106)
[autotype] at weblogic.xml.schema.binding.internal.codegen.Compiler.compile(Compiler.java:106)
[autotype] at weblogic.xml.schema.binding.internal.XSDTypeMappingBuilder.mapClass(XSDTypeMappingBuilder.java:89)
[autotype] at weblogic.xml.schema.binding.internal.XSDTypeMappingBuilder.mapClass(XSDTypeMappingBuilder.java:102)
[autotype] at weblogic.xml.schema.binding.internal.TypeMappingBuilderBase.addMapping(TypeMappingBuilderBase.java:180)
[autotype] at weblogic.webservice.tools.build.internal.Java2SchemaImpl.doTypeMapping(Java2SchemaImpl.java:267)
[autotype] at weblogic.webservice.tools.build.internal.Java2SchemaImpl.run(Java2SchemaImpl.java:167)
[autotype] at weblogic.webservice.tools.build.internal.Component2SchemaImpl.run(Component2SchemaImpl.java:151)
[autotype] at weblogic.ant.taskdefs.webservices.javaschema.JavaSchema.doComponent2Schema(JavaSchema.java:365)
[autotype] at weblogic.ant.taskdefs.webservices.javaschema.JavaSchema.execute(JavaSchema.java:172)
[autotype] at org.apache.tools.ant.Task.perform(Task.java:317)
[autotype] at org.apache.tools.ant.Target.execute(Target.java:309)
[autotype] at org.apache.tools.ant.Target.performTasks(Target.java:334)
[autotype] at org.apache.tools.ant.Project.executeTarget(Project.java:1306)
[autotype] at org.apache.tools.ant.Project.executeTargets(Project.java:1250)
[autotype] at org.apache.tools.ant.Main.runBuild(Main.java:610)
[autotype] at org.apache.tools.ant.Main.start(Main.java:196)
[autotype] at org.apache.tools.ant.Main.main(Main.java:235)
[autotype] --------------- nested within: ------------------
[autotype] weblogic.xml.schema.binding.BindingException: No default constructor
was found for class weblogic.webservice.context.WebServiceContext loa
ded from file:/C:/bea/weblogic81/server/lib/webservices.jar!/weblogic/webservice/context/WebServiceContext.class.
All classes that will be serialized
or deserialized must be non-interface, non-abstract classes that provide a public
default constructor - with nested exception:
[autotype] [java.lang.NoSuchMethodException: weblogic.webservice.context.WebServiceContext.<init>()]
[autotype] at weblogic.xml.schema.binding.internal.codegen.JavaInspector.ensureValidClass(JavaInspector.java:1051)
[autotype] at weblogic.xml.schema.binding.internal.codegen.JavaInspector.fillDescriptor(JavaInspector.java:174)
[autotype] at weblogic.xml.schema.binding.internal.codegen.JavaInspector.getDescriptor(JavaInspector.java:139)
[autotype] at weblogic.xml.schema.binding.internal.codegen.JavaInspector.createDescriptorForClass(JavaInspector.java:106)
[autotype] at weblogic.xml.schema.binding.internal.codegen.Compiler.compile(Compiler.java:106)
[autotype] at weblogic.xml.schema.binding.internal.XSDTypeMappingBuilder.mapClass(XSDTypeMappingBuilder.java:89)
[autotype] at weblogic.xml.schema.binding.internal.XSDTypeMappingBuilder.mapClass(XSDTypeMappingBuilder.java:102)
[autotype] at weblogic.xml.schema.binding.internal.TypeMappingBuilderBase.addMapping(TypeMappingBuilderBase.java:180)
[autotype] at weblogic.webservice.tools.build.internal.Java2SchemaImpl.doTypeMapping(Java2SchemaImpl.java:267)
[autotype] at weblogic.webservice.tools.build.internal.Java2SchemaImpl.run(Java2SchemaImpl.java:167)
[autotype] at weblogic.webservice.tools.build.internal.Component2SchemaImpl.run(Component2SchemaImpl.java:151)
[autotype] at weblogic.ant.taskdefs.webservices.javaschema.JavaSchema.doComponent2Schema(JavaSchema.java:365)
[autotype] at weblogic.ant.taskdefs.webservices.javaschema.JavaSchema.execute(JavaSchema.java:172)
[autotype] at org.apache.tools.ant.Task.perform(Task.java:317)
[autotype] at org.apache.tools.ant.Target.execute(Target.java:309)
[autotype] at org.apache.tools.ant.Target.performTasks(Target.java:334)
[autotype] at org.apache.tools.ant.Project.executeTarget(Project.java:1306)
[autotype] at org.apache.tools.ant.Project.executeTargets(Project.java:1250)
[autotype] at org.apache.tools.ant.Main.runBuild(Main.java:610)
[autotype] at org.apache.tools.ant.Main.start(Main.java:196)
[autotype] at org.apache.tools.ant.Main.main(Main.java:235)
BUILD FAILED
file:C:/medrec_tutorial/src/medrecEar/my_webserv.xml:12: weblogic.webservice.tools.build.WSBuildException:
Failed to do type mapping - with nested exc
eption:
[weblogic.xml.schema.binding.BindingException: No default constructor was found
for class weblogic.webservice.context.WebServiceContext loaded from fi
le:/C:/bea/weblogic81/server/lib/webservices.jar!/weblogic/webservice/context/WebServiceContext.class.
All classes that will be serialized or deseria
lized must be non-interface, non-abstract classes that provide a public default
constructor - with nested exception:
[java.lang.NoSuchMethodException: weblogic.webservice.context.WebServiceContext.<init>()]]
Total time: 4 seconds
====================================
The classpath used in Tutorial 11 was the updated one from Tutorial 10. But it
doesn't work. But when I changed the classpath back to the old one, it worked.
Can you explain what is happening? Thank you.
Kelvin Hung

Hey Kelvin. Can you pass along your classpath? Thanks.
"Kelvin Hung" <[email protected]> wrote:
>
According to Chris Wall, tutorial 10 of MedRec needs the following fix:
1.) Add the following jars to your classpath. If these jars do not exist,
compile and create them thru the src/common build script.
C:\medrec_tutorial\build\physicianEar\APP-INF\lib\log4j-1.2.8.jar;
C:\medrec_tutorial\build\physicianEar\APP-INF\lib\value.jar;
C:\medrec_tutorial\build\physicianEar\APP-INF\lib\webServicesEjb_client.jar;
C:\medrec_tutorial\build\physicianEar\APP-INF\lib\utils.jar
2.) EJBGen 2.15 contains the -descriptorDir feature; 8.1 GA contains
EJBGen
2.13beta. Please remove this flag from your cmdline. You will also
need to
manually create the META-INF directory and copy the resultant descriptors
to
this directory.
==============================================
Ok, I did that, and it worked. But when I did tutorial 11 Step 2, it
gave me
this err msg:
C:\medrec_tutorial\src\medrecEar>ant -f my_webserv.xml
Buildfile: my_webserv.xml
build.ws:
[autotype] Autotyping for javaComponents com.bea.medrec.webservices.MedRecWebServices
[autotype] java.lang.NoSuchMethodException: weblogic.webservice.context.WebServiceContext.<init>()
[autotype] at java.lang.Class.getConstructor0(Class.java:1769)
[autotype] at java.lang.Class.getConstructor(Class.java:1002)
[autotype] at weblogic.xml.schema.binding.internal.codegen.JavaInspector.ensureValidClass(JavaInspector.java:1049)
[autotype] at weblogic.xml.schema.binding.internal.codegen.JavaInspector.fillDescriptor(JavaInspector.java:174)
[autotype] at weblogic.xml.schema.binding.internal.codegen.JavaInspector.getDescriptor(JavaInspector.java:139)
[autotype] at weblogic.xml.schema.binding.internal.codegen.JavaInspector.createDescriptorForClass(JavaInspector.java:106)
[autotype] at weblogic.xml.schema.binding.internal.codegen.Compiler.compile(Compiler.java:106)
[autotype] at weblogic.xml.schema.binding.internal.XSDTypeMappingBuilder.mapClass(XSDTypeMappingBuilder.java:89)
[autotype] at weblogic.xml.schema.binding.internal.XSDTypeMappingBuilder.mapClass(XSDTypeMappingBuilder.java:102)
[autotype] at weblogic.xml.schema.binding.internal.TypeMappingBuilderBase.addMapping(TypeMappingBuilderBase.java:180)
[autotype] at weblogic.webservice.tools.build.internal.Java2SchemaImpl.doTypeMapping(Java2SchemaImpl.java:267)
[autotype] at weblogic.webservice.tools.build.internal.Java2SchemaImpl.run(Java2SchemaImpl.java:167)
[autotype] at weblogic.webservice.tools.build.internal.Component2SchemaImpl.run(Component2SchemaImpl.java:151)
[autotype] at weblogic.ant.taskdefs.webservices.javaschema.JavaSchema.doComponent2Schema(JavaSchema.java:365)
[autotype] at weblogic.ant.taskdefs.webservices.javaschema.JavaSchema.execute(JavaSchema.java:172)
[autotype] at org.apache.tools.ant.Task.perform(Task.java:317)
[autotype] at org.apache.tools.ant.Target.execute(Target.java:309)
[autotype] at org.apache.tools.ant.Target.performTasks(Target.java:334)
[autotype] at org.apache.tools.ant.Project.executeTarget(Project.java:1306)
[autotype] at org.apache.tools.ant.Project.executeTargets(Project.java:1250)
[autotype] at org.apache.tools.ant.Main.runBuild(Main.java:610)
[autotype] at org.apache.tools.ant.Main.start(Main.java:196)
[autotype] at org.apache.tools.ant.Main.main(Main.java:235)
[autotype] --------------- nested within: ------------------
[autotype] weblogic.xml.schema.binding.BindingException: No default
constructor
was found for class weblogic.webservice.context.WebServiceContext loa
ded from file:/C:/bea/weblogic81/server/lib/webservices.jar!/weblogic/webservice/context/WebServiceContext.class.
All classes that will be serialized
or deserialized must be non-interface, non-abstract classes that provide
a public
default constructor - with nested exception:
[autotype] [java.lang.NoSuchMethodException: weblogic.webservice.context.WebServiceContext.<init>()]
[autotype] at weblogic.xml.schema.binding.internal.codegen.JavaInspector.ensureValidClass(JavaInspector.java:1051)
[autotype] at weblogic.xml.schema.binding.internal.codegen.JavaInspector.fillDescriptor(JavaInspector.java:174)
[autotype] at weblogic.xml.schema.binding.internal.codegen.JavaInspector.getDescriptor(JavaInspector.java:139)
[autotype] at weblogic.xml.schema.binding.internal.codegen.JavaInspector.createDescriptorForClass(JavaInspector.java:106)
[autotype] at weblogic.xml.schema.binding.internal.codegen.Compiler.compile(Compiler.java:106)
[autotype] at weblogic.xml.schema.binding.internal.XSDTypeMappingBuilder.mapClass(XSDTypeMappingBuilder.java:89)
[autotype] at weblogic.xml.schema.binding.internal.XSDTypeMappingBuilder.mapClass(XSDTypeMappingBuilder.java:102)
[autotype] at weblogic.xml.schema.binding.internal.TypeMappingBuilderBase.addMapping(TypeMappingBuilderBase.java:180)
[autotype] at weblogic.webservice.tools.build.internal.Java2SchemaImpl.doTypeMapping(Java2SchemaImpl.java:267)
[autotype] at weblogic.webservice.tools.build.internal.Java2SchemaImpl.run(Java2SchemaImpl.java:167)
[autotype] at weblogic.webservice.tools.build.internal.Component2SchemaImpl.run(Component2SchemaImpl.java:151)
[autotype] at weblogic.ant.taskdefs.webservices.javaschema.JavaSchema.doComponent2Schema(JavaSchema.java:365)
[autotype] at weblogic.ant.taskdefs.webservices.javaschema.JavaSchema.execute(JavaSchema.java:172)
[autotype] at org.apache.tools.ant.Task.perform(Task.java:317)
[autotype] at org.apache.tools.ant.Target.execute(Target.java:309)
[autotype] at org.apache.tools.ant.Target.performTasks(Target.java:334)
[autotype] at org.apache.tools.ant.Project.executeTarget(Project.java:1306)
[autotype] at org.apache.tools.ant.Project.executeTargets(Project.java:1250)
[autotype] at org.apache.tools.ant.Main.runBuild(Main.java:610)
[autotype] at org.apache.tools.ant.Main.start(Main.java:196)
[autotype] at org.apache.tools.ant.Main.main(Main.java:235)
BUILD FAILED
file:C:/medrec_tutorial/src/medrecEar/my_webserv.xml:12: weblogic.webservice.tools.build.WSBuildException:
Failed to do type mapping - with nested exc
eption:
[weblogic.xml.schema.binding.BindingException: No default constructor
was found
for class weblogic.webservice.context.WebServiceContext loaded from fi
le:/C:/bea/weblogic81/server/lib/webservices.jar!/weblogic/webservice/context/WebServiceContext.class.
All classes that will be serialized or deseria
lized must be non-interface, non-abstract classes that provide a public
default
constructor - with nested exception:
[java.lang.NoSuchMethodException: weblogic.webservice.context.WebServiceContext.<init>()]]
Total time: 4 seconds
====================================
The classpath used in Tutorial 11 was the updated one from Tutorial 10.
But it
doesn't work. But when I changed the classpath back to the old one,
it worked.
Can you explain what is happening? Thank you.
Kelvin Hung

Similar Messages

  • Med Rec medrec tutorial 10 deployments-- EJB Modules EJB is not shown

    This note adds missing steps in the Med Rec (medrec) Tutorial 10
    The tutorial shows how to use EJBGEN to generate EJB classes (incl java source) from .ejb files.
    Unfortunately it is missing a few key details. These are described below.
    Many thanks to Chris Wall for supplying the answers and hints.
    Q: The tutorial includes deploying the manually generated physSessionEjb’s. After doing the step that generates the PhysSession*.java files, onefinds that when trying to deploy that there are no class files – nothing has been built. Are the class files supposed to be generated by the ejbgen step?
    [Chris] No, EJBGen just generates the local and remote interfaces and descriptors only. An additional step should be added to explain how to build the newly generated EJBs. I believe you are correct in calling “src/physicianEar$ ant –f build.xml build”.
    Q: Manually built the class files using ‘ant –f build.xml build’ in the physicianEar src dir – but that failed in the acc.split.dir step with class not found /org/apache/struts/action/ActionForm.
    Obviously did not get the struts jars on the classpath. But as much of the build as completed did include creating the class files.
    [Chris] Yes, it looks like struts.jar is not in the classpath. Is this the “build.split.dir” or “appc.split.dir” target? In either case, wlcompile and wlappc should recognized all libs in "${app-inf.dest.lib}" and append them to the compile/appc classpath automatically. The libs should have been copied during the “prepare” target. Can you make sure that struts.jar exists in c:/medrec_tutorial/build/physicianEar/APP-INF/lib? If not, re-run the target with verbose: “src/physicianEar$ ant -verbose -f build.xml build”, and make sure that the libs are copied in the “prepare” target.
    Q: When doing the deploy step, we get no errors but on the console window and do not see the tutorial_deployment item under DeploymentsàEJB Modules. There is something under Deployments-->Applications --> tutorial_deployment. It appears the deploy failed since there’s nothing under Deployments --> EJB Modules, and what is there is ‘left over’ from deploying the jar (the ear?) that contains the stuff deployed by the deploy step at the start of tutorial 10.
    [Chris] Once the build is successful, you must deploy the EAR. This is done by executing : “src/physicianEar$ ant -f build.xml redeploy.physician.ear”. Again, a step that was left out. Yes, you should be looking at Deployments--> Applications--> tutorial_deployment. So, to summarize: generated the local and remote and descriptors for the EJB, compile the EJB and package the EAR, deploy the EAR, and then view the deployment in the console.

    This note adds missing steps in the Med Rec (medrec) Tutorial 10
    The tutorial shows how to use EJBGEN to generate EJB classes (incl java source) from .ejb files.
    Unfortunately it is missing a few key details. These are described below.
    Many thanks to Chris Wall for supplying the answers and hints.
    Q: The tutorial includes deploying the manually generated physSessionEjb’s. After doing the step that generates the PhysSession*.java files, onefinds that when trying to deploy that there are no class files – nothing has been built. Are the class files supposed to be generated by the ejbgen step?
    [Chris] No, EJBGen just generates the local and remote interfaces and descriptors only. An additional step should be added to explain how to build the newly generated EJBs. I believe you are correct in calling “src/physicianEar$ ant –f build.xml build”.
    Q: Manually built the class files using ‘ant –f build.xml build’ in the physicianEar src dir – but that failed in the acc.split.dir step with class not found /org/apache/struts/action/ActionForm.
    Obviously did not get the struts jars on the classpath. But as much of the build as completed did include creating the class files.
    [Chris] Yes, it looks like struts.jar is not in the classpath. Is this the “build.split.dir” or “appc.split.dir” target? In either case, wlcompile and wlappc should recognized all libs in "${app-inf.dest.lib}" and append them to the compile/appc classpath automatically. The libs should have been copied during the “prepare” target. Can you make sure that struts.jar exists in c:/medrec_tutorial/build/physicianEar/APP-INF/lib? If not, re-run the target with verbose: “src/physicianEar$ ant -verbose -f build.xml build”, and make sure that the libs are copied in the “prepare” target.
    Q: When doing the deploy step, we get no errors but on the console window and do not see the tutorial_deployment item under DeploymentsàEJB Modules. There is something under Deployments-->Applications --> tutorial_deployment. It appears the deploy failed since there’s nothing under Deployments --> EJB Modules, and what is there is ‘left over’ from deploying the jar (the ear?) that contains the stuff deployed by the deploy step at the start of tutorial 10.
    [Chris] Once the build is successful, you must deploy the EAR. This is done by executing : “src/physicianEar$ ant -f build.xml redeploy.physician.ear”. Again, a step that was left out. Yes, you should be looking at Deployments--> Applications--> tutorial_deployment. So, to summarize: generated the local and remote and descriptors for the EJB, compile the EJB and package the EAR, deploy the EAR, and then view the deployment in the console.

  • Can't compile the medrec tutorial

    I can't build the medrec tutorial. Following the Tutorial 10: Exposing a Stateless
    Session EJB as a Web Service, I execute the command "ant prepare build.split.dir".
    But the medrecEar
    can't be compiled correctly.
    There are primarily two kinds of errors/warnings:
    1)some classes, such as AdminSession can't be resolved;
    2)EJB Local Reference doesn't have a JNDI name.
    Who could help me. Thank you.

    When you compile through J2EE it should give no apache type errors. You must of included apache xml cocoon jar files in the CLASSPATH as well later put the j2ee.jar. However j2ee.jar has XML libraries, no need to include other thrid party xml libaries.
    Other words its picking your thrid party xml jar files first and using that instead of your j2ee.jar xml libaries.
    Cheers
    Abraham Khalil

  • MedRec Tutorial Step 12

    When I try to do Step 12 of the MedRec tutorial, the "ant deploy.dev" command ends in a compilation failure. It fails to compile the class PhysBaseLookupDispatchAction, because of a reference to the class com.bea.medrec.controller.PhysicianSession. I cannot find this class anywhere, not even in the original zip file.
    I don't think I missed a prerequisite step anywhere, except that I couldn't get the webservices tutorials (10 and 11) to work properly.

    When I try to do Step 12 of the MedRec tutorial, the "ant deploy.dev" command ends in a compilation failure. It fails to compile the class PhysBaseLookupDispatchAction, because of a reference to the class com.bea.medrec.controller.PhysicianSession. I cannot find this class anywhere, not even in the original zip file.
    I don't think I missed a prerequisite step anywhere, except that I couldn't get the webservices tutorials (10 and 11) to work properly.

  • Ramifications of changing every users SIP address - Everything will break??

    Currently we have everyone's meetings set to their AD username, which is also everyone's SIP sign-in address.  That was not a very good idea when we started out, as now it will cause us more work because we will soon change everyone's SIP address to
    their email address.  I think this is easy to do, but....
    This will break every single users conferences.  Either existing or when they create new ones as it uses the users AD username.  We want everyone's meet URL to automatically update with their new SIP account format.  Can this be easily powershelled
    so the user never notices anything?  What other issues could this cause, if any?
    Also, everyone will need to re-add all of their federated external contacts.  To me this is a minor fix compared to the above.
    Also, also, can anyone say what other thinks will break when we make this change?  I read up online and the major issues that jumped out where the above.  What would be the other major/minor headaches.
    Thanks!

    Hi net1994,
    I’m not sure which field that you will change.
    For example:
    [email protected]
    Scenario 1
    I assume you will change the UserName field,
    here are some important points to consider however:
    a. 
    As you stated, the scheduled Meetings will be Break. This means that any scheduled meetings would need to be updated so that users are able to join without issue.
    b. 
    The users must use the new SIP address to sign back, and if
    the new SIP address does not match the users UserPrincipleName (UPN) in Active Directory, they will be prompted for credentials on sign-in
    Scenario 2
    I assume you will change the SIPDomain,
    here are some important points to consider however:
    a. 
    As you stated, the scheduled Meetings will be Break. This means that any scheduled meetings would need to be updated so that users are able to join without issue.
    b. 
    The users must use the new SIP address to sign back, and if the new SIP address does not match the users UserPrincipleName (UPN) in Active Directory, they will be prompted for credentials on sign-in
    d. 
    (Important) You have to add the additional Sip domain in Lync Topology and publish topology.
    e. 
    (Important) Create DNS records for the new simple URLs, both internal and external.
         •meet.domain.com (external and internal)
         •sip.domain.com (external and internal)
         •SRV _sipinternaltls._tcp.domain.com 5061-> sip.domain.com (internal)
         •SRV _sip._tls.domain.com 443-> sip.domain.com (external)
         •SRV _sipfederationtls._tcp.domain.com 5061-> sip.domain.com (external)
    f. 
    (Important) Request new certificates for the following:
         •Front End Server Certificate (internal)
         •Edge Server Certificate (external)
         •Reverse Proxy Certificate (external)
    g.
     (It’s not your problem, but it is important too.)  Lync will look at your primary SMTP address and attempt to use it to find the EWS URL via Autodiscover after signing in. If the SIP address is different with the Primary
    SMTP address, you have to configure additional SRV record for Autodiscover per SIP domain.
    Hope this can be helpful.
    Best regards,
    Eric
    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].
    We are only changing the [email protected]  So instead of [email protected], the new sip sign in address will change for everyone to [email protected] = the users current email address.  We are not chaining the SIP domain,
    that will remain the same.
    So besides meetings and federation breaking, any other issues we need to be concerned about?

  • BEWARE of using stopwatch or timer in iphone 5 under iOS7. As the mili second digit ticks really fast, in a matter of minutes, it will break your LCD under that mili second area. It happened to my iphone5. Let me know if you have same issue.

    BEWARE of using stopwatch or timer in iphone 5 under iOS7. As the mili second digit ticks really fast, in a matter of minutes, it will break your LCD under that mili second area. It happened to my iphone5. Let me know if you have same issue.

    You two are obviously talking about the LCD pixels being killed. What exactly does it look like?
    How many minutes are you talking about, 2 to 3, 5 to 7 or more?
    Where was the brightness control at for the both of you?
    KOT

  • Methods in cl_gui_frontend_services will break the progress indicator

    Hi guys,
    I have a list of directories of client to check if it exists.
    I use cl_gui_frontend_services=>directory_exist method.
    And I want to show the progress indicator.
    But the method directory_exist will break the indicator, show the status bar's message is like, flashing. appear, disappear, appear, disappear ...
    You can use the codes below to see what happens and can take a comparsion when you comment the method directory_exist .
    any suggestions?
    thanks a lot.
    REPORT  z_test.
    type-POOLs abap.
    DATA: A LIKE SY-UCOMM,
        ldf_derectory  TYPE string,
        ldf_result     TYPE abap_bool.
    ldf_derectory = 'c:\'.
    DO 100 TIMES.
      DO 300 TIMES.
        GET TIME.
      ENDDO.
      A(3) = SY-INDEX.
      A+3 = '%'.
      CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
      EXPORTING
        PERCENTAGE = SY-INDEX
        TEXT       = A.
      CALL METHOD cl_gui_frontend_services=>directory_exist
      EXPORTING
        directory = ldf_derectory
        RECEIVING
        result    = ldf_result.
    ENDDO.

    Hi,
    I'm not sure there is anything you can do about the flashing clock icon in this case.  This may just be a limitation of the GUI.
    Of course, you always have the option of using 0% as the percentage when calling SAPGUI_PROGRESS_INDICATOR.  This will eliminate the clock from the progress display, leaving just the percentage number plus the '%' sign.
    In other words, you can eliminate the annoying flickering by changing your function call to:
      CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
        EXPORTING
          percentage = 0
          text       = a.
    Regards,
    Jamie

  • I have upgraded my iPhone 4S to ios 6... I am surprised to see that the wi-go option is grayed out.. I did reset all the setting but no luck... Is there any fix coming for this or will apple exchange the device??? I want wi-fi option back

    I have upgraded my iPhone 4S to ios 6... I am surprised to see that the wi-go option is grayed out.. I did reset all the setting but no luck... Is there any fix coming for this or will apple exchange the device??? I want wi-fi option back

    Seems like a wide spread problem. See this post: https://discussions.apple.com/thread/4310121?tstart=0

  • Helloo my name is jafthel i have problems with my ipod touch 4g. if you can help me how i can fix it or solution i will be very happy. the problem is: when i push some aplication my ipod is very slow i after 3 minutes it goback to the home screen.

    helloo my name is jafthel i have problems with my ipod touch 4g. if you can help me how i can fix it or solution i will be very happy. the problem is: when i push some aplication my ipod is very slow i after 3 minutes it goback to the home screen.

    Next try the remaining items of:
    Apps crashing
    See:
    iOS: Troubleshooting applications purchased from the App Store
    Contact the developer/go to their support site if only one app.
    Restore from backup. See:
    iOS: How to back up              
    Restore to factory settings/new iPod

  • After loading Maverick iTunes will not launch.  I get an error code: -45054.  I am the administrator and have no groups or guests.  Sharing options don't fix this.  Als Fetch will not launch, I get error code: SSL error 9807.  These worked perfectly befor

    After loading Maverick iTunes will not launch.  I get an error code: -45054.  I am the administrator and have no groups or guests.  Sharing options don't fix this.  Also Fetch will not launch, I get error code: SSL error 9807.  These worked perfectly before installing Maverick.  Also everything that loads, all programs, take twice as long to load.  I have MacKeeper and have cleaned and discarded all the garbage. 

    Remove "MacKeeper" as follows. First, back up all data.
    "MacKeeper" is a scam with only one useful feature: it deletes itself.
    Note: These instructions apply to the version of the product that I downloaded and tested in early 2012. I can't be sure that they apply to other versions.
    If you have incompletely removed MacKeeper—for example, by dragging the application to the Trash and emptying—then you'll have to reinstall it and start over.
    IMPORTANT: "MacKeeper" has what the developer calls an “encryption” feature. In my tests, I didn't try to verify what this feature really does. If you used it to “encrypt” any of your files, “decrypt” them before you uninstall, or (preferably) restore the files from backups made before they were “encrypted.” As the developer is not trustworthy, you should assume that the "decrypted" files are corrupt unless proven otherwise.
    In the Finder, select
    Go ▹ Applications
    from the menu bar, or press the key combination shift-command-A. The "MacKeeper" application is in the folder that opens. Quit it if it's running, then drag it to the Trash. You'll be prompted for your login password. Click the Uninstall MacKeeper button in the dialog that appears. All the functional components of the software will be deleted. Reboot.
    ☞ Quit MacKeeper before dragging it to the Trash.
    ☞ Don't empty the Trash. Let MacKeeper delete itself.
    ☞ Don't try to drag the MacKeeper Dock icon to the Trash.

  • How do i fix my iTunes so it will not stop working.  I am using a Windows 7.

    How do i fix my iTunes so it will not stop working.  I am using a Windows 7

    Hello warrior41
    Start with the article below to troubleshoot issues with iTunes crashing or not working as expected. Start with booting up iTunes into Safe Mode and see if the issue persists as well as creating a new user to see if the issue is system wide.
    iTunes for Windows Vista, Windows 7, or Windows 8: Fix unexpected quits or launch issues
    http://support.apple.com/kb/ts1717
    Regards,
    -Norm G.

  • My inbox indicates a message is receive but all my message are open and so how can I fix this that the inbox will not indicate that I receive a message (one)

    my inbox indicates a message is receive but all my message are open and so how can I fix this that the inbox will not indicate that I receive a message. It shows that I received one message?

    lbryan1987 wrote:
    I dont want the button problem solved i need to know how to restore the phone without using that button or going into settings
    You don't in the condition it's in. You will either have to get the phone replaced by Apple or pay a 3rd party to repair it.
    there seriously should be more than two ways to solve this other wise apple is useless and we will never buy another apple product.
    Seriously? It's physically broken!

  • That did not help me find out needy iPhone will break Icloud account for Iphone his serial number (DN**********TTN) for I am I can not activate buy user please help

    That did not help me find out needy iPhone will break Icloud account for Iphone his serial number (DN******TTN) for I am I can not activate buy user please help
    <Personal Information Edited by Host>

    Your question isn't at all clear. Is this a second-hand phone which has been locked by the previous user?  In that case only the previous owner can unlock it, either by providing you with the account ID and password, or by removing it from his list of devices (as he should have done before selling it) - please see http://support.apple.com/kb/ts4515
    If you unable to contact him to do this then I'm afraid you will not be able to use the device - there is no other way of unlocking it at all.
    You should if possible return it to wherever you bought it and ask for a refund as in this event the device is completely useless.
    You should not post serial numbers or any other personal data here; I've asked the Hosts to remove it.

  • Help! I will break down for the question...

    Hi:
    When I start the OAS Manager and the websit40,the error message occurs as follows:
    Please wait while the command is being processed on host XYZ ...
    Starting ORB processes...
    Returning filename e:\AppSrv\orb\admin\.event
    waiting for ORB to be ready...
    ORB is not responding. Please restart manually...
    OWS-20214: The OAS processes can not be started, because the CORBA orb processes can not be started.
    What's more the OracleOASStart40, admin and www listener can not start!!!
    What is the problem and what shall I do? Please help me. The configure is as follows:
    Winnt4.0 + Service Pack
    Oracle8.1.5.0
    Express Server6.2
    Oracle Application Server 4.0
    I will break down nearly. Please give me some advance.
    Waiting for your reply and thanks in advance!
    null

    The reset link will only show if you have a rescue email address (which is not the same thing as an alternate email address) set up on your account : http://support.apple.com/kb/HT5312
    If you don't have a rescue email address (you won't be able to add one until you can answer 2 of your questions) then you will need to contact iTunes Support / Apple to get the questions reset.
    Contacting Apple about account security : http://support.apple.com/kb/HT5699
    When they've been reset (and if you don't already have a rescue email address) you can then use the steps half-way down this page to add a rescue email address for potential future use : http://support.apple.com/kb/HT5312

  • Cracked screen ipod touch 4th gen... i review my product online and it says its still on warranty. But im in Germany now. what can ir do? is it expensive? or it is better to fix it my self? will the warranty cover it?

    i review my product online and it says its still on warranty and expires in one month.
    But im in Germany now, bought it in the USA. what can I do? is it expensive? or it is better to fix it my self? will the warranty cover it?
    can i send it somewhere and ask for a repair in USA?
    i can send it to a friend in california and ask him to help me going to a store or sth.. what is the best option?

    A cracked screen is not really covered by the warranty since it is not due to a manufacturing defect.  However, sometimes if you make an appointment at the Genius Bar of an Apple store  (yu can go to German one) the Genius will replace the iPod at no cost.  Otherwise the replacement cost is as specified here:
    Apple - Support - iPod - Repair pricing

Maybe you are looking for

  • Returning to bb os 10.2

    Hello Friends I've installed the trial version 10.3 operating system on my phone and I need some help I want to know in what way I can go back to the original version 10.2 It does not reset THX

  • Recommended Non-HP All-In-One?

    I have a new iMac running Snow Leopard. It has largely obsoleted my HP DeskJet 952c color inkjet printer, and I am thinking about getting a new one. I say that it is obsoleted because there is no HP driver for it; the Mac OS supplies a generic Gutenb

  • How to assign a query retrived value to a user defined  object in a table

    how to assign a query retrived value to a user defined  object in a table

  • How to use JTable with DataBase

    Dear All, how can i show a table in a frame that containes a data from a database, then can edit , add and delete some records in the database thnx 4 all

  • Node Majority DAG, How to recover when quorum is lost

    Hi I have EXchange 2013 SP1 DAG, Node Majority where 2 MBX servers in the primary site and 1 MBX server in the DR Site. If there is a simultaneous loss of the 2 MBX servers in the primary site as in a power failure, then quorum will be lost.  How can