Could not get the native web service response to Oracle using a PL/SQL < Message > function <! [CDATA [component "WS_CALC" must be said]] > < / Message >

Hi, we have a problem with oracle native web service access using a PL/SQL function. We are running out of ideas how to solve the problem. Someone would be so nice to take a look at our case. Thank you much in advance. Best regards, Smiljana

CREATE TABLE for_web_info (some_hello_text VARCHAR2 (150), when_inserted DATE, we_are_from VARCHAR2 (30));

INSERT INTO for_web_info VALUES ('HI everyone :-) ', SYSDATE, 'Ljubljana, Slovenia');

CREATE OR REPLACE

PACKAGE ws_calc AUTHID CURRENT_USER AS

FUNCTION CalcProduct (a NUMBER by DEFAULT 1,

b in on NUMBER,

g NUMBER of OUTPUT)

RETURN NUMBER;

END ws_calc;

/

CREATE OR REPLACE

PACKAGE ws_calc AS BODY

FUNCTION CalcProduct (a NUMBER by DEFAULT 1,

b in on NUMBER,

g NUMBER of OUTPUT)

RETURN NUMBER IS

product NUMBER;

BEGIN

SELECT SUM (1) IN the for_web_info OF g;

product: = a * b;

RETURN any product;

END;

END;

/

Our two DBA done all the steps described in the manual Oracle® XML DB's Guide Developer, 11 g Release 2 (11.2), E23094-04, February 2014, section using Oracle DB native XML Web Services.

Access us two wsdl with browser without problem and get two of them. We also receive web serivce response which databese of query table.

http://our_db:8080 / orawsv? WSDL

http://our_db:8080 / orawsv/OUR_SCHEMA/WS_CALC/CALCPRODUCT? WSDL

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

| First WSDL.

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

<? XML version = "1.0"? >

" < name definitions = targetNamespace"orawsv"=" http://xmlns.Oracle.com/orawsv "" "

" xmlns =" http://schemas.xmlsoap.org/wsdl/ "

' xmlns:tns = ' http://xmlns.Oracle.com/orawsv "" "

' xmlns:soap = ' http://schemas.xmlsoap.org/WSDL/SOAP/ "

" container = ' http://www.w3.org/2001/XMLSchema "

" xmlns: xsi =" http://www.w3.org/2001/XMLSchema-instance "

" xsi: schemaLocation =" http://schemas.xmlsoap.org/wsdl/ http://schemas.xmlsoap.org/wsdl/"> ".

< types >

< xsd: Schema

" targetNamespace = ' http://xmlns.Oracle.com/orawsv "" "

elementFormDefault = "qualified" >

< xsd: element name = "query" >

< xsd: complexType >

< xsd: SEQUENCE >

< xsd: element name = "DDL_text" type = "xsd: String".

minOccurs = "0" maxOccurs = "unbounded" / >

< xsd: element name = 'query_text' >

< xsd: complexType >

< xsd:simpleContent >

< xsd:extension base = "XSD: String" >

< xsd: attribute name = "type" >

< xsd:simpleType >

< xsd:restriction base = "xsd:NMTOKEN" >

< value xsd: Enumeration = "SQL" / >

< value xsd: Enumeration = "XQUERY" / >

< / xsd:restriction >

< / xsd:simpleType >

< / xsd: attribute >

< / xsd:extension >

< / xsd:simpleContent >

< / xsd: complexType >

< / xsd: element >

< xsd: Choice minOccurs = "0" maxOccurs = "unbounded" >

< xsd: element name = "bind" >

< xsd: complexType >

< xsd:simpleContent >

< xsd:extension base = "XSD: String" >

< xsd: attribute name = "name" type = "xsd: String" / >

< / xsd:extension >

< / xsd:simpleContent >

< / xsd: complexType >

< / xsd: element >

< xsd: element name = "bindXML" >

< xsd: complexType >

< xsd: SEQUENCE >

< xsd: all / >

< / xsd: SEQUENCE >

< / xsd: complexType >

< / xsd: element >

< / xsd: Choice >

< xsd: element name = "null_handling" minOccurs = "0" >

< xsd:simpleType >

< xsd:restriction base = "xsd:NMTOKEN" >

< value xsd: Enumeration = "DROP_NULLS" / >

< value xsd: Enumeration = "NULL_ATTR" / >

< value xsd: Enumeration = "EMPTY_TAG" / >

< / xsd:restriction >

< / xsd:simpleType >

< / xsd: element >

< xsd: element name = "max_rows" type = "positiveInteger" minOccurs = "0" / >

< xsd: element name = "skip_rows" type = "positiveInteger" minOccurs = "0" / >

< xsd: element name = "pretty_print" type = "xsd: Boolean" minOccurs = "0" / >

< xsd: element name = "indentation_width" type = "positiveInteger" minOccurs = "0" / >

< xsd: element name = "rowset_tag" type = "xsd: String" minOccurs = "0" / >

< xsd: element name = "row_tag" type = "xsd: String" minOccurs = "0" / >

< xsd: element name = "item_tags_for_coll" type = "xsd: Boolean" minOccurs = "0" / >

< / xsd: SEQUENCE >

< / xsd: complexType >

< / xsd: element >

< xsd: element name = "queryOut" >

< xsd: complexType >

< xsd: SEQUENCE >

< xsd: all / >

< / xsd: SEQUENCE >

< / xsd: complexType >

< / xsd: element >

< / xsd: Schema >

< / types >

< name of message = "QueryInput" >

< name of part = element "body" = "tns:query" / >

< / message >

< name of the message 'XMLOutput' = >

< name of part = element "body" = "tns:queryOut" / >

< / message >

< portType name = "ORAWSVPortType" >

< operation name = "XMLFromQuery" >

< input message = "tns:QueryInput" / >

< output message = "tns:XMLOutput" / >

< / operation >

< / portType >

< connection name = "ORAWSVBinding" type = "tns:ORAWSVPortType" >

" < style: soap = transport = 'document' binding ' http://schemas.xmlsoap.org/SOAP/HTTP "/>

< operation name = "XMLFromQuery" >

" < soap: operation soapAction = ' http://our_db:8080 / orawsv "/>

< input >

< use of soap: body = "literal" / >

< / Entry >

< output >

< use of soap: body = "literal" / >

< / output >

< / operation >

< / binding >

< service name = "ORAWSVService" >

< documentation > Oracle Web Service < / documentation >

< name of port = "ORAWSVPort" binding = "tns:ORAWSVBinding" >

" < soap: address location = ' http://our_db:8080 / orawsv "/>

< / port >

< / service >

< / definitions >

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

| Second WSDL.

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

<? XML version = "1.0"? >

< name of definitions = "CALCPRODUCT."

" targetNamespace = ' http://xmlns.Oracle.com/orawsv/OUR_SCHEMA/WS_CALC/CALCPRODUCT "" "

" xmlns =" http://schemas.xmlsoap.org/wsdl/ "

' xmlns:tns = ' http://xmlns.Oracle.com/orawsv/OUR_SCHEMA/WS_CALC/CALCPRODUCT "" "

" container = ' http://www.w3.org/2001/XMLSchema "

' xmlns:soap = ' http://schemas.xmlsoap.org/WSDL/SOAP/ ">

< types >

" < xsd: Schema targetNamespace = ' http://xmlns.Oracle.com/orawsv/OUR_SCHEMA/WS_CALC/CALCPRODUCT "" "

elementFormDefault = "qualified" >

< xsd: element name = "SNUMBER-CALCPRODUCTInput" >

< xsd: complexType >

< xsd: SEQUENCE >

< xsd: element name = "G-NUMBER-OUT" >

< xsd: complexType / >

< / xsd: element >

< xsd: element name = "B-NUMBER-INOUT" type = "xsd: double" / >

< xsd: element name = "A-NUMBER-IN" minOccurs = "0" maxOccurs = "1" type = "xsd: double" / >

< / xsd: SEQUENCE >

< / xsd: complexType >

< / xsd: element >

< xsd: element name = "CALCPRODUCTOutput" >

< xsd: complexType >

< xsd: SEQUENCE >

< xsd: element name = "RETURN" type = "xsd: double" / >

< xsd: element name = "G" type = "xsd: double" / >

< xsd: element name = "B" type = "xsd: double" / >

< / xsd: SEQUENCE >

< / xsd: complexType >

< / xsd: element >

< / xsd: Schema >

< / types >

< name of message = "CALCPRODUCTInputMessage" >

< name of part = "parameters" element = "tns:SNUMBER - CALCPRODUCTInput" / >

< / message >

< name of message = "CALCPRODUCTOutputMessage" >

< name of part = "parameters" element = "tns:CALCPRODUCTOutput" / >

< / message >

< portType name = "CALCPRODUCTPortType" >

< operation name = "CALCPRODUCT" >

< input message = "tns:CALCPRODUCTInputMessage" / >

< output message = "tns:CALCPRODUCTOutputMessage" / >

< / operation >

< / portType >

< connection name = "CALCPRODUCTBinding".

Type = "tns:CALCPRODUCTPortType" >

" < style: soap = transport = 'document' binding ' http://schemas.xmlsoap.org/SOAP/HTTP "/>

< operation name = "CALCPRODUCT" >

< soap: operation

soapAction = "CALCPRODUCT" / >

< input >

< soap body parts: = 'settings' use = "literal" / >

< / Entry >

< output >

< soap body parts: = 'settings' use = "literal" / >

< / output >

< / operation >

< / binding >

< service name = "CALCPRODUCTService" >

< documentation > Oracle Web Service < / documentation >

< name of port = "CALCPRODUCTPort" binding = "tns:CALCPRODUCTBinding" >

< address soap:

" location = ' http://our_db:8080 / orawsv/OUR_SCHEMA/WS_CALC/CALCPRODUCT "/>

< / port >

< / service >

< / definitions >

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

| SQL Developer |

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

SET serveroutput ON

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

| First WS.

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

DECLARE

V_SOAP_REQUEST XMLTYPE: = XMLTYPE (' <? xml version = "1.0"? > < env:Envelope xmlns:env = "http://www.w3.org/2002/06/soap-envelope " > < env:Body > < query xmlns = "http://xmlns.oracle.com/orawsv" > < type of the argument texte_requete = "SQL" > <!) ([CDATA [SELECT * FROM for_web_info WHERE the INSTR (UPPER (we_are_from),: e) > 0]] > < / query_text > < link name 'e' = > SLOVENIA < / bind > < false pretty_print > < / pretty_print > < / query > < / env:Body > < / env:Envelope > ');

V_SOAP_REQUEST_TEXT CLOB: = V_SOAP_REQUEST.getClobVal ();

V_REQUEST UTL_HTTP. REQ;

V_RESPONSE UTL_HTTP. RESP;

V_BUFFER VARCHAR2 (1024);

URL VARCHAR2 (4000): = ' http://our_db:8080 / orawsv ';

BEGIN

V_REQUEST: = UTL_HTTP. BEGIN_REQUEST (URL = > URL, METHOD = > 'POST');

UTL_HTTP. SET_AUTHENTICATION (R = > V_REQUEST, username = > 'OUR_U', PASSWORD = > 'OUR_P'); -not case-sensitive

V_REQUEST. METHOD: = 'POST';

UTL_HTTP. SET_HEADER (R = > V_REQUEST, NAME = > 'Content-Length', VALUE = > DBMS_LOB.) GETLENGTH (V_SOAP_REQUEST_TEXT));

UTL_HTTP. WRITE_TEXT (R = > V_REQUEST, DATA = > V_SOAP_REQUEST_TEXT);

V_RESPONSE: = UTL_HTTP. GET_RESPONSE (V_REQUEST);

LOOP

UTL_HTTP. READ_LINE (V_RESPONSE, V_BUFFER, TRUE);

DBMS_OUTPUT. PUT_LINE (V_BUFFER);

END LOOP;

UTL_HTTP. END_RESPONSE (V_RESPONSE);

EXCEPTION

WHEN UTL_HTTP. END_OF_BODY THEN

UTL_HTTP. END_RESPONSE (V_RESPONSE);

END;

anonymous block filled

" <? xml version ="1.0"? > < envelope soap: xmlns:soap = ' http://www.w3.org/2002/06/SOAP-envelope ' > < soap: Body > < queryOut xmlns = " http://xmlns.Oracle.com/orawsv "> "

< set of LINES > < ROW > < SOME_HELLO_TEXT > HI everybody :-) < / SOME_HELLO_TEXT > < WHEN_INSERTED > 03.10.14 < / WHEN_INSERTED > < WE_ARE_FROM > Ljubljana, Slovenia < / WE_ARE_FROM > < / ROW > < / rowset > < / queryOut > < / soap: Body > < / envelope soap: >

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

| Second WS.

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

DECLARE

V_SOAP_REQUEST XMLTYPE: = XMLTYPE ("<?") XML version = "1.0"? > < soap envelope: xmlns:soap = "http://www.w3.org/2002/06/soap-envelope" > < soap: Body > < xmlns SNUMBER-CALCPRODUCTInput = ""http://xmlns.oracle.com/orawsv/OUR_SCHEMA/WS_CALC/CALCPRODUCT"(> < A-NUMBER-IN > 2 < / A-NUMBER-IN > < B-NUMBER-INOUT > 3 < / B-NUMBER-INOUT > < R-NUMBER-OUT / > < / SNUMBER-CALCPRODUCTInput > < / soap: Body > < / SOAP: envelope > '); "

V_SOAP_REQUEST_TEXT CLOB: = V_SOAP_REQUEST.getClobVal ();

V_REQUEST UTL_HTTP. REQ;

V_RESPONSE UTL_HTTP. RESP;

V_BUFFER VARCHAR2 (1024);

URL VARCHAR2 (4000): = ' http://our_db:8080 / orawsv/OUR_SCHEMA/WS_CALC/CALCPRODUCT ';

BEGIN

V_REQUEST: = UTL_HTTP. BEGIN_REQUEST (URL = > URL, METHOD = > 'POST');

UTL_HTTP. SET_AUTHENTICATION (R = > V_REQUEST, username = > 'OUR_U', PASSWORD = > 'OUR_P'); -not case-sensitive

V_REQUEST. METHOD: = 'POST';

UTL_HTTP. SET_HEADER (R = > V_REQUEST, NAME = > 'Content-Length', VALUE = > DBMS_LOB.) GETLENGTH (V_SOAP_REQUEST_TEXT));

UTL_HTTP. WRITE_TEXT (R = > V_REQUEST, DATA = > V_SOAP_REQUEST_TEXT);

V_RESPONSE: = UTL_HTTP. GET_RESPONSE (V_REQUEST);

LOOP

UTL_HTTP. READ_LINE (V_RESPONSE, V_BUFFER, TRUE);

DBMS_OUTPUT. PUT_LINE (V_BUFFER);

END LOOP;

UTL_HTTP. END_RESPONSE (V_RESPONSE);

EXCEPTION

WHEN UTL_HTTP. END_OF_BODY THEN

UTL_HTTP. END_RESPONSE (V_RESPONSE);

END;

anonymous block filled

<? XML version = "1.0"? >

" < envelope soap: xmlns:soap = ' http://www.w3.org/2002/06/SOAP-envelope/ ">

< soap: Body >

< soap: Fault >

< Code: soap >

< soap: value > SOAP: sender < / SOAP: value >

< / Code: soap >

entry processing < soap: reason > error < / SOAP: reason >

< soap: detail >

" < OracleErrors xmlns =" http://xmlns.Oracle.com/orawsv/faults "> "

So OracleError >

< ErrorNumber > ORA-19202 < / ErrorNumber >

< message > <! [CDATA [error has occurred in the processing of XML]] > < / Message >

< / OracleError >

So OracleError >

< ErrorNumber > ORA-06550 < / ErrorNumber >

< message > <! [CDATA [line 1, column 24:]] > < / Message >

< / OracleError >

So OracleError >

< ErrorNumber > PLS-00302 < / ErrorNumber >

< message > <! [CDATA [component "WS_CALC" must be said]] > < / Message >

< / OracleError >

So OracleError >

< ErrorNumber > ORA-06550 < / ErrorNumber >

< message > <! [CDATA [line 1, column 7:]]

[[PL/SQL: statement ignored]] > < / Message >

< / OracleError >

< / OracleErrors >

< / Details: soap >

< / soap fault: >

< / soap: Body >

< / envelope soap: >

With reference APEX web service, the response is exactly the same and apex_web_service.make_request also work.

Thanks again.

The SOAP request is not correct.

must be:

So again, it does not solve the problem:

-Which user you are using to authenticate on the other side?

If it's another user the owner of the package, then of course you must grant the execute privilege appropriate to this user (and possibly one explicit SELECT on the table referenced too privilege).

Tags: Database

Similar Questions

  • Could not contact the Flickr web service

    In recent weeks, I am unable to upload pictures directly from LR on Flickr.

    The message I get:

    "Cannot update this collection.

    Could not contact the Flickr web service. Please check your Internet connection. »


    LR version 2015.1.1

    Generation 1032027


    Flickr Pro account.


    Any advice? I'm happy test the beta fix only if available.


    I used to use the plugin to Jeffrey, and it's (I think still is) a fantastic product. Again, having a built-in feature delivered with LR has won my heart.

    BTW: it seems that the issue is on the side of Flickr and relates to their limitation (IP based) network. I don't understand why they do it and why too drastic. Try again potentially additional native plugin LR Flickr could help.

    It was enough for me to activate VPN to route traffic through a server in San Francisco and it's all very well now. My original traffic was from London.

    Boring, but has less there is a workaround.

  • •EPMCSS-05261: could not get the information of the Aboriginal group.

    Hello

    Recently, we migrated user 11.1.1.3 11.1.2.3 version version.

    I tried to open one of the groups and clicked on the tab user membership in the group. I got the error message in the new version 11.1.2.3 below.

    «•EPMCSS-05261: could not get the information of the Aboriginal group.» Error getting to some of the affected user entries. Check the configuration and user directory State.

    Please could you let me know why we get this error message and no impact on the safety of the user.

    Thank you

    Michel K

    Read through the following Oracle Support document - "EPMCSS-05261: could not get the native group information (Doc ID 1619561.1).

    See you soon

    John

  • Event generated by the user 'anonymous' the host 'CIS '. Could not get the reference.

    Hello

    We have integrated our portal customized with the AAU in document taskflows webcenter application.
    We are not able to view the Soum, extracted from the Complutense University of MADRID. Here's the error to get connected UCM whenever we access the application.

    Event generated by the user 'anonymous' the host 'CIS '. Could not get the reference. Can not read the file. [Details]
    An error has occurred. The stack trace below shows more information.

    ! csUserEventMessage, anonymous, CIS! $! csCollectionUnableToGetReference! csCollectionCannotRead
    intradoc.common.ServiceException:! csCollectionUnableToGetReference! csCollectionCannotRead
    * ScriptStack COLLECTION_GET_REFERENCE
    3:getReferenceMeta, * no captured values *.
    at intradoc.server.ServiceRequestImplementor.buildServiceException(ServiceRequestImplementor.java:2115)
    at intradoc.server.Service.buildServiceException(Service.java:2260)
    at intradoc.server.Service.createServiceExceptionEx(Service.java:2254)
    Collections. CollectionUserHandler.getReferenceMeta (CollectionUserHandler.java:1765)
    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:48)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:600)
    at intradoc.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:86)
    at intradoc.common.ClassHelperUtils.executeMethodReportStatus(ClassHelperUtils.java:324)
    at intradoc.server.ServiceHandler.executeAction(ServiceHandler.java:79)
    at intradoc.server.Service.doCodeEx(Service.java:533)
    at intradoc.server.Service.doCode(Service.java:505)
    at intradoc.server.ServiceRequestImplementor.doAction(ServiceRequestImplementor.java:1643)
    at intradoc.server.Service.doAction(Service.java:477)
    at intradoc.server.ServiceRequestImplementor.doActions(ServiceRequestImplementor.java:1458)
    at intradoc.server.Service.doActions(Service.java:472)
    at intradoc.server.ServiceRequestImplementor.executeActions(ServiceRequestImplementor.java:1391)
    at intradoc.server.Service.executeActions(Service.java:458)
    at intradoc.server.ServiceRequestImplementor.doRequest(ServiceRequestImplementor.java:737)
    at intradoc.server.Service.doRequest(Service.java:1890)
    at intradoc.server.ServiceManager.processCommand(ServiceManager.java:435)
    at intradoc.server.IdcServerThread.processRequest(IdcServerThread.java:265)
    at intradoc.server.IdcServerThread.run(IdcServerThread.java:160)
    to weblogic.work.SelfTuningWorkManagerImpl$ WorkAdapterImpl.run (SelfTuningWorkManagerImpl.java:528)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:176)

    Kind regards
    Francis P

    What is the security group of your records? It is public.

  • Windows could not start the Microsoft Office Service on the local computer

    The whole error is

    "Windows could not start the Microsoft Office Service on the local computer error 1053; Service has failed to demand launch or timely control.
    It seems that this instance of office 2013 has stopped working.
    Win7 64 bit machine with all sorts service packs, etc. was in a field, we moved to a new domain, and it worked well for one day, now it has this problem. Any advice or suggestions would be helpful.

    Hello

    Since you are faced with the question after changing to the new domain, the question you posted would be better suited for the IT Pro TechNet public. I would recommend posting your query in the TechNet Forums to get help:

    Forums TechNet Windows 7

    Let us know if you need help with Windows related issues. We will be happy to help you.

  • Re-installation of creative suite all-in cs6, I get the error: Exit Code: 7 ERROR: DW013: could not get the root of inChildPath

    System:

    Windows 7 (Service Pack 1)

    3720QM-i7 CPU @ 2.60 Ghz

    16 GB OF RAM

    Adobe Creative Suite Production Premium CS6

    I got a computer breakdown and both after effects and the first started crashing after that.

    I uninstalled then and since then I can not reinstall. I get this error message:

    Exit code: 7

    ERROR: DW013: could not get the root of inChildPath

    I tried:

    1. 1- Repair of Microsoft Visual C++ Redistributable Packages
    2. 2- Uninstall Adobe AIR, then reinstall the AIR and the Adobe help
    3. 3- I tried to use the vacuum (running it as an administrator but but it does not open)

    What is my next move?

    I have work to do.

    Thank you

    Stefan Vanderland

    Code 7 https://helpx.adobe.com/lightroom/kb/exit-code-7-displays-installing.html

  • Unable to get hardware information for the selected with vmware converter 5.5 computer (could not get the ability to \\.\PhysicalDrive0: error opening peripheral drive: 32 an unknown error (0 x 20) (32))

    Hello

    I'm doing a P2V with vmware converter standalone 5.5

    The source is the same machine that hosts the vmware converter 5.5

    The operating system is W2003 which acts as a domain controller

    VMware converter is launched by the administrator account.

    The error that I see on the balls of vmware - converter.worker is:

    2014 02-13 T 17: 36:35.592 + 01:00 [04344 WARNING "Default"] could not get the ability to \\.\PhysicalDrive0: error opening disc device: 32 an unknown error (0 x 20) (32)
    2014 02-13 T 17: 36:35.592 + 01:00 [warning 04344 "Default"] jump drive hard "\\.\PhysicalDrive0."
    2014 02-13 T 17: 36:35.592 + 01:00 [04344 WARNING "Default"] could not get the ability to \\.\PhysicalDrive1: error opening disc device: 32 an unknown error (0 x 20) (32)
    2014 02-13 T 17: 36:35.592 + 01:00 [warning 04344 "Default"] jump drive hard "\\.\PhysicalDrive1."
    2014 02-13 T 17: 36:35.592 + 01:00 [info 04344 "Default"] Found volume with name '\\?\Volume{0395a0a1-8c42-11da-a7d7-806e6f6e6963}\ '.
    2014 02-13 T 17: 36:35.592 + 01:00 [info 04344 "Default"] Found volume with name '\\?\Volume{18297536-8c0b-11da-8528-0014852d7e43}\ '.
    2014 02-13 T 17: 36:35.592 + 01:00 [info 04344 "Default"] Found volume with name '\\?\Volume{caf5e9f8-4e6c-11dd-b440-0014852d7e43}\ '.
    2014 02-13 T 17: 36:35.592 + 01:00 [info 04344 "Default"] Found volume with name '\\?\Volume{2958b89a-b562-11dc-a508-806e6f6e6963}\ '.
    2014 02-13 T 17: 36:35.592 + 01:00 [info 04344 "Default"] Found volume with name '\\?\Volume{0395a09f-8c42-11da-a7d7-806e6f6e6963}\ '.
    2014 02-13 T 17: 36:35.592 + 01:00 [info 04344 "Default"] Found volume with name '\\?\Volume{0395a09e-8c42-11da-a7d7-806e6f6e6963}\ '.
    2014 02-13 T 17: 36:35.592 + 01:00 [04344 WARNING "Default"] could not get the ability to \\.\PhysicalDrive0: error opening disc device: 32 an unknown error (0 x 20) (32)
    2014 02-13 T 17: 36:35.592 + 01:00 [warning 04344 "Default"] jump drive hard "\\.\PhysicalDrive0."
    2014 02-13 T 17: 36:35.592 + 01:00 [04344 WARNING "Default"] could not get the ability to \\.\PhysicalDrive0: error opening disc device: 32 an unknown error (0 x 20) (32)
    2014 02-13 T 17: 36:35.592 + 01:00 [warning 04344 "Default"] jump drive hard "\\.\PhysicalDrive0."
    2014 02-13 T 17: 36:35.592 + 01:00 [04344 WARNING "Default"] could not get the ability to \\.\PhysicalDrive1: error opening disc device: 32 an unknown error (0 x 20) (32)
    2014 02-13 T 17: 36:35.592 + 01:00 [warning 04344 "Default"] jump drive hard "\\.\PhysicalDrive1."
    2014 02-13 T 17: 36:41.155 + 01:00 [warning 04344 'Default'] attention: no attached disks have been detected.
    2014 02-13 T 17: 36:41.155 + 01:00 [04344 error 'Default'] [LiveWindowsComputer] could not find disks connected to the computer.
    2014 02-13 T 17: 36:41.170 + 01:00 [info 04344 "Default"] scheduled timer cancelled, succeeds StopKeepAlive
    2014 02-13 T 17: 36:41.170 + 01:00 [04344 error "Default"] unknown exception when calling VMOMI method queryComputerInfo
    2014 02-13 T 17: 36:50.358 + 01:00 [05648 WARNING "Default"] could not get the ability to \\.\PhysicalDrive0: error opening disc device: 32 an unknown error (0 x 20) (32)
    2014 02-13 T 17: 36:50.358 + 01:00 [05648 WARNING "Default"] Skip hard drive "\\.\PhysicalDrive0".
    2014 02-13 T 17: 36:50.358 + 01:00 [05648 WARNING "Default"] could not get the ability to \\.\PhysicalDrive1: error opening disc device: 32 an unknown error (0 x 20) (32)
    2014 02-13 T 17: 36:50.358 + 01:00 [05648 WARNING "Default"] Skip hard drive "\\.\PhysicalDrive1".
    2014 02-13 T 17: 36:50.389 + 01:00 [info 05648 "Default"] Found volume with name '\\?\Volume{0395a0a1-8c42-11da-a7d7-806e6f6e6963}\ '.
    2014 02-13 T 17: 36:50.389 + 01:00 [info 05648 "Default"] Found volume with name '\\?\Volume{18297536-8c0b-11da-8528-0014852d7e43}\ '.
    2014 02-13 T 17: 36:50.389 + 01:00 [info 05648 "Default"] Found volume with name '\\?\Volume{caf5e9f8-4e6c-11dd-b440-0014852d7e43}\ '.
    2014 02-13 T 17: 36:50.389 + 01:00 [info 05648 "Default"] Found volume with name '\\?\Volume{2958b89a-b562-11dc-a508-806e6f6e6963}\ '.
    2014 02-13 T 17: 36:50.389 + 01:00 [info 05648 "Default"] Found volume with name '\\?\Volume{0395a09f-8c42-11da-a7d7-806e6f6e6963}\ '.
    2014 02-13 T 17: 36:50.389 + 01:00 [info 05648 "Default"] Found volume with name '\\?\Volume{0395a09e-8c42-11da-a7d7-806e6f6e6963}\ '.
    2014 02-13 T 17: 36:50.421 + 01:00 [05648 WARNING "Default"] could not get the ability to \\.\PhysicalDrive0: error opening disc device: 32 an unknown error (0 x 20) (32)
    2014 02-13 T 17: 36:50.421 + 01:00 [05648 WARNING "Default"] Skip hard drive "\\.\PhysicalDrive0".
    2014 02-13 T 17: 36:50.452 + 01:00 [05648 WARNING "Default"] could not get the ability to \\.\PhysicalDrive0: error opening disc device: 32 an unknown error (0 x 20) (32)
    2014 02-13 T 17: 36:50.452 + 01:00 [05648 WARNING "Default"] Skip hard drive "\\.\PhysicalDrive0".
    2014 02-13 T 17: 36:50.499 + 01:00 [05648 WARNING "Default"] could not get the ability to \\.\PhysicalDrive1: error opening disc device: 32 an unknown error (0 x 20) (32)
    2014 02-13 T 17: 36:50.499 + 01:00 [05648 WARNING "Default"] Skip hard drive "\\.\PhysicalDrive1".
    2014 02-13 T 17: 36:56.155 + 01:00 [05648 WARNING 'Default'] attention: no attached disks have been detected.
    2014 02-13 T 17: 36:56.155 + 01:00 [05648 error 'Default'] [LiveWindowsComputer] could not find disks connected to the computer.
    2014 02-13 T 17: 36:56.155 + 01:00 [info 05648 "Default"] scheduled timer cancelled, succeeds StopKeepAlive

    This had already happened with another server (also W2003 DC), but the hardware was completely different; Unfortunately, I wasn't able to solve this year here.

    Any help or advice would be appreciated, thanks in advance

    Thank you for all your help

    I finally found the guilty service.

    It was pcmonitor monitor/remote control software. Once I stopped it is service vmware converter could get the capacity of the physical drives.

    It is rather curious because I made several servers P2V conversions using this software (so far the last one two weeks ago - the difference between that server and this one was that the first was not a domain controller).

    Hopefully this thread will help others in the future.

  • listener_scan1 could not find the name of service

    Hi all

    I installed 11203 on 2 node RAC cluster. I created 1 listener to scan. When I give lsnrctl status LISTENER_SCAN1, I get the below error

    AMT-01101: could not find the name of service LISTENER_SCAN1

    Please, give your suggestions and help on this issue.

    Thank you

    NR

    Hello

    Try configuring the tnsnames.ora in this format and let me know

    If you use load balancing, try

    TBESTDB =

    (DESCRIPTION =

    (ADDRESS = (PROTOCOL = TCP (PORT = 1531))(HOST = node1_vip))

    (ADDRESS = (PROTOCOL = TCP (PORT = 1531))(HOST = node2_vip))

    (LOAD_BALANCE = yes)

    (CONNECT_DATA =

    (SERVER = DEDICATED)

    (SERVICE_NAME = TBESTDB)

    )

    )

    And you can add below if you want to connect to a specific instance

    RAC1 =

    (DESCRIPTION =

    (ADDRESS = (PROTOCOL = TCP) (HOST = rac1-vip)(PORT = 1521))

    (CONNECT_DATA =

    (SERVER = DEDICATED)

    (SERVICE_NAME = rac.oracle.com)

    (INSTANCE_NAME = rac1)

    )

    )

    RAC2 =

    (DESCRIPTION =

    (ADDRESS = (PROTOCOL = TCP) (HOST = rac2-vip)(PORT = 1521))

    (CONNECT_DATA =

    (SERVER = DEDICATED)

    (SERVICE_NAME = rac.oracle.com)

    (INSTANCE_NAME = rac2)

    )

    )

    Note: Replace the SID, Servicename, hostname, port etc depending on your environment and also ensure that the tnsnames.ora should be in an appropriate format (for example: the opening and closing should be in the right order.) If you add an extra space further it will throw error..)

    Kind regards

    Pradeep. V

  • Could not start the Security Center Service

    I clicked on Windows security alerts, it showed "The Security Center Service is disabled".  Then I clicked "Activate now", came a "Could not start the Security Center Service" message.  Please tell me what I need to do.

    Thank you very much!!!

    Longpo

    See if these are useful:

    http://support.Microsoft.com/kb/2519899

    OR

    http://support.Microsoft.com/kb/2510301

  • I can hear a wav file, but could not get the video from my camera.

    original title: file WAV on Vista

    I can hear a wav file, but could not get the video from my camera.

    I have windows vista?

    Hello
    WAV files will be audio only.
    You can save this file as an MP4.
    B Eddie

  • I have a 64-bit system running Windows 7. I could not get the AutoPlay to open whenever I insert a CD or a DVD.

    I have a 64-bit system running Windows 7. I could not get the AutoPlay to open every time I insert a cd or a dvd, I changed the settings to Ask Me to Windows Media Player to open with Windows Explorer... but nothing I tried introduced the feature of AutoPlay to life.

    Is there a solution

    original title: AutoPlay Windows 7

    It worked for me: I forgot where I got it, could have been here if it's a little different from what I've seen above

    PIECE AUTO REPAIR
    USING GROUP POLICY EDIT
    gpedit.msc in search
    Computer Configuration\ Administrative Templates\ Windows Windows\ Policies\ will disable Autoplay.

    In the REGEDIT HELP: Group Policy Editor is not provided with Windows Home editions, however, you can use regedit to achieve the same result.

    Open regedit and locate the following key:
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer

    Change: NoDriveTypeAutorun to 0 x 91

    If necessary, create this key as a DWORD.

  • Spore origans. But they could not get the disc to download

    Original title: I installed the origans downloads spores then tried to combine with my set of spore origal disc I can do that I prefer to use my disc that the download, but could not get the disc to download

    Windows 7 Edition home premium

    Hello

    EA Spore games are you referring?

    If you are referring to the games EA Spore, I suggest you check the link for support:

    https://help.EA.com/en/spore?sso_redirect=1

  • Update could not get the following error U44M1I210.  Tried several times on 2 Mac running Yosemite

    Try to update CC 2015 without success.  Update could not get the following error U44M1I210.  Tried several times on 2 Mac running Yosemite.  Any ideas?

    U44... Update error http://forums.adobe.com/thread/1289956 can help

    -U44 more... discussion http://forums.adobe.com/thread/1275963

    -http://helpx.adobe.com/creative-suite/kb/error-u44m1p7-installing-updates-ccm.html

    -http://helpx.adobe.com/creative-suite/kb/error-u44m1i210-installing-updates-ccm.html

  • "Adobe Acrobat Reader DC cannot open 'amy application' because it's a non supported file type or because the file is damaged."   I received this message during indexing on my computer.  I could not get the message, so I uninstalled Adob

    "Adobe Acrobat Reader DC cannot open 'amy application' because it's a non supported file type or because the file is damaged."

    I received this message during indexing on my computer.  I could not get the message, so I

    uninstalled Adobe.

    After you have uninstalled Abobe, I was able to get all my jobs and applications (with the exception of adobe files).

    Then I tried to re - install Adobe, but who has turned to a complicated procedure.

    There are so many choices, and there are a number of downloadable updates. What was I guess what to do?   But I have chosen one of the Adobes and tried to install it.

    After that I don't know what happened.  All my desktop icons are now Adobe icons in place.   that is The Firefox icon is now replaced by an icon of Adobe.  It is the same for several other desktop program icons. (QuickTime, chrome, Internet Explorer, etc.)

    When I try to open the program by clicking on it, I get the above message.

    I went to the site of help from Adobe and read a complex string of instructions, including

    words like '% pdf', "DWROD" and, for me, other nonsensical words and phrases.

    Needless to say that the instructions were no help.

    I said all that to say this.  I want that my computer back.  What should I do to do?

    Sincerely,

    Ralph Thompson

    [personal information... [Mod - https://forums.adobe.com/docs/DOC-3731]

    [This is an open forum, not the Adobe support, please do not post personal information]

    [If you send messages by e-mail, please turn off your "sig file" function for display]

    This may help: Application, file icons change in Acrobat/Reader icon

  • Error "could not get the audio data in the file.

    Hello

    I get a lot of mistakes "Could not get the audio data in the file" when you open a project. Sometimes they will plant Premiere Pro CC 7.01 (Mac). But if no first works as usual, with the audio.

    I tried to convert the audio files (from the hearing) from 32 to 16 bit. It worked while opening a project once, but not the next time.

    Where can it be?

    Edit: I also get this error when importing audio: "error: Premiere Pro version 7.0 is not compatible with the first version of plugin Pro 5.7.4. Maybe it's related.

    I have it! This is the plugin Smartsound hurt. Got rid of him and no more errors.

Maybe you are looking for