Another problem with Tuxedo XA and informix

In an application running Tuxedo 6.5 with Informix DS 7.3 sometimes writes
the following message in the ulog.
LIBTUX_CAT:1397: WARN:tpreturn transaction processing failure
may be due to a transaction timeout???
and with the XA trace running seems like some xa_rollback statements return
with error when a transaction involves two servers in different groups. the
line is some like this:
.........TRACE:XA: 0xc0 0x3ccf8af 0x1 xa_rollback = -4
(-4 = XAER_NOTA)
Is Tuxedo or Informix loosing the XID???
Apparently, despite this, nothing serious happens, i guess because the
transaction is currently rollingback. But 1 or 2 times a week, the Informix
Server stop responding and the entire app. must be restarted.
Any ideas??
Thanks in advance

Thanks a lot. I'll work on that.
"Martin Sullivan" <[email protected]> wrote in message
news:[email protected]..
This looks to be something I've observed with other TPM and other
DBM. The root cause is the DBM being, er, flexible with the XA
specification. The conjecture is that something happened to your
Transaction Branch in Informix and it voted rollback on the prepare
but it didn't wait, as the specification requires, to forget the
Transaction Branch and then when Tuxedo issued the rollback there
wasn't a valid Transaction XID that the DB knew about, so XAER_NOTA
(Not a Transaction).
Oracle does much the same thing with when the TM value on the Open
string is too small and this may be the reasoning behind the
"transaction timeout" message.
Martin.
On Mon, 3 Jun 2002 15:29:20 -0500, Eric Velazquez <[email protected]>
wrote:
:In an application running Tuxedo 6.5 with Informix DS 7.3 sometimeswrites
:the following message in the ulog.
:LIBTUX_CAT:1397: WARN:tpreturn transaction processing failure
:may be due to a transaction timeout???
:and with the XA trace running seems like some xa_rollback statementsreturn
:with error when a transaction involves two servers in different groups.the
:line is some like this:
:.........TRACE:XA: 0xc0 0x3ccf8af 0x1 xa_rollback = -4
:(-4 = XAER_NOTA)
:Is Tuxedo or Informix loosing the XID???
:Apparently, despite this, nothing serious happens, i guess because the
:transaction is currently rollingback. But 1 or 2 times a week, theInformix
:Server stop responding and the entire app. must be restarted.
:Any ideas??
:Thanks in advance
Martin Sullivan. The reply-to e-mail address is temporary to thwart spam.
If viewing from an archive try sullivan at zois &c. There is more on
Open OLTP at http://www.zois.co.uk.

Similar Messages

  • Yet again another problem with Firefox Beta and Hotmail

    So, I think the new version of firefox 4.XXX does not like hotmail or vice versa. When in hotmail and composing a new message, I cannot add attachments at all. I once again verified that I had this ability in the most current version of Firefox and in Safari. Everything works fine. Did the usual junk, dumped my cache, etc. And I am still having a problem with the calendar not loading. I use to work in IT in a support function and I can clearly tell you that the new browser does not like Windows Live/ Hotmail, whatever you want to call it. It is broken, so please fix this because I like the new browser other than the hotmail issues.

    Many site issues can be caused by corrupt cookies or cache. In order to try to fix these problems, the first step is to clear both cookies and the cache.
    Note: ''This will temporarily log you out of all sites you're logged in to.''
    To clear cache and cookies do the following:
    #Go to Firefox > History > Clear recent history or (if no Firefox button is shown) go to Tools > Clear recent history.
    #Under "Time range to clear", select "Everything".
    #Now, click the arrow next to Details to toggle the Details list active.
    #From the details list, check ''Cache'' and ''Cookies'' and uncheck everything else.
    #Now click the ''Clear now'' button.
    Further information can be found in the [[Clear your cache, history and other personal information in Firefox]] article.
    Did this fix your problems? Please report back to us!

  • Another problem with swfloader (subapplication) and gc

    I am trying to load a swf sub-application using the swfloader. I know that this is a well-discussed topic but i cannot find the reason why the air gc does not get rid of the loaded subapplication or -in a better way- why does it get rid of some intances and other instances remain in the memory (cumulative instances 10, instances 4 never destroyed). Here is my code
    ParentApplication
    <?xml version="1.0" encoding="utf-8"?>
    <s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
                           xmlns:s="library://ns.adobe.com/flex/spark"
                           xmlns:mx="library://ns.adobe.com/flex/mx"
                           width="500"
                           height="1000"
                           creationComplete="onCreationComplete()">
        <fx:Script>
            <![CDATA[
                import mx.controls.Alert;
                import mx.controls.SWFLoader;
                private var loader:SWFLoader;
                private function onCreationComplete():void
                    addEventListener(MouseEvent.CLICK, loadSwf);
                    addEventListener(MouseEvent.RIGHT_CLICK, unloadSwf);
                    function loadSwf():void
                        loader = new SWFLoader();
                        loader.addEventListener(Event.UNLOAD,unloaded);
                        loader.cachePolicy = "off";
                        loader.width = 500;
                        loader.height = 1000;
                        loader.trustContent = false;
                        loader.loadForCompatibility = true;
                        addElement(loader);
                        var mySubApplication:File = File.userDirectory.resolvePath("file:///C:/ReaGuide.swf");
                        loader.load(mySubApplication.url);
                    function unloadSwf():void
                        removeElement(loader);
                        var e:Event = new Event("subAppCleanUp");
                        loader.content.loaderInfo.sharedEvents.dispatchEvent(e);
                        loader.source = null;
                        loader.load(null);
                        loader.unloadAndStop(true);
                        loader = null;
                        System.gc();
                        System.gc();
                    function unloaded():void
                        Alert.show("unloaded event")
            ]]>
        </fx:Script>
    </s:WindowedApplication>
    SubApplication
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
                    layout="absolute" backgroundColor="#333333"                
                    width="100%" height="100%" creationComplete="onCreationComplete()">
        <mx:Script>
            <![CDATA[
                import mx.controls.Alert;
                public function onCreationComplete():void{
                    this.systemManager.loaderInfo.sharedEvents.addEventListener("subAppCleanUp",_cleanUp)
                        function _cleanUp():void
                            trace("CleanUp called from parent");
                            myImage = null;
            ]]>
        </mx:Script>
    <mx:Image id="myImage" source="@Embed(source='images/rea-00.jpg')" width="500" height="1000"/>
    </mx:Application>
    I would like to mention that if i remove the mx:Image from the subApplication tha garbage collector works fine loading and unloading the swf correctly.
    As you can see i have created an event (dispatched from the parent application ) that cleans up the subapplication in order to avoid garbages.
    i would be gratefull for any piece of advice.
    Thank you!

    Thank you for your immediate response.
    i set the image.source = null and evaluateNow() but still the problem exists. Random instances remain while other instances (the majority)are garbage collected. At the moment, i am profiling and while i have 106 cumulative instances of the sub application i have still 6 instances alive that the garbage collector failed to collect (why not these 6???what was the difference of these 6 objects comparing to the other 100 that were removed from the memory!).
    While debugging i observed the following output ( Remember testLoad.swf is the parent and SubApp is the loaded subapplication)
    Console Output
    [SWF] testLoad.swf - 2,151,642 bytes after decompression
    [SWF] bin-release/SubApp.swf - 547,190 bytes after decompression
    [SWF] bin-release/SubApp.swf/[[DYNAMIC]]/1 - 323,748 bytes after decompression
    [SWF] bin-release/SubApp.swf/[[DYNAMIC]]/2 - 202,168 bytes after decompression
    [SWF] bin-release/SubApp.swf/[[DYNAMIC]]/3 - 1,314,527 bytes after decompression
    [SWF] bin-release/SubApp.swf/[[DYNAMIC]]/4 - 797,233 bytes after decompression
    [SWF] bin-release/SubApp.swf/[[DYNAMIC]]/5 - 261,592 bytes after decompression
    [SWF] bin-release/SubApp.swf/[[DYNAMIC]]/6 - 194,680 bytes after decompression
    Warning: Ignoring 'secure' attribute in policy file from http://fpdownload.adobe.com/pub/swz/crossdomain.xml.  The 'secure' attribute is only permitted in HTTPS and socket policy files.  See http://www.adobe.com/go/strict_policy_files for details.
    Has the above output any relation with my mentioned problem?
    Thank you.

  • Another problem with using canvases and scrollviewers in tab

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Windows;
    using System.Windows.Controls;
    using System.Windows.Data;
    using System.Windows.Documents;
    using System.Windows.Input;
    using System.Windows.Media;
    using System.Windows.Media.Imaging;
    using System.Windows.Navigation;
    using System.Windows.Shapes;
    namespace WPFDynamicTab
        /// <summary>
        /// Interaction logic for MainWindow.xaml
        /// </summary>
        public partial class MainWindow : Window
            private List<TabItem> _tabItems;
            private TabItem _tabAdd;
       //     private Canvas canvas1;
            public MainWindow()
               try
                    InitializeComponent();
                    // initialize tabItem array
                    _tabItems = new List<TabItem>();
                    // add a tabItem with + in header
                    _tabAdd = new TabItem();
                 //    canvas1= new Canvas();
                    _tabAdd.Header = "+";
                    _tabAdd.MouseLeftButtonUp += _tabAdd_MouseLeftButtonUp;
                    _tabItems.Add(_tabAdd);
                    this.AddTabItem();   // add first tab
                    // bind tab control
                    tabDynamic.DataContext = _tabItems;
                    tabDynamic.SelectedIndex = 0;
                catch (Exception ex)
                    MessageBox.Show(ex.Message);
            private TabItem AddTabItem()
                int count = _tabItems.Count;
                // create new tab item
                TabItem tab = new TabItem();
                tab.Header = string.Format("Tab {0}", count);
                tab.Name = string.Format("tab{0}", count);
                tab.HeaderTemplate = tabDynamic.FindResource("TabHeader") as DataTemplate;
                // add controls to tab item, this case I added just a canvas
                ScrollViewer scrollview1 = new ScrollViewer();
                Canvas canvas1 = new Canvas();
                canvas1.Name = "canvas1";
    // XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
                Canvas_Paint(ref canvas1); // Canvas_Paint defines the background color of  "canvas1"
                scrollview1.Height=200;
                scrollview1.VerticalAlignment = VerticalAlignment.Center;
                canvas1.Height=400+400*count;
                scrollview1.Content = canvas1;
                tab.Content = scrollview1;    
    //YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY 
                // insert tab item right before the last (+) tab item
                _tabItems.Insert(count - 1, tab);
                return tab;
            private void _tabAdd_MouseLeftButtonUp(object sender, MouseButtonEventArgs e)
                TabItem newTab = this.AddTabItem();
                // clear tab control binding
                tabDynamic.DataContext = null;
                // bind tab control
                tabDynamic.DataContext = _tabItems;
                tabDynamic.SelectedItem = newTab;
            private void Canvas_Paint(ref Canvas canvas1)
                int count = _tabItems.Count;
                switch (count)
                    case 0:
                        canvas1.Background = Brushes.Green;
                        break;
                    case 1:
                        canvas1.Background = Brushes.Red;
                        break;
                    case 2:
                        canvas1.Background = Brushes.Blue;
                        break;
                    case 3:
                        canvas1.Background = Brushes.Yellow;
                        break;
                    case 4:
                        canvas1.Background = Brushes.Brown;
                        break;
                    case 5:
                        canvas1.Background = Brushes.Orange;
                        break;
                    case 6:
                        canvas1.Background = Brushes.Olive;
                        break;
                    default:
                        break;
            private void tabDynamic_SelectionChanged(object sender, SelectionChangedEventArgs e)
          // this is a dummy method
     and the xaml
    <Window x:Class="WPFDynamicTab.MainWindow"
            xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
            xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
            Title="Dynamic Tab" Height="300" Width="527" WindowStartupLocation="CenterScreen">
        <Grid>
            <TabControl Name="tabDynamic" ItemsSource="{Binding}" SelectionChanged="tabDynamic_SelectionChanged">
                <TabControl.Resources>
                    <DataTemplate x:Key="TabHeader" DataType="TabItem">
                        <DockPanel>
                            <TextBlock Text="{Binding RelativeSource={RelativeSource AncestorType=TabItem }, Path=Header}" />
                        </DockPanel>
                    </DataTemplate>
                </TabControl.Resources>
            </TabControl>
        </Grid>
    </Window>
    The program does the job but there are 2 questions. I am using a scrollviewer and each time the tab increases the canvas size increases and this is reflected in the scrollview bar getting shorter.
    Question 1)
    I set the scrollview1 height to  200 ,which was obtained by trial and error, increasing causes the extents to go outside the box etc,
    the window height was 300 , is it possible to automatically set the scrollviewer height.
    Question 2)
    Is it possible to  put the canvas and scrollviewer into the XAML I tried but  failed
    Note: the relevent code to the above questeions is between XXXXX... and YYYY...

    >>the window height was 300 , is it possible to automatically set the scrollviewer height.
    You should not specify an explicit height if you want an element to fill the available space. Just set the VerticalAlignment property to Strecth (which is the default value for a ScrollViewer:
    Canvas_Paint(ref canvas1); // Canvas_Paint defines the background color of "canvas1"
    scrollview1.VerticalAlignment = VerticalAlignment.Stretch;
    canvas1.Height = 400 + 400 * count;
    scrollview1.Content = canvas1;
    tab.Content = scrollview1;
    //YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY
    // insert tab item right before the last (+) tab item
    _tabItems.Insert(count - 1, tab);
    return tab;
    >>Is it possible to  put the canvas and scrollviewer into the XAML I tried but  failed
    Well, you could define the ScrollViewer, i.e. the root element, as a resource and then add access it from the AddTabItem() method like this:
    <Window x:Class="WPFDynamicTab.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Dynamic Tab" Height="300" Width="527" WindowStartupLocation="CenterScreen">
    <Window.Resources>
    <ScrollViewer x:Key="sv" x:Shared="false">
    <Canvas Height="800">
    </Canvas>
    </ScrollViewer>
    </Window.Resources>
    <Grid>
    <TabControl Name="tabDynamic" ItemsSource="{Binding}" SelectionChanged="tabDynamic_SelectionChanged">
    <TabControl.Resources>
    <DataTemplate x:Key="TabHeader" DataType="TabItem">
    <DockPanel>
    <TextBlock Text="{Binding RelativeSource={RelativeSource AncestorType=TabItem }, Path=Header}" />
    </DockPanel>
    </DataTemplate>
    </TabControl.Resources>
    </TabControl>
    </Grid>
    </Window>
    private TabItem AddTabItem()
    int count = _tabItems.Count;
    // create new tab item
    TabItem tab = new TabItem();
    tab.Header = string.Format("Tab {0}", count);
    tab.Name = string.Format("tab{0}", count);
    tab.HeaderTemplate = tabDynamic.FindResource("TabHeader") as DataTemplate;
    // add controls to tab item, this case I added just a canvas
    ScrollViewer scrollview1 = this.Resources["sv"] as ScrollViewer;
    Canvas canvas1 = scrollview1.Content as Canvas;
    canvas1.Name = "canvas1";
    Canvas_Paint(ref canvas1); // Canvas_Paint defines the background color of "canvas1"
    scrollview1.VerticalAlignment = VerticalAlignment.Stretch;
    canvas1.Height = 400 + 400 * count;
    scrollview1.Content = canvas1;
    tab.Content = scrollview1;
    // insert tab item right before the last (+) tab item
    _tabItems.Insert(count - 1, tab);
    return tab;
    It may not provide that much benefits in this scenario though since you are setting the height and the background of the Canvas dynamically but it is indeed possible.
    Hope that helps.
    Please remember to close your threads by marking helpful posts as answer and then start a new thread if you have a new question.

  • Another problem with iTune 8 and Vista

    iTunes downloaded and updated. successfully on a Vista machine
    However, when I try to start iTunes, I get the messag " Preparing to install iTunes", closely follwed by "Windows is try to configure"
    Then after a while the system says it needs to reboot to complete the configuration.
    So I reboot , then after the restart I try to start iTunes and the same happens all over again
    Any help gratefully recived, I have tried re-installing
    Thanks

    I found a solution that at least worked in my case. The iTunes desktop shortcut may be pointing to the installation file. To see if iTunes really works, navigate to the iTunes folder under "Program Files." Double click on the file iTunes.exe and see if it starts up. If so, go back to the iTunes.exe file, and click on it with the RIGHT mouse button, hold the button down, and drag the file to your desktop. Select "create shortcut" from the menu. Now rename the new shortcut on your desktop to "iTunes." Now it should start correctly when you click on the new icon. Good luck!
    Bob

  • After having yet another problem with my MacBook Pro and having to wipe the drive, I am now unable to sync my iPhones etc without erasing all the music on them. Is there a way around this? I have no other library!

    After having yet another problem with my MacBook Pro and having to wipe the drive, I am now unable to sync my iPhones etc without erasing all the music on them. Is there a way around this? I have no other library!
    iTunes is a mess! It couldn't find it's own libraries and I was forced to create a new one. Now I don't know where my music is or if any's missing.

    columbus new boy wrote:
    How crap is that?
    It's not crap at all.
    It's not that simple. For example, I've 3500 songs on my MacBook but don't want them all on my phone, so I have to manually select each song again???
    There has to be a solution.
    Why not simply make a playlist with the songs you want on the iPhone?
    and maintain a current backup of your computer.

  • Problems with ListViews Drag and Drop

    I'm surprised that there isn't an Active X control that can do this more
    easily? Would
    be curious to find out if there is - although we aren't really embracing the
    use of
    them within Forte because it locks you into the Microsoft arena.
    ---------------------- Forwarded by Peggy Lynn Adrian/AM/LLY on 02/03/98 01:33
    PM ---------------------------
    "Stokesbary, Michael" <[email protected]> on 02/03/98 12:19:52 PM
    Please respond to "Stokesbary, Michael" <[email protected]>
    To: "'[email protected]'" <[email protected]>
    cc:
    Subject: Problems with ListViews Drag and Drop
    I am just curious as to other people's experiences with the ListView
    widget when elements in it are set to be draggable. In particular, I am
    currently trying to design an interface that looks a lot like Windows
    Explorer where a TreeView resides on the left side of the window and a
    ListView resides on the right side. Upon double clicking on the
    ListView, if the current node that was clicked on was a folder, then the
    TreeView expands this folder and the contents are then displayed in the
    ListView, otherwise, it was a file and it is brought up in Microsoft
    Word. All this works great if I don't have the elements in the ListView
    widget set to be draggable. If they are set to be draggable, then I am
    finding that the DoubleClick event seems to get registered twice along
    with the ObjectDrop event. This is not good because if I double click
    and the current node is a folder, then it will expand this folder in the
    TreeView, display the contents in the ListView, grab the node that is
    now displayed where that node used to be displayed and run the events
    for that as well. What this means, is that if this is a file, then Word
    is just launched and no big deal. Unfortunately, if this happens to be
    another directory, then the previous directory is dropped into this
    current directory and a recursive copy gets performed, giving me one
    heck of a deep directory tree for that folder.
    Has anybody else seen this, or am I the only lucky one to experience.
    If need be, I do have this exported in a .pex file if anybody needs to
    look at it more closely.
    Thanks in advance.
    Michael Stokesbary
    Software Engineer
    GTE Government Systems Corporation
    tel: (650) 966-2975
    e-mail: [email protected]

    here is the required code....
    private static class TreeDragGestureListener implements DragGestureListener {
         public void dragGestureRecognized(DragGestureEvent dragGestureEvent) {
         // Can only drag leafs
         JTree tree = (JTree) dragGestureEvent.getComponent();
         TreePath path = tree.getSelectionPath();
         if (path == null) {
              // Nothing selected, nothing to drag
              System.out.println("Nothing selected - beep");
              tree.getToolkit().beep();
         } else {
              DefaultMutableTreeNode selection = (DefaultMutableTreeNode) path
                   .getLastPathComponent();
              if (selection.isLeaf()) {
              TransferableTreeNode node = new TransferableTreeNode(
                   selection);
              dragGestureEvent.startDrag(DragSource.DefaultCopyDrop,
                   node, new MyDragSourceListener());
              } else {
              System.out.println("Not a leaf - beep");
              tree.getToolkit().beep();
    }

  • Problem with java, ASCII and Linux

    Hi Friends,
    I has a Linux RedHat 9.0 with a jre1.5.0_04 (rpm package of Sun).
    I has a problem with ASCII , for example :
    import java.io.*;
    public class HolaMundo
    public static void main (String[] args)
    System.out.println("Hol� M�ndo");
    this programs runs ok on my windows jdk so it prints "Hol� M�ndo", but when i run the same HolaMundo.class program on my linux redhat it prints "Hol�� M��ndo"
    I think the problem is with the ASCII table that uses the linux version of jre, but i dont know how to solve this problem. I need a Spanish-European ASCII table on my application but i think it is working with a US-ASCII table.
    Then i has installed a kaffe 1.0 (rpm) java machie on this linux and this solve the problem but i has another problems of compatibility with this old version of java kaffe.
    Do you know whats happening?
    Thanks in advance.

    The problem doesn't have to do anything with Java or Linux as far as i can see. It's more likely a problem with Windows XP and IE. Be assured that normally downloading the Linux JDK in windows is not a problem.

  • Another problem with SOAP sender

    I have another problem with SOAP scenario in a different environment (PI 7.0) from my earlier post.
    Scenario:
    Soap Sender -> PI -> Soap Receiver
    Following steps from GoogleSearch SOAP scenario in the SAP How-to Guide for SAP NetWeaver '04 entitled: "How To... Use the XI 3.0 SOAP Adapter" version 1.00 - March 2006.
    I have loaded in the api.google.com/GoogleSearch.wsdl file as an External definition and created the SOAP receiver as described in the How-to guide.  It takes a doGoogleSearch as input and sends back a doGoogleSearchResponse (Sync Call). 
    Note that the GoogleSearch.wsdl contains a complex type ResultElementArray that refers to ResultElement\[\], and a DirectoryCategoryArray that refers to DirectoryCategory\[\].  The ResultElement and DirectoryCategory types are defined in the GoogleSearch.wsdl file.
    Problem One:
    The generated WSDL for the SOAP sender contains the ResultElementArray and DirectoryCategoryArray types but it DOES NOT contain the required ResultElement and DirectoryCategory types.  XML Spy complains that this WSDL is not valid because the type ResultElement\[\] is not defined.
    Problem Two:
    I generate a SOAP message in XML Spy, provide values for the doGoogleSearch fields, and send.  In SXMB_MONI, the SOAP sender payload contains only the <key> value from the doGoogleSearch message body, i.e. <part name="key" type="xsd:string" />
    The other doGoogleSearch fields seem to be missing, i.e.
      <part name="q" type="xsd:string" />
      <part name="start" type="xsd:int" />
      <part name="maxResults" type="xsd:int" />
      <part name="filter" type="xsd:boolean" />
      <part name="restrict" type="xsd:string" />
      <part name="safeSearch" type="xsd:boolean" />
      <part name="lr" type="xsd:string" />
      <part name="ie" type="xsd:string" />
      <part name="oe" type="xsd:string" />
    Does anyone know why:
    (1) PI/XI seems to leave out the ResultElement and DirectoryCategory types from the SOAP sender service WSDL file?
    (2) The doGoogleSearch message seen in SXMB_MONI contains only the first <key> field, and not the other fields?
    Thanks for any help with this.

    I have another problem with SOAP scenario in a different environment (PI 7.0) from my earlier post.
    Scenario:
    Soap Sender -> PI -> Soap Receiver
    Following steps from GoogleSearch SOAP scenario in the SAP How-to Guide for SAP NetWeaver '04 entitled: "How To... Use the XI 3.0 SOAP Adapter" version 1.00 - March 2006.
    I have loaded in the api.google.com/GoogleSearch.wsdl file as an External definition and created the SOAP receiver as described in the How-to guide.  It takes a doGoogleSearch as input and sends back a doGoogleSearchResponse (Sync Call). 
    Note that the GoogleSearch.wsdl contains a complex type ResultElementArray that refers to ResultElement\[\], and a DirectoryCategoryArray that refers to DirectoryCategory\[\].  The ResultElement and DirectoryCategory types are defined in the GoogleSearch.wsdl file.
    Problem One:
    The generated WSDL for the SOAP sender contains the ResultElementArray and DirectoryCategoryArray types but it DOES NOT contain the required ResultElement and DirectoryCategory types.  XML Spy complains that this WSDL is not valid because the type ResultElement\[\] is not defined.
    Problem Two:
    I generate a SOAP message in XML Spy, provide values for the doGoogleSearch fields, and send.  In SXMB_MONI, the SOAP sender payload contains only the <key> value from the doGoogleSearch message body, i.e. <part name="key" type="xsd:string" />
    The other doGoogleSearch fields seem to be missing, i.e.
      <part name="q" type="xsd:string" />
      <part name="start" type="xsd:int" />
      <part name="maxResults" type="xsd:int" />
      <part name="filter" type="xsd:boolean" />
      <part name="restrict" type="xsd:string" />
      <part name="safeSearch" type="xsd:boolean" />
      <part name="lr" type="xsd:string" />
      <part name="ie" type="xsd:string" />
      <part name="oe" type="xsd:string" />
    Does anyone know why:
    (1) PI/XI seems to leave out the ResultElement and DirectoryCategory types from the SOAP sender service WSDL file?
    (2) The doGoogleSearch message seen in SXMB_MONI contains only the first <key> field, and not the other fields?
    Thanks for any help with this.

  • I have a problem with my motherboard and my battery of my 2010 macbook pro 13". It was just serviced with a new screen, keyboard, and logic board.

    I have a problem with my motherboard and my battery of my 2010 macbook pro 13". It was just serviced with a new screen, keyboard, and logic board. How much will a new battery and motherboard cost and would it be worth it or should I just get a new computer. It was about 300 dollars to get it serviced last week. if it adds up to much past 600 dollars I will just get a new one. THANKS FOR ANY HELP!
    P.S During classes today it began beeping in my bag. Like three kind of long steady beeps then a short pause, and when I opened it I couldn't see anything but it was on so I turned it off and back on.

    Depends on what options your Apple store offers - if they can do a depot repair (where they send it out), that's around $300 for all parts & labor.
    If the store doesn't have that option, a logicboard is around $600, battery $80-$100, from what I've seen.
    If they JUST replaced the logicboard, you absolutely should NOT have to pay for another replacement - the replacement is covered by a warranty. If they want you to pay for it, make sure you have a copy of the receipt for the work that was recently completed so you can show it to them. They have no reason to charge you for another logicboard.
    ~Lyssa

  • I am using iPhoto 11 and my library has 736.5mb on disk. I have problems with iPhoto stalling and needing to force quit. I have rebuilt my library. Can you suggest anything else?

    I am using iPhoto 11 and my library has 736.5mb on disk. I have problems with iPhoto stalling and needing to force quit. I have rebuilt my library. Can you suggest anything else? Thanks, Rose

    Make a temporary, backup copy (if you don't already have a backup copy) of the library and try the following:
    1 - delete the iPhoto preference file, com.apple.iPhoto.plist, that resides in your
         User/Home()/Library/ Preferences folder.
    2 - delete iPhoto's cache file, Cache.db, that is located in your
         User/Home()/Library/Caches/com.apple.iPhoto folder. 
    Click to view full size
    3 - launch iPhoto and try again.
    NOTE: If you're moved your library from its default location in your Home/Pictures folder you will have to point iPhoto to its new location when you next open iPhoto by holding down the Option key when launching iPhoto.  You'll also have to reset the iPhoto's various preferences.
    NOTE 2:  In Lion and Mountain Lion the Library folder is now invisible. To make it permanently visible enter the following in the Terminal application window: chflags nohidden ~/Library and hit the Enter button - 10.7: Un-hide the User Library folder.
    If that does'nt help log into another user account on your Mac and try iPhoto from there. 

  • Problem with InDesing hiding and other programs can not be opened on screen at the same time.

    I have just installed InDesign on my Mac today. When opened it takes up all the screen and then when I try to open any other programs like a browser, it hides. I would like to make the InDesign window smaller, so I can follow instructions from a website, but the minimize window size buttons are not showing up at all. Any idea how I can fix the InDesing window size and show it along with the browser? Also how to detach it from Finder bar on the top of my screen?

    Hi Guys,
    Thank you so much for all your help. I was now able to fix it. It was after all the problem with the application frame being Off by dafout. It was showing up, but taking my whole descktop. Now when I followed your advice and checket it on under "Window" , it become much smaller and I am not able to resize it and the buttons to minimize or close it are now showing up (they were invisible before). Thank you so much to all of you who have helped me here.
    If I may have one more question, I have enocuntered another problem with using this Trial version of inDesign. When I wanted to access Bridge from the Bridge icon inside the program, I got an message that I need to download it from Creative Clowd. I found it strange since I have Photoshop CS6 and Brigge is part of this program, so I don't want to pay for it via Clowd service.
    I was able to open Bridge by just clicking on the program from my software launch screen, so it is now working along InDesign, but I wanted it to be part of the InDesign workspcace, so it would show along the program frame on the right of InDesign window and then could be attached there and moved along with it. In such set up I won't need to move each program frame separatelly when they are in my way while I work.  I wonder if it could be fixed and how. Any ideas? I would appreciate very much your reply.

  • Problem with iTunes Match and the song "This will be (an everlasting love)" from Natalie Cole

    Hello,
    I'd like to report a problem with iTunes Match and Natalie Cole's song "This will be (an everlasting love)".
    When I stream it or download it on another device I don't get Natalie Cole's song but another one from Maxine Nightingale (Right back where we started from).
    Please tell me if you have the same problem or how I can report this problem to apple.
    Thank you.

    Hi,
    This is a user to user forum - not Apple. Contact them http://www.apple.com/support/itunes/contact/
    Alternatively if the song was purchased from iTunes, you may be able to report the problem by signing into you iTunes account on your computer. Report an problem with an item you bought from the iTunes Store, App Store, Mac App Store, or iBooks Store
    JIm

  • Hi everyone,I have an Iphone 4S,when I updated iOS 7 my phone got slow,so please help me how to downgrade it to 6.1.3 or 6.1.3,I have another problem with iOS 7,I cant request my credit balancing,when i type *101

    Hi everyone,I have an Iphone 4S,when I updated iOS 7 my phone got slow,so please help me how to downgrade it to 6.1.3 or 6.1.3,I have another problem with iOS 7,I cant request my credit balancing,when i type *101# automatically calls and says "this number dows not excits",I wnat iOS 6.1.2 back ..

    sorry for my bad english ..

  • HP Probook 6540b problem with fan speed and sound card

    Hi.
    Sorry for my English.
    I have installed Arch 32bit on probook 6540b (it has core i5 processor).  Cpufrequtils works well - with governor set on ondemand frequency is adjusting correctly but  fun is running max speed all the time. I have tried to configure lm_sensors but it doesn`t detect any sensors.  Also fun folder in acpi is empty.  It would be great if You could help me.
    Thanks for any advice.
    ...ergh
    Fan sometimes works slow so maybe its overheating problem.
    But
    I have another problem with sound on this laptop. I have  IDT 92HD75B3X5 sound chip and snd-hda-intel module loaded for it but it doesn`t make any sound. In Amarok it looks like something is playing because progress bar is moving. I have tried everything from arch wiki and other sources but nothing works. Maybe You can help?
    Thanks
    Last edited by zennon (2010-08-22 08:57:07)

    Hi. Yes. I also tried all tricks with model etc. and nothing. Now I have installed oss and have some progress. I have sound on pcm2 when I run osstest, no sound on pcm1 (but it looks in test like it plays something) and input/output errors from pcm3 to pcm7. I have oss output in multimedia in kde and when I run test I can see moving strips or something (I dont know the word for it ) in ossxmix but I hear nothing. I I tried all configurations in ossxmix and nothing.
    Last edited by zennon (2010-08-23 12:37:23)

Maybe you are looking for

  • Workflow performance is getting slow down

    The workflow performance is getting affected due to massive growth in number of records in workflow tables. Due to this users are facing problem in opening and sorting notification. we have to delete or purge this records. concurerrent programs like

  • Impacts in COPA of changing material and customer master data

    Dear experts, In my company we are considering following scenario: Currently mySAPerp 6.0 is implemented for all modules for the mother company. We have developed a new global template where there are significant changes versus the existing system, e

  • Co-pa and cost center with different profit centers?

    I have a requirement to post (from fb50) to: 1) True posting: A profitability segment with profit center XXX 2) Statistical posting: A cost center assignet to profit center YYY I enter values in cost center, profit center and Prof.segm., but as soon

  • Yosemite Reinstall --- Failure --- Please Help!!

    Hello, please help me. Just don't know what to do now. Just had an Driver-Update-Crash due letting installing and auto-reboot two drivers (RME AudioDriver and Airdisplay2 Driver) and suddenly my MacBook Pro (Mid2012) didn't passed the grey startup sc

  • Full Backups, Level 0 Backups, and Archived Logs

    We have an active Oracle server and a standby Oracle server. We keep the standby database up to date with a cron script. The script tells the active database to do 'alter system switch logfile;'. We then rsync the archived logs to our standby server