POA SP3 and Data Synchroniser 1.2.3 Build 882

Hi All,
Last week we updated to Groupwise 8 SP3, running on Netware 6.5 with no issues. Since that update we have had major issues with Data Synchroniser 1.2.3 Build 882.
Every 2 to 5 hours all the IOS devices ( we only use IOS devices) will throw up password messages and not connect. When the password is entered it is unable to verify and connection is not restarted.
Restarting the Data Sync Server does not restart the sync. You have to restart the POA to get the sync working again.
On the POA there are no obvious log messages at the time the sync fails, all the SOAP login in and log outs from the Data Sync server just stop. Sometimes the password requests will come up and if you wait 10 minutes and enter password it will accept and sync will start again.
The only new message I see occassionally since the update is the following:
Error: [0000] on Debug:2 hdebug=0, htemp=0
But even this is not regular.
When you restart the POA you will in most instances have a SOAP handler that is waiting to terminate which requires server restart to clear.
I have run a full cwcheck on all the databases, a DOM and PO database check and recovery to no avail. I have checked all the POA settings against the recommended in the SP3 docs.
I am out of ideas? Any help/thoughts will be much appreciated as this is frustrating.

Originally Posted by blofts
Hi All,
See the following Thread and TID which is what I am experiencing as well, seems to be all related:
TID7010410
POA SP3 Feedback
I have lodged a Support Request with Novell as per the TID, but have been advised the pacth is not ready yet as it needs testing, there is some discussion of this in the thread above. I asked about ETA which they advised is unknown but is a high priority. Novells suggestion was to backgrade to SP2HP2 if you cannot wait for fix.
We are having restart our POA 1 to 2 times a day at present.
Brad
We do have a build that we believe fixes this issue. If you have an SR open, please contact your technician and ask them for build 803-102712. If you do not have an SR open, for tracking purposes we would need you to do so. As this is a bug for which there is no public patch at the moment, the cost of the SR would be credited back.
Pam

Similar Messages

  • Xcelsius 2008 sp3 and Flex 2.0.1 Hotfix3 - Flex 3 Charts

    Hello,
    I'm working inserting some Flex charts into Xcelsius, but I've been having some compatibility problem. Let me explain:
    I have Xcelsius 2008 sp3 and I'm working in Flex builder 3 but when I was creating the xcelsius-objects project. I selected to compile the project the Flex builder 2.0.1 hotfix 3 SDK.
    When I have used this SDK I have not all the capabilities in the column chart that I need, some labels option in ColumnChart doesn't work, but when I selected Flex 3 SDK to compiled the entire ColumnChart object doesn't appear. If I try to insert the project builted in  Flex 3 SDK when I open Xcelsius, I receive a lot of Exceptions, like to Xcelsius didn't found some clases. If I insert the project built on Flex 2.0.1 Hotfix 3 SDK the capabilities that I need don´t work.
    Please Help me because this is driving me crazy.
    Thanks to everyone

    Hi,
    Xcelsius 2008 is built using Flex SDK 2.0.1 Hotfix 3 so that is the version of Flex SDK you have to use because it is not possible to mix and match versions of the Flex SDK in a SWF.
    So to create your add-ons you cannot use any Flex 3 or Flex 4 SDK components, only Flex 2.
    Regards
    Matt

  • JAX-WS Client throws NULL Pointer Exception in NW 7.1 SP3 and higher

    All,
    My JAX-WS client is throwing an exception when attempting to create a client to connect to the calculation service. The exception is coming out of the core JAX-WS classes that are part of NetWeaver. (see exception below)
    Caused by: java.lang.NullPointerException
         at com.sap.engine.services.webservices.espbase.client.jaxws.core.SAPServiceDelegate.createDispatchContextExistingPort(SAPServiceDelegate.java:440)
         at com.sap.engine.services.webservices.espbase.client.jaxws.core.SAPServiceDelegate.createDispatchContext(SAPServiceDelegate.java:475)
         at com.sap.engine.services.webservices.espbase.client.jaxws.core.SAPServiceDelegate.createDispatch(SAPServiceDelegate.java:492)
         at com.sap.engine.services.webservices.espbase.client.jaxws.core.SAPServiceDelegate.createDispatch(SAPServiceDelegate.java:484)
         at javax.xml.ws.Service.createDispatch(Service.java:166)
    I have done some research and it appears that as of NetWeaver 7.1 SP3 SAP stopped using the SUN JAX-WS runtime and implemented their own SAP JAX-WS runtime. I also took the time to decompile the jar file that contained the SAPServiceDelegate class which is throwing the null pointer exception. (see method from SAPServiceDelegate below)
        private ClientConfigurationContext createDispatchContextExistingPort(QName portName, JAXBContext jaxbContext)
            BindingData bindingData;
            InterfaceMapping interfaceMap;
            InterfaceData interfaceData;
            bindingData = clientServiceCtx.getServiceData().getBindingData(portName);
            if(bindingData == null)
                throw new WebServiceException((new StringBuilder()).append("Binding data '").append(portName.toString()).append("' is missing!").toString());
            QName bindingQName = new QName(bindingData.getBindingNamespace(), bindingData.getBindingName());
            interfaceMap = getInterfaceMapping(bindingQName, clientServiceCtx);
            interfaceData = getInterfaceData(interfaceMap.getPortType());
            ClientConfigurationContext result = DynamicServiceImpl.createClientConfiguration(bindingData, interfaceData, interfaceMap, null, jaxbContext, getClass().getClassLoader(), clientServiceCtx, new SOAPTransportBinding(), false, 1);
            return result;
            WebserviceClientException x;
            x;
            throw new WebServiceException(x);
    The exception is being throw on the line where the interfaceMap.getPortType() is being passed into the getInterfaceData method. I checked the getInterfaceMapping method which returns the interfaceMap (line above the line throwing the exception). This method returns NULL if an interface cannot be found. (see getInterfaceMapping method  below)
       public static InterfaceMapping getInterfaceMapping(QName bindingQName, ClientServiceContext context)
            InterfaceMapping interfaces[] = context.getMappingRules().getInterface();
            for(int i = 0; i < interfaces.length; i++)
                if(bindingQName.equals(interfaces<i>.getBindingQName()))
                    return interfaces<i>;
            return null;
    What appears to be happening is that the getInterfaceMapping method returns NULL then the next line in the createDispatchContextExistingPort method attempts to call the getPortType() method on a NULL and throws the Null Pointer Exception.
    I have included the code we use to create a client below. It works fine on all the platforms we support with the exception of NetWeaver 7.1 SP3 and higher (I already checked SP5 as well)
          //Create URL for service WSDL
          URL serviceURL = new URL(null, wsEndpointWSDL);
          //create service qname
          QName serviceQName = new QName(targetNamespace, "WSService");
          //create port qname
          QName portQName = new QName(targetNamespace, "WSPortName");
          //create service
          Service service = Service.create(serviceURL, serviceQName);
          //create dispatch on port
          serviceDispatch = service.createDispatch(portQName, Source.class, Service.Mode.PAYLOAD);
    What do I need to change in order to create a JAX-WS dispatch client on top of the SAP JAX-WS runtime?

    Hi Guys,
    I am getting the same error. Any resolution or updates on this.
    Were you able to fix this error.
    Thanks,
    Yomesh

  • My laptop running XP sp3 and FireFox 3.6 died. I salvaged the HD and put it in a drive enclosure. I bought a new Win7 machine and wish to import my old favorites (I don't have a backup, but the Favorites folder on the old HD is intact).

    My laptop running XP sp3 and FireFox 3.6 died. I salvaged the HD and put it in a drive enclosure. I bought a new Win7 machine and wish to import my old favorites (I don't have a backup, but the Favorites folder on the old HD is intact). I have not been able to determine how to import these favorites from the old HD to the new machine. I haven't found any FAQ that addresses this since I can't really start Firefox on the old HD in order to make a HTML backup. Any ideas? edit

    See this: <br />
    http://support.mozilla.com/en-US/kb/Recovering+important+data+from+an+old+profile

  • PDA and data synchronization -help required

    Hi,
    I have experince in developing web applications in jsp/servlets and php. I wish to develop a PDA supported java server
    application. I have downloaded netbeans for using as an IDE. It does have support for mobile emulators, but does not support
    PDA/Palm OS emulators.
    What about IBM websphere and eclipse for using as IDE? Will they support J2ME SDK? Please help me in devoloping my PDA
    application.
    why we use data synchronisation for laptop and PDA for web applications? Why is it not applied in normal PC?
    Thanking in advance,
    From,
    Vinod

    Vinod, you might want to look at the palm.com web site. There is quite alot of information available for developers.
    By reading your original query, I assume you are talking about thread safety and not synchronization, per se. Thread safety is very important in a web app as you surely know. If you don't and have been developing Servlets/JSPs then, hoo boy!

  • Time and Date not correct

    Hi to all.
    Does anybody know how to save your cmos settings to a floppy or CD?
    Is there a program that can assist with saving the cmos settings to floppy or CD?
    Is there anyway to perform saving the cmos settings within the BIOS to floppy or CD?
    I really don't want to go into the BIOS and write down all that info.
    I have an HP Pavilion 553w that is 7 1/2 years old, running windows xp home edition version 2002 sp3, 2 gbs of ram, AMD athlon(tm)XP 2100+ 1.73 GHZ, bios version/date Phoenix Techologies, LTD AM35308, 10/07/2002 (Phoenix-AwardBIOS CMOS Setup Utility) SMBIOS 2.3, BIOS Core Version V6.0, BIOS Revision 3.08 10/7/2002.
    I know my computer is ancient and I probably should have updated my BIOS, as it is out of date.
    Also, after starting up my computer I noticed my time and date is not correct and as of lately have to adjust the time and date to the correct time and date.
    I did some research and came across some possible reasons:
    1. RTC battery (CMOS battery) may need reseating on motherboard.
    2. The battery has become corrupt.
    3. BIOS version may be out of date.
    My computer is really taking longer than usual to startup and images of icons take longer to display, which may be a sign of the symptoms I listed above.
    My computer doesn't have any malware whatsoever, clean as can be.
    Any help or advise will be truly appreciated.
    Jboman
    This question was solved.
    View Solution.

    Jboman,
    There is not need to save CMOS settings unless you changed the default BIOS settings.  A bad CMOS battery will not preserve the settings.
    HP DV9700, t9300, Nvidia 8600, 4GB, Crucial C300 128GB SSD
    HP Photosmart Premium C309G, HP Photosmart 6520
    HP Touchpad, HP Chromebook 11
    Custom i7-4770k,Z-87, 8GB, Vertex 3 SSD, Samsung EVO SSD, Corsair HX650,GTX 760
    Custom i7-4790k,Z-97, 16GB, Vertex 3 SSD, Plextor M.2 SSD, Samsung EVO SSD, Corsair HX650, GTX 660TI
    Windows 7/8 UEFI/Legacy mode, MBR/GPT

  • Default selection on current month, week and date

    Hi,
    We are on Dashboard 4.1 sp3 the same version as BI.
    The dashboard report is using LiveOffice connection. We are now facing an issue with default selection on current month, week and date.
    The dashboard report drilled down from month, to week, then to date. The dashboard feed -live office report is on month/week/date ascending order - becuase we have running average calcualtion on LO report, it seems have to be in ascending order to get the correnct runnning average.
    I tried to on Insertion to change default seletion, it works on month, but it doesnt working on week and daily.
    but when LO report is on ascending order, on dashboard column chart the default selection is not on the current month, week and date.
    Is there a way to solve the issue. Could anyone please help.
    Thanks,

    Hi Suman,
    Thanks for the quick reply.
    Do you mean I Enable sorting -by categrory labels on Behaviour - common tab.
    Thanks,

  • Extended router's network for Airport extreme. Works well with MacbookPro. I can print with notebook with XP SP3 and, I can see the USB-harddisc in the Airport service program but, I cannot use it. I have set filesharing etc. What do I do wrong?

    I connected the Airport Extreme wireless to the existing network of my router. At the Airport there is connected via USB a Printer and three hard discs. All works well on my MacBook Pro - I can print and use the hard discs. On my notebook and my desktop, both with XP-SP3 I can use the printer only. In the Airport service program - manual set up - hard discs I can see the drives with the correct names but I cannot work with it. I don't find neithe the Airport Extreme nor the drives in the Windows Explorer. Of course I've set 'filesharing' etc. What do I do wrong? Where is the mistake in the set up?

    apikoros wrote:
    The Utility transferred all of the AE's settings, so I still have to change the password, which leaves me with only 2 other questions, I think:
    1)  I assume it's just a matter of using the Utility, entering a stronger password and checking for it to be remembered in Keychain Access.  But do I have to  change the password for each individual unit-- the TC, the Extreme and both Expresses-- or will changing it just for the TC alone work for the entire network?
    Resetting the password you will need to do for each device... the utility cannot even see those old units.
    So you will have to do it for each one.. think it through.. because as you change passwords the others will lose connection.. so start from the express which are wireless extending .. change those first.. and go back up the chain.. as each one changes it will drop off the network.. until you reach extreme and change that. Then you might need to reboot the whole network to get everything talking again. If something goes wrong.. just pluck that one out of the mix and plug in ethernet.. reset and redo the setup. That is my preferred method anyway.. do everything in isolation one by one. By ethernet and then nothing goes wrong.
    2)  Who's the treasonous SOB who spilled the beans to you about the ICBM in my back yard?!?
    N.Korean hackers.
    [Edit] Whoops-- one more question:  I want to partition the TC's disk, but Disk Utility doesn't see it.  What do I need to do?
    You cannot partition a network disk. And apple provided no tools for it in the TC itself. You can pull the disk out and partition it but that voids your warranty. (although done with care who is to know).
    Look at Q3 here.
    http://pondini.org/TM/Time_Capsule.html
    Mixing TM and data on the TC is worth planning carefully. They don't necessarily sit happily together.

  • SP3 and Fix Pack 3.1 errors.

    Hello,
    I am using Xcelsius 2008 and I am having 2 problems here.
    1st problem, I have tried to install the Service Pack 3.
    After I install it, whenever I add a new Data Connection, the right screen (where it was supposed to be the data connection seetings) I got a blank screen which does not allow me to setup any data connection.
    2nd problem, after I got this bug, I have tried to install the Fix Pack 3.1. And then comes the new problem, I got an error during the files extraction:
    "CRC failed in package\XcelsiusPresent.msp
    the file "???" header is corrupt"
    Can anybody help me with these issues?
    Regards,
    Fabio

    I have experienced exactly same issue - This issue is with Xcelsius Present but not with Xcelsius Enterprise. So I have uninstalled Xcelsius Present and have installed Xcelsius Enterprise SP3 and Fixpack 3.1

  • Data Synchronisation - cannot see log files

    Hi,
    when I run the data synchronisation process it completes normally, but when I try to view source log / destination log / data synchronisation log they all give me the same message in the output file =>
    "Unable to download file because of an error or the file wasn't found. Please contact your system administrator."
    The version is 11.1.2.1.0.83
    Our server OS is windows 2008 r2.
    This feels like a security issue on a directory, can anyone tell me which directory I need to look for, and what rights the middleware would need to be able to view these files?
    with thanks,
    Robert.

    I think the logs will be generarted under <MIDDLEWARE_HOME>\user_projects\<instancename>\tmp
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Exchange 2010 SP3 and UR6 Query - Order of Install

    hi,
    I need to update my Exchange 2010 SP2 Servers to SP3 and Update Rollup 6.
    Can someone confirm the update order for me?
    I have 5 servers;
    Live Data Centre:
    2 x HUB / CAB (Using Windows NLB)
    2 x Mailbox (DAG)
    Disaster Recovery:
    1 x Multi-Role Server (CAS / HUB and Mailbox) - this is also Part of the DAG
    Two Questions:
    1.) What is the Order in which I install SP3 on these Servers? Should it be Live Data Centre: HUB / CAS, Mailbox Servers and THEN the Multi-Role Server at DR?
    2.) When Upgrading each server, should I do SP3, reboot, check and THEN install Update Rollup 6 - or should I upgrade all Servers to SP3 and then start the process again to get to Update Rollup 6?
    Thanks in advance for your help with this query.
    Regards,
    Adam

    1) Internet facing CAS first in each AD site. Order: CAS> HUB> UM> MBX
    2) Personally, I would install SP3, reboot, then install SP6, but its really up to you.
    http://technet.microsoft.com/en-us/library/bb629560(v=exchg.141).aspx
    Upgrade Exchange 2010 to Exchange 2010 SP1, Exchange 2010 SP2, or Exchange 2010 SP3
    Twitter!: Please Note: My Posts are provided “AS IS” without warranty of any kind, either expressed or implied.

  • Purchased Content and Data Transfers

    I had a few questions regarding purchased content (i.e. apps, music, movies) and data transfers:
    1. Can you re-download purchased apps for free or do you have to purchase them again?
    2. Can you re-download purchased movies and music if the data is lost or do you have to purchase them again?
    3. I noticed every time you download a movie it prompts you to backup the data with discs. I practically never use discs and most of the time, I have a large amount of purchased data that simply will not fit on DVD-Rs. Is it possible to backup data via external hard-drives? Is there an export option in iTunes to do this or do you have to go into the physical path which it's located?
    4. Can you sync purchased content with multiple devices? For instance, I have a 32GB iTouch and an iPhone, would I be able to sync the same data for both of these devices or am I restricted to one?
    5. How many computers can you have data synced with? For instance, I have five computers and a soon-to-be MacBook. How many computers can I have the same data synced up to?
    I tried looking around for this information, but didn't have much luck finding it. Apple doesn't seem to clearly define these parameters unless there is a link one of you might have that discusses these issues. Any assistance would be greatly appreciated.
    Message was edited by: chris.chin

    Hi, welcome to Apple Discussions.
    chris.chin wrote:
    I had a few questions regarding purchased content (i.e. apps, music, movies) and data transfers:
    1. Can you re-download purchased apps for free or do you have to purchase them again?
    Redownload for free, assuming still available in the store.
    2. Can you re-download purchased movies and music if the data is lost or do you have to purchase them again?
    You are not entitled to a repeat download of any media item. Sometimes unfortunate users are granted a one-time only repeat download if they ask nicely but don't count on it.
    3. I noticed every time you download a movie it prompts you to backup the data with discs. I practically never use discs and most of the time, I have a large amount of purchased data that simply will not fit on DVD-Rs. Is it possible to backup data via external hard-drives? Is there an export option in iTunes to do this or do you have to go into the physical path which it's located?
    Yes, you can backup to external drives or network shares however iTunes has no system for managing this. You just need to copy the files from their source folders, either manually or....
    *Fast backup for iTunes library (Windows Only)*
    Grab SyncToy 2.1, a free tool from MS. This can be used to copy your entire iTunes library (& other important data folders) onto another hard drive or network share. You can then use SyncToy periodically to synchronise or echo your library to the backup. A preview will show which files need to be updated giving you a chance to spot unexpected changes and during the run only the new or updated files will be copied saving lots of time. And if your media is all organised below the main iTunes folder then you should also be able to open the backup library on any system running the same version of iTunes.
    4. Can you sync purchased content with multiple devices? For instance, I have a 32GB iTouch and an iPhone, would I be able to sync the same data for both of these devices or am I restricted to one?
    You can sync the content to as many iPods/iPhones/iPads as you like. Each device can hold protected content from up to five different accounts at any one time.
    5. How many computers can you have data synced with? For instance, I have five computers and a soon-to-be MacBook. How many computers can I have the same data synced up to?
    You can authorise protected content on up to five different computer systems at any one time. Virtual machines count as separate systems as do computers with reformatted drives or, perhaps, certain hardware changes. Ideally you should deauthorise a computer before any major upgrade. If you are no longer able to access one of your systems but need to release the authorisation then, if you have five active authorisations you can deauthorise all of them together, however you may not then repeat this preocess for 12 months.
    Protected content can only be transfered to a device when the computer is authorised. Devices may be manually managed from a number of computers but may only be automatically synced with one. Syncing is a one way process as far as media is concerned, library to device, but certain metadata such as play count and rating flows in both direction. With manual managment such metadata is not copied.
    I tried looking around for this information, but didn't have much luck finding it. Apple doesn't seem to clearly define these parameters unless there is a link one of you might have that discusses these issues. Any assistance would be greatly appreciated.
    No problem, that's what these forums are for... The information is probably spread around a number of support articles but I don't have the individual links to hand. Feel free to ask if you want more details though.
    tt2

  • DSO - What key fields and data fields in dso

    Hi experts,
    I need to create a dso in between the cube and 2 data sources(2lis_11_vaitm, 2lis_12_vcscl) to stage the data. My question is: what key fields and data fields to choose for the dso? is there a standard dso to copy? please explain in detail the model to set up, whether to connect both the ds's to dso and then to cube or one ds to dso and the other to the cube. more details will help.

    Check this for standard DSO:
    http://help.sap.com/saphelp_nw04/helpdata/en/43/fcdc387f34384f94c3227baf3837a8/content.htm
    Thanks...
    Shambhu

  • Crystal Report 2008 SP3 and BO XI 3.1 conflict

    Hi every body,
    We have a BOE system:
    BO XI 3.1
    Oracle db 10g
    All running successful and can create some types of WebI report.
    But we also want reports with Crystal Report.
    1> So we install Crystal Report 2008 SP3 (without knowing the conflict error between BO XI 3.1 and Crystal Report 2008 SP3 and overwrite some .dll file). After installing, we can not create WebI report any more. And a error message box display: "DBDriver failed to load: C:\Program File\Business Objects\BusinessObjects ENterprise12.0\win32_x86\dataAccess\connectionServer\dbd_oci.dll ".
    2> We uninstall Crystal Report SP3. But this is not the solution. Still error because of missing .dll files.
    3> We open BO XI 3.1 setup and repair BO XI 3.1. Even we uninstall BO XI 3.1, delete all of its components and delete in regedit key. We install BO XI 3.1 again. Now we have full .dll file, not missing them any more. But when we open universe and click on Table browser, cannot fetching any tables.
    We set rights for Oracle DB user again. But still error: cannot fetching.
    4> We searched the solution for this problem on the internet. But not worked, no answer.
    Can somebody help me bring back the BOE system state again ? pls   :"<
    T______T

    Hi Paul,
    I hope I read your question right!
    Yes, It is possible to run XIR2 and 3.1 on the same server although it's not recommended by BO. You will need to make sure they are both pointing to different CMS databases and different FRS repositories, like you already mentioned you will need to specify different ports for the CMS db and Tomcat.
    Why not uninstall Business Objects XI R2 in your BO development environment or a spare server (if you have one), and do a clean install of XI 3.1 SP3.
    Tip: If you were already having performance issues with your XI R2 environment, I would seriously consider upgrading the hardware. XI 3.1 needs a bit more RAM and CPU than XI R2
    Regards
    Rim Geurts

  • Reading MS Project column names and data on the fly from a selected View

    Hi guys,
    I have several views on my project file (MSPROJECT 2010) and I want to build a macro so that;
    1. User can select any view ( Views can have diffrent columns and the user may add new columns as well)
    2. User runs the Macro and all the coulmns along with the tasks displayed in the view will be written to a excel file. ( I don't want to build several macro's for each view, I'm thinking of a common method which would work for any selected view)
    The problem I'm facing is that how will i read the column names and data for a particular view on the fly without hard coding them inside the vba code ?
    The solution needs to work on a master schedule as well.
    Appreciate your feedback.

    Just to get you started the following code writes the field name and data for the active task to the Immediate window.
    Sub CopyData()
    Dim fld As TableField
    For Each fld In ActiveProject.TaskTables(ActiveProject.CurrentTable).TableFields
    If fld.Field >= 0 Then
    Debug.Print Application.FieldConstantToFieldName(fld.Field), ActiveCell.Task.GetField(fld.Field)
    End If
    Next fld
    End Sub
    Rod Gill
    Author of the one and only Project VBA Book
    www.project-systems.co.nz

Maybe you are looking for