BEA WorkSpace Studio generates a ServiceControl having endless loop. Why?

Hello,
I've got a webservice WSDL file in my WorkSpace Studio and used the right-click 'Web Services --> Generate Service Control..." menu option to generate the control that will let me access the webservice later in my page flow controller. That has worked fine, I have my JSP trigger an action in the controller and use the Service Control that was generated to access the webservice. The problem is when I try to access the same Service Control directly from the JSP using DWR I get a StackOverflow error. Generating the Service Control from the WSDL results in a number of files being automatically generated to support the actual Control class that the PageFlow controller uses, and one of those classes is a ...BeanBeanInfo.java file. Within that BeanBeanInfo.java file is a method initCallbackEvents() that calls itself with no way to exit.
I'm trying to figure out why it was generated to call itself endlessly like that. How can I correct the situtation?
Thanks in advance for any help you can provide.
Gregor
[email protected]

You can't have Account customized through customization file. This is simply not supported. Try searching forum. It has already been discussed here.

Similar Messages

  • Error of Validation of XML Schema in BEA WorkSpace Studio

    When I validate my XML Schemas throught the BEA WorkSpace Studio Version: 1.1 Build id: 1090602 the follow error happens:
    Referenced file contains errors (file:/MyPath/MyXMLSchema1.xsd).
    For more information, right click on the message and select "Show Details..."
    Show Details:
    The errors below were detected when validating the file "MyXMLSchema1.xsd" via the file "MyXMLSchema2.xsd".
    In most cases these errors can be detected by validating "MyXMLSchema1.xsd" directly.
    However it is possible that errors will only occur when MyXMLSchema1.xsd is validated in the context of MyXMLSchema2.xsd.
    src-resolve: Cannot resolve the name 'srv:Services' to a(n) 'type definition' component
    When I validate my XML Schemas throught the oepe_11gR1PS4 (Eclipse Platform Version: 3.6.2 Build id: M20110210-1200) no errors were found.
    My project is an OSB Project (ALSB Project).
    What's happen?

    BEA WorkSpace Studio Version: 1.1 Build id: 1090602 use xerces bea\alsb3.0\tools\eclipse_pkgs\1.1\eclipse_3.2.2\eclipse\plugins\org.apache.xerces_2.8.0.v200606131651
    oepe_11gR1PS4 (Eclipse Platform Version: 3.6.2 Build id: M20110210-1200) use xerces Oracle\Middleware_10.3.5\oepe_11gR1PS4\plugins\org.apache.xerces_2.9.0.v201005080400.jar
    If you replace the follow files:
    bea\alsb3.0\tools\eclipse_pkgs\1.1\eclipse_3.2.2\eclipse\plugins\org.apache.xerces_2.8.0.v200606131651\resolver.jar
    bea\alsb3.0\tools\eclipse_pkgs\1.1\eclipse_3.2.2\eclipse\plugins\org.apache.xerces_2.8.0.v200606131651\xercesImpl.jar
    bea\alsb3.0\tools\eclipse_pkgs\1.1\eclipse_3.2.2\eclipse\plugins\org.apache.xerces_2.8.0.v200606131651\xml-apis.jar
    for:
    Oracle\Middleware_10.3.5\oepe_11gR1PS4\plugins\org.apache.xerces_2.9.0.v201005080400.jar
    BEA WorkSpace Studio Version: 1.1 Build id: 1090602 will validate without errors (the same oepe_11gR1PS4 behaviour)

  • Problem in developing jasper report in BEA workspace studio version 1.1 with weblogic server 10.0

    Hi! all,
    Myself developing a jasperReport in BEA workspace studio 1.1 and always getting the below mentioned exception, though i have run the same code in NetBeans successfully with the same jar file.
    Even i have added weblogic.jar, wllog4j.jar, classes12.jar, commons-beanutils-1.8.0.jar, commons-collections-2.1.1.jar, commons-digester-1.7.jar, commons-javaflow-20060411.jar, commons-logging-1.0.4.jar, iText-2.1.7.jar, jasperreports-3.7.1.jar, jasperreports.jar, jasper-jdt-6.0.13.jar, jasper-compiler-jdt.jar, jasper-compiler.jar, jasper-runtime.jar, jasperreports-3.5.1.jar, jasperreports-2.0.5.jar in the WEB-INF/lib directory as well as build path. please help me.Thanks in advance.
    ==============================================================
    Exception in thread "Main Thread" java.lang.NoClassDefFoundError: weblogic/logging/WLLogRecord : weblogic/logging/LogEntry
         at java.lang.ClassLoader.findBootstrapClass(Native Method)
         at java.lang.ClassLoader.findBootstrapClass0(ClassLoader.java:891)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:301)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:299)
         at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:268)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
         at weblogic.logging.commons.LogFactoryImpl.getInstance(LogFactoryImpl.java:21)
         at org.apache.commons.logging.LogFactory.getLog(LogFactory.java:370)
         at org.apache.commons.digester.Digester.<init>(Digester.java:304)
         at net.sf.jasperreports.engine.xml.JRXmlDigester.<init>(JRXmlDigester.java:62)
         at net.sf.jasperreports.engine.xml.JRXmlDigesterFactory.createDigester(JRXmlDigesterFactory.java:980)
         at net.sf.jasperreports.engine.xml.JRXmlLoader.load(JRXmlLoader.java:203)
         at net.sf.jasperreports.engine.xml.JRXmlLoader.load(JRXmlLoader.java:168)
         at net.sf.jasperreports.engine.xml.JRXmlLoader.load(JRXmlLoader.java:152)
         at net.sf.jasperreports.engine.JasperCompileManager.compileReport(JasperCompileManager.java:150)
         at com.generateJasperReport.test.GasperReportNew.main(GasperReportNew.java:38)
    ==============================================================================
    My Code is..........................
    ============================
    package com.generateJasperReport.test;
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.ResultSet;
    import java.util.HashMap;
    import java.util.Map;
    //import weblogic.logging.LogEntry;
    import net.sf.jasperreports.engine.JRException;
    import net.sf.jasperreports.engine.JRResultSetDataSource;
    import net.sf.jasperreports.engine.JasperCompileManager;
    import net.sf.jasperreports.engine.JasperExportManager;
    import net.sf.jasperreports.engine.JasperFillManager;
    import net.sf.jasperreports.engine.JasperPrint;
    import net.sf.jasperreports.engine.JasperReport;
    import net.sf.jasperreports.view.JasperViewer;
    public class GenerateJasperReport {
         static JRResultSetDataSource jrds = null;
         static ResultSet rs = null;
         public static Connection connectDB() {
              Connection jdbcConnection = null;
              try {
                   Class.forName("oracle.jdbc.driver.OracleDriver");
                   jdbcConnection = DriverManager.getConnection(
                             "jdbc:oracle:thin:@192.161.5.35:1521:abc",
                             "xyz", "pqr");
              } catch (Exception ex) {
                   String connectMsg = "Could not connect to the database: "
                             + ex.getMessage() + " " + ex.getLocalizedMessage();
                   System.out.println(connectMsg);
              return jdbcConnection;
         public static void main(String[] args) throws JRException {
              Connection con = connectDB();
              JasperReport jasperReport=null;
              System.out.println("666666666666666666");
              String reportSource = "E:\\Pintu\\Project\\Bea Project\\workspace\\GenerateJasperReport\\src\\com\\generateJasperReport\\jrxmlFile\\JasperReportGeneration.jrxml";
              String reportDest = "E:\\Pintu\\Project\\Bea Project\\workspace\\GenerateJasperReport\\src\\com\\generateJasperReport\\output\\JasperReportGeneration.pdf";
              System.out.println("555555555555555");
              Map <String,String>parammap = new HashMap<String,String>();
              parammap.put("ReportTitle", "PDF JasperReport");
              System.out.println("444444444444444");
              try {
                   try{
                        jasperReport = JasperCompileManager
                             .compileReport(reportSource);
                   }catch(JRException e){e.printStackTrace();}
                   System.out.println("ssssssssssssss");
                   JasperPrint jasperPrint = JasperFillManager.fillReport(
                             jasperReport, parammap, con);
                   System.out.println("vvvvvvvvvvvvvvv");
                   JasperExportManager.exportReportToPdfFile(jasperPrint, reportDest);
                   System.out.println("kkkkkkkkkkkkkkkkkkk");
                   JasperViewer.viewReport(jasperPrint);
                   System.out.println("gfrfrrrertfewrw");
              } catch (Exception ex) {
                   ex.printStackTrace();
    ===========================================================

    Thanks for the information. It makes so much more sense to do the configuration from within PFR instead of WLS but the engineer insisted I could just do everything from within the WLS config wizard. I'm very relieved that someone has had success with this.
    Am I supposed to do the configuration wizard in WLS before doing the Configure Classic Interface from PFR?
    Since we're only going to be using the PC for the developer, I wasn't sure how much of the Web Logic Server needed to be configured.
    The Oracle engineer said to choose 'Oracle Ent. Mgr' and 'Oracle Classic 11g' from the WLS Config Wizard which I did - but now I have a choice on the 'Optional Configuration' page to choose 'Administration Server', 'Managed Servers', 'Deployments and Services' and 'RDMBS Security Store'. I'm not sure if I'm supposed to choose any of these. I want to be able to talk to the Solaris server that is going to be my application server via WLS and I'm not sure if I need any of these.
    In your environment, are you developing 11g forms on a PC but hosting on another platform? I have a Windows 7 64 bit machine but was told I had to set up a 32bit XP VM on my Win7 machine to use Forms and Reports for development.

  • I Can't stop weblogic server in bea workspace studio

    Hi,
    I can't stop weblogic server with eclipse stop button (just throw me a timeout), only can I do is killing the java.exe process or run stopWeblogic.exe.
    How can i solve this bug??
    Thanks a lot.
    Edited by: user3023949 on 27-mar-2009 5:59

    Hi,
    I can't stop weblogic server with eclipse stop button (just throw me a timeout), only can I do is killing the java.exe process or run stopWeblogic.exe.
    How can i solve this bug??
    Thanks a lot.
    Edited by: user3023949 on 27-mar-2009 5:59

  • EJB Client JAR Creation - Workspace Studio (ALSB 3.0/WLS 10)

    hi
    I'm trying to create an EJB Client JAR for an 2.1 Session Bean EJB Created in a WLS 10 domain using BEA Workspace Studio (i.e. this is the Aqualogic Service Bus 3.0 Product install).
    I'm doing this in preparation for testing the ALSB EJB Transport which requires a client JAR.
    I simply can't get a useful JAR from the facility provided in the Workspace IDE. The Workspace help is pointing to an IBM generated page and I'm following the procedure there.
    I have configured the EJB for an EJB Client Project.
    If I export an EAR from the Application containing the EJB, the EAR only contains the EJB JAR (with a Manifest entry to a non-existent Client JAR).
    If I export the EJB Client Project to a JAR the JAR is simply empty i.e. contains some descriptor type artefacts but no classes.
    I have tried this quite a few times with the same outcome. Can anyone from BEA or the user community confirm whether or not this facility actually works!
    Thanks
    Jim Nicolson

    http://download.oracle.com/docs/cd/E13159_01/osb/docs10gr3/ejbTransport/ejbtransport.html#wp1079062 . This is document for OSB 10xx and yours is a a version or two older than this (So it will be applicable).
    Can you please check if your EJB are complying to 2.1specification?
    However the latest version of service has support for both EJB 2.1 and EJB 3.0 specification
    http://download.oracle.com/docs/cd/E14571_01/doc.1111/e15866/ejb.htm#CCGIFFCI
    Thanks
    Manoj

  • Unable to use fn-bea:execute-sql() in an XQuery in Workspace Studio 1.1

    When we create an XQuery file in Workspace Studio 1.1 (ALSB 3.0), we are unable to use fn-bea:execute-sql(). It throws an error saying "unknown function". It doesnt allow us to publish the XQuery file to ALSB instance due to the "unknown function" error. However if we directly upload this file to ALSB console, it accepts it and the execute-sql function also works grrat. Can you please let us know if we have to configure anything on the Workspace studio to be able to use XQuery Extensions for Service Bus ? Or can you please let us know if we should declare any namespace in the XQuery file to use fn-bea:execute-sql() in Workspace studio ?

    It sounds like a bug. Can you please contact bea support?
    Gregory Haardt
    ALSB Prg. Manager
    [email protected]

  • Developing plug-ins for BEA Weblogic Studio

    Can anyone provide pointers on documentation on developing plug-ins for BEA Weblogic Studio (e.g like this one https://beajunitplugin.projects.dev2dev.bea.com/ )
    Regards,
    -N

    film leaders clips can be downloaded online if you dig around a bit ... Peter Wiggins has a nice Motion Template clock he offers for free (which is a bargain by anyones reckoning)
    easy enough to create your own film leader style countdown with a few back to back text generators separated by clock wipe transitions
    color bars can already found in your fcp video generators bin
    color bars and a film leader style countdown can also be auto generated during output (print to video and edit to tape)
    distort faces and license plate like they do on tv? ... ok i give up, what do you mean? if you mean you want to disguise them (Mosaic, Blur etc) then you can have a bash with my Region Blur plugin
    Message was edited by: Andy Mees

  • Workshop or Workspace Studio on MAC OS

    Hello,
    I need to install the BEA 9.2 and BEA 10 in Mac OS X. I caught a binary edelivery.oracle.com and used the command below. The installation is successful, but I can not use the Workshop or Workspace Studio.
    I used binary for HP and IBM, for I could not run those for linux that has the extension .bin. I'm using Snow Leopard OS.
    Has anyone here ever used these tools with BEA on Mac OS?
    Regards,

    If you check the Supported Platform documentation, I think you'll find that Mac OS is not supported.
    http://download.oracle.com/docs/cd/E13196_01/platform/suppconfigs/config_wlp.html
    Brad

  • Unable To Find Source While Debugging in Workspace Studio

    I am running a jsf and Spring enabled web app in Workspace studio 1.1. I have two projects in the same workspace that are components used by the web app. When debugging I am unable to step into the code in those projects, although the debugger appears to recognize the breakpoints.
    I have tried including the projects in the java build path of the web app, and also tried including them as jars in a lib folder and then trying to 'attach source' to the jars. Neither one works. When I just include the projects in the build path, I am able to build the web app, but unable to deploy it. The spring context servlet is unable to find the classes in those projects and the app fails to deploy. When I include them as jars, I can build and deploy, but am unable to 'attach source'.
    Any ideas as to what the problem may be? I've done both of the things described above in Eclipse in the past with no issues.
    Edited by: user12016726 on Oct 7, 2009 6:01 AM

    This is the log entry when the deployment fails:
    ####<Oct 7, 2009 8:28:04 AM EDT> <Error> <org.springframework.web.context.ContextLoader> <PLCCT7PSDW0040> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1254918484376> <BEA-000000> <Context initialization failed
    org.springframework.beans.factory.CannotLoadBeanClassException: Cannot find class [com.thehartford.commonlogin.services.security.authorization.CommonLoginRolesManager] for bean with name 'commonLoginRolesManager' defined in ServletContext resource [WEB-INF/applicationContext.xml]; nested exception is java.lang.ClassNotFoundException: com.thehartford.commonlogin.services.security.authorization.CommonLoginRolesManager

  • Shared Portlet in WorkSpace Studio

    Hi:
    I'm creating some portals that i will use as templates for portals that will be created later, my quetion is, can i create or set some property to my portlets that make them shared once in the production environment, let me say that again, I want to have some portals sharing some of the portlets (content presenter portlets), and when you configure this kind of portlet you have the option of making it shared so you can add it later to another portal, and it will look like the one you configured, but i'm tryiing to do this when you add portlets in WorkSpace Studio
    What i want to do in steps
    1. Create two portals in Workspace studio adding a content presenter portlet in both
    2. Creating templates based on that portal files
    3. Create portals in server based on the templates
    4. Configure the shared content presenter portelt in the ONE of the portals
    5. Do not configure the shared content presenter portlet in the second portal created with the second template, because this portlet must look like the one configures in step 4
    6. Repeat as necesary from step 3
    Bad English i'm sorry
    Thanks

    This is the log entry when the deployment fails:
    ####<Oct 7, 2009 8:28:04 AM EDT> <Error> <org.springframework.web.context.ContextLoader> <PLCCT7PSDW0040> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1254918484376> <BEA-000000> <Context initialization failed
    org.springframework.beans.factory.CannotLoadBeanClassException: Cannot find class [com.thehartford.commonlogin.services.security.authorization.CommonLoginRolesManager] for bean with name 'commonLoginRolesManager' defined in ServletContext resource [WEB-INF/applicationContext.xml]; nested exception is java.lang.ClassNotFoundException: com.thehartford.commonlogin.services.security.authorization.CommonLoginRolesManager

  • WorkSpace Studio 1.1 Workflows

    Hi,
    I'm working with the new workshop named WorkSpace Studio(Workshop 10.2) and I have a question regarding Workflows and ContentPresenter.
    We are planning to use those 2 features and specially the Inline editing from the contentpresenter portlet(Rich Text Editor) but in the documentation I found this:
    Inline editing does not work with library services enabled, because library services support versioning.
    And, according to the documentation, in order to use the workflows we need to have a repository with library services enabled.
    So we were thinking to have 2 repositories one library enabled and another not library enabled, then move from workflow repository to the other repository the content that has been approved.
    Any ideas?
    Thanks in advanced
    Armando

    Hi Armando,
    Since this questions is to specific to Portal, it would be best to post it to the weblogic.developer.interest.portal.techpreview newsgroup at
    [url http://newsgroups.bea.com/forum.jspa?forumID=600000009]http://newsgroups.bea.com/forum.jspa?forumID=600000009
    Someone from the Portal team would be able to provide a solution or maybe a workaround.
    If you have any questions related to Workshop, please post them here.
    Cheers
    Raj

  • WorkSpace Studio as eclipse plugin

    I found a problem when my workspace studio installation is starting, and i found that the error is related to some bug on eclipse 3.2.
    The solution is easy. I have to replace or downgrade the version of the xulrunner library, but after doing that firefox does not start since it's built with the other version. I thought wlp 10.3 uses a newer version of eclipse but i think i'm wrong since the probelm persists.... so the question is ... is there any package of workspace studio as a plugin for an existing eclipse installation?
    andi if so, where can I download it?

    I have the same problem as mentioned above. If anybody knows
    solution for it then please tell me.

  • BEA Workshop Studio 3.2: Server classpath customization & Remote Debugging

    BEA Workshop Studio 3.2:
    The server classpath customization and remote debugging issues have been fixed in the 3.2 release, which is now available for download at http://workshopstudio.bea.com/download.do.
    Workround for the 3.1 release:
    By switching to war deployment mode the server classpath can be customized in the launch configuration.
    You can see the complete list of new features in 3.2 at:
    http://e-docs.bea.com/workshop/docs92/studio32/WhatsNew.htm

    Thanks Ram,as you said i server runtime i pointed to jdk1.5,that error has been resolved.
    Now i'm getting the parsing config.xml file.
    My server is Test9.
    C:\bea\jdk150_04\bin\java -classpath C:\bea\weblogic91\server\lib\weblogic_sp.jar;C:\bea\weblogic91\server\lib\weblogic.jar;C:\bea\weblogic91\server\lib\webservices.jar;C:\bea\jdk150_04\lib\tools.jar -Dbea.home=C:/bea -Dweblogic.ConfigFile=config/config.xml -Dweblogic.Name=Test9 -Dweblogic.ListenAddress=localhost -Dweblogic.ListenPort=7002 -Djava.library.path=C:\bea\weblogic91\server\bin -Djava.security.policy=C:\bea\weblogic91\server\lib\weblogic.policy -Dweblogic.management.discover=false -Dweblogic.ProductionModeEnabled=false -Dweblogic.management.password=weblogic -Dweblogic.management.username=weblogic weblogic.Server
    <Aug 17, 2006 8:27:05 PM EDT> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Java HotSpot(TM) Client VM Version 1.5.0_04-b05 from Sun Microsystems Inc.>
    <Aug 17, 2006 8:27:06 PM EDT> <Info> <Management> <BEA-141107> <Version: WebLogic Server 9.1 Mon Dec 12 19:26:33 EST 2005 689178 >
    <Aug 17, 2006 8:27:08 PM EDT> <Critical> <WebLogicServer> <BEA-000362> <Server failed. Reason:
    There are 1 nested errors:
    weblogic.management.ManagementException: [Management:141266]Parsing Failure in config.xml: The following failures occurred:
    -- Unresolved reference to Test9 by [Test9]/AppDeployments[__wstudio_autoconfig_deployment__]/Targets
         at weblogic.management.provider.internal.RuntimeAccessImpl.<init>(RuntimeAccessImpl.java:118)
         at weblogic.management.provider.internal.RuntimeAccessService.start(RuntimeAccessService.java:38)
         at weblogic.t3.srvr.ServerServicesManager.startService(ServerServicesManager.java:365)
         at weblogic.t3.srvr.ServerServicesManager.startInStandbyState(ServerServicesManager.java:116)
         at weblogic.t3.srvr.T3Srvr.initializeStandby(T3Srvr.java:630)
         at weblogic.t3.srvr.T3Srvr.startup(T3Srvr.java:402)
         at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:361)
         at weblogic.Server.main(Server.java:67)
    Caused by: weblogic.descriptor.DescriptorValidateException: The following failures occurred:
    -- Unresolved reference to Test9 by [Test9]/AppDeployments[__wstudio_autoconfig_deployment__]/Targets
         at weblogic.descriptor.internal.ReferenceManager.resolveReferences(ReferenceManager.java:265)
         at weblogic.descriptor.internal.DescriptorImpl.validate(DescriptorImpl.java:285)
         at weblogic.descriptor.DescriptorManager.createDescriptor(DescriptorManager.java:280)
         at weblogic.management.provider.internal.DescriptorManagerHelper.loadDescriptor(DescriptorManagerHelper.java:52)
         at weblogic.management.provider.internal.RuntimeAccessImpl$IOHelperImpl.parseXML(RuntimeAccessImpl.java:576)
         at weblogic.management.provider.internal.RuntimeAccessImpl.parseNewStyleConfig(RuntimeAccessImpl.java:220)
         at weblogic.management.provider.internal.RuntimeAccessImpl.<init>(RuntimeAccessImpl.java:106)
         ... 7 more
    >
    <Aug 17, 2006 8:27:08 PM EDT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to FAILED>
    <Aug 17, 2006 8:27:08 PM EDT> <Error> <WebLogicServer> <BEA-000383> <A critical service failed. The server will shut itself down>
    <Aug 17, 2006 8:27:08 PM EDT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to FORCE_SHUTTING_DOWN>
    Thanks
    Ram

  • Setting monitoring and SLA Alerts via Workspace studio

    Hi,
    Is it possible to set monitoring and SLA Alert rules via workspace studio. If yes, could you please help me how to do it.
    Thanks
    James

    Hi..
    Operational settings such as enabled, tracing, monitoring etc are easily set within eclipse by editing with the text editor rather than the proxy editor..
    The SLA Alerts are possible to modify in the same way, but they're a bit more tricky to figure out..
    ..Mark.

  • BEA Workshop Studio User Guide

    <b>"BEA Workshop Studio User Guide"</b> provides an extensive documentation about the product features and support information.
    <u>Help > Help Contents - BEA Workshop Studio User Guide</u>
    Please refer to this guide to quickly obtain the answers related product usage and features support.
    You can also refer to the online help at http://edocs.bea.com/workshop/docs92/index.html
    NOTE: Make sure to refer the help under appropriate product heading.

    <b>"BEA Workshop Studio User Guide"</b> provides an extensive documentation about the product features and support information.
    <u>Help > Help Contents - BEA Workshop Studio User Guide</u>
    Please refer to this guide to quickly obtain the answers related product usage and features support.
    You can also refer to the online help at http://edocs.bea.com/workshop/docs92/index.html
    NOTE: Make sure to refer the help under appropriate product heading.

Maybe you are looking for

  • Damaged attachments when sent as Cc

    Hi everyone, I figured that this question might better be asked in the server forum, so please bear with me. The situation is as follows: There are some Macs running 10.4 and Apple Mail. They connect to the company's Exchange server via IMAP (enabled

  • 5800 XM corrupt problem

    hello guys.. i am facing prob with my 5800 music player... while listening to songs some of my songs get corrupted and when i swich off my cell they work again but after 2-3 songs of playing it again gets corrupted... i tried to format the card i got

  • New purchases are not showing up in smart playlists

    New purchases are not showing up in smart playlists. About a week ago the smart playlists stop add newly purchase music.The smart playlists  will add items that are added the the library. Any ideas?

  • How to retrieve price per unit in SAP?

    Hi all! does anyone know what are the steps to retrieve from SAP price per unit value that customer was invoiced? I am writing Z program for retrieving price per unit (for example per kilogram) in order to calculate debit/credit memo invoice for the

  • I cant seem to disable the Subtitles. I have tried on the iPad Settings and on the ATV settings, NOTHING!!

    I cant seem to disable the Subtitles. I have tried on the iPad Settings and on the ATV settings, NOTHING!!