Lookup - XML () Xpath function defective - internal error XPath

Hello

I used lookup - xml () function Xpath to look up values from an XML file.

When he finds a key in input value it works fine.

But when he does not find a value for the specified key, it gives the error: internal error xpath.

Code:

oraext:Lookup-XML('oramds:/apps/GETSPRIVIFC/lov/ResourceCode.XML','/resource/ResourceCodes/ResourceCode','Name','Value',$input)

Error:

< exception class = "com.collaxa.cube.xml.xpath.XPathException" >
XPath expression cannot run. An error occurs during the processing of the XPath expression
expression; the expression is
oraext:Lookup-XML('oramds:/apps/GETSPRIVIFC/lov/ResourceCode.XML','/resource/ResourceCodes/ResourceCode','Name','Value',$input).
The XPath expression cannot run; the reason was: internal xpath error.
Check the root cause of detailed described in the text of the exception message and
Make sure the XPath query is correct.
< cell >
< f > com.collaxa.cube.xml.xpath.BPELXPathUtil.evaluate #262 < /f >
< f > com.collaxa.cube.engine.ext.bpel.v1.wmp.BPEL1AssignWMP.__executeStatements #137 < /f >
< f > com.collaxa.cube.engine.ext.bpel.common.wmp.BaseBPELActivityWMP.perform #158 < /f >
< f > com.collaxa.cube.engine.CubeEngine._performActivity #2463 < /f >
< f > com.collaxa.cube.engine.CubeEngine.handleWorkItem #1115 < /f >
< f > com.collaxa.cube.engine.dispatch.message.instance.PerformMessageHandler.handleLocal #73 < /f >
< f > com.collaxa.cube.engine.dispatch.DispatchHelper.handleLocalMessage #220 < /f >
< f > com.collaxa.cube.engine.dispatch.DispatchHelper.sendMemory #328 < /f >
< f > com.collaxa.cube.engine.CubeEngine.createAndInvoke #679 < /f >
< f > com.collaxa.cube.engine.ejb.impl.CubeEngineBean.createAndInvoke #103 < /f >
< f > com.collaxa.cube.engine.ejb.impl.CubeEngineBean.syncCreateAndInvoke #145 < /f >
< f > com.collaxa.cube.engine.ejb.impl.bpel.BPELEngineBean.syncCreateAndInvoke #111 < /f >
< f > sun.reflect.GeneratedMethodAccessor4027.invoke < /f >
< f > sun.reflect.DelegatingMethodAccessorImpl.invoke #25 < /f >
< f > java.lang.reflect.Method.invoke #597 < /f >
< f > com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed #149 < /f >
< f >... < /f >
< / stack >
< / exception >
< root class = "javax.xml.xpath.XPathExpressionException" >
internal xpath error
< cell >
< f > oracle.xml.xpath.JXPathExpression.evaluate #242 < /f >
< f > com.collaxa.cube.xml.xpath.BPELXPathUtil.evaluate #240 < /f >
< f > com.collaxa.cube.engine.ext.bpel.common.BPELWMPHelper.evalFromValue #339 < /f >
< f > com.collaxa.cube.engine.ext.bpel.v1.wmp.BPEL1AssignWMP.__executeStatements #137 < /f >
< f > com.collaxa.cube.engine.ext.bpel.common.wmp.BaseBPELActivityWMP.perform #158 < /f >
< f > com.collaxa.cube.engine.CubeEngine._performActivity #2463 < /f >
< f > com.collaxa.cube.engine.CubeEngine.performActivity #2334 < /f >
< f > com.collaxa.cube.engine.CubeEngine.handleWorkItem #1115 < /f >
< f > com.collaxa.cube.engine.dispatch.message.instance.PerformMessageHandler.handleLocal #73 < /f >
< f > com.collaxa.cube.engine.dispatch.DispatchHelper.handleLocalMessage #220 < /f >
< f > com.collaxa.cube.engine.dispatch.DispatchHelper.sendMemory #328 < /f >
< f > com.collaxa.cube.engine.CubeEngine.endRequest #4350 < /f >
< f > com.collaxa.cube.engine.CubeEngine.endRequest #4281 < /f >
< f > com.collaxa.cube.engine.CubeEngine.createAndInvoke #679 < /f >
< f > com.collaxa.cube.engine.ejb.impl.CubeEngineBean.createAndInvoke #103 < /f >
< f > com.collaxa.cube.engine.ejb.impl.CubeEngineBean.syncCreateAndInvoke #145 < /f >
< f >... < /f >
< / stack >
< / root >

This is the expected behavior. It be handled.

Looks like you are using it for LOV, the best option is DVM.

Based on the DS, there is an option for defaultValue, if the digital Voltmeter has no value, then the default value is sent back rather the exception.

DVM:lookupValue(dvmLocation,sourceColumnName,sourceValue,targetColumnName,DefaultValue)

http://docs.Oracle.com/CD/E15523_01/integration.1111/e10224/bp_appx_functs.htm

Thank you
Vijay

Tags: Fusion Middleware

Similar Questions

  • Error message: "an internal support function returned an error" trying to attach files in emails.

    Original title: Error message-not invited

    Trying to electronic. Error message: 'an internal support function returned an error.'

    Hello

    Which email client you are using?

    If you are facing the issue in Microsoft Office, you can post your question in the Microsoft Office community & get help support professionals.

    Hope the helps of information.

    Please post back and we do know.

  • Static class functions: PLS-00801: internal error [phd_get_defn:D_S_ED:LHS]

    Any ideas why this would generate an internal error - referring to a static class function in the constructor of this class parameter signature?

    Test case (on 11.2.0.2) as follows:
    SQL> create or replace type TMyObject is object(
      2          id      integer,
      3          name    varchar2(30),
      4  
      5          static function DefaultID return integer,
      6          static function DefaultName return varchar2,
      7  
      8          constructor function TMyObject(
      9                  objID integer default TMyObject.DefaultID(), objName varchar2 default TMyObject.DefaultName()
     10          )return self as result
     11  );
     12  /
    
    Type created.
    
    SQL> 
    SQL> create or replace type body TMyObject is
      2  
      3          static function DefaultID return integer is
      4          begin
      5                  return( 0 );
      6          end;
      7  
      8          static function DefaultName return varchar2 is
      9          begin
     10                  return( 'foo' );
     11          end;
     12  
     13          constructor function TMyObject(
     14                  objID integer default TMyObject.DefaultID(), objName varchar2 default TMyObject.DefaultName()
     15          )return self as result is
     16          begin
     17                  self.id := objId;
     18                  self.name := objName;
     19                  return;
     20          end;
     21  
     22  end;
     23  /
    
    Type body created.
    
    SQL> 
    SQL> declare
      2          obj     TMyObject;
      3  begin
      4          obj := new TMyObject();
      5  end;
      6  /
    declare
    *
    ERROR at line 1:
    ORA-06550: line 0, column 0:
    PLS-00801: internal error [phd_get_defn:D_S_ED:LHS]
    If static class functions are removed from the manufacturer and applied to the place inside the body of the constructor, it works without error. Similarly, you can call the constructor with the functions of the static class as parameters, without causing an internal error.
    SQL> create or replace type TMyObject is object(
      2          id      integer,
      3          name    varchar2(30),
      4  
      5          static function DefaultID return integer,
      6          static function DefaultName return varchar2,
      7  
      8          constructor function TMyObject(
      9                  objID integer default null, objName varchar2 default null
     10          )return self as result
     11  );
     12  /
    
    Type created.
    
    SQL> 
    SQL> create or replace type body TMyObject is
      2  
      3          static function DefaultID return integer is
      4          begin
      5                  return( 0 );
      6          end;
      7  
      8          static function DefaultName return varchar2 is
      9          begin
     10                  return( 'foo' );
     11          end;
     12  
     13          constructor function TMyObject(
     14                  objID integer default null, objName varchar2 default null
     15          )return self as result is
     16          begin
     17                  self.id := nvl( objId, TMyObject.DefaultID() );
     18                  self.name := nvl( objName, TMyObject.DefaultName() );
     19                  return;
     20          end;
     21  
     22  end;
     23  /
    
    Type body created.
    
    SQL> 
    SQL> declare
      2          obj     TMyObject;
      3  begin
      4          obj := new TMyObject();
      5  end;
      6  /
    
    PL/SQL procedure successfully completed.
    
    SQL> 
    SQL> declare
      2          obj     TMyObject;
      3  begin
      4          obj := new TMyObject(
      5                          objID => TMyObject.DefaultID(),
      6                          objName => TMyObject.DefaultName()
      7                  );
      8  end;
      9  /
    
    PL/SQL procedure successfully completed.
    
    SQL> 
    Had a look on support.oracle.com and turned toward the top of the specific remarks concerning the use of the static class functions in the signature of the constructor parameter. Known issue? Any other solution in addition to the above?

    Hello

    There is a bug: ""Bug 8470406: CREATING an OBJECT INSTANCE FAILS WITH the ERROR PLS-00801 IN 11 GR 1 material ", it shows the behavior in 11 g but not to the point 10.2." It gives exactly the symptoms you see also, move to the body and it works. But he gave no solution/patch.

    Herald tiomela
    http://htendam.WordPress.com

  • ORA-00600: internal error code, arguments: [17012] with function pipeline

    The package is containing a type of function and the table declaration.
    the function returns the type of the collection is in pipeline

    When I recompile the plu sql package I get this error
    ORA-00600: internal error code, arguments: [17012].

    Hello!

    There is a known bug 2280512. But this info is no longer valid for version 9.2 of the db... If this is the case (you have'n give your version of db) you need to pass your database to a higher version (9.2.0.8 is good enough confirmed of my practice)

    T

  • An internal error occurred during: packaging

    Hello

    Recently, I've had my machine upgraded to Windows 7, which mean't I had to reinstall the Eclipse Plugin. I get the following error when I try to launch the simulator using JRE 5.0.

    'Packaging Blackberry Simulator' has encountered a problem.

    An internal error occurred during: "Packaging Blackberry Simulator."

    When I click on the 'Détails' button, I get the following error message:

    An internal error occurred during: "packaging BlackBerry Simulator.
    java.lang.NullPointerException

    In the Console pane, I get the following error message:
    I/o Error: Cannot run program "jar": CreateProcess = 2 error, the system cannot find the file specified

    My installed software are:
    Blackbery Java Plug-inc (core) 1.5.0.201112201607
    BlackBerry Java SDK 7.0.0.33
    Eclipse SDK 3.6.2.M20110210 - 1200

    In the Package Explorer, I use:
    "[BlackBerry JRE 5.0.0] JRE System Library

    In the preferences for the parameters of compiler, I put the
    The compiler compliance level for: 1.3

    In Run Configurations, I got the JRE the value:
    BlackBerry JRE 5.0.0

    My CLASSPATH Windows is:

    C:\oracle\product\11.2.0\Client_1\bin;%SystemRoot%\System32;%SystemRoot%;%SystemRoot%\System32\Wbem;%SystemRoot%\system32\WindowsPowerShell\v1.0\; C:\Program Files (x 86) \Common Files\Ulead Systems\MPEG; C:\Program Files (x 86) \QuickTime\QTSystem\; C:\Program Files\Intel\WiFi\bin\; C:\Program Files\Fichiers Files\Intel\WirelessCommon\. C:\Program Files\TortoiseSVN\bin

    Here's my configuration details of Eclipse:

    Date: Thursday, March 8, 2012 09:52:08 EST

    Information on the platform:

    System properties:
    awt. Toolkit = Sun.awt.Windows.WToolkit
    Eclipse.application = org. Eclipse.UI.IDE.Workbench
    eclipse.buildId = M20110210-1200
    Eclipse.Commands = - os
    Win32
    -ws
    Win32
    -arch
    x 86
    -showsplash
    C:\EclipsePlugin\\plugins\org. Eclipse.platform_3.6.2.v201102101200\splash.bmp
    -Launcher
    C:\EclipsePlugin\eclipse.exe
    -name
    Eclipse
    -launcher.library
    C:\EclipsePlugin\\plugins/org. Eclipse.Equinox.Launcher.Win32.Win32.x86_1.1.2.R36x_v20101222\eclipse_1312.dll
    -Start
    C:\EclipsePlugin\\plugins/org. Eclipse.Equinox.launcher_1.1.1.R36x_v20101122_1400.jar
    -vm
    C:\Program Files (x86)\Java\jre6\bin\client\jvm.dll
    Eclipse.Home.Location=file:/C:/EclipsePlugin/
    Eclipse.Launcher=C:\EclipsePlugin\eclipse.exe
    Eclipse.Launcher.Name = Eclipse
    [email protected]/... /P2/
    Eclipse.P2.Profile = SDKProfile
    Eclipse.Product = org. Eclipse.Sdk.IDE
    eclipse.startTime = 1331218090367
    Eclipse.VM = C:\Program files (x86)\Java\jre6\bin\client\jvm.dll
    Eclipse.vmargs = - XX:MaxPermSize = 512 m
    -Xms40m
    -Xmx512M
    -Djava.class.Path=C:\EclipsePlugin\\plugins/org. Eclipse.Equinox.launcher_1.1.1.R36x_v20101122_1400.jar
    Equinox.use.DS = true
    leader. Encoding = Cp1252
    leader. Encoding.pkg = Sun.IO
    leader. Separator =.
    Java.awt.graphicsenv = Sun.awt.Win32GraphicsEnvironment
    Java.awt.PrinterJob = Sun.awt.Windows.WPrinterJob
    Java.class.Path=C:\EclipsePlugin\\plugins/org. Eclipse.Equinox.launcher_1.1.1.R36x_v20101122_1400.jar
    Java.class.version = 50.0
    Java.endorsed.dirs=C:\Program files (x 86) \Java\jre6\lib\endorsed
    Java.ext.dirs=C:\Program files (x 86) \Java\jre6\lib\ext; C:\Windows\Sun\Java\lib\ext
    Java.Home = C:\Program files (x 86) \Java\jre6
    Java.IO.TMPDIR=C:\Users\sreid\AppData\Local\Temp\
    Java.Library.Path=C:\EclipsePlugin; C:\Windows\Sun\Java\bin; C:\Windows\System32; C:\Windows; C:/Program Files (x 86) / Java jre6/bin/client /. C:/Program Files (x 86) / Java/jre6/bin; C:/Program Files (x 86) / Java/jre6/lib/i386; C:\oracle\product\11.2.0\Client_1\bin; C:\Windows\System32; C:\Windows; C:\Windows\System32\Wbem; C:\Windows\system32\WindowsPowerShell\v1.0\; C:\Program Files (x 86) \Common Files\Ulead Systems\MPEG; C:\Program Files (x 86) \QuickTime\QTSystem\; C:\Program Files\Intel\WiFi\bin\; C:\Program Files\Fichiers Files\Intel\WirelessCommon\. C:\Program Files\TortoiseSVN\bin; C:\EclipsePlugin;.
    Java.Runtime.Name = Java (TM) SE Runtime Environment
    Java.Runtime.version = 1.6.0_31 - b05
    Java.Specification.Name = Java platform API specification
    Java.Specification.Vendor = Sun Microsystems Inc.
    Java.Specification.version = 1.6
    Java.Vendor Sun Microsystems Inc. =.
    Java.Vendor.URL =http://java.sun.com/
    Java.Vendor.URL.bug =http://java.sun.com/cgi-bin/bugreport.cgi
    Java.version = 1.6.0_31
    Java.VM.info mode = Mixed
    Java.VM.Name = Java VM Client
    Java.VM.Specification.Name = Java Virtual Machine specifications
    Java.VM.Specification.Vendor = Sun Microsystems Inc.
    Java.VM.Specification.version = 1.0
    Java.VM.Vendor = Sun Microsystems Inc.
    Java.VM.version = 20.6 - b01
    Line.Separator =

    org.eclipse.debug.ui.breakpoints.toggleFactoriesUsed = false
    org. Eclipse.Equinox.Launcher.Splash.Location=C:\EclipsePlugin\\plugins\org. Eclipse.platform_3.6.2.v201102101200\splash.bmp
    org.eclipse.equinox.simpleconfigurator.configUrl = filerg.eclipse.equinox.simpleconfigurator/bundles.info
    org. Eclipse.Update.Reconcile = false
    org. OSGi.Framework.ExecutionEnvironment=OSGi/minimum-1.0,OSGi/minimum-1.1,OSGi/minimum-1.2,JRE-1.1,J2SE-1.2,J2SE-1.3,J2SE-1.4,J2SE-1.5,javase-1.6
    org. OSGi.Framework.Language = in
    org. OSGi.Framework.OS.Name = Windows7
    org. OSGi.Framework.OS.version = 6.1.0
    org. OSGi.Framework.Processor = x 86
    org.osgi.framework.system.packages=javax.accessibility,javax.activation,javax.activity,javax.annotation,javax.annotation.processing,javax.crypto,javax.crypto.interfaces,javax.crypto.spec,javax.imageio,javax.imageio.event,javax.imageio.metadata,javax.imageio.plugins.bmp,javax.imageio.plugins.jpeg,javax.imageio.spi,javax.imageio.stream,javax.jws,javax.jws.soap,javax.lang.model,javax.lang.model.element,javax.lang.model.type,javax.lang.model.util,javax.management,javax.management.loading,javax.management.modelmbean,javax.management.monitor,javax.management.openmbean,javax.management.relation,javax.management.remote,javax.management.remote.rmi,javax.management.timer,javax.naming,javax.naming.directory,javax.naming.event,javax.naming.ldap,javax.naming.spi,javax.net,javax.net.ssl,javax.print, javax.print.attribute,javax.print.attribute.standard,javax.print.event,javax.rmi,javax.rmi.CORBA,javax.rmi.ssl,javax.script,javax.security.auth,javax.security.auth.callback,javax.security.auth.kerberos,javax.security.auth.login,javax.security.auth.spi,javax.security.auth.x500,javax.security.cert,javax.security.sasl,javax.sound.midi,javax.sound.midi.spi,javax.sound.sampled,javax.sound.sampled.spi,javax.sql,javax.sql.rowset,javax.sql.rowset.serial,javax.sql.rowset.spi,javax.swing,javax.swing.border,javax.swing.colorchooser,javax.swing.event,javax.swing.filechooser,javax.swing.plaf,javax.swing.plaf.basic,javax.swing.plaf.metal,javax.swing.plaf.multi,javax.swing.plaf.synth,javax.swing.table,javax.swing.text,javax.swing.text.html,javax.swing.text.html.parser,javax.swing.text.rtf, javax.swing.tree,javax.swing.undo,javax.tools,javax.transaction,javax.transaction.xa,javax.xml,javax.xml.bind,javax.xml.bind.annotation,javax.xml.bind.annotation.adapters,javax.xml.bind.attachment,javax.xml.bind.helpers,javax.xml.bind.util,javax.xml.crypto,javax.xml.crypto.dom,javax.xml.crypto.dsig,javax.xml.crypto.dsig.dom,javax.xml.crypto.dsig.keyinfo,javax.xml.crypto.dsig.spec,javax.xml.datatype,javax.xml.namespace,javax.xml.parsers,javax.xml.soap,javax.xml.stream,javax.xml.stream.events,javax.xml.stream.util,javax.xml.transform,javax.xml.transform.dom,javax.xml.transform.sax,javax.xml.transform.stax,javax.xml.transform.stream,javax.xml.validation,javax.xml.ws,javax.xml.ws.handler,javax.xml.ws.handler.soap,javax.xml.ws.http,javax.xml.ws.soap,javax.xml.ws.spi,javax.xml.ws.wsaddressing, javax.xml.xpath,org.ietf.jgss,org.omg.CORBA,org.omg.CORBA_2_3,org.omg.CORBA_2_3.portable,org.omg.CORBA.DynAnyPackage,org.omg.CORBA.ORBPackage,org.omg.CORBA.portable,org.omg.CORBA.TypeCodePackage,org.omg.CosNaming,org.omg.CosNaming.NamingContextExtPackage,org.omg.CosNaming.NamingContextPackage,org.omg.Dynamic,org.omg.DynamicAny,org.omg.DynamicAny.DynAnyFactoryPackage,org.omg.DynamicAny.DynAnyPackage,org.omg.IOP,org.omg.IOP.CodecFactoryPackage,org.omg.IOP.CodecPackage,org.omg.Messaging,org.omg.PortableInterceptor,org.omg.PortableInterceptor.ORBInitInfoPackage,org.omg.PortableServer,org.omg.PortableServer.CurrentPackage,org.omg.PortableServer.POAManagerPackage,org.omg.PortableServer.POAPackage,org.omg.PortableServer.portable,org.omg.PortableServer.ServantLocatorPackage,org.omg.SendingContext, org.omg.stub.java.rmi,org.w3c.dom,org.w3c.dom.bootstrap,org.w3c.dom.css,org.w3c.dom.events,org.w3c.dom.html,org.w3c.dom.ls,org.w3c.dom.ranges,org.w3c.dom.stylesheets,org.w3c.dom.traversal,org.w3c.dom.views,org.w3c.dom.xpath,org.xml.sax,org.xml.sax.ext,org.xml.sax.helpers
    org. OSGi.Framework.Vendor = Eclipse
    org. OSGi.Framework.version = 1.5.0
    org. OSGi.supports.Framework.extension = true
    org. OSGi.supports.Framework.fragment = true
    org. OSGi.supports.Framework.requirebundle = true
    OS. Arch = x 86
    OS. Name = Windows 7
    OS.version = 6.1
    OSGi.Arch = x 86
    OSGi.bundles = Reference:file: net. RIM.ejde.Preprocessing.hook_1.5.0.201112201607/,Reference:filerg.eclipse.equinox.simpleconfigurator_1.0.200.v20100503.jar@1:start
    osgi.bundles.defaultStartLevel = 4
    OSGi.bundlestore=C:\EclipsePlugin\configuration\org. Eclipse.osgi\bundles
    OSGi.Configuration.Area=file:/C:/EclipsePlugin/configuration/
    OSGi.Framework=file:/c:/EclipsePlugin/plugins/org. Eclipse.osgi_3.6.2.R36x_v20110210.jar
    OSGi.Framework.extensions = Reference:file: net. RIM.ejde.Preprocessing.hook_1.5.0.201112201607/
    OSGi.Framework.Shape = jar
    OSGi.Framework.version = 3.6.2.R36x_v20110210
    osgi.frameworkClassPath =., file:c:/EclipsePlugin/plugins/net.rim.ejde.preprocessing.hook_1.5.0.201112201607/., file:c:/EclipsePlugin/plugins/net.rim.ejde.preprocessing.hook_1.5.0.201112201607/lib-ext/asm-3.1.jar, file:c:/EclipsePlugin/plugins/net.rim.ejde.preprocessing.hook_1.5.0.201112201607/lib-ext/asm-tree-3.1.jar
    OSGi.Install.Area=file:/C:/EclipsePlugin/
    OSGi.instance.Area=file:/C:/Users/sreid/documents/Workspace/
    OSGi.instance.Area.default=file:/C:/Users/sreid/Workspace/
    OSGi.LogFile=C:\Users\sreid\Documents\workspace\.metadata\.log
    OSGi.manifest.cache=C:\EclipsePlugin\configuration\org. Eclipse.osgi\manifests
    OSGi.nl = en_US
    OSGi.OS = Win32
    osgi.splashLocation=C:\EclipsePlugin\\plugins\org.eclipse.platform_3.6.2.v201102101200\splash.bmp
    osgi.splashPath=platform:/base/plugins/org.eclipse.platform
    OSGi.syspath=c:\EclipsePlugin\plugins
    OSGi.tracefile=C:\Users\sreid\Documents\workspace\.metadata\trace.log
    OSGi.WS = Win32
    Path.Separator =;
    Sun.Arch.Data.Model = 32
    Files Sun.Boot.class.Path=C:\Program (x86)\Java\jre6\lib\resources.jar; C:\Program Files (x86)\Java\jre6\lib\rt.jar; C:\Program Files (x86)\Java\jre6\lib\sunrsasign.jar; C:\Program Files (x86)\Java\jre6\lib\jsse.jar; C:\Program Files (x86)\Java\jre6\lib\jce.jar; C:\Program Files (x86)\Java\jre6\lib\charsets.jar; C:\Program Files (x86)\Java\jre6\lib\modules\jdk.boot.jar; C:\Program Files (x 86) \Java\jre6\classes
    Sun.Boot.Library.Path=C:\Program files (x 86) \Java\jre6\bin
    Sun.CPU.endian = Little
    Sun.CPU.isalist = pentium_pro + MMX pentium_pro pentium + pentium mmx i486 i386 i86
    Sun.Desktop = Windows
    Sun.IO.Unicode.Encoding = UnicodeLittle
    Sun.JNU.Encoding = Cp1252
    Sun.Management.Compiler = hotspot Client compiler
    Sun.OS.patch.Level = Service Pack 1
    User country = US
    User .dir = C:\EclipsePlugin
    User.Home=C:\Users\sreid
    User .language = in
    User = sreid .name
    User .TimeZone = America/New_York
    User.Variant =

    Features:
    net.rim.EclipseJDE (1.5.0.201112201607) BlackBerry Java plug-in»
    NET.RIM.ejde.Feature.componentpack7.0.0 (7.0.0.33) "BlackBerry Java SDK version 7.0.0.
    org. Eclipse.CVS (1.2.1.r362_v20101111 - 7B77FKv99HL0GvIAF99I8H14B7E) 'Eclipse CVS Client'
    org. Eclipse.Help (1.2.1.r362_v20101111 - 7e7jEVFDr6xg-LSlC_z0w1D) "help system Base.
    org. Eclipse.JDT (3.6.2.r362_v20101117 - 0800-7z8XFW6FLFlmjJcvz03jyeFBLS_F) "Eclipse Java development tools.
    org. Eclipse.PDE (3.6.2.r362_v20110203 - 7b7mFL2FET3dhHalh1iNZtL) "EDP".
    org. Eclipse.Platform (3.6.2.r362_v20110210 - 9gF78Gs1FrIGnHDHWkEcopoN8AmxeZflGDGKQi) "Eclipse Platform.
    org. Eclipse.RCP (3.6.2.r362_v20101104 - 9SAxFMKFkSAqi8axkv1ZjegmiBLY) "Eclipse RCP.
    org. Eclipse.SDK (3.6.2.r362_v20100929 - 7Q7m7HD5cWlFgdCBHllpZMd2M468sbnm2RJvUWIbiJnWC) "Eclipse Project SDK.

    PS.

    Do you know how to check if I'm using a 32-bit version of java?

    Thanks for any help,

    Steve

    It is resolved, the problem was the level of compliance of the compiler, which unknown to me can be set in two places; a global (windows-> preferences-> compiler) and the other at the level of the project (right click on the folder of your project-> build path-> configure build path-> java compiler).

  • Python, call DLLs in LabVIEW: Fatal internal error when accessing output String Cluster

    Hello

    We have compiled a DLL in LabVIEW (TestError.dll) and tried to call it from Python.

    TestError.dll includes 2 functions:

    1 testErreur: cluster 1 entry string, 1 channel indicator

    2 TestError2: 1 channel input, 1 bunch of output string

    What we try to do in Python is actually something like this:

    1 provide values to controls in the functions of the DLL.

    2. call the DLL.

    3 get the values of the indicators.

    What we have seen are:

    1 read/write operations on normal data types (string, digital) indicators/controls are OK

    2. write operation on the Cluster string entry is OK

    3. read operation on the Cluster output string is not OK. The following error is still prompted for:

    «Unrecoverable internal error: 'MemoryManager.cpp', line 437.» LabVIEW version 8.6... »

    Also joined the TestError.prj and python code.

    Grateful if someone can help to explain why we get this error and how to overcome?

    Thank you

    howmean

    What we have seen are:

    1 read/write operations on normal data types (string, digital) indicators/controls are OK

    2. write operation on the Cluster string entry is OK

    3. read operation on the Cluster output string is not OK. The following error is still prompted for:

    «Unrecoverable internal error: 'MemoryManager.cpp', line 437.» LabVIEW version 8.6... »

    Also joined the TestError.prj and python code.

    It is very logical that it does not, and the bad news is, it cannot really be implemented reliable of a process not LabVIEW.

    LabVIEW channels (and tables) are very specific species. They are then called handles, which are pointers to a pointer to a block of memory. If you have a control or indicator on its own, the Prototype configuration allows you to configure this setting as a C. LabVIEW data pointer, when creating the DLL, create heels C for each exported function and place the code to do the translation between the past C pointer to and necessary LabVIEW data handle. For strings and arrays within the cluster, there is no configuration option and the DLL is expected to pass a structure with data handles native LabVIEW in there.

    You may say that creating handles data in your calling process enough to trick LabVIEW. For the input variables that actually CAN sometimes work (but is a delicate and dangerous generally to handle this). There is no way to make it work for output variables. LabVIEW will try to resize handle to fill data in that he wants to make. This resizing is done using internal memory manager of LabVIEW. This will work only if it had been allocated by EXACTLY the same instance of the memory manager. Otherwise, it refers to a different memory segment and catastophally fail. The only way to make this work perhaps, with luck, taking your heart and prayer to the gods, is to lvrt.dll to allocate a handle that you must pass to the DLL. Still find the good lvrt.dll, which will execute your DLL LabVIEW is a major challenge.

  • An internal error occurred during the installation of the Service Pack (SP1) 0 x 80073712

    I can not install Service Pack 1, the error that I get when using the standalone installer is 0 x 80073712, an internal error is produced so that installation of the Service Pack.

    I tried a few times and tried in safe mod etc, everytime the same result.

    Tonight, I tried system strengthened tool - here are the results:

    =================================
    Preparation of control system was updated.
    Binary version 6.0.6001.22375
    Package, Version 5.0
    2009-07-28 20:20

    Checking deployment Packages

    Audit of manifest Package and catalogs.

    Checking package watchlist.

    Control of component watchlist.

    Verification of the packets.

    Control components store
    (f) CSI shows Bad XML 0xC0150006 WinSxS\Manifests\x86_638f1869cdfb43002a19f6fe8162c904_b77a5c561934e089_6.0.6000.16762_none_97a1342837387725.manifest x86_638f1869cdfb43002a19f6fe8162c904_b77a5c561934e089_6.0.6000.16762_none_97a1342837387725
    (f) CSI catalog bribe 0x800B0003 winsxs\Catalogs\b6f4dc620eb230c19e41e48651d27e52ce429a0cb349a5f5cad42c8918e2f783.cat 02dc74378a3... eccd0ef3a50_31bf3856ad364e35_6.0.6000.20734_3e3193d09f7c88aa
    (f) CSI catalog corrupt 0x800B0003 winsxs\Catalogs\8b246cbcadb7f5388e8917d267eb32fcb584ca8200675798655a48d88a7facba.cat b5148eadd22... 3472eb0cd44_31bf3856ad364e35_6.0.6000.20545_70080dd3a46ecc51
    (f) CSI catalog bribe 0x800B0003 winsxs\Catalogs\b6f4dc620eb230c19e41e48651d27e52ce429a0cb349a5f5cad42c8918e2f783.cat a372dfee501... d60dd275ba6_31bf3856ad364e35_6.0.6000.16609_ec008ba78d152187
    (f) CSI catalog corrupt 0x800B0003 winsxs\Catalogs\b6f4dc620eb230c19e41e48651d27e52ce429a0cb349a5f5cad42c8918e2f783.cat 60fba6ef368... 5b0b942774f_31bf3856ad364e35_6.0.6000.20734_5221a33b81369597
    (f) CSI shows Bad XML 0xC0150006 WinSxS\Manifests\x86_b198f32397ae88fceb61583ecc0afec0_31bf3856ad364e35_6.0.6000.20937_none_ae2c4e68b0f8e679.manifest x86_b198f32397ae88fceb61583ecc0afec0_31bf3856ad364e35_6.0.6000.20937_none_ae2c4e68b0f8e679
    (f) CSI catalog corrupt 0x800B0003 winsxs\Catalogs\b6f4dc620eb230c19e41e48651d27e52ce429a0cb349a5f5cad42c8918e2f783.cat dde3a15d602... 27a9ec079f9_31bf3856ad364e35_6.0.6000.16609_f084bb78773779e5
    (f) CSI shows Bad XML 0xC0150006 WinSxS\Manifests\x86_microsoft-windows-mail-comm-dll_31bf3856ad364e35_6.0.6000.16386_none_777a686e5ba19395.manifest x86_microsoft-windows-mail-comm - dll_31bf3856ad364e35_6.0.6000.16386_none_777a686e5ba19395
    (fix)    Manifest XML file CSI CSI replaced incorrect file: x86_microsoft-windows-mail-comm - dll_31bf3856ad364e35_6.0.6000.16386_none_777a686e5ba19395.manifest from: C:\Windows\CheckSur\v1.0\windows6.0-6001-client.cab
    Summary:
    Seconds executed: 1570
    Found 8 errors
    1 error correction
    CSI manifest XML bad Total Count: 3
    Correction: CSI manifested wrong XML.  Total Count: 1
    CSI catalog corrupted Total Count: 5

    In my view, that he fixed a few things, but not everything. I tried again to install, without success, the same error occurred.

    Can anyone help? -The amount of time it takes is stupid! -My phone is up to SP2 using the same install files without worries. I'm almost tempted to stick with no service pack until I have Windows 7, I already pre-ordered!

    Any ideas then peeps?

    See: Error Message When you try to install updates on the Microsoft Update or Windows Update Web site: "0 x 80073712".
    http://support.Microsoft.com/kb/957310

  • Installation of DirectX 11 "an internal error has occurred."

    I tried for hours to play BioShock infinite, but every time I open it it says that it needs directx11. I clicked on run-> directdiag-> and he said I have directx 11. So I went to download directx11, and when I install it, it comes with an error saying "an internal error has occurred." He also says to check the logs of windows, so I did and that's what I came with...

    --------------------
    [31/03/13 20:44:38] module: DXWSetup (Mar 30 2011), file: dxwsetup.cpp, line: 229, function: CDXWSetup::InitInstallEngine

    Sections are not initialized.

    --------------------
    [31/03/13 20:44:38] module: DXWSetup (Mar 30 2011), file: psheets.cpp, line: 705, function: PreinstDlgProc

    CDXWSetup::InitInstallEngine() failed.

    --------------------
    [31/03/13 20:46:47] module: DXWSetup (Mar 30 2011), file: dxwsetup.cpp, line: 229, function: CDXWSetup::InitInstallEngine

    Sections are not initialized.

    --------------------
    [31/03/13 20:46:47] module: DXWSetup (Mar 30 2011), file: psheets.cpp, line: 705, function: PreinstDlgProc

    CDXWSetup::InitInstallEngine() failed.

    How can I fix? I'm extremely tired of trying.

    Hi Lee,.

    Please contact the Microsoft Community.

    I would have you to make reference to the 'most useful answer' in this thread.

    http://answers.Microsoft.com/en-us/Windows/Forum/Windows_7-performance/DirectX-Setup-an-internal-system-error-occurred/c65dfdc5-68d8-44FA-B28F-240812be21a5

    Note: Be sure to only replace the link in the suggestions with this.

    We know if that helps you.

  • A fatal error occurred when attempting to access the SSL server credential private key. The error code returned from the cryptographic module is 0x8009030D. The internal error state is 10001.

    Hello

    I just bought an HP computer, Windows 8 Pro, x64bit. I worked OK for a week and then started to freeze. It freezes all the time. I'll send the error message in the event log. I'd appreciate your help because I've had enough of this gel and I turn it works all the time.

    Log name: System
    Source: Schannel
    Date: 12/07/2013-12:55:12
    Event ID: 36870
    Task category: no
    Level: error
    Keywords:
    User: SYSTEM
    Computer: Aleksey
    Description:
    A fatal error occurred when attempting to access the SSL server credential private key. The error code returned from the cryptographic module is 0x8009030D. The internal error state is 10001.
    The event XML:
    http://schemas.Microsoft.com/win/2004/08/events/event">
     
       
        36870
        0
        2
        0
        0
        0 x 8000000000000000
       
        7179
       
       
        System
        Aleksey
       
     

     
        Server
        0x8009030d
        10001
     

    Thank you

    Hi Aleksey,

    I appreciate the efforts that you put to publish the query on this forum.

    Please help me with the following information about this issue:

    (1) is the computer that is connected to a domain network?

    (2) when exactly you receive the error message? It is by accessing any application?

    If the computer is connected to a domain network, I suggest you send the request on 8 Windows IT Pro. Check out the link:

    http://social.technet.Microsoft.com/forums/Windows/en-us/home?category=w8itpro

    Please let us know if the computer is not in a domain. We will be happy to help you come.

  • ORA-00600: internal error code, arguments: [qmcxeExUseLoc93] with xmltable and big bows in the CLOB column

    Hi all

    Running the following:

    Oracle Database 11 g Enterprise Edition Release 11.2.0.2.0 - 64 bit Production

    PL/SQL Release 11.2.0.2.0 - Production

    "CORE 11.2.0.2.0 Production."

    AMT for IBM/AIX RISC System/6000: Version 11.2.0.2.0 - Production

    NLSRTL Version 11.2.0.2.0 - Production

    Create a view of a relational table and XMLTABLE and extract nodes from voluminous of the xmltable, mapped text using COLUMNS. I concatenate the text nodes in an xml element in the XQuery xmltable, simple sequencing:

    <CONTENT>
    {$i/summary/text(),$i/know/text(),$i/considerations/text(),$i/look_for/text(),
    $i/nc//text(),$i/level1//text(),$i/level2//text(),$i/ipocc//text()}
    </CONTENT>
    

    SQLDeveloper query execution and right on when I scroll the 50th outcome accordingly set or... DB connection is closed and stack following error appears:

    [ORA-00600: internal error code, arguments: [qmcxeExUseLoc93], [], [], [], [], [], [], [], [], [], []]

    00600 00000 - "internal error code, arguments: [%s], [%s], [%s], [%s], [%s], [%s], [%s], [%s] '.

    * Cause: It's the generic internal error for Oracle program number

    exceptions.    This indicates that a process has encountered a

    Exceptional condition.

    * Action: Report as a bug - the first argument is the internal error number

    I went site Oracle Support to use the 'search' for these types of errors, but he found nothing to the argument: "qmcxeExUseLoc93"... any ideas short of opening an SR with Oracle support? S/n reports that no problems with memory or tablespace... trace files report a stack trace is complete:

    [ORA-00600: internal error code, arguments: [qmcxeExUseLoc93], [], [], [], [], [], [], [], [], [], []]

    = Dump for incident 32114 (ORA 600 [qmcxeExUseLoc93]) =.

    2014-04-08 07:31:51.369

    dbkedDefDump(): from the default crash dumps (flags = 0x2, level = 3, mask = 0 x 0)

    -Run SQL statement for the current session (sql_id = 0qn4zxr0stgjh).

    SELECT ID, CONTENT of ort_active_content_en_vw

    -Call trace stack memory-

    call call entered the argument values in hex

    location point type (? means dubious value)

    -------------------- -------- -------------------- ----------------------------

    skdstdst () + 40 bl 107ca 9980 FFFFFFFFFFD99A8? 000002004?

    000000001? 000000003?

    000000000? 000000002?

    000000001? 000000000?

    ksedst1 () + 104 call skdstdst() FFFFFFFFFFD89B0? 000002004?

    110641000? 1098C 1164?

    110641000? 000000000?

    FFFFFFFFFFD8AE0? 700000007?

    ksedst () + 40 call ksedst1() 3030000000000? 002050033?

    1098C 1158? 700000000025C?

    000000000? 000000000?

    1098C07B8? 000000000?

    dbkedDefDump (+ 2828) call ksedst() FFFFFFFFFFD8B90? 000000000?

    000000000? 000000000?

    000000000? 000000000?

    000000000? 300000003?

    …….

    -Binary stack dump-

    = FRAME [1] (skdstdst () + 40 - > 107ca 9980) =.

    defined by pointers frame 0xffffffffffd88b0 and 0xffffffffffd8840

    CALL TYPE: bl ERROR REPORTED: no COMPONENT: (null)

    0xffffffffffd8840 to 0xffffffffffd88b0 memory dump

    FFFFFFFFFFD8840 0FFFFFFF FFFD88B0 42422220 098C 1158 [...] BB '... X]

    08EBE70C FFFFFFFFFFD8850 00000001 00000001 10641000 [... d..]

    FFFFFFFFFFD8860 00000000 00000000 0FFFFFFF FFFD89E8 [...]

    FFFFFFFFFFD8870 0FFFFFFF FFFD99A8 00000000 00002004 [...].

    FFFFFFFFFFD8880 00000003 00000000 00000000 00000001 [...]

    FFFFFFFFFFD8890 00000000 00000000 00000000 00000002 [...]

    FFFFFFFFFFD88A0 00000000 00000001 00000000 00000000 [...]

    = SETTING [2] (ksedst1 () + 104-> skdstdst()) =.

    defined by pointers frame 0xffffffffffd89b0 and 0xffffffffffd88b0

    TYPE of CALL: call ERROR REPORTED: no COMPONENT: KSE

    0xffffffffffd88b0 to 0xffffffffffd89b0 memory dump

    FFFFFFFFFFD88B0 0FFFFFFF FFFD89B0 42422220 10317 68 A... 1zh BB"]

    FFFFFFFFFFD88C0 1033F758 00000001 00000001 0014963C [... <...] 3.X]

    FFFFFFFFFFD88D0 09ED0CA9 1873F04F 28422848 73743231... Sagna (B (Hst21]

    FFFFFFFFFFD88E0 0FFFFFFF FFFD89B0 00000000 00002004 [...].

    FFFFFFFFFFD88F0 00000001 00000001 10641000 098C 1164 [... d...d]

    FFFFFFFFFFD8900 00000001 10641000 00000000 00000000 [... d...]

    ……

    -Status of the Dump process (2).

    ===================================================

    STATE OF THE PROCESS

    -------------

    Global information process:

    process: 0x700000012b18de8, call: 0x70000000b880ee0, xact: 0x0, curses: 0x700000012bf11f0, usrses: 0x700000012bf11f0

    in_exception_handler: no

    ----------------------------------------

    SO: 0x700000012b18de8, type: 2, owner: 0x0, flag: INIT /-/-/ 0x00 if: 0 x 3 c: 0 x 3

    proc = 0x700000012b18de8, name = process, queue = ksu.h LINE: 12451 ID:, pg = 0

    (process) Oracle pid:42, ser:153, called heart/high: 0x70000000b880ee0/0x70000000b880ee0

    flags: (0x0).

    Flags2: (0 x 800), flags3: (0x0)

    Intr error: call error 0,: 0, sess error: error of txn, 0, 0

    queue intr: vacuum

    ksudlp FALSE to the location: 0

    (post info) last message received: 0 0 0

    Last message received-card: no post

    last process affect me: no

    Last message sent: 0 0 26

    Last message sent-map: ksa2.h LINE: 282 ID:ksasnd

    last process posted by me: 6 1 700000012af9058

    (info from latch) wait_event = 0 bits = 0

    Process group: by DEFAULT, proc pseudo: 0x700000012b4db88

    Info of the o/s: user: tst214, duration: UNKNOWN, ospid: 4370650

    OSD pid Info: Unix process pid: 4370650, image: oracle@mldb2385

    ----------------------------------------

    SO: 0x700000010430ba0, type: 10, owner: 0x700000012b18de8, flag: INIT /-/-/ 0x00 if: c: 0x1 0x1

    proc = 0x700000012b18de8, name = FileOpenBlock, leader is ksfd.h LINE: 6337 ID:, pg = 0

    (FOB) flags = 2050 fib = 700000010de3758 incno = 0 waiting for IO cnt = 0

    fname=/tst214_01/oradata/TST214/temp01.dbf

    FNO = 201 lblksz = 8192 fsiz = 36608

    ----------------------------------------

    SO: 0 x 700000010430578, type: 10, owner: 0x700000012b18de8, flag: INIT /-/-/ 0x00 if: c: 0x1 0x1

    proc = 0x700000012b18de8, name = FileOpenBlock, leader is ksfd.h LINE: 6337 ID:, pg = 0

    (FOB) flags = 2050 fib = 700000010de2b40 incno = 0 waiting for IO cnt = 0

    fname=/tst214_03/oradata/TST214/ort_data01.dbf

    FNO = 6 lblksz = 8192 fsiz = 25600

    ----------------------------------------

    SO: 0x70000001042ff38, type: 10, owner: 0x700000012b18de8, flag: INIT /-/-/ 0x00 if: c: 0x1 0x1

    proc = 0x700000012b18de8, name = FileOpenBlock, leader is ksfd.h LINE: 6337 ID:, pg = 0

    (FOB) flags = 2050 fib = 700000010de1310 incno = 0 waiting for IO cnt = 0

    fname=/tst214_01/oradata/TST214/sysaux01.dbf

    FNO = 2 lblksz = 8192 fsiz = 89600

    ----------------------------------------

    SO: 0x70000001042f910, type: 10, owner: 0x700000012b18de8, flag: INIT /-/-/ 0x00 if: c: 0x1 0x1

    proc = 0x700000012b18de8, name = FileOpenBlock, leader is ksfd.h LINE: 6337 ID:, pg = 0

    (FOB) flags = 2050 fib = 700000010de0d10 incno = 0 waiting for IO cnt = 0

    fname=/tst214_01/oradata/TST214/System01.dbf

    FNO = 1 lblksz = 8192 fsiz = 96000

    ----------------------------------------

    SO: 0x700000012bf11f0, type: 4, owner: 0x700000012b18de8, flag: INIT /-/-/ 0x00 if: 0 x 3 c: 0 x 3

    proc = 0x700000012b18de8, name = session, lead = ksu.h LINE: 12459 ID:, pg = 0

    (session) sid: 41 ser: 1263 trans: 0x0, creator: 0x700000012b18de8

    indicators: (0 x 8000045) USR /-flags_idl: (0 x 1) BSY /-/ - /-/ - / -.

    Flags2: (0 x 40008) - / -.

    DID:, DID in the short term:

    TXN branch: 0x0

    Oct: 3, prv: 0, sql: 0x70000000c59dbd0, psql: 0x70000000b196c38, user: 73/ORT_READ

    ksuxds FALSE to the location: 0

    name of the service: the USERS of SYS$

    Customer details:

    Info of the o/s: user: norman.jonker, duration: unknown, ospid: 6224

    machine: G4021165 program: SQL Developer

    application name: SQL Developer, hash value = 1012150930

    Battery active waiting:

    No waiting; last waiting ended 2,617517 sec ago

    Wait state:

    fixed_waits = 0 flags = 0 x 21 limit = 0 x 0 /-1

    History of waiting for session:

    elapsed time of 2,617552 sec from last wait

    0: waiting for 'direct path read '.

    number = 0 x 6, first s/n = 0 x 2901, block cnt = 0 x 2

    wait_id = 2222 seq_num = 2223 snap_id = 1

    wait time: snap = 0,000035 s, exc = 0,000035 s, total s = 0,000035

    wait time: max = infinite

    wait charges: calls = 0 os = 0

    After 0,029003 seconds time elapsed

    1: expected "asynch descriptor resize.

    #aio in circulation = 0 x 0, the current limit of aio = 0xc8, this capping aio = 0 x 145

    wait_id = 2221 seq_num = 2222 snap_id = 1

    wait time: snap = 0,000003 s, exc = 0,000003 s, total s = 0,000003

    wait time: max = 307445734561 min 49sec

    wait charges: calls = 0 os = 0

    After 0,000710 seconds time elapsed

    "2: expected ' SQL * Net message to client"

    pilot-id = 0 x 54435000, #bytes = 0 x 1, = 0x0

    wait_id = 2220 seq_num = 2221 snap_id = 1

    wait time: snap = 0,000005 dry, exc = 0,000005, total = 0,000005 sec

    wait time: max = infinite

    wait charges: calls = 0 os = 0

    After 0,001452 seconds time elapsed

    3: expected ' SQL * Net client message'

    pilot-id = 0 x 54435000, #bytes = 0 x 1, = 0x0

    wait_id = 2219 seq_num = 2220 snap_id = 1

    wait time: snap = 0,499033 s, exc = 0,499033 s, total s = 0,499033

    wait time: max = infinite

    wait charges: calls = 0 os = 0

    After 0,000034 seconds time elapsed

    "4: expected ' SQL * Net message to client"

    pilot-id = 0 x 54435000, #bytes = 0 x 1, = 0x0

    wait_id = 2218 seq_num = 2219 snap_id = 1

    wait time: snap = 0,000003 s, exc = 0,000003 s, total s = 0,000003

    wait time: max = infinite

    wait charges: calls = 0 os = 0

    After 0,000048 seconds time elapsed

    5: expected ' SQL * Net client message'

    pilot-id = 0 x 54435000, #bytes = 0 x 1, = 0x0

    wait_id = 2217 seq_num = 2218 snap_id = 1

    wait time: snap = 0,061319 s, exc = 0,061319 s, total s = 0,061319

    wait time: max = infinite

    wait charges: calls = 0 os = 0

    After 0,000028 seconds time elapsed

    "6: expected ' SQL * Net message to client"

    pilot-id = 0 x 54435000, #bytes = 0 x 1, = 0x0

    wait_id = 2216 seq_num = snap_id 2217 = 1

    wait time: snap = 0,000003 s, exc = 0,000003 s, total s = 0,000003

    wait time: max = infinite

    wait charges: calls = 0 os = 0

    After 0,000048 seconds time elapsed

    7: expected ' SQL * Net client message'

    pilot-id = 0 x 54435000, #bytes = 0 x 1, = 0x0

    wait_id = 2215 seq_num = 2216 snap_id = 1

    wait time: snap = 0,063435 s, exc = 0,063435 s, total s = 0,063435

    wait time: max = infinite

    wait charges: calls = 0 os = 0

    After 0,000045 seconds time elapsed

    "8: expected ' SQL * Net message to client"

    pilot-id = 0 x 54435000, #bytes = 0 x 1, = 0x0

    wait_id = 2214 seq_num = 2215 snap_id = 1

    wait time: snap = 0,000003 s, exc = 0,000003 s, total s = 0,000003

    wait time: max = infinite

    wait charges: calls = 0 os = 0

    After 0,000070 seconds time elapsed

    9: expected ' SQL * Net client message'

    pilot-id = 0 x 54435000, #bytes = 0 x 1, = 0x0

    wait_id = 2213 seq_num = 2214 snap_id = 1

    wait time: snap = 0,060780 s, exc = 0,060780 s, total s = 0,060780

    wait time: max = infinite

    wait charges: calls = 0 os = 0

    After 0,000030 seconds time elapsed

    The Session history sampled session 1263 series 41

    ---------------------------------------------------

    History of the sampled session is built by sampling

    the session target all the 1 second. The sampling process

    capture to each sample, if the session is in an active waiting.

    a wait inactive, or not in a wait. If the session is in a

    active wait interval then one is indicated for all samples

    the session was in the same active waiting. If the

    session is in an inactive waiting or not waiting for

    consecutive samples then one interval is indicated for all

    consecutive samples. If we post these consecutive

    samples in a single interval session may NOT be permanently

    inactive or not in a wait (the sampling process is unclear).

    The history is displayed in reverse chronological order.

    sampling interval: 1 s, max 120 sec history

    ---------------------------------------------------

    [3 samples, 07:31:51 - 07: 31:53]

    not waiting at each sample

    [18 samples, 07:31:33 - 07: 31:50]

    waiting in each sample slowed

    [2 samples, 07:31:31 - 07: 31:32]

    not waiting at each sample

    [42 samples, 07:30:49 - 07:31:30]

    waiting in each sample slowed

    [4 biopsies, 07:30:45 - 07: 30:48]

    not waiting at each sample

    [7 samples, 07:30:38 - 07: 30:44]

    waiting in each sample slowed

    [sample 1, 07:30:37]

    waited for ' SQL * Net break/reset for customer ', seq_num: 1149

    P1: 'driver id' = 0 x 54435000

    P2: 'pause '? = 0 x 0

    P3: "= 0x0

    time_waited: 0,013444 sec (sampling interval: 0 sec)

    [14 samples, 07:30:23 - 07: 30:36]

    waiting in each sample slowed

    [4 biopsies, 07:30:19 - 07: 30:22]

    not waiting at each sample

    [26 samples, 07:29:53 - 07:30:18]

    waiting in each sample slowed

    ---------------------------------------------------

    History of the sampled plenary:

    longest_non_idle_wait: ' SQL * Net break/reset for customer '

    [sample 1, 07:30:37]

    time_waited: 0,013444 sec (sampling interval: 0 sec)

    ---------------------------------------------------

    the temporary object counter: 2

    ----------------------------------------

    Virtual discussion:

    kgskvt: 700000011f06658, sess: 700000012bf11f0 sid: 41 ser: 1263

    VC: 0, proc: 700000012b18de8, id: 41

    News consumer group: OTHER_GROUPS (upd? 0) maps: DEFAULT_CONSUMER_GROUP, orig:

    vt_state: 0x100, vt_flags: 0xA030, blkrun: 0, numa: 1

    inwait: 0

    place where last insched series: kgskthrrun

    place where insched last reset: kgskthrrun2

    place where inwait the last value: NULL

    place where inwait last reset: kgskbindfast

    is_assigned: 1, in_sched: 0 (0)

    QCLs: 0, qlink: FALSE

    vt_active: 0 (pending: 1).

    vt_pq_active: 0, dop: 0

    used quanta: 0 (cg: 0) usec, num penalty: 0

    start of CPU time: 0

    idle time: 0, time: 0 (cg: 0)

    yields of processor: 0 (cg: 0), expected: 0 (cg: 0), wait time: 0 (cg: 0) usec

    e/s expected: 0 (cg: 0), wait time: 0 (cg: 0) usec

    ASL in queue wait times: 0, time: 0 (NEWS 0, 0 cg)

    PQQ in queue wait times: 0, time: 0 (NEWS 0, 0 cg)

    Violation of the time to wait in queue: 0

    aborted calls: 0, num is exec hit limit: 0

    Cancel current: max k 0: 0 k

    I/O credits: small = 0 General = 0

    I/O waiting credits: small = 0 General = 0

    KTU Session Commit Cache Dump for IDLs:

    XID: 0x0009.008.00002025 RCS: flg 0x0000.00cd4e90 = 0x1

    XID: 0x0006.018.00001f5a RCS: flg 0x0000.00cd4e90 = 0x1

    XID: 0x0009.015.00002024 RCS: flg 0x0000.00cd4e90 = 0x1

    XID: 0x0005.004.00001f30 RCS: flg 0x0000.00cd4e90 = 0x1

    XID: 0x0006.021.000011ed RCS: flg 0x0000.00cd4e90 = 0x1

    KTU Session Commit Cache Dump for Non-IDLs:

    ----------------------------------------

    KKS - UOL used: 0 locks (used = 19, free = 3)

    KGX atomic operation Log 70000000b30a840

    Mutex 0 (0, 0) oper idn 0 NONE

    Cursor Parent uid 41 DTS 4 w/h 7 slp 0

    Oper = pt1 NONE = 0 pt2 pt3 0 = 0 =

    PT4 = 0 = 0 = 0 stt u41

    KGX atomic operation Log 70000000b30a890

    Mutex 0 (0, 0) oper idn 0 NONE

    parasite of the slp whr 6 table uid 41 DTS torrent 4 0

    Oper = NONE pt1 = 70000000d1485e8 pt2 = pt3 148678 = 0 70000000d

    PT4 = 0 = 0 = 0 stt u41

    KGX atomic operation Log 70000000b30a8e0

    Mutex 0 (0, 0) oper idn 0 NONE

    FSO uid 41 DTS mutex 0 w/h 0 slp 0

    KGX atomic operation Log 70000000b30a930

    Mutex 0 (0, 0) oper idn 0 NONE

    FSO uid 41 DTS mutex 0 w/h 0 slp 0

    ----------------------------------------

    KGL - UOL SO Cache (total = 182, free = 107)

    KGX atomic operation Log 70000000 b 045538

    Mutex 0 (0, 0) oper idn 0 NONE

    Library Cache uid 41 DTS 5 w/h 85 slp 0

    Oper = 0 = 70000000b 227350 pt2 = pt3 = 0 70000000c5df180 pt1

    PT4 = 0 = 0 = 0 ub4 pt5

    KGX atomic operation Log 70000000 b 045590

    Mutex (0, 0) 70000000c5b11d8 idn 69fd5d60 oper NONE

    Library Cache uid 41 DTS 4 w/h 77 slp 0

    Oper = pt1 pt2 70000000934fb60 0 = = 0 = 0 pt3

    PT4 = 0 = 0 = 0 ub4 pt5

    KGX atomic operation Log 70000000b0455e8

    Mutex 0 (0, 0) oper idn 0 NONE

    Library Cache uid 41 DTS 4 w/h 79 slp 0

    Oper = 0 = 70000000b 225950 pt2 = pt3 = 0 70000000c382cb8 pt1

    PT4 = 0 = 0 = 0 ub4 pt5

    KGX atomic operation Log 70000000 b 045640

    Mutex (0, 0) 70000000b225a80 idn ae8e84f6 oper NONE

    Library Cache uid 41 DTS 4 w/h 70 slp 0

    Oper = 0 = 70000000b 225950 pt2 = 0 = 0 pt3, pt1

    PT4 = pt5 0 = 0 ub4 = 4

    KGX atomic operation Log 70000000 b 045698

    Mutex (0, 0) 70000000b225a80 idn ae8e84f6 oper NONE

    Library Cache uid 41 DTS 4 w/h 70 slp 0

    Oper = 0 = 70000000b 225950 pt2 = 0 = 0 pt3, pt1

    PT4 = 0 = 0 = 0 ub4 pt5

    KGX atomic operation Log 70000000b0456f0

    Mutex 0 (0, 0) oper idn 0 NONE

    Library Cache 41 DTS uid 0 w/h 0 slp 0

    Oper = pt1 pt2 = pt3 0 = 0 0 = 0

    PT4 = 0 = 0 = 0 ub4 pt5

    KGX atomic operation Log 70000000 b 045748

    Mutex 0 (0, 0) oper idn 0 NONE

    Library Cache 41 DTS uid 0 w/h 0 slp 0

    Oper = pt1 pt2 = pt3 0 = 0 0 = 0

    PT4 = 0 = 0 = 0 ub4 pt5

    KGL SO hide

    SO = 70000000c5df180 link = 70000000c5df1f0 [70000000b115e38, b 70000000, 045520]

    FLG = 8000 use its 700000012bf11f0 = 700000012bf11f0 =

    SO = 70000000b115dc8 link = 70000000b115e38 [70000000c5df380, 70000000c5df1f0]

    FLG = 8000 use its 700000012bf11f0 = 700000012bf11f0 =

    SO = 70000000c5df310 link = 70000000c5df380 [70000000c7abab8, 70000000b115e38]

    FLG = 8000 use its 700000012bf11f0 = 700000012bf11f0 =

    Hello

    I'm not saying that it will solve the problem, but you must use XMLCast in this case, not XMLSerialize.

    Try also with fn:local - name instead (unless you need information namespace as well):

    Select (xmlcast)

    XMLQUERY)

    "for $dcrContent in fn:collection("oradb:/PUBLIC/DATA_CAPTURE_RECORD_CONTENT") / ROW.

    where $dcrContent/DATA_CAPTURE_RECORD_CONTENT_ID = xs:decimal ($id)

    "return fn:local - name($dcrContent/CONTENT_XML/*)"

    from 608 as "id".

    contents of return

    )

    as varchar2 (100)

    )

    Double;

  • Internal error - statement

    Hi all

    All of my dashboard pages are errors out with under 2 errors: Please let me know how to fix these errors.

    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error occurred. [nQSError: 43113] The message returned by OBIS. [nQSError: 43119] Query Failed: [nQSError: 46036] internal statement: Condition joinSpec-> GetNumTableReferences() == 1, file server\Query\Optimizer\ServiceInterfaceMgr\Src\SQOIDriveJoinGenerator.cpp, line 702. (HY000)

    and

    ' State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error occurred. [nQSError: 43113] The message returned by OBIS. [nQSError: 43119] Query Failed: [nQSError: 46008] internal error: file server\Query\Optimizer\ServiceInterfaceMgr\Src\SQOIGeneratorBuiltIn.cpp, line 770. Please ask your system administrator to check the newspaper for more details on this error. (HY000) "


    Thanks in advance.


    Concerning

    Thank you Srini,

    Solution: database - features - I activated the supported separate functionality that has been disabled. (Against both found incompatibility and RPD)

  • bad battery or DC power converter? the main battery (internal) (error 601) windows displays battery to

    defective battery or DC power converter?

    battery (internal) (error 601)

    Windows displays the battery to 100%

    laptop not boot battery, will start only on ac, but battery installed shows error 601

    HP eliteBook 6930

    no spare battery

    althefirst wrote:

    defective battery or DC power converter?

    battery (internal) (error 601)

    Windows displays the battery to 100%

    laptop not boot battery, will start only on ac, but battery installed shows error 601

    HP eliteBook 6930

    no spare battery

    This error is a bit confusing.  At first glance it seems to refer to the CMOS/RTC battery but actually refers to the main battery to the laptop.  Even if the computer indicates that the battery is at 100%, it would be a good idea to check that it is in working condition.  I think that it is a good first step, because although it doesn't show 100% charge, you say the laptop does not work unless it is on current alternative.  This paper addresses the issue further.

    As indicated in the document, the HP Battery Check will be performed to determine if the battery is faulty.

    To perform battery check do the following and display the result.

    1. Unplug the power cord and turn the computer off.
    2. Press on the button / stop to turn on the computer.
    3. Press the ESC key immediately seeing the HP or Compaq logo screen.
    4. The Start menu appears.
    5. Press F2 to select F2 System Diagnostics .
    6. Select battery Test in the list of diagnostic tests.
    7. Connect the power supply cable.
    8. Click Start Test Battery on the battery Test page.

    If your battery fails this test, it will need to be replaced.  To get a spare battery, you will have to contact HP Support.  If you are in the USA / Canada you can call to the 1-800-474-6836.  If you are located outside of this area, you will need to go to the HP support site and after selecting your country, search for "Customer Support" in the lower right corner to get contact information for your region.

    I hope this helps!

  • 10.9.2 upgrade - failure of the "internal error" when you try to start vmware fusion

    Everything worked well even after 10.9.2 upgrade and then all of a sudden, I get an internal error and cannot start.

    Cause I think that lie in the osx system log: /var/log/system.log

    Here are 2 mistakes of the system log which I believe are responsible for this internal error message - I need to know what they mean and how do I workaround:

    These errors are generated in the system log when I click Start on the vmware fusion GUI:

    Mar 21 11:07:43 UserX - macbook.local sandboxd [482] ([21709]): mdworker (21709) deny-read-data file users/UserX/Documents/Virtual Machines.localized/.localized (pre-plugin fstype:hfs fsflag:480 D 000 flags: 250000005E diag:0 isXCode:0 plugin:internalPlainTextImporter uti:com.vmware.vm - package - find suspect using the file: sudo mdutil t 25383633)

    Mar 21 11:07:52 UserX - macbook.local sandboxd [482] ([21709]): mdworker (21709) deny-read-data file users/UserX/Documents/Virtual Machines.localized/.localized (pre-plugin fstype:hfs fsflag:480 D 000 flags: 250000005E diag:0 isXCode:0 plugin:internalPlainTextImporter uti:com.vmware.vm - package - find suspect using the file: sudo mdutil t 25383633)

    When I run the command mdtil sudo as shown above I get:

    mdutil t 25383633 [email protected]/users/UserX:sudo

    / Users/UserX/Documents/Virtual Machines.localized/CentOS 64 - bit.vmwarevm

    If I try to go to this path, there is no: why there?

    [email protected]/users/UserX:CD users/UserX/Documents/Virtual Machines.localized / CentOS 64 - bit.vmwarevm

    SH: cd: / Users/UserX/Documents/Virtual: no such file or directory

    Excerpt from saturated journal:

    [email protected]/users/UserX:tail f /var/log/system.log

    9: Www-Authenticate = < CFString 0x7f80854d74d0 [0x7fff7c286f00] > {content = "Basic realm ="Zimbra""}

    11: cache-Control = < CFString 0x7f80854d0b20 [0x7fff7c286f00] > {content = "private"}

    12: vary = < CFString 0x7f80854d7500 [0x7fff7c286f00] > {content = "Accept-Encoding"}

    }

    }]

    Mar 21 11:07:19 UserX - macbook.local CalendarAgent [459]: [com.apple.calendar.store.log.caldav.queue] [added [< CalDAVAccountRefreshQueueableOperation: 0x7f8083cac3c0;]] [[Sequence: 0 >] missed operations.]

    Mar 21 11:07:23 UserX - macbook.local iTunes [20065]: entry: _AMMuxedDeviceDisconnected, mux-unit: 99

    Mar 21 11:07:23 UserX - macbook.local iTunes [20065]: entry: __thr_AMMuxedDeviceDisconnected, mux-unit: 99

    Mar 21 11:07:23 UserX - macbook.local iTunes [20065]: tid:1be83 - Mux ID not found in the mapping Dictionary

    Mar 21 11:07:23 UserX - macbook.local iTunes [20065]: tid:1be83 - handle cannot disconnect with invalid ecid

    Mar 21 11:07:42 UserX - macbook.local vmnet-bridge [22023]: dynamic store has changed

    Mar 21 11:07:42 UserX-macbook kernel [0]: vmnet: VNetUserIf_Create: created the userIf to 0xffffff80292ad800.

    Mar 21 11:07:42 UserX-macbook kernel [0]: vmnet: VMNetConnect: return port 0xffffff80292ad800

    Mar 21 11:07:42 UserX-macbook kernel [0]: vmnet: Hub 0 there is no memory allocation.

    Mar 21 11:07:42 UserX-macbook kernel [0]: vmnet: allocated plate rotating 0xffffff8023a9e000 hubNum 0.

    Mar 21 11:07:42 UserX-macbook kernel [0]: vmnet: VMNET_SO_BINDTOHUB: port: paddr 00:50:56:ef:1 b: 23

    Mar 21 11:07:42 UserX-macbook kernel [0]: vmnet: Hub 0

    Mar 21 11:07:42 UserX-macbook kernel [0]: vmnet: Port 0

    Mar 21 11:07:42 UserX-macbook kernel [0]: vmnet: bridge-en1: dev 0xffffff80269e0ab0 80 2 media family

    Mar 21 11:07:42 UserX-macbook kernel [0]: vmnet: bridge-en1: detected wireless interface.

    Mar 21 11:07:42 UserX-macbook kernel [0]: vmnet: bridge-en1: upward

    Mar 21 11:07:42 UserX-macbook kernel [0]: vmnet: bridge-en1: Home

    Mar 21 11:07:42 UserX-macbook kernel [0]: vmnet: VNetUserIfFree: release of userIf to 0xffffff80292ad800.

    Mar 21 11:07:42 UserX - macbook.local vmnet-bridge [22023]: started bridge for 0, en1

    Mar 21 11:07:43 UserX-macbook kernel [0]: vmnet: VNetUserIf_Create: created the userIf to 0xffffff8029340800.

    Mar 21 11:07:43 UserX-macbook kernel [0]: vmnet: VMNetConnect: return port 0xffffff8029340800

    Mar 21 11:07:43 UserX-macbook kernel [0]: vmnet: 1 Hub there is no memory allocation.

    Mar 21 11:07:43 UserX-macbook kernel [0]: vmnet: allocated hub 0xffffff8027238000 for hubNum 1.

    Mar 21 11:07:43 UserX-macbook kernel [0]: vmnet: VMNET_SO_BINDTOHUB: port: paddr 00:50:56:ea:6 d: 50

    Mar 21 11:07:43 UserX-macbook kernel [0]: vmnet: 1 Hub

    Mar 21 11:07:43 UserX-macbook kernel [0]: vmnet: Port 0

    Mar 21 11:07:43 UserX-macbook kernel [0]: vmnet1: attached with 1 layer of link suspension multicast memberships

    Mar 21 11:07:43 UserX-macbook kernel [0]: vmnet: VNetUserIfFree: release of userIf to 0xffffff8029340800.

    Mar 21 11:07:43 UserX-macbook kernel [0]: vmnet: netif-vmnet1: adding Protocol 2.

    Mar 21 11:07:43 UserX-macbook kernel [0]: vmnet1: could not restore 1 link suspension memberships (err = 102) multicast layer

    Mar 21 11:07:43 UserX-macbook kernel [0]: vmnet: netif-vmnet1: SIOCSIFFLAGS: 0 x 8863

    Mar 21 11:07:43 - last message repeated 1 time.

    Mar 21 11:07:43 UserX-macbook kernel [0]: vmnet: VNetUserIf_Create: created the userIf to 0xffffff8037443a00.

    Mar 21 11:07:43 UserX-macbook kernel [0]: vmnet: VMNetConnect: return port 0xffffff8037443a00

    Mar 21 11:07:43 UserX-macbook kernel [0]: vmnet: VMNET_SO_BINDTOHUB: port: paddr 00:50:56:fd:aa:70

    Mar 21 11:07:43 UserX-macbook kernel [0]: vmnet: 1 Hub

    Mar 21 11:07:43 UserX-macbook kernel [0]: vmnet: Port 0

    Mar 21 11:07:43 UserX-macbook kernel [0]: vmnet: Port 1

    Mar 21 11:07:43 UserX - macbook.local sandboxd [482] ([21709]): mdworker (21709) deny-read-data file users/UserX/Documents/Virtual Machines.localized/.localized (pre-plugin fstype:hfs fsflag:480 D 000 flags: 250000005E diag:0 isXCode:0 plugin:internalPlainTextImporter uti:com.vmware.vm - package - find suspect using the file: sudo mdutil t 25383633)

    Mar 21 11:07:43 UserX-macbook kernel [0]: vmnet: VNetUserIf_Create: created the userIf to 0xffffff80292ad800.

    Mar 21 11:07:43 UserX-macbook kernel [0]: vmnet: VMNetConnect: return port 0xffffff80292ad800

    Mar 21 11:07:43 UserX-macbook kernel [0]: vmnet: Hub 8 there is no memory allocation.

    Mar 21 11:07:43 UserX-macbook kernel [0]: vmnet: allocated plate rotating 0xffffff802c5f5000 hubNum 8.

    Mar 21 11:07:43 UserX-macbook kernel [0]: vmnet: VMNET_SO_BINDTOHUB: port: paddr 00:50:56:f9:33:34

    Mar 21 11:07:43 UserX-macbook kernel [0]: vmnet: Hub 8

    Mar 21 11:07:43 UserX-macbook kernel [0]: vmnet: Port 0

    Mar 21 11:07:43 UserX-macbook kernel [0]: vmnet: VMNetSetopt: link Set UP State

    Mar 21 11:07:43 UserX-macbook kernel [0]: vmnet: VNetUserIf_Create: created the userIf to 0xffffff8033732800.

    Mar 21 11:07:43 UserX-macbook kernel [0]: vmnet: VMNetConnect: return port 0xffffff8033732800

    Mar 21 11:07:43 UserX-macbook kernel [0]: vmnet: VMNET_SO_BINDTOHUB: port: paddr 00:50:56:e5:cf:2 c

    Mar 21 11:07:43 UserX-macbook kernel [0]: vmnet: Hub 8

    Mar 21 11:07:43 UserX-macbook kernel [0]: vmnet: Port 0

    Mar 21 11:07:43 UserX-macbook kernel [0]: vmnet: Port 1

    Mar 21 11:07:43 UserX-macbook kernel [0]: vmnet8: attached with 1 layer of link suspension multicast memberships

    Mar 21 11:07:43 UserX-macbook kernel [0]: vmnet: VNetUserIfFree: release of userIf to 0xffffff8033732800.

    Mar 21 11:07:43 UserX-macbook kernel [0]: vmnet: netif-vmnet8: adding Protocol 2.

    Mar 21 11:07:43 UserX-macbook kernel [0]: vmnet8: could not restore 1 link suspension memberships (err = 102) multicast layer

    Mar 21 11:07:43 UserX-macbook kernel [0]: vmnet: netif-vmnet8: SIOCSIFFLAGS: 0 x 8863

    Mar 21 11:07:43 - last message repeated 1 time.

    Mar 21 11:07:43 UserX - macbook.local sandboxd [482] ([21709]): mdworker (21709) deny-read-data file users/UserX/Documents/Virtual Machines.localized/.localized (pre-plugin fstype:hfs fsflag:480 D 000 flags: 250000005E diag:0 isXCode:0 plugin:internalPlainTextImporter uti:com.vmware.vm - package - find suspect using the file: sudo mdutil t 25383633)

    Mar 21 11:07:43 UserX-macbook kernel [0]: vmnet: VNetUserIf_Create: created the userIf to 0xffffff8036d95600.

    Mar 21 11:07:43 UserX-macbook kernel [0]: vmnet: VMNetConnect: return port 0xffffff8036d95600

    Mar 21 11:07:43 UserX-macbook kernel [0]: vmnet: VMNET_SO_BINDTOHUB: port: paddr 00:50:56:f0:93:97

    Mar 21 11:07:43 UserX-macbook kernel [0]: vmnet: Hub 8

    Mar 21 11:07:43 UserX-macbook kernel [0]: vmnet: Port 0

    Mar 21 11:07:43 UserX-macbook kernel [0]: vmnet: Port 1

    Mar 21 11:07:43 UserX-macbook kernel [0]: vmnet: Port 2

    Mar 21 11:07:43 UserX - macbook.local sandboxd [482] ([21709]): mdworker (21709) deny-read-data file users/UserX/Documents/Virtual Machines.localized/.localized (pre-plugin fstype:hfs fsflag:480 D 000 flags: 250000005E diag:0 isXCode:0 plugin:internalPlainTextImporter uti:com.vmware.vm - package - find suspect using the file: sudo mdutil t 25383633)

    Mar 21 11:07:43 - last message repeated 1 time.

    Mar 21 11:07:43 UserX-macbook kernel [0]: vmioplug: support @ 0xffffff7f85625d00: Info 0xffffff7f856280a8 name com.vmware.kext.vmioplug.12.1.13 Version 12.1.13 build-1398658 to 29 October 2013 18:34:34

    Mar 21 11:07:51 UserX - macbook.local CalendarAgent [459]: [com.apple.calendar.store.log.caldav.queue] [update has failed with the error: error Domain = CoreDAVHTTPStatusErrorDomain Code = 401 'operation could not be completed.] (CoreDAVHTTPStatusErrorDomain 401 error.) "UserInfo = 0x7f8083c8eac0 {AccountName = Yahoo!, CalDAVErrFromRefresh = YES, CoreDAVHTTPHeaders = < CFBasicHash 0x7f8083fa47c0 [0x7fff7c286f00] > {type = dict immutable, count = 11,}

    entries = >

    0: transfer-Encoding = < CFString 0x7fff7cdade70 [0x7fff7c286f00] > {content = "Identity"}

    1: content-Type = < CFString 0x7f80854d11a0 [0x7fff7c286f00] > {content = text/html";} Charset = UTF-8 "}"

    2: connection = < CFString 0x7f80854ee300 [0x7fff7c286f00] > {content = "keep-alive"}

    3: via < CFString 0x7f80854df9e0 [0x7fff7c286f00] > = {content = "HTTP/1.1 calgate006.cal.ne1.yahoo.com (YahooTrafficServer/1.20.13 [s c f])"}

    4: age = < CFString 0x7fff7c268b80 [0x7fff7c286f00] > {content = '0'}

    5: P3P = < CFString 0x7f80854ee210 [0x7fff7c286f00] > {content = "policyref =" "http://info.yahoo.com/w3c/p3p.xml", CP = "CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi Puhkekeskus IND PHY ONL JOINED PURE END COM NAV INT DEM CNT STA POL HEA PRE GOV LOC" "}

    6: date = < CFString 0x7f8085492e90 [0x7fff7c286f00] > {content = "Friday, March 21, 2014 02:07:49 GMT"}

    7: server = < CFString 0x7f8085606b60 [0x7fff7c286f00] > {content = "YTS/1.20.13"}

    9: Www-Authenticate = < CFString 0x7f80854c5cc0 [0x7fff7c286f00] > {content = "Basic realm ="Zimbra""}

    11: cache-Control = < CFString 0x7f80854c3e70 [0x7fff7c286f00] > {content = "private"}

    12: vary = < CFString 0x7f80854c4390 [0x7fff7c286f00] > {content = "Accept-Encoding"}

    }

    }]

    Mar 21 11:07:51 UserX - macbook.local CalendarAgent [459]: [com.apple.calendar.store.log.caldav.queue] [added [< CalDAVAccountRefreshQueueableOperation: 0x7f80854dc180;]] [[Sequence: 0 >] missed operations.]

    Mar 21 11:07:52 UserX - macbook.local sandboxd [482] ([21709]): mdworker (21709) deny-read-data file users/UserX/Documents/Virtual Machines.localized/.localized (pre-plugin fstype:hfs fsflag:480 D 000 flags: 250000005E diag:0 isXCode:0 plugin:internalPlainTextImporter uti:com.vmware.vm - package - find suspect using the file: sudo mdutil t 25383633)

    Thanks a lot for your time!

    Best regards

    I ended up doing a resumption of full time machine for 12 hours.

    At least it worked.

    Thanks for your advice

  • REP-3000: internal error from Oracle Toolkit.

    Hi all

    We get below error when try to generate the report in XML format.

    XML_REPORTS_XENVIRONMENT is:
    ORCL/Oracle/ORA/8.0.6/guicommon6/TK60/admin/Tk2Motif_UTF8. RGB

    XENVIRONMENT is set to /orcl/oracle/ora/8.0.6/guicommon6/tk60/admin/Tk2Motif_UTF8.rgb


    NLS_LANG and NLS_NUMERIC_CHARACTERS Environment Variables are:
    American_America.UTF8

    '.,'

    REP-3000: internal error from Oracle Toolkit.

    I can see in the context file that display value is set for the correct server name.

    I can access the simultaneous server using PuTTY.

    When I display the value


    $xterm
    xterm Xt error: can't open display: 10.1.7.160:0.0
    IP concurrent server - 10.1.7.160
    I can't on screen as I can access through PuTTY.

    Details of approx.

    Version of apps - 11.5.10.2
    Version of DB - 11.2.0.1
    OPERATING SYSTEM - IBM AIX 6.1

    Please suggest

    Thank you

    >

    I guess that is not the path. Do I have to create the directory/usr/tmp/XMLTEMP. Y at - it no doc metalink to set up the report for the XML editor.

    Thank you

    Fix. You must create this directory and ensure that the owner of the application (applmgr) is able to write in this directory. If you want to change this location to another directory, please see

    XML editor reports fail with java.io.FileNotFoundException on Temp Directory after cloning [1189764.1 ID]

    Thank you

  • Map of perf service has encountered an internal error

    Hi all

    We are in the process of establishing a new battery of vSphere 4.0 Update 1.

    Trying to access the graphical performance of our vCenter Server overview page all we get is the following error:

    Perf map service has encountered an internal error.

    Message: The report application initialization is not completed successfully. Retry in 60 seconds.

    Please note that our vCenter server to connect to a local SQL Server 2005 Standard Edition RDBMS (we do not use approved connection, here). According to our security policies, the SQL2005 instance is configured to listen on a non-standard port (i.e. different from 1433, the default).

    I found several posts in the VMware communities, but unfortunately none of the proposed steps allowed us to solve our problem.

    I also found the document following Ko from VMware:

    http://KB.VMware.com/kb/1013877

    and tried to set up the connection string of an appropriate Tomcat as follows (in the context.xml under C:\Program Files\VMware\Infrastructure\tomcat\webapps\statsreport\META-INF file) but again without success:

    JDBC:SQLServer://VCSRV01:3341; DbDriver = com. Microsoft.SqlServer.JDBC.SQLServerDriver; IntegratedSecurity = false; DbUser = vcsrv

    It seems that in the context.xml file settings are not read at all by Tomcat.

    We also tried instance reconfigures the SQL2005 momentarily to listen to its value default (1433) port, and in doing so, the graphic performance overview page works as expected.

    Unfortunately our security policies do not allow us to maintain this configuration, and so we can't really leave the RDBMS set up to listen on the default port.

    Is there a way we can substitute such a constraint in order to properly configure the graphic performance overview page to work as due to a non-standard configuration of SQL2005?

    I read from another source that there may be a way to configure all the required settings in the registry of the vCenter server, in the following key, but I don't know what and how to specify here:

    HKEY_LOCAL_MACHINE\SOFTWARE\ODBC\ODBC. INI

    Thanks a lot in advance for your kind help.

    Best regards

    Salvatore

    SKY Italia s.r.l.

    Good afternoon

    We had exactly the same problem. VC on a single server, SQL DB on another server and a non-standard port of SQL. The only way I can get this to work is to examine the ODBC settings in the registry (they can be under Wow6432Node if you use 64 bit 2008) and add a value called database with the name of the database of VC and then change the value of server < Server >, < Server > < PORT > : < PORT >. If I restart the Web VC overview table management service works. The bad news is that VC does not start unless I change the value of server to use a comma instead of a colon. This means that the server value must be changed to use the colon, restarted Web VC management service, and then the value of server changed to use a comma after each reboot the VC server.

    It's a pain, but it doesn't seem to work.

    Maybe someone at VMware will be able to tell us why it behaves in this way.

    Kind regards

    Dave.

Maybe you are looking for