Once again File

When one taps the File menu he sees New and New form Template Chooser at the top. Whichever one chooses he gets presented with Template Chooser anyway. My Q is why IWork 09 still has both options on its File menu?

Because you have the choice in +Menu > Pages > Preferences > New > preselected Template+
Peter

Similar Messages

  • Once again, File Tree refreshing

    Ok, so I created my own implementation of a JTree to display a file system. Works fine and everything, but I want it to update in a regular interval.
    Right now my own model extends TreeModel and I put a class containing the file object as custom data in DefaultMutableTree objects.
    Now I tried all kinds of things like reload(), nodeStructureChanged() and similar stuff, but I can't get it to update.
    Here's my current code:
    FileTreeModel:
    public class FileTreeModel extends DefaultTreeModel {
        private ArrayList treeModelListeners = new ArrayList();
        private DefaultMutableTreeNode rootFile;
        public FileTreeModel(DefaultMutableTreeNode root) {
             super(root);
            rootFile= root;
    //////////////// Fire events //////////////////////////////////////////////
         * The only event raised by this model is TreeStructureChanged with the
         * root as path, i.e. the whole tree has changed.
        protected void fireTreeStructureChanged(DefaultMutableTreeNode oldRoot) {
            int len = treeModelListeners.size();
            TreeModelEvent e = new TreeModelEvent(this,
                                                  new Object[] {oldRoot});
            for (int i = 0; i < len; i++) {
                ((TreeModelListener)treeModelListeners.get(i)).
                        treeStructureChanged(e);
    //////////////// TreeModel interface implementation ///////////////////////
         * Adds a listener for the TreeModelEvent posted after the tree changes.
        @SuppressWarnings("unchecked")
         public void addTreeModelListener(TreeModelListener l) {
            treeModelListeners.add(l);
         * Returns the child of parent at index index in the parent's child array.
        public Object getChild(Object parent, int index) {
             if(((DefaultMutableTreeNode)parent).getUserObject() instanceof String){
                   return ((DefaultMutableTreeNode)parent).getChildAt(index);
             FileNode[] files=getOrderedList((FileNode)((DefaultMutableTreeNode)parent).getUserObject());
             if(files.length>index){
                   return new DefaultMutableTreeNode(files[index]);
              return null;
         public int getChildCount(Object parent) {
              //if root
              if(((DefaultMutableTreeNode)parent).getUserObject() instanceof String){
                   return ((DefaultMutableTreeNode)parent).getChildCount();
              FileNode[] files=getOrderedList((FileNode)((DefaultMutableTreeNode)parent).getUserObject());
              if(files!=null){
                   return files.length;
              return 0;               
         public boolean isLeaf(Object FileNode) {
              if(((DefaultMutableTreeNode)FileNode).getUserObject() instanceof String){
                   return false;
              }else{
                   FileNode f=(FileNode)((DefaultMutableTreeNode)FileNode).getUserObject();
                   return f.get().isFile();
         * Returns the index of child in parent.
        public int getIndexOfChild(Object parent, Object child) {
             FileNode[] files=getOrderedList((FileNode)((DefaultMutableTreeNode)parent).getUserObject());
            if(files!=null){
                 for(int i=0;i<files.length;i++){
                      if(files.equals((FileNode)((DefaultMutableTreeNode)child).getUserObject())){
                   return i;
    return -1;
    * Returns the root of the tree.
    public Object getRoot() {
    return rootFile;
    * Removes a listener previously added with addTreeModelListener().
    public void removeTreeModelListener(TreeModelListener l) {
    treeModelListeners.remove(l);
    * Messaged when the user has altered the value for the item
    * identified by path to newValue. Not used for now.
    public void valueForPathChanged(TreePath path, Object newValue) {
    System.out.println("*** valueForPathChanged : "
    + path + " --> " + newValue);
    //get ordered list, so that dirs appear first
    public FileNode[] getOrderedList(FileNode f){
         if(f!=null){
              File[] fc=f.get().listFiles();
              if(fc!=null){
                   ArrayList<FileNode> fchildren=new ArrayList<FileNode>();
                   //Implementation of manual file filter is required because of special
                   //folders, atleast in windows
                   for(int i=0;i<fc.length;i++){
                        if(fc[i].isDirectory()){/!fc[i].getName().equals(FileSystemView.getFileSystemView().getSystemDisplayName(fc[i]))){
                             fchildren.add(new FileNode(fc[i]));
                             continue;
                   String extension = Utils.getExtension(fc[i]);
              if (extension != null) {
              if (extension.equals(Utils.alb)) {
                   fchildren.add(new FileNode(fc[i]));
                   FileNode[] fret=new FileNode[fchildren.size()];
                   int pos=0;
                   for(int i=0;i<fret.length;i++){
                        if(((FileNode)fchildren.get(i)).get().isDirectory()){
                             fret[pos]=((FileNode)fchildren.get(i));
                             pos++;
                   for(int i=0;i<fret.length;i++){
                        if(!((FileNode)fchildren.get(i)).get().isDirectory()){
                             fret[pos]=((FileNode)fchildren.get(i));
                             pos++;
                   return fret;
         return null;
    JFileTree:
    public class JFileTree extends JTree {
        public JFileTree() {         
            getSelectionModel().setSelectionMode(
                    TreeSelectionModel.SINGLE_TREE_SELECTION);
            DefaultTreeCellRenderer renderer = new DefaultTreeCellRenderer();
            setCellRenderer(renderer);
        }and FileNode:
    //slightly modified to return filename instead of path in tostring() to fit into trees
    public class FileNode{
         private File f;
         public FileNode(File file) {
              f=file;
         public String toString(){
              return FileSystemView.getFileSystemView().getSystemDisplayName(f);
         public File get() {
              return f;
         public void set(File f) {
              this.f = f;
    }I searched quite a bit in these forums but only found places where it said to use reload or one of the functions to insert nodes or so which isn't applicable in the case of a file system.
    I could really need some help here, as I have been messing around for quite some time but couldn't get it working properly.
    Does anyone know of a complete and proper implemented FileTree? The sun examples act a bit different, and the other examples I could find weren't complete in the aspect of refreshing the contents.
    Message was edited by:
    Fragman
    Message was edited by:
    Fragman

    I searched quite a bit in these forums...Well you should probably be searching the Swing forums where Swing related questions should be posted.
    I don't know much about using JTree, but I see no reason to create a custom TreeModel. Use the DefaultTreeModel. It handles parent/child relationships which is all a directory structure is.
    In either case start with a simple example. That is hard code two different tree structures and then have a button to toggle the tree model. Once you understand how that works then you move on a more dynamic structure.
    The code you posted doesn't help use since it is not compileable or executable.
    If you need further help then you need to create a [url http://homepage1.nifty.com/algafield/sscce.html]Short, Self Contained, Compilable and Executable, Example Program that demonstrates the incorrect behaviour, because I can't guess exactly what you are doing based on the information provided.
    And don't forget to use the [url http://forum.java.sun.com/help.jspa?sec=formatting]Code Formatting Tags so the code retains its original formatting.

  • How to transfer the file once again from save folder to main directory .

    Hello friends ,
    By mistakenly i have executed wrong job and the file has been moved from Al11 directory to save folder.
    I wanted to have the same file once again in the main directory . can u plz tell me how to do this ?
    Regards

    You can use "infospoke" to save file in the Application server(AL11).
    Also give the T.code AL11 and click on the tab "Configure" to create file on the Application server.
    Edited by: Rohan Kumar on Jan 16, 2008 11:20 AM

  • Where is the bookmarks stored? I Install the Firefox once again since I upgrade my computer.Is there any folder just like "favourite"to store the html file? I really want to find out the bookmarks because actually i can't remember all the website that ar

    Where is the bookmarks stored?
    I Install the Firefox once again since I upgrade my computer.
    And I try to move the bookmarks from the old computer to the new one.
    But I can't find anyone of them.
    Is there any folder just like "favourite" to store the html file?
    I really want to find out the bookmarks because actually i can't remember all the website that are important to me~ URGENT!!!~THANKS~

    You can move file named places.sqlite from your old profile to the new one. It contains bookmarks and browsing history.
    Here's a knowledge base article about it: [[Recovering important data from an old profile]]
    If you don't care about saving your current bookmarks, you can skip creating new profile (Firefox does it by itself at first run anyway).
    I'd might suggest you to install addon https://addons.mozilla.org/en-US/firefox/addon/2410/|Xmarks Bookmark and Password Sync]. It is a free web service which synchronizes bookmarks and (optionally) passwords with central server, and then to other computers, if you installed it on more. You may treat is as a backup too.

  • I am on windows 7 and I upgraded to 10.0.2 and now it will not open. I have removed firefox completely and uploaded it again and that did not work. So my latest attempt I removed firefox 10 again and uploaded the beta version and once again nothing.

    I am on windows 7 and I upgraded to the newest verison of firefox and now it will not open. I have removed firefox completely and uploaded it again and that did not work. I then made sure it could get through my firewall and that did not work. So my latest attempt I removed firefox 10 again and uploaded the beta version hoping that would do it and once again nothing. It will not open at all. Please help - is there a live chat or a number to talk to someone at Firefox?

    I think when uninstalling you may also have to choose (tick) to delete the preferences and other personal data like the bookmarks, stored passwords etc. to erase completely. If you are installing afresh, please try right-clicking on the file and '''Run as administrator''' to install. And when uninstalling, please also make sure choose to delete all data and also manually delete any '''Mozilla''', '''Mozilla Firefox''' or '''Firefox''' from %appdata%, %localappdata% and %programfiles%. You can open a location by typing for eg. %appdata% in the '''Run''' box (Windows key + R). You may also have to check the '''VirtualStore''' folder in %localappdata%. Files in the VirtualStore can be problematic. I think a clean installation may help.
    [https://www.mozilla.org/en-US/firefox/new/ Firefox]
    [http://kb.mozillazine.org/Installation_directory Installation Folder]
    [http://kb.mozillazine.org/Profile_folder Profile Folder]
    Please note that using system restore would usually damage the Firefox installation.

  • Every time I update LR to a new version I seem to need a patch to make it work..... once again here I am SOS! I've just update LR to the 5.7 version and It wont let me start it: The application was unable to start correctly (0xc000007b).

    Every time I update LR to a new version I seem to need a patch to make it work..... once again here I am SOS! I've just update LR to the 5.7 version and It wont let me start it: The application was unable to start correctly (0xc000007b).

    Your system is missing a couple DLLs that LR needs, but the fix at Adobe is to copy them to the LR folder which gets replaced for each install, so you have to redo it after each LR install.  It would be worth documenting the process and saving the DLLs so you don’t have to ask about it each time:
    http://helpx.adobe.com/lightroom/kb/error-unable-start-correctly-0xc00007b.html
    You might also use the AIO210 program to add them as detailed in this YouTube video—maybe this is a more permanent fix, but since the files are from media-fire be very careful about what you do so as not to install a virus on your computer. 
    I’d scan the downloaded ZIP you download with whatever virus and internet security software you have and don’t be fooled by extraneous popups you might see during the download process.  I was able to download the aio210.zip after authorizing one Captcha window and closed at least one bogus popup trying to get me to install other software.  I also scanned the downloaded zip with two virus scanners and both said it was clean.  Here is the YouTube video, where the link to the ZIP to download is in the description once you expand it:
    https://www.youtube.com/watch?v=vlT0N2CX50g

  • I tried upgrading to MountaIN lION HOWEVER i WASNT ABLE TO Install.  I then tried reinstallling Snow leopard but once again it will not let me install stating there are errors on the disc.  I have run disc repair on disc utility but it wont allow me

    I was told to reinstall Snow leopard which I did .  More troubles! It then came up cannot iinstall as there are errors.  Tried going into disc utilities and repair but once again it stated iin red I cannot proceed.  can anyone help me here.  Before this was happening my system was slowing right down with the beach ball making an apearance after tapping the mouse or typing text.

    So you are trying to reinstall Snow Leopard?
    In order to do that, you need to erase your hard drive - you cannot go back to an earlier system without erasing. Make sure you back up your files first. Then insert the Snow Leopard install disk, and restart while holding down the C key. If that does not work, insert the install disk, go to System Preferences > Startup Disk and highlight the install disk > click on restart.
    Once you are booted into the install disk, go past the language selection and then to Utilities in the menu bar. Use Disk Utility to repair the drive (just in case), erase it and then install. After that, eject the disk and update to the latest 10.6.8.

  • If I am browsing on site such as Ebay or any shopping site, and click on an item, when I return to the search page I am once again at the top of the page and have to search down for where I was in the list of items.

    If I am browsing on site such as Ebay or any shopping site and click on an item, when I return to the search page I am once again at the top of the page and have to search down for where I was in the list of items. This is not only on Ebay it is everywhere I search. Firefox goes back to the top of the page . It is annoying to have to figure out exactly where I was if I left the page and then returned. This is a hinderance when using Firefox. I have considered uninstalling it because of the inconvenience of 're-searching' after already doing a search. Firefox used to take me right back to where I was if I left a page, but that feature is not working now. I am not sure how to change this in the settings.

    Open the Finder. From the Finder menu bar click Go > Go to Folder
    Type or copy paste the following:
    ~/Library/Caches/com.apple.Safari/Cache.db
    Click Go then move the Cache.db file to the Trash.
    Quit and relaunch Safari to test.

  • UDS 4.0 once again: Could not add "DB11.DBB6" to the response list.

    Hi,
    once again we have heavy trouble with UDS 4.0 connecting to a SINUMERIK OPC server.
    Unfortunately the OPC server does not support browsing. GroupList and TagList returns nothing.
    The facts:
    - MII 12 on Windows Server 2003
    - UDS 4.0 SP1 on  same server.
    - OPC connectivity has been tested with Matrikon Explorer. Tag has been added manually (remember, browsing not possible).
    - Creating UDS instance works. UDS can see remote OPC server and is able to create an instance from it.
    - Data server has been created in MII 12 to connect to UDS.
    - Connection status to UDS is ok. Can also be seen as Debug file shows query details.
    - TagQuery has been created with adding the tag manually (browsing not possible).
    When we try to test the query we always get the error message
    Could not add "DB11.DBB6" to the response list.
    and
    No Tag selected
    The strange thing ist that, if we use a non existing tag like "test123" then the same error occurrs instead of "No valid tags  requested".
    Here you can find the debug file of UDS:
    [05/14/2008-10:56:18.889] focketest [P:4000, T:2212,      Host,    INFO] 0x11201     Host is exiting.     [Host.cpp @ 338, CHostModule::RunMessageLoop] 
    [05/14/2008-10:56:19.030] focketest [P:4000, T:2556,       UDS,    INFO] 0x2028     Disconnected from the server.     [Connection.cpp @ 2224, CLHOpcDaConnection::Unload] 
    [05/14/2008-10:56:40.341] focketest [P:2532, T:1236,      Host,  SYSTEM] 0x11400     Command Line: "C:\Programme\SAP\xMII\UDS\xMIIUDSHost.exe" test.     [Host.cpp @ 433, CHostModule::LogConfig] 
    [05/14/2008-10:56:40.341] focketest [P:2532, T:1236,      Host,  SYSTEM] 0x11405     Host Build Configuration: Release.     [Host.cpp @ 436, CHostModule::LogConfig] 
    [05/14/2008-10:56:40.341] focketest [P:2532, T:1236,      Host,  SYSTEM] 0x11406     Host Build Date: Dec 11 2007.     [Host.cpp @ 437, CHostModule::LogConfig] 
    [05/14/2008-10:56:40.341] focketest [P:2532, T:1236,      Host,  SYSTEM] 0x11407     Host Description: xMII UDS Host.     [Host.cpp @ 438, CHostModule::LogConfig] 
    [05/14/2008-10:56:40.341] focketest [P:2532, T:1236,      Host,  SYSTEM] 0x11408     Host File: xMIIUDSHost.exe.     [Host.cpp @ 439, CHostModule::LogConfig] 
    [05/14/2008-10:56:40.341] focketest [P:2532, T:1236,      Host,  SYSTEM] 0x11409     Host Version: 4.0.3.10.     [Host.cpp @ 440, CHostModule::LogConfig] 
    [05/14/2008-10:56:40.341] focketest [P:2532, T:1236,      Host,  SYSTEM] 0x11401     Found Aspect: OPC-DA.     [Host.cpp @ 468, CHostModule::LogConfig] 
    [05/14/2008-10:56:40.341] focketest [P:2532, T:1236,      Host,  SYSTEM] 0x11402       Found Parameter: Include Quality = No.     [Host.cpp @ 487, CHostModule::LogConfig] 
    [05/14/2008-10:56:40.341] focketest [P:2532, T:1236,      Host,  SYSTEM] 0x11402       Found Parameter: Acquisition Mode = Synchronous.     [Host.cpp @ 487, CHostModule::LogConfig] 
    [05/14/2008-10:56:40.341] focketest [P:2532, T:1236,      Host,  SYSTEM] 0x11402       Found Parameter: Read From Device = true.     [Host.cpp @ 487, CHostModule::LogConfig] 
    [05/14/2008-10:56:40.341] focketest [P:2532, T:1236,      Host,  SYSTEM] 0x11402       Found Parameter: Read Delay = 100.     [Host.cpp @ 487, CHostModule::LogConfig] 
    [05/14/2008-10:56:40.341] focketest [P:2532, T:1236,      Host,  SYSTEM] 0x11402       Found Parameter: Force flat namespace = false.     [Host.cpp @ 487, CHostModule::LogConfig] 
    [05/14/2008-10:56:40.341] focketest [P:2532, T:1236,      Host,  SYSTEM] 0x11402       Found Parameter: Automatically Reconnect = true.     [Host.cpp @ 487, CHostModule::LogConfig] 
    [05/14/2008-10:56:40.341] focketest [P:2532, T:1236,      Host,  SYSTEM] 0x11402       Found Parameter: OPC Group Number = 1234.     [Host.cpp @ 487, CHostModule::LogConfig] 
    [05/14/2008-10:56:40.341] focketest [P:2532, T:1236,      Host,  SYSTEM] 0x11402       Found Parameter: OPC Group Name = LHDS_OPCGROUP.     [Host.cpp @ 487, CHostModule::LogConfig] 
    [05/14/2008-10:56:40.341] focketest [P:2532, T:1236,      Host,  SYSTEM] 0x11402       Found Parameter: Acceptable Data Quality = Good.     [Host.cpp @ 487, CHostModule::LogConfig] 
    [05/14/2008-10:56:40.341] focketest [P:2532, T:1236,      Host,  SYSTEM] 0x11402       Found Parameter: Startup Delay = 1000.     [Host.cpp @ 487, CHostModule::LogConfig] 
    [05/14/2008-10:56:40.356] focketest [P:2532, T:1236,      Host,  SYSTEM] 0x11402       Found Parameter: Use Legacy Tag Format = false.     [Host.cpp @ 487, CHostModule::LogConfig] 
    [05/14/2008-10:56:40.356] focketest [P:2532, T:1236,      Host,  SYSTEM] 0x11402       Found Parameter: Legacy Delimiter = ..     [Host.cpp @ 487, CHostModule::LogConfig] 
    [05/14/2008-10:56:40.356] focketest [P:2532, T:1236,      Host,  SYSTEM] 0x11402       Found Parameter: Activate Items = Both.     [Host.cpp @ 487, CHostModule::LogConfig] 
    [05/14/2008-10:56:40.356] focketest [P:2532, T:1236,      Host,  SYSTEM] 0x11402       Found Parameter: Group Update Rate = 0.     [Host.cpp @ 487, CHostModule::LogConfig] 
    [05/14/2008-10:56:40.356] focketest [P:2532, T:1236,      Host,  SYSTEM] 0x11402       Found Parameter: OPC Server = 192.168.0.1; OPC.SINUMERIK.Machineswitch; OPC DA2.     [Host.cpp @ 487, CHostModule::LogConfig] 
    [05/14/2008-10:56:40.356] focketest [P:2532, T:1236,      Host,  SYSTEM] 0x11401     Found Aspect: Cache.     [Host.cpp @ 468, CHostModule::LogConfig] 
    [05/14/2008-10:56:40.356] focketest [P:2532, T:1236,      Host,  SYSTEM] 0x11402       Found Parameter: Mode = Cache with Dynamic Metadata.     [Host.cpp @ 487, CHostModule::LogConfig] 
    [05/14/2008-10:56:40.356] focketest [P:2532, T:1236,      Host,  SYSTEM] 0x11402       Found Parameter: Mask = .     [Host.cpp @ 487, CHostModule::LogConfig] 
    [05/14/2008-10:56:40.356] focketest [P:2532, T:1236,      Host,  SYSTEM] 0x11401     Found Aspect: Host.     [Host.cpp @ 468, CHostModule::LogConfig] 
    [05/14/2008-10:56:40.356] focketest [P:2532, T:1236,      Host,  SYSTEM] 0x11402       Found Parameter: Pool Size = 5.     [Host.cpp @ 487, CHostModule::LogConfig] 
    [05/14/2008-10:56:40.356] focketest [P:2532, T:1236,      Host,  SYSTEM] 0x11402       Found Parameter: Runtime Mode = Service.     [Host.cpp @ 487, CHostModule::LogConfig] 
    [05/14/2008-10:56:40.356] focketest [P:2532, T:1236,      Host,  SYSTEM] 0x11402       Found Parameter: Threading Model = MTA.     [Host.cpp @ 487, CHostModule::LogConfig] 
    [05/14/2008-10:56:40.356] focketest [P:2532, T:1236,      Host,  SYSTEM] 0x11402       Found Parameter: Stack Size = 0.     [Host.cpp @ 487, CHostModule::LogConfig] 
    [05/14/2008-10:56:40.356] focketest [P:2532, T:1236,      Host,  SYSTEM] 0x11402       Found Parameter: Collect Requests = false.     [Host.cpp @ 487, CHostModule::LogConfig] 
    [05/14/2008-10:56:40.356] focketest [P:2532, T:1236,      Host,  SYSTEM] 0x11402       Found Parameter: Shutdown Timeout = 10.     [Host.cpp @ 487, CHostModule::LogConfig] 
    [05/14/2008-10:56:40.356] focketest [P:2532, T:1236,      Host,  SYSTEM] 0x11402       Found Parameter: Use IOCP = true.     [Host.cpp @ 487, CHostModule::LogConfig] 
    [05/14/2008-10:56:40.356] focketest [P:2532, T:1236,      Host,  SYSTEM] 0x11402       Found Parameter: Service Startup = Manual.     [Host.cpp @ 487, CHostModule::LogConfig] 
    [05/14/2008-10:56:40.356] focketest [P:2532, T:1236,      Host,  SYSTEM] 0x11402       Found Parameter: Service Dependencies = Eventlog.     [Host.cpp @ 487, CHostModule::LogConfig] 
    [05/14/2008-10:56:40.356] focketest [P:2532, T:1236,      Host,  SYSTEM] 0x11402       Found Parameter: Trusted Requesters = .     [Host.cpp @ 487, CHostModule::LogConfig] 
    [05/14/2008-10:56:40.356] focketest [P:2532, T:1236,      Host,  SYSTEM] 0x11402       Found Parameter: Maximum Concurrent Connections = 100.     [Host.cpp @ 487, CHostModule::LogConfig] 
    [05/14/2008-10:56:40.356] focketest [P:2532, T:1236,      Host,  SYSTEM] 0x11402       Found Parameter: Connection Wait Time = 5000.     [Host.cpp @ 487, CHostModule::LogConfig] 
    [05/14/2008-10:56:40.356] focketest [P:2532, T:1236,      Host,  SYSTEM] 0x11402       Found Parameter: Max Reconnect Sleep Time = 1000.     [Host.cpp @ 487, CHostModule::LogConfig] 
    [05/14/2008-10:56:40.356] focketest [P:2532, T:1236,      Host,  SYSTEM] 0x11402       Found Parameter: Auto-reconnect Attempts = 5.     [Host.cpp @ 487, CHostModule::LogConfig] 
    [05/14/2008-10:56:40.356] focketest [P:2532, T:1236,      Host,  SYSTEM] 0x11402       Found Parameter: Monitor Cycle = 15.     [Host.cpp @ 487, CHostModule::LogConfig] 
    [05/14/2008-10:56:40.356] focketest [P:2532, T:1236,      Host,  SYSTEM] 0x11402       Found Parameter: Port = 9000.     [Host.cpp @ 487, CHostModule::LogConfig] 
    [05/14/2008-10:56:40.356] focketest [P:2532, T:1236,      Host,  SYSTEM] 0x11402       Found Parameter: Service User = .\auduser.     [Host.cpp @ 487, CHostModule::LogConfig] 
    [05/14/2008-10:56:40.356] focketest [P:2532, T:1236,      Host,  SYSTEM] 0x11402       Found Parameter: Service Password = *****.     [Host.cpp @ 487, CHostModule::LogConfig] 
    [05/14/2008-10:56:40.356] focketest [P:2532, T:1236,      Host,  SYSTEM] 0x11402       Found Parameter: Log Level = Debug.     [Host.cpp @ 487, CHostModule::LogConfig] 
    [05/14/2008-10:56:40.356] focketest [P:2532, T:1236,      Host,  SYSTEM] 0x11401     Found Aspect: Logging.     [Host.cpp @ 468, CHostModule::LogConfig] 
    [05/14/2008-10:56:40.356] focketest [P:2532, T:1236,      Host,  SYSTEM] 0x11403     Operating System Version: Windows XP Professional (Build 2600) with Service Pack 2, Version (2.0), Components: Single User Terminal Services.     [Host.cpp @ 501, CHostModule::LogConfig] 
    [05/14/2008-10:56:40.356] focketest [P:2532, T:1236,      Host,  SYSTEM] 0x11411     Processor 0 Info - Speed: 1596 MHz, Name: Genuine Intel(R) CPU            2140  @ 1.60GHz, Identifier: x86 Family 6 Model 15 Stepping 2, Vendor: GenuineIntel.     [Host.cpp @ 548, CHostModule::LogConfig] 
    [05/14/2008-10:56:40.356] focketest [P:2532, T:1236,      Host,  SYSTEM] 0x11411     Processor 1 Info - Speed: 1596 MHz, Name: Genuine Intel(R) CPU            2140  @ 1.60GHz, Identifier: x86 Family 6 Model 15 Stepping 2, Vendor: GenuineIntel.     [Host.cpp @ 548, CHostModule::LogConfig] 
    [05/14/2008-10:56:40.356] focketest [P:2532, T:1236,      Host,  SYSTEM] 0x11412     Memory  Used 71% - Physical Used 294 of 1021 MB, Paged File 2896 of 3988 MB, Virtual Used 1996 of 2047 MB.     [Host.cpp @ 557, CHostModule::LogConfig] 
    [05/14/2008-10:56:40.356] focketest [P:2532, T:1236,      Host,   DEBUG] 0x14000     Creating the provider thread.     [DataServerThread.cpp @ 44, DataServerThread::Spawn] 
    [05/14/2008-10:56:40.356] focketest [P:2532, T:1236,      Host,   DEBUG] 0x14002     Spawning the thread.     [DataServerThread.cpp @ 53, DataServerThread::Spawn] 
    [05/14/2008-10:56:40.356] focketest [P:2532, T:1236,      Host,   DEBUG] 0x14003     Waiting for thread callback.     [DataServerThread.cpp @ 57, DataServerThread::Spawn] 
    [05/14/2008-10:56:40.356] focketest [P:2532, T:1492,      Host,   DEBUG] 0x14100     Provider thread has been created, and attempting to enter the xMIIOpcDaUDS.DataServer.1.     [DataServerThread.cpp @ 82, DataServerThread::SpawnServer] 
    [05/14/2008-10:56:40.372] focketest [P:2532, T:1492,      Host,   DEBUG] 0x14101     Initializing COM environment.     [DataServerThread.cpp @ 91, DataServerThread::SpawnServer] 
    [05/14/2008-10:56:40.372] focketest [P:2532, T:1492,      Host,   DEBUG] 0x14102     Creating the provider.     [DataServerThread.cpp @ 98, DataServerThread::SpawnServer] 
    [05/14/2008-10:56:40.387] focketest [P:2532, T:1492,      Host,   DEBUG] 0x14103     Creating the local configuration context object.     [DataServerThread.cpp @ 105, DataServerThread::SpawnServer] 
    [05/14/2008-10:56:40.387] focketest [P:2532, T:1492,      Host,   DEBUG] 0x14104     Initializing the provider.     [DataServerThread.cpp @ 109, DataServerThread::SpawnServer] 
    [05/14/2008-10:56:40.387] focketest [P:2532, T:1492,       UDS,   DEBUG] 0x2000     Got the self pointer.     [Connection.cpp @ 246, CLHOpcDaConnection::FinalInitialize] 
    [05/14/2008-10:56:40.387] focketest [P:2532, T:1492,       UDS,   DEBUG] 0x2001     Got the DCOM settings: machine = 192.168.0.1, progid = OPC.SINUMERIK.Machineswitch.     [Connection.cpp @ 252, CLHOpcDaConnection::FinalInitialize] 
    [05/14/2008-10:56:40.387] focketest [P:2532, T:1492,       UDS,   DEBUG] 0x2002     Got the OPC settings: group = 1234, client = LHDS_OPCGROUP, mode = SYNCHRONOUS.     [Connection.cpp @ 258, CLHOpcDaConnection::FinalInitialize] 
    [05/14/2008-10:56:40.387] focketest [P:2532, T:1492,       UDS,   DEBUG] 0x2003     Got the sleep time. {extra params}: {1000}     [Connection.cpp @ 270, CLHOpcDaConnection::FinalInitialize] 
    [05/14/2008-10:56:40.387] focketest [P:2532, T:1492,       UDS,   DEBUG] 0x2016     Checking the state of the connection.     [Connection.cpp @ 2032, CLHOpcDaConnection::Load] 
    [05/14/2008-10:56:40.387] focketest [P:2532, T:1492,       UDS,   DEBUG] 0x2017     Attempting to connect to the server.     [Connection.cpp @ 2036, CLHOpcDaConnection::Load] 
    [05/14/2008-10:56:40.450] focketest [P:2532, T:1492,       UDS,   DEBUG] 0x2018     Got the servers class id.     [Connection.cpp @ 2048, CLHOpcDaConnection::Load] 
    [05/14/2008-10:56:41.903] focketest [P:2532, T:1492,       UDS,   DEBUG] 0x201a     Advising on the servers events.     [Connection.cpp @ 2087, CLHOpcDaConnection::Load] 
    [05/14/2008-10:56:41.903] focketest [P:2532, T:1492,       UDS,   DEBUG] 0x201b     Adding the group.     [Connection.cpp @ 2096, CLHOpcDaConnection::Load] 
    [05/14/2008-10:56:41.903] focketest [P:2532, T:1492,       UDS,   DEBUG] 0x201c     Loading group data.     [Connection.cpp @ 2114, CLHOpcDaConnection::Load] 
    [05/14/2008-10:56:41.903] focketest [P:2532, T:1492,       UDS,   DEBUG] 0x201e     Adding all connection items.     [Connection.cpp @ 2143, CLHOpcDaConnection::Load] 
    [05/14/2008-10:56:41.903] focketest [P:2532, T:1492,       UDS,    INFO] 0x201f     Connected to the SINUMERIK OPC-Server DataAccess-V2.4.2.98  (C) Siemens AG (1998-2003) server.     [Connection.cpp @ 2154, CLHOpcDaConnection::Load] 
    [05/14/2008-10:56:41.950] focketest [P:2532, T:2696,       UDS,    INFO] 0x0     Initializing Browser.     [tagUtil/lhds2BrowseThread.h @ 127, lhds::BrowsingThread::DoBrowse] 
    [05/14/2008-10:56:41.950] focketest [P:2532, T:2696,       UDS,    INFO] 0x0     Reading Groups.     [tagUtil/lhds2BrowseThread.h @ 147, lhds::BrowsingThread::DoBrowse] 
    [05/14/2008-10:56:41.950] focketest [P:2532, T:2696,       UDS,    INFO] 0x0     Reading Items.     [tagUtil/lhds2BrowseThread.h @ 172, lhds::BrowsingThread::DoBrowse] 
    [05/14/2008-10:56:41.965] focketest [P:2532, T:2696,       UDS,    INFO] 0x0     Shutting Browser Down.     [tagUtil/lhds2BrowseThread.h @ 279, lhds::BrowsingThread::DoBrowse] 
    [05/14/2008-10:56:41.965] focketest [P:2532, T:2696,       UDS,    INFO] 0x0     Browsing Finnished.     [tagUtil/lhds2BrowseThread.h @ 303, lhds::BrowsingThread::DoBrowse] 
    [05/14/2008-10:56:41.997] focketest [P:2532, T:1492,       UDS,   DEBUG] 0x1003     Adding the modes.     [DataServer.cpp @ 80, CLHOpcDaDataServer::FinalInitialize] 
    [05/14/2008-10:56:42.012] focketest [P:2532, T:1492,       UDS,   DEBUG] 0x3000     Initializing the Current mode.     [basemode.h @ 59, OPCDABaseMode<class CLHOpcDaDSCurrent>::FinalTagModeInitialize] 
    [05/14/2008-10:56:42.012] focketest [P:2532, T:1492,       UDS,   DEBUG] 0x3001     Reading from the device? TRUE.     [basemode.h @ 67, OPCDABaseMode<class CLHOpcDaDSCurrent>::FinalTagModeInitialize] 
    [05/14/2008-10:56:42.012] focketest [P:2532, T:1492,       UDS,   DEBUG] 0x4001     Accessing using: SYNCHRONOUS.     [basemode.h @ 75, OPCDABaseMode<class CLHOpcDaDSCurrent>::FinalTagModeInitialize] 
    [05/14/2008-10:56:42.012] focketest [P:2532, T:1492,       UDS,   DEBUG] 0x4002     Delay time: 100.     [basemode.h @ 82, OPCDABaseMode<class CLHOpcDaDSCurrent>::FinalTagModeInitialize] 
    [05/14/2008-10:56:42.012] focketest [P:2532, T:1492,       UDS,   DEBUG] 0x3004     Minimum required quality: BOTH.     [basemode.h @ 122, OPCDABaseMode<class CLHOpcDaDSCurrent>::FinalTagModeInitialize] 
    [05/14/2008-10:56:42.012] focketest [P:2532, T:1492,       UDS,   DEBUG] 0x3000     Initializing the Current mode.     [basemode.h @ 59, OPCDABaseMode<class CLHOpcDaDSCurrentWrite>::FinalTagModeInitialize] 
    [05/14/2008-10:56:42.012] focketest [P:2532, T:1492,       UDS,   DEBUG] 0x3001     Reading from the device? TRUE.     [basemode.h @ 67, OPCDABaseMode<class CLHOpcDaDSCurrentWrite>::FinalTagModeInitialize] 
    [05/14/2008-10:56:42.012] focketest [P:2532, T:1492,       UDS,   DEBUG] 0x4001     Accessing using: SYNCHRONOUS.     [basemode.h @ 75, OPCDABaseMode<class CLHOpcDaDSCurrentWrite>::FinalTagModeInitialize] 
    [05/14/2008-10:56:42.012] focketest [P:2532, T:1492,       UDS,   DEBUG] 0x4002     Delay time: 100.     [basemode.h @ 82, OPCDABaseMode<class CLHOpcDaDSCurrentWrite>::FinalTagModeInitialize] 
    [05/14/2008-10:56:42.012] focketest [P:2532, T:1492,       UDS,   DEBUG] 0x3004     Minimum required quality: BOTH.     [basemode.h @ 122, OPCDABaseMode<class CLHOpcDaDSCurrentWrite>::FinalTagModeInitialize] 
    [05/14/2008-10:56:42.012] focketest [P:2532, T:1492,       UDS,    INFO] 0x1004     Finnished initializing.     [DataServer.cpp @ 86, CLHOpcDaDataServer::FinalInitialize] 
    [05/14/2008-10:56:42.012] focketest [P:2532, T:1492,      Host,   DEBUG] 0x14105     Attaching the providers to the Accept Thread classes cookie.     [DataServerThread.cpp @ 113, DataServerThread::SpawnServer] 
    [05/14/2008-10:56:42.012] focketest [P:2532, T:1492,      Host,   DEBUG] 0x14106     Setting the initialization event.     [DataServerThread.cpp @ 120, DataServerThread::SpawnServer] 
    [05/14/2008-10:56:42.012] focketest [P:2532, T:1492,      Host,   DEBUG] 0x14107     Entering the local message pump.     [DataServerThread.cpp @ 126, DataServerThread::SpawnServer] 
    [05/14/2008-10:56:42.012] focketest [P:2532, T:1236,      Host,   DEBUG] 0x14004     Finished initializing the provider thread.     [DataServerThread.cpp @ 68, DataServerThread::Spawn] 
    [05/14/2008-10:56:42.012] focketest [P:2532, T:1236,      Host,   DEBUG] 0x12101     Created a link to the WSA subsystem.     [ConnectionManager.cpp @ 23, ConnectionManager::Initialize] 
    [05/14/2008-10:56:42.090] focketest [P:2532, T:0252, Framework,   DEBUG] 0x1a01b     Attempting to initialize.     [LHDSResponse.cpp @ 84, CLHDSResponse::Initialize] 
    [05/14/2008-10:56:42.090] focketest [P:2532, T:3476, Framework,   DEBUG] 0x1a01b     Attempting to initialize.     [LHDSResponse.cpp @ 84, CLHDSResponse::Initialize] 
    [05/14/2008-10:56:42.090] focketest [P:2532, T:2700, Framework,   DEBUG] 0x1a01b     Attempting to initialize.     [LHDSResponse.cpp @ 84, CLHDSResponse::Initialize] 
    [05/14/2008-10:56:42.090] focketest [P:2532, T:2628, Framework,   DEBUG] 0x1a01b     Attempting to initialize.     [LHDSResponse.cpp @ 84, CLHDSResponse::Initialize] 
    [05/14/2008-10:56:42.090] focketest [P:2532, T:3688, Framework,   DEBUG] 0x1a01b     Attempting to initialize.     [LHDSResponse.cpp @ 84, CLHDSResponse::Initialize] 
    [05/14/2008-10:56:42.122] focketest [P:2532, T:1236,      Host,   DEBUG] 0x13100     Starting up the accept thread socket.     [AcceptThread.cpp @ 146, AcceptThread::ListenIOCP] 
    [05/14/2008-10:56:42.122] focketest [P:2532, T:1236,      Host,   DEBUG] 0x13101     Creating accept socket.     [AcceptThread.cpp @ 162, AcceptThread::ListenIOCP] 
    [05/14/2008-10:56:42.122] focketest [P:2532, T:1236,      Host,   DEBUG] 0x13102     Binding accept socket.     [AcceptThread.cpp @ 169, AcceptThread::ListenIOCP] 
    [05/14/2008-10:56:42.122] focketest [P:2532, T:1236,      Host,   DEBUG] 0x13103     Listening to accept socket.     [AcceptThread.cpp @ 176, AcceptThread::ListenIOCP] 
    [05/14/2008-10:56:42.122] focketest [P:2532, T:1236,      Host,   DEBUG] 0x13105     Spawning accept socket thread.     [AcceptThread.cpp @ 182, AcceptThread::ListenIOCP] 
    [05/14/2008-10:56:42.122] focketest [P:2532, T:1236,      Host,   DEBUG] 0x12102     Finnished initializing the connection manager.     [ConnectionManager.cpp @ 42, ConnectionManager::Initialize] 
    [05/14/2008-10:56:42.122] focketest [P:2532, T:0172,      Host,   DEBUG] 0x13300     Accept thread created.     [AcceptThread.cpp @ 192, AcceptThread::AcceptThreadProcIOCP] 
    [05/14/2008-10:56:42.122] focketest [P:2532, T:1236,      Host,   DEBUG] 0x11104     Finnished PreMessageLoop operations.     [Host.cpp @ 308, CHostModule::PreMessageLoop] 
    [05/14/2008-10:56:42.122] focketest [P:2532, T:0172,      Host,   DEBUG] 0x13301     Waiting for requests.     [AcceptThread.cpp @ 208, AcceptThread::AcceptThreadProcIOCP] 
    [05/14/2008-10:56:42.122] focketest [P:2532, T:1236,      Host,  SYSTEM] 0x1140a     UDS Progid: xMIIOpcDaUDS.DataServer.1.     [Host.cpp @ 592, CHostModule::LogState] 
    [05/14/2008-10:56:42.122] focketest [P:2532, T:1236,      Host,  SYSTEM] 0x1140b     UDS Build Configuration: Release.     [Host.cpp @ 593, CHostModule::LogState] 
    [05/14/2008-10:56:42.122] focketest [P:2532, T:1236,      Host,  SYSTEM] 0x1140c     UDS Build Date: Dec 11 2007.     [Host.cpp @ 594, CHostModule::LogState] 
    [05/14/2008-10:56:42.122] focketest [P:2532, T:1236,      Host,  SYSTEM] 0x1140d     UDS Description: xMII OPC-DA UDS.     [Host.cpp @ 595, CHostModule::LogState] 
    [05/14/2008-10:56:42.122] focketest [P:2532, T:1236,      Host,  SYSTEM] 0x1140e     UDS File: xMIIOpcDaUDS.dll.     [Host.cpp @ 596, CHostModule::LogState] 
    [05/14/2008-10:56:42.122] focketest [P:2532, T:1236,      Host,  SYSTEM] 0x1140f     UDS Version: 4.0.3.10.     [Host.cpp @ 597, CHostModule::LogState] 
    [05/14/2008-10:56:42.122] focketest [P:2532, T:1236,      Host,   DEBUG] 0x11500     Found Module xMIIUDSHost.exe: Path = C:\Programme\SAP\xMII\UDS\xMIIUDSHost.exe.     [Host.cpp @ 611, CHostModule::LogState] 
    [05/14/2008-10:56:42.122] focketest [P:2532, T:1236,      Host,   DEBUG] 0x11500     Found Module ntdll.dll: Path = C:\WINDOWS\system32\ntdll.dll.     [Host.cpp @ 611, CHostModule::LogState] 
    [05/14/2008-10:56:42.122] focketest [P:2532, T:1236,      Host,   DEBUG] 0x11500     Found Module kernel32.dll: Path = C:\WINDOWS\system32\kernel32.dll.     [Host.cpp @ 611, CHostModule::LogState] 
    [05/14/2008-10:56:42.122] focketest [P:2532, T:1236,      Host,   DEBUG] 0x11500     Found Module WS2_32.dll: Path = C:\WINDOWS\system32\WS2_32.dll.     [Host.cpp @ 611, CHostModule::LogState] 
    [05/14/2008-10:56:42.122] focketest [P:2532, T:1236,      Host,   DEBUG] 0x11500     Found Module msvcrt.dll: Path = C:\WINDOWS\system32\msvcrt.dll.     [Host.cpp @ 611, CHostModule::LogState] 
    [05/14/2008-10:56:42.122] focketest [P:2532, T:1236,      Host,   DEBUG] 0x11500     Found Module WS2HELP.dll: Path = C:\WINDOWS\system32\WS2HELP.dll.     [Host.cpp @ 611, CHostModule::LogState] 
    [05/14/2008-10:56:42.122] focketest [P:2532, T:1236,      Host,   DEBUG] 0x11500     Found Module ADVAPI32.dll: Path = C:\WINDOWS\system32\ADVAPI32.dll.     [Host.cpp @ 611, CHostModule::LogState] 
    [05/14/2008-10:56:42.122] focketest [P:2532, T:1236,      Host,   DEBUG] 0x11500     Found Module RPCRT4.dll: Path = C:\WINDOWS\system32\RPCRT4.dll.     [Host.cpp @ 611, CHostModule::LogState] 
    [05/14/2008-10:56:42.122] focketest [P:2532, T:1236,      Host,   DEBUG] 0x11500     Found Module Secur32.dll: Path = C:\WINDOWS\system32\Secur32.dll.     [Host.cpp @ 611, CHostModule::LogState] 
    [05/14/2008-10:56:42.122] focketest [P:2532, T:1236,      Host,   DEBUG] 0x11500     Found Module USER32.dll: Path = C:\WINDOWS\system32\USER32.dll.     [Host.cpp @ 611, CHostModule::LogState] 
    [05/14/2008-10:56:42.122] focketest [P:2532, T:1236,      Host,   DEBUG] 0x11500     Found Module GDI32.dll: Path = C:\WINDOWS\system32\GDI32.dll.     [Host.cpp @ 611, CHostModule::LogState] 
    [05/14/2008-10:56:42.122] focketest [P:2532, T:1236,      Host,   DEBUG] 0x11500     Found Module ole32.dll: Path = C:\WINDOWS\system32\ole32.dll.     [Host.cpp @ 611, CHostModule::LogState] 
    [05/14/2008-10:56:42.122] focketest [P:2532, T:1236,      Host,   DEBUG] 0x11500     Found Module OLEAUT32.dll: Path = C:\WINDOWS\system32\OLEAUT32.dll.     [Host.cpp @ 611, CHostModule::LogState] 
    [05/14/2008-10:56:42.137] focketest [P:2532, T:1236,      Host,   DEBUG] 0x11500     Found Module ATL80.DLL: Path = C:\WINDOWS\WinSxS\x86_Microsoft.VC80.ATL_1fc8b3b9a1e18e3b_8.0.50727.762_x-ww_cbb27474\ATL80.DLL.     [Host.cpp @ 611, CHostModule::LogState] 
    [05/14/2008-10:56:42.137] focketest [P:2532, T:1236,      Host,   DEBUG] 0x11500     Found Module MSVCR80.dll: Path = C:\WINDOWS\WinSxS\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.762_x-ww_6b128700\MSVCR80.dll.     [Host.cpp @ 611, CHostModule::LogState] 
    [05/14/2008-10:56:42.137] focketest [P:2532, T:1236,      Host,   DEBUG] 0x11500     Found Module IMM32.DLL: Path = C:\WINDOWS\system32\IMM32.DLL.     [Host.cpp @ 611, CHostModule::LogState] 
    [05/14/2008-10:56:42.137] focketest [P:2532, T:1236,      Host,   DEBUG] 0x11500     Found Module xpsp2res.dll: Path = C:\WINDOWS\system32\xpsp2res.dll.     [Host.cpp @ 611, CHostModule::LogState] 
    [05/14/2008-10:56:42.137] focketest [P:2532, T:1236,      Host,   DEBUG] 0x11500     Found Module CLBCATQ.DLL: Path = C:\WINDOWS\system32\CLBCATQ.DLL.     [Host.cpp @ 611, CHostModule::LogState] 
    [05/14/2008-10:56:42.137] focketest [P:2532, T:1236,      Host,   DEBUG] 0x11500     Found Module COMRes.dll: Path = C:\WINDOWS\system32\COMRes.dll.     [Host.cpp @ 611, CHostModule::LogState] 
    [05/14/2008-10:56:42.137] focketest [P:2532, T:1236,      Host,   DEBUG] 0x11500     Found Module VERSION.dll: Path = C:\WINDOWS\system32\VERSION.dll.     [Host.cpp @ 611, CHostModule::LogState] 
    [05/14/2008-10:56:42.137] focketest [P:2532, T:1236,      Host,   DEBUG] 0x11500     Found Module msi.dll: Path = C:\WINDOWS\system32\msi.dll.     [Host.cpp @ 611, CHostModule::LogState] 
    [05/14/2008-10:56:42.137] focketest [P:2532, T:1236,      Host,   DEBUG] 0x11500     Found Module SXS.DLL: Path = C:\WINDOWS\system32\SXS.DLL.     [Host.cpp @ 611, CHostModule::LogState] 
    [05/14/2008-10:56:42.137] focketest [P:2532, T:1236,      Host,   DEBUG] 0x11500     Found Module xMIIUDSFramework.dll: Path = C:\Programme\SAP\xMII\UDS\xMIIUDSFramework.dll.     [Host.cpp @ 611, CHostModule::LogState] 
    [05/14/2008-10:56:42.137] focketest [P:2532, T:1236,      Host,   DEBUG] 0x11500     Found Module COMCTL32.dll: Path = C:\WINDOWS\system32\COMCTL32.dll.     [Host.cpp @ 611, CHostModule::LogState] 
    [05/14/2008-10:56:42.137] focketest [P:2532, T:1236,      Host,   DEBUG] 0x11500     Found Module SHELL32.dll: Path = C:\WINDOWS\system32\SHELL32.dll.     [Host.cpp @ 611, CHostModule::LogState] 
    [05/14/2008-10:56:42.137] focketest [P:2532, T:1236,      Host,   DEBUG] 0x11500     Found Module SHLWAPI.dll: Path = C:\WINDOWS\system32\SHLWAPI.dll.     [Host.cpp @ 611, CHostModule::LogState] 
    [05/14/2008-10:56:42.137] focketest [P:2532, T:1236,      Host,   DEBUG] 0x11500     Found Module USERENV.dll: Path = C:\WINDOWS\system32\USERENV.dll.     [Host.cpp @ 611, CHostModule::LogState] 
    [05/14/2008-10:56:42.137] focketest [P:2532, T:1236,      Host,   DEBUG] 0x11500     Found Module comctl32.dll: Path = C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2982_x-ww_ac3f9c03\comctl32.dll.     [Host.cpp @ 611, CHostModule::LogState] 
    [05/14/2008-10:56:42.137] focketest [P:2532, T:1236,      Host,   DEBUG] 0x11500     Found Module msxml4.dll: Path = c:\WINDOWS\system32\msxml4.dll.     [Host.cpp @ 611, CHostModule::LogState] 
    [05/14/2008-10:56:42.137] focketest [P:2532, T:1236,      Host,   DEBUG] 0x11500     Found Module WININET.dll: Path = C:\WINDOWS\system32\WININET.dll.     [Host.cpp @ 611, CHostModule::LogState] 
    [05/14/2008-10:56:42.137] focketest [P:2532, T:1236,      Host,   DEBUG] 0x11500     Found Module Normaliz.dll: Path = C:\WINDOWS\system32\Normaliz.dll.     [Host.cpp @ 611, CHostModule::LogState] 
    [05/14/2008-10:56:42.137] focketest [P:2532, T:1236,      Host,   DEBUG] 0x11500     Found Module iertutil.dll: Path = C:\WINDOWS\system32\iertutil.dll.     [Host.cpp @ 611, CHostModule::LogState] 
    [05/14/2008-10:56:42.137] focketest [P:2532, T:1236,      Host,   DEBUG] 0x11500     Found Module urlmon.dll: Path = C:\WINDOWS\system32\urlmon.dll.     [Host.cpp @ 611, CHostModule::LogState] 
    [05/14/2008-10:56:42.137] focketest [P:2532, T:1236,      Host,   DEBUG] 0x11500     Found Module MSOXMLMF.DLL: Path = C:\Programme\Gemeinsame Dateien\Microsoft Shared\OFFICE11\MSOXMLMF.DLL.     [Host.cpp @ 611, CHostModule::LogState] 
    [05/14/2008-10:56:42.137] focketest [P:2532, T:1236,      Host,   DEBUG] 0x11500     Found Module xMIIOpcDaUDS.dll: Path = C:\Programme\SAP\xMII\UDS\xMIIOpcDaUDS.dll.     [Host.cpp @ 611, CHostModule::LogState] 
    [05/14/2008-10:56:42.137] focketest [P:2532, T:1236,      Host,   DEBUG] 0x11500     Found Module NETAPI32.dll: Path = C:\WINDOWS\system32\NETAPI32.dll.     [Host.cpp @ 611, CHostModule::LogState] 
    [05/14/2008-10:56:42.137] focketest [P:2532, T:1236,      Host,   DEBUG] 0x11500     Found Module opccomn_ps.dll: Path = C:\WINDOWS\system32\opccomn_ps.dll.     [Host.cpp @ 611, CHostModule::LogState] 
    [05/14/2008-10:56:42.137] focketest [P:2532, T:1236,      Host,   DEBUG] 0x11500     Found Module mswsock.dll: Path = C:\WINDOWS\system32\mswsock.dll.     [Host.cpp @ 611, CHostModule::LogState] 
    [05/14/2008-10:56:42.137] focketest [P:2532, T:1236,      Host,   DEBUG] 0x11500     Found Module msv1_0.dll: Path = C:\WINDOWS\system32\msv1_0.dll.     [Host.cpp @ 611, CHostModule::LogState] 
    [05/14/2008-10:56:42.137] focketest [P:2532, T:1236,      Host,   DEBUG] 0x11500     Found Module iphlpapi.dll: Path = C:\WINDOWS\system32\iphlpapi.dll.     [Host.cpp @ 611, CHostModule::LogState] 
    [05/14/2008-10:56:42.137] focketest [P:2532, T:1236,      Host,   DEBUG] 0x11500     Found Module avsda.dll: Path = C:\WINDOWS\system32\avsda.dll.     [Host.cpp @ 611, CHostModule::LogState] 
    [05/14/2008-10:56:42.137] focketest [P:2532, T:1236,      Host,   DEBUG] 0x11500     Found Module hnetcfg.dll: Path = C:\WINDOWS\system32\hnetcfg.dll.     [Host.cpp @ 611, CHostModule::LogState] 
    [05/14/2008-10:56:42.137] focketest [P:2532, T:1236,      Host,   DEBUG] 0x11500     Found Module wshtcpip.dll: Path = C:\WINDOWS\System32\wshtcpip.dll.     [Host.cpp @ 611, CHostModule::LogState] 
    [05/14/2008-10:56:42.137] focketest [P:2532, T:1236,      Host,   DEBUG] 0x11500     Found Module opcproxy.dll: Path = C:\WINDOWS\system32\opcproxy.dll.     [Host.cpp @ 611, CHostModule::LogState] 
    [05/14/2008-10:56:42.137] focketest [P:2532, T:1236,      Host,   DEBUG] 0x11500     Found Module rsaenh.dll: Path = C:\WINDOWS\system32\rsaenh.dll.     [Host.cpp @ 611, CHostModule::LogState] 
    [05/14/2008-10:56:42.137] focketest [P:2532, T:1236,      Host,   DEBUG] 0x11500     Found Module msxml3.dll: Path = C:\WINDOWS\system32\msxml3.dll.     [Host.cpp @ 611, CHostModule::LogState] 
    [05/14/2008-10:56:42.137] focketest [P:2532, T:1236,      Host,    INFO] 0x11200     Host is starting.     [Host.cpp @ 329, CHostModule::RunMessageLoop] 
    [05/14/2008-10:56:54.386] focketest [P:2532, T:0172,      Host,   DEBUG] 0x13302     Accepted a good socket.     [AcceptThread.cpp @ 216, AcceptThread::AcceptThreadProcIOCP] 
    [05/14/2008-10:56:54.386] focketest [P:2532, T:0172,      Host,   DEBUG] 0x13303     Creating IOCP request data.     [AcceptThread.cpp @ 227, AcceptThread::AcceptThreadProcIOCP] 
    [05/14/2008-10:56:54.386] focketest [P:2532, T:0172,      Host,   DEBUG] 0x13304     Sending IOCP the request data.     [AcceptThread.cpp @ 231, AcceptThread::AcceptThreadProcIOCP] 
    [05/14/2008-10:56:54.386] focketest [P:2532, T:0172,      Host,   DEBUG] 0x13306     IOCP handle accepted.     [AcceptThread.cpp @ 240, AcceptThread::AcceptThreadProcIOCP] 
    [05/14/2008-10:56:54.386] focketest [P:2532, T:0172,      Host,   DEBUG] 0x13301     Waiting for requests.     [AcceptThread.cpp @ 208, AcceptThread::AcceptThreadProcIOCP] 
    [05/14/2008-10:56:54.386] focketest [P:2532, T:3688,      Host,   DEBUG] 0x15003     IOCP completed and performing a read operation.     [ThreadPool.cpp @ 427, ThreadPool::ThreadProc] 
    [05/14/2008-10:56:54.386] focketest [P:2532, T:3688, Framework,   DEBUG] 0x17004     Attempting to execute the IOCP logic.     [LHDSChannelHandler.cpp @ 470, CLHDSChannelHandler::ExecuteIOCP] 
    [05/14/2008-10:56:54.386] focketest [P:2532, T:3688, Framework,   DEBUG] 0x17005     Attempting to executing the query.     [LHDSChannelHandler.cpp @ 552, CLHDSChannelHandler::OnExecute] 
    [05/14/2008-10:56:54.386] focketest [P:2532, T:3688, Framework,   DEBUG] 0x1a028     Clearing the response.     [LHDSResponse.cpp @ 94, CLHDSResponse::Clear] 
    [05/14/2008-10:56:54.386] focketest [P:2532, T:3688, Framework,   DEBUG] 0x17008     Decoding the input.     [LHDSChannelHandler.cpp @ 559, CLHDSChannelHandler::OnExecute] 
    [05/14/2008-10:56:54.418] focketest [P:2532, T:3688, Framework,   DEBUG] 0x12002     Decoded the context. Original query was: STYLESHEET     http://bermii:50000/XMII/Stylesheets/IllumRowsetHTML.xsl     QueryTemplate     DemoMaschine/testquery     Content-Type     text/html     TotalizerFactor     1.0     NumberFormat     0.00     UseGroupMask     false     ReaderRoles     XMII Users     IsCachable     false     WriterRoles     XMII Developers,XMII Administrators     DurationUnits     M     Mode     Current     IntervalCount     1     RowCount     60     AllowFuture     true     Version     12.0.3 Build(106)     Trace     false     DocType     TagQuery     Debug     false     Resolution     0     SaveDate     05/14/2008 10:48:58     PathID     111     CacheDuration     0     Server     OPCserver     Duration     60     DateFormat     MM/dd/yyyy HH:mm:ss     ExcludeRemotes     true     CacheDurationUnits     M     AllowBuffering     false     ID     -1     StartDate     1210751815     EndDate     1210755415     TagName.1     DB11.DBB6     !.     [LHDSContext.cpp @ 190, CLHDSContext::DecodeContext] 
    [05/14/2008-10:56:54.418] focketest [P:2532, T:3688, Framework,   DEBUG] 0x17006     Executing the query.     [LHDSChannelHandler.cpp @ 598, CLHDSChannelHandler::OnExecute] 
    [05/14/2008-10:56:54.418] focketest [P:2532, T:3688,       UDS,   DEBUG] 0x2016     Checking the state of the connection.     [Connection.cpp @ 2032, CLHOpcDaConnection::Load] 
    [05/14/2008-10:56:54.418] focketest [P:2532, T:3688,       UDS,   DEBUG] 0x2005     Connecting.     [Connection.cpp @ 326, CLHOpcDaConnection::FinalConnect] 
    [05/14/2008-10:56:54.418] focketest [P:2532, T:3688,       UDS,   DEBUG] 0x2016     Checking the state of the connection.     [Connection.cpp @ 2032, CLHOpcDaConnection::Load] 
    [05/14/2008-10:56:54.418] focketest [P:2532, T:3688,       UDS,   DEBUG] 0x2006     Connected.     [Connection.cpp @ 329, CLHOpcDaConnection::FinalConnect] 
    [05/14/2008-10:56:54.418] focketest [P:2532, T:3688, Framework,   DEBUG] 0x1a028     Clearing the response.     [LHDSResponse.cpp @ 94, CLHDSResponse::Clear] 
    [05/14/2008-10:56:54.418] focketest [P:2532, T:3688, Framework,   DEBUG] 0x1a002     Setting a new message.     [LHDSResponse.cpp @ 378, CLHDSResponse::SetMessage] 
    [05/14/2008-10:56:54.418] focketest [P:2532, T:3688, Framework,   DEBUG] 0x1a004     Header was not sent.     [LHDSResponse.cpp @ 382, CLHDSResponse::SetMessage] 
    [05/14/2008-10:56:54.418] focketest [P:2532, T:3688, Framework,   DEBUG] 0x1a000     Setting a non-fatal message.     [LHDSResponse.cpp @ 390, CLHDSResponse::SetMessage] 
    [05/14/2008-10:56:54.418] focketest [P:2532, T:3688, Framework,   DEBUG] 0x1a00e     Preparing the response.     [LHDSResponse.cpp @ 350, CLHDSResponse::Prepare] 
    [05/14/2008-10:56:54.418] focketest [P:2532, T:3688, Framework,   DEBUG] 0x1a007     Attempting to send the header.     [LHDSResponse.cpp @ 317, CLHDSResponse::SendHeader] 
    [05/14/2008-10:56:54.418] focketest [P:2532, T:3688, Framework,   DEBUG] 0x1a006     Sending the header.     [LHDSResponse.cpp @ 320, CLHDSResponse::SendHeader] 
    [05/14/2008-10:56:54.418] focketest [P:2532, T:3688, Framework,   DEBUG] 0x17001     Attempting to send the data.     [LHDSChannelHandler.cpp @ 221, CLHDSChannelHandler::SendData] 
    [05/14/2008-10:56:54.418] focketest [P:2532, T:3688, Framework,   DEBUG] 0x17002     Sending: {0-0-0-1-0-0-1-25-230-110-141-88-0-0-1-25-230-165-123-216}.     [LHDSChannelHandler.cpp @ 242, CLHDSChannelHandler::SendData] 
    [05/14/2008-10:56:54.418] focketest [P:2532, T:3688, Framework,   DEBUG] 0x17000     Finnished sending.     [LHDSChannelHandler.cpp @ 283, CLHDSChannelHandler::SendData] 
    [05/14/2008-10:56:54.418] focketest [P:2532, T:3688, Framework,   DEBUG] 0x1a002     Setting a new message.     [LHDSResponse.cpp @ 378, CLHDSResponse::SetMessage] 
    [05/14/2008-10:56:54.418] focketest [P:2532, T:3688, Framework,   DEBUG] 0x1a003     Header was sent as non-fatal.     [LHDSResponse.cpp @ 406, CLHDSResponse::SetMessage] 
    [05/14/2008-10:56:54.433] focketest [P:2532, T:3688, Framework,   DEBUG] 0x1a002     Setting a new message.     [LHDSResponse.cpp @ 378, CLHDSResponse::SetMessage] 
    [05/14/2008-10:56:54.433] focketest [P:2532, T:3688, Framework,   DEBUG] 0x1a003     Header was sent as non-fatal.     [LHDSResponse.cpp @ 406, CLHDSResponse::SetMessage] 
    [05/14/2008-10:56:54.433] focketest [P:2532, T:3688, Framework,   DEBUG] 0x1a011     Attempting to lock the response.     [LHDSResponse.cpp @ 470, CLHDSResponse::Lock] 
    [05/14/2008-10:56:54.433] focketest [P:2532, T:3688, Framework,   DEBUG] 0x1a010     Locking the response.     [LHDSResponse.cpp @ 473, CLHDSResponse::Lock] 
    [05/14/2008-10:56:54.433] focketest [P:2532, T:3688, Framework,   DEBUG] 0x1a017     Attempting to insert a node.     [LHDSResponse.cpp @ 215, CLHDSResponse::InsertFinished] 
    [05/14/2008-10:56:54.433] focketest [P:2532, T:3688, Framework,   DEBUG] 0x1a01a     Node already exists.     [LHDSResponse.cpp @ 218, CLHDSResponse::InsertFinished] 
    [05/14/2008-10:56:54.433] focketest [P:2532, T:3688, Framework,   DEBUG] 0x1a023     Finalizing all response nodes.     [LHDSResponse.cpp @ 114, CLHDSResponse::FinalizeAll] 
    [05/14/2008-10:56:54.433] focketest [P:2532, T:3688, Framework,   DEBUG] 0x1a011     Attempting to lock the response.     [LHDSResponse.cpp @ 470, CLHDSResponse::Lock] 
    [05/14/2008-10:56:54.433] focketest [P:2532, T:3688, Framework,   DEBUG] 0x1a01c     Sending node, This is not the last node.     [LHDSResponse.cpp @ 120, CLHDSResponse::FinalizeAll] 
    [05/14/2008-10:56:54.433] focketest [P:2532, T:3688, Framework,   DEBUG] 0x1a01e     Sending non-fatal message.     [LHDSResponse.cpp @ 124, CLHDSResponse::FinalizeAll] 
    [05/14/2008-10:56:54.433] focketest [P:2532, T:3688, Framework,   DEBUG] 0x17001     Attempting to send the data.     [LHDSChannelHandler.cpp @ 221, CLHDSChannelHandler::SendData] 
    [05/14/2008-10:56:54.433] focketest [P:2532, T:3688, Framework,   DEBUG] 0x17002     Sending: {0-0-0}.     [LHDSChannelHandler.cpp @ 242, CLHDSChannelHandler::SendData] 
    [05/14/2008-10:56:54.433] focketest [P:2532, T:3688, Framework,   DEBUG] 0x17000     Finnished sending.     [LHDSChannelHandler.cpp @ 283, CLHDSChannelHandler::SendData] 
    [05/14/2008-10:56:54.433] focketest [P:2532, T:3688, Framework,   DEBUG] 0x1a01f     Sending messages.     [LHDSResponse.cpp @ 173, CLHDSResponse::FinalizeAll] 
    [05/14/2008-10:56:54.433] focketest [P:2532, T:3688, Framework,   DEBUG] 0x1a01d     Sending non-fatal message contents.     [LHDSResponse.cpp @ 177, CLHDSResponse::FinalizeAll] 
    [05/14/2008-10:56:54.433] focketest [P:2532, T:3688, Framework,   DEBUG] 0x17001     Attempting to send the data.     [LHDSChannelHandler.cpp @ 221, CLHDSChannelHandler::SendData] 
    [05/14/2008-10:56:54.433] focketest [P:2532, T:3688, Framework,   DEBUG] 0x17002     Sending: {0-2-0-47-67-111-117-108-100-32-110-111-116-32-97-100-100-32-34-68-66-49-49-46-68-66-66-54-34-32-116-111-32-116-104-101-32-114-101-115-112-111-110-115-101-32-108-105-115-116-46-0-17-78-111-32-116-97-103-115-32-115-101-108-101-99-116-101-100-46}.     [LHDSChannelHandler.cpp @ 242, CLHDSChannelHandler::SendData] 
    [05/14/2008-10:56:54.433] focketest [P:2532, T:3688, Framework,   DEBUG] 0x17000     Finnished sending.     [LHDSChannelHandler.cpp @ 283, CLHDSChannelHandler::SendData] 
    [05/14/2008-10:56:54.433] focketest [P:2532, T:3688, Framework,   DEBUG] 0x1a028     Clearing the response.     [LHDSResponse.cpp @ 94, CLHDSResponse::Clear] 
    [05/14/2008-10:56:54.433] focketest [P:2532, T:3688, Framework,   DEBUG] 0x1a023     Finalizing all response nodes.     [LHDSResponse.cpp @ 114, CLHDSResponse::FinalizeAll] 
    [05/14/2008-10:56:54.433] focketest [P:2532, T:3688, Framework,   DEBUG] 0x1a011     Attempting to lock the response.     [LHDSResponse.cpp @ 470, CLHDSResponse::Lock] 
    [05/14/2008-10:56:54.433] focketest [P:2532, T:3688, Framework,   DEBUG] 0x1a010     Locking the response.     [LHDSResponse.cpp @ 473, CLHDSResponse::Lock] 
    [05/14/2008-10:56:54.433] focketest [P:2532, T:3688, Framework,   DEBUG] 0x1a017     Attempting to insert a node.     [LHDSResponse.cpp @ 215, CLHDSResponse::InsertFinished] 
    [05/14/2008-10:56:54.433] focketest [P:2532, T:3688, Framework,   DEBUG] 0x1a01a     Node already exists.     [LHDSResponse.cpp @ 218, CLHDSResponse::InsertFinished] 
    [05/14/2008-10:56:54.433] focketest [P:2532, T:3688, Framework,   DEBUG] 0x1a01c     Sending node, This is not the last node.     [LHDSResponse.cpp @ 120, CLHDSResponse::FinalizeAll] 
    [05/14/2008-10:56:54.449] focketest [P:2532, T:3688, Framework,   DEBUG] 0x1a028     Clearing the response.     [LHDSResponse.cpp @ 94, CLHDSResponse::Clear] 
    [05/14/2008-10:56:54.449] focketest [P:2532, T:3688, Framework,   DEBUG] 0x1a023     Finalizing all response nodes.     [LHDSResponse.cpp @ 114, CLHDSResponse::FinalizeAll] 
    [05/14/2008-10:56:54.449] focketest [P:2532, T:3688, Framework,   DEBUG] 0x1a011     Attempting to lock the response.     [LHDSResponse.cpp @ 470, CLHDSResponse::Lock] 
    [05/14/2008-10:56:54.449] focketest [P:2532, T:3688, Framework,   DEBUG] 0x1a010     Locking the response.     [LHDSResponse.cpp @ 473, CLHDSResponse::Lock] 
    [05/14/2008-10:56:54.449] focketest [P:2532, T:3688, Framework,   DEBUG] 0x1a017     Attempting to insert a node.     [LHDSResponse.cpp @ 215, CLHDSResponse::InsertFinished] 
    [05/14/2008-10:56:54.449] focketest [P:2532, T:3688, Framework,   DEBUG] 0x1a01a     Node already exists.     [LHDSResponse.cpp @ 218, CLHDSResponse::InsertFinished] 
    [05/14/2008-10:56:54.449] focketest [P:2532, T:3688, Framework,   DEBUG] 0x1a01c     Sending node, This is not the last node.     [LHDSResponse.cpp @ 120, CLHDSResponse::FinalizeAll] 
    [05/14/2008-10:56:54.449] focketest [P:2532, T:3688, Framework,   DEBUG] 0x1a028     Clearing the response.     [LHDSResponse.cpp @ 94, CLHDSResponse::Clear] 
    [05/14/2008-10:56:54.449] focketest [P:2532, T:3688, Framework,   DEBUG] 0x17007     Done the execution cycle.     [LHDSChannelHandler.cpp @ 604, CLHDSChannelHandler::OnExecute] 
    [05/14/2008-10:56:54.449] focketest [P:2532, T:3688, Framework,   DEBUG] 0x1700c     Finnished executing: 1.     [LHDSChannelHandler.cpp @ 606, CLHDSChannelHandler::OnExecute] 
    [05/14/2008-10:56:54.449] focketest [P:2532, T:3688, Framework,   DEBUG] 0x17003     Finnished execution the IOCP logic.     [LHDSChannelHandler.cpp @ 538, CLHDSChannelHandler::ExecuteIOCP] 
    [05/14/2008-10:57:08.104] focketest [P:2532, T:1236,      Host,    INFO] 0x11201     Host is exiting.     [Host.cpp @ 338, CHostModule::RunMessageLoop] 
    [05/14/2008-10:57:08.120] focketest [P:2532, T:1492,      Host,   DEBUG] 0x14108     Shutting down provider the provider thread.     [DataServerThread.cpp @ 137, DataServerThread::SpawnServer] 
    [05/14/2008-10:57:08.120] focketest [P:2532, T:1492,      Host,   DEBUG] 0x14109     Destroying the local configuration context.     [DataServerThread.cpp @ 143, DataServerThread::SpawnServer] 
    [05/14/2008-10:57:08.120] focketest [P:2532, T:1492,       UDS,   DEBUG] 0x2020     Checking status before disconnecting.     [Connection.cpp @ 2164, CLHOpcDaConnection::Unload] 
    [05/14/2008-10:57:08.120] focketest [P:2532, T:1492,       UDS,   DEBUG] 0x2021     Attempting to disconnect from the server.     [Connection.cpp @ 2171, CLHOpcDaConnection::Unload] 
    [05/14/2008-10:57:08.120] focketest [P:2532, T:1492,       UDS,   DEBUG] 0x2023     Removing the Async event interface.     [Connection.cpp @ 2189, CLHOpcDaConnection::Unload] 
    [05/14/2008-10:57:08.120] focketest [P:2532, T:1492,       UDS,   DEBUG] 0x2024     Removed the group interface.     [Connection.cpp @ 2195, CLHOpcDaConnection::Unload] 
    [05/14/2008-10:57:08.120] focketest [P:2532, T:1492,       UDS,   DEBUG] 0x2025     Unadvising on the servers events.     [Connection.cpp @ 2207, CLHOpcDaConnection::Unload] 
    [05/14/2008-10:57:08.120] focketest [P:2532, T:1492,       UDS,   DEBUG] 0x2027     Server removed.     [Connection.cpp @ 2221, CLHOpcDaConnection::Unload] 
    [05/14/2008-10:57:08.120] focketest [P:2532, T:1492,       UDS,    INFO] 0x2028     Disconnected from the server.     [Connection.cpp @ 2224, CLHOpcDaConnection::Unload] 
    [05/14/2008-10:57:08.120] focketest [P:2532, T:1492,       UDS,   DEBUG] 0x2004     Shutting down the connection.     [Connection.cpp @ 316, CLHOpcDaConnection::FinalShutdown] 
    [05/14/2008-10:57:08.120] focketest [P:2532, T:1492,      Host,   DEBUG] 0x1410a     Setting the shutdown event.     [DataServerThread.cpp @ 160, DataServerThread::SpawnServer] 
    The Debug file is from a Windows XP Professional system. But the same thing happens with the UDS installed
    on Windows Server 2003 (x64).
    The following config variations have been tried:
    - synchronous / asynchronous
    - Cache mode "None"
    - Threading model STA / MTA
    Any suggestions?
    Regards,
    Matthias

    Hi Mathais,
    I assume you have installed the OPC enum services in the same machine where xMII UDS is running.
    Also make sure that the browsing mode is set to true in the OPC Server.
    We had the same issue...and were receiving the same error...but once we changed teh Browing mode at teh OPC server to true, tag quesries started working....
    Hope it helps...
    Pramod

  • Why cant poll a file more than once using File Adapter..

    Hi All,
    When we run webservice, as I am using File Adapter to read/write the file information.
    Usually, File Adapter reads once every file and it wont read again the same file whcih already red.
    Where and How this status maintained by File Adapter/BPEL in the system.
    Where this will be avvailable and why cant File Adapter read/poll the same file.
    Pls can any one of you share your ideas on the same.
    Thanks.

    Hi,
    Tried to get some information around where ftp adapter stores the timestamp but couldnt find anything useful.
    But we have a table for File adapter which captures the processing information (FILEADAPTER_IN )
    I dont have the setup for FTP adapter to run an example. If you could try the below we can clarify that the timestamp is not stored in memory.
    Configure as usual for a folder with a file pattern for FTP adapter.
    Drop a file to process it and then restart the SOA Suite and try to drop the same file with same timestamp to see wheather FTP adapter picks up or not.
    Ideally i feel once you restart the SOA Suite it should pick up the file, if still not picks up the file for second time then we need to dig indepth to see where this information is stored.
    btw what is your usecase ?
    Thanks,
    Vijay
    Edited by: veejai24 on 11-Apr-2012 03:43

  • System Won't Update, Once Again

    [ ~ ] ➤ pcsys [ ]
    :: Synchronizing package databases...
    core is up to date
    extra is up to date
    community is up to date
    :: Starting full system upgrade...
    resolving dependencies...
    looking for inter-conflicts...
    Targets (17): cifs-utils-5.8-1 gmp-5.1.0-1 gst-plugins-base-libs-1.0.4-1 gstreamer-1.0.4-1 ibus-pinyin-1.5.0-2 krb5-1.11-1
    libmysqlclient-5.5.29-1 libreoffice-common-3.6.4-2 libreoffice-draw-3.6.4-2 libreoffice-en-US-3.6.4-2 libreoffice-impress-3.6.4-2
    libreoffice-writer-3.6.4-2 libwbclient-3.6.10-1 mysql-5.5.29-1 mysql-clients-5.5.29-1 smbclient-3.6.10-1 sqlite-3.7.15.1-1
    Total Installed Size: 476.73 MiB
    Net Upgrade Size: 64.48 MiB
    Proceed with installation? [Y/n] y
    (17/17) checking package integrity [####################################################] 100%
    (17/17) loading package files [####################################################] 100%
    (17/17) checking for file conflicts [####################################################] 100%
    error: failed to commit transaction (conflicting files)
    smbclient: /usr/bin/net exists in filesystem
    smbclient: /usr/bin/nmblookup exists in filesystem
    smbclient: /usr/bin/rpcclient exists in filesystem
    smbclient: /usr/bin/smbcacls exists in filesystem
    smbclient: /usr/bin/smbclient exists in filesystem
    smbclient: /usr/bin/smbcquotas exists in filesystem
    smbclient: /usr/bin/smbget exists in filesystem
    smbclient: /usr/bin/smbspool exists in filesystem
    smbclient: /usr/bin/smbtar exists in filesystem
    smbclient: /usr/bin/smbtree exists in filesystem
    smbclient: /usr/include/libsmbclient.h exists in filesystem
    smbclient: /usr/include/netapi.h exists in filesystem
    smbclient: /usr/lib/cups/backend/smb exists in filesystem
    smbclient: /usr/lib/libnetapi.so exists in filesystem
    smbclient: /usr/lib/libnetapi.so.0 exists in filesystem
    smbclient: /usr/lib/libsmbclient.so exists in filesystem
    smbclient: /usr/lib/libsmbclient.so.0 exists in filesystem
    smbclient: /usr/share/man/man1/nmblookup.1.gz exists in filesystem
    smbclient: /usr/share/man/man1/rpcclient.1.gz exists in filesystem
    smbclient: /usr/share/man/man1/smbcacls.1.gz exists in filesystem
    smbclient: /usr/share/man/man1/smbclient.1.gz exists in filesystem
    smbclient: /usr/share/man/man1/smbcquotas.1.gz exists in filesystem
    smbclient: /usr/share/man/man1/smbget.1.gz exists in filesystem
    smbclient: /usr/share/man/man1/smbtar.1.gz exists in filesystem
    smbclient: /usr/share/man/man1/smbtree.1.gz exists in filesystem
    smbclient: /usr/share/man/man7/libsmbclient.7.gz exists in filesystem
    Errors occurred, no packages were upgraded.

    Read the wiki, once again: https://wiki.archlinux.org/index.php/Pa … stem.22.21
    Or search the forum: https://bbs.archlinux.org/viewtopic.php?id=56373
    Last edited by 2ManyDogs (2012-12-21 13:24:18)

  • Multiplexing once again

    Sorry guys, but I have to stay at the problem of multiplexing.
    I know, you've been handling this topic before, but I am not successfull in solving my problems:
    1- I tryed to burn the project right out of IDVD 6.0.1. After 7 hours of rendering it got hung in the "multiplexing" process.
    2- I followed your advice and tryed to save it as a Image-file and burn it with toast 7 out of this. Once again after half a day of rendering IDVD got stuck by "writing the lead in" (why does a .img-file need to have a "lead in" anyway?!?)
    3- I tryed to delete the thumbnail-files etc as adviced, but I still cant burn the project.
    I am still using 10.3.9, but I dont want to buy Tiger before I am not absolutly sure, that this will solve the problem. Every other program is up to date.
    Another Question: where does IDVD save the rendered files? I am slowly running out of HD space. (still having 23 GB, but every new try costs 3 GB)
    I have to say, I am very disapointed, I did not imaging, apple come with such problems in ILife 06.
    thanks and greetings everyone,
    Kristian
      Mac OS X (10.3.9)  

    Well, thats just great!
    Just as I was about to sove my problems with the DVD burning, my DSL modem quit its job. Now I've been offline a week and it was just like ****.
    A world without internet...
    Sorry, back to my burning issue.
    Yes, I tryed all the steps written in the link above, but it didnt work out.
    I deletet al the dots in fonts book, but the appeared back again. Why do they do this?
    I had also an other idea: what if i install IDVD 5 on my extern HD and try to burn the proojects with this version?
    But, since I installed IDVD 6 a month ago, all my IDVD projects (witch were originally created in IDVD 5) have been converted to be compatibel with IDVD 6.
    Is IDVD 5 able to read this files now?
    Thank you for answering, guys.
    Kristian
    Powerbook G4 1,33GHz   Mac OS X (10.3.9)  

  • TS3694 i was doing update on my apple iphone 3g 8gb during update an error ocured namely 1015. and when i was doing restoration of my previous software version once again error ocured namely 1015

    i was doing update on my apple iphone 3g 8gb during update an error ocured namely 1015. and when i was doing restoration of my previous software version once again error ocured namely 1015.
    and 2nd i have downloaded few free apps like face book twitter etc on my itunes but when iam installing them to my iphone its not installing i dont know why plz help me to install them thanks

    Errors related to downgrading iOS
    The required resource cannot be found: This alert message occurs when your device has a newer version of iOS than what is available in iTunes. When troubleshooting a device that presents this alert message, go to Settings > General > About and check the version of iOS on the device. If it is newer than the latest released iOS version, the device may have a prerelease developer version of iOS installed. Installing an older version of iOS over a newer version is not supported.
    Error 1015: This error is typically caused by attempts to downgrade the iPhone, iPad, or iPod touch's software. This can occur when you attempt to restore using an older .ipsw file. Downgrading to a previous version is not supported. To resolve this issue, attempt to restore with the latest iPhone, iPad, or iPod touch software available from Apple. This error can also occur when an unauthorized modification of the iOS has occurred and you are now trying to restore to an authorized, default state.
    Maybe you phone has been jailbroken

  • Bank of America once again

    Once again, and without obvious cause, my browsers (Safari and Opera) stopped allowing connection to BOA's website. The error is BAD REQUEST...your browser sent a query this server does not understand.
    Apple's only solution, reinstall the OS (twice now). This is my first Mac and I guess I'll have to keep a Windows box so I can bank online.
    It is not the browser. It is not BOA. It appears to be a permissions issue(?) as I can create another account and then access the website. It's dissappointing that Apple cannot figure this out. They had me move a number of cache and other folders and plist files without success. Are there any tru coders out there who can look "isde" these files for the answer?
    Mac Pro Core Duo 2.66 3 GB RAM Mac OSX 10.4.9
    Thanks again,
    Chris

    I had a problem accessing the BOA site also. here is how I solved the problem:
    Under System preferences, choose Network.
    Select to Show Built-in -Ethernet. Select the ETHERNET tab.
    At the bottom of this panel, select Custom under the Maximum Packet Size (MTU). Enter 1492 and click Apply Now.
    Hope this works for you too. There seems to be a problem with the maximum MTU size of 1500.

  • Once again, my .mac aliases have disappeared from Mail.... Arghhh! help?

    Once again, with no warning, all my .mac aliases have disappeared from the dropdowns in my Mail app (OS 10.4.11). They still exist in .mac/mobile me webmail, and in Mail i'm still receiving emails addressed to them. But I can't reply to these emails with the alias, nor create new emails with aliases.
    I have tried Sync-ing with the site- i recollect that has worked in the past, but now no change. i have tried adding the aliases in with commas after the primary address in Preferences (as is suggested in KB below), but it does not work- and the next time Prefs is open, they are gone. In Mail preferences, the account is listed as ".mac", which is listed in the KB as one of the correct types (the other being imap).
    I use my .mac aliases a lot, and have for years. i do NOT like or want to go to .mac/me Webmail to be able to use them. i do NOT want to change them to .me addresses/aliases. I can't stand how they just randomly come and go as far as being available as dropdowns in Mail... what the heck is up with Apple? i'm paying $100 for these kinds of services (excuse me, $99) and they can't keep a few aliases available to their own app (Mail)? If they weren't so deeply embedded in my business uses, i'd ditch the whole thing.
    Anyway, enuf ranting; does anyone know the solution or work-around? Nothing in the below KB worked for me, even tho it is supposed to.
    the non-helpful KB: http://support.apple.com/kb/HT2296

    If your aliases are disappearing after you enter them, that would indicate that your Mail preferences file has become corrupted. The only solution for that is to delete the com.apple.mail.plist file in Home/Library/Preferences, then restart Mail and setup your account(s) again.
    However, before you do that, you must remove all your mail account folders that being with "IMAP-"; otherwise you'll create more problems for yourself. Those are located in Home/Library/Mail.

Maybe you are looking for

  • List of material master

    Dear experts, We had a query sorting the list of material master, based on the "old material number" (MARA-BISMT ) and "material number" (MARA-MATNR.) It was running in BI. Then our user added the requirement to be able to select by "sales org"(TVKO-

  • Open a Photoshop file in Photoshop Elements?

    Can I open an existing Photoshop file in Photoshop Elements ?

  • Time series error

    hi friends got this error new to 11g plz can any one help me out of this State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 43113] Message returned from OBIS. [nQSError: 22040] To use Ago

  • No option to create mp3 version in itunes 10?

    hey guys, i always use to have this option, now when i go into my itunes it's never there anymore? there's a create aac version but no mp3 version, was wondering what's up??

  • Antivirus and SQL -- "to do or not todo"?

    I was reading through  http://support.microsoft.com/kb/309422/en-us and plan to adopt its suggestions NOT to AV scan certain file SQL (2008) file extensions: >>>>>>>>> mdf, ldf, ndf .bak, .trn .sql  Full Text Catalogs >>>>>>>>>> Per the URL "we stron