VARRAY retrieval via MSVisual C++ ADO

CREATE TYPE ENAMELIST AS VARRAY(20) OF VARCHAR2(30);
CREATE TABLE department (
dept_id NUMBER(2),
ENAMES ENAMELIST);
First, can a VARRAY data type be passed as a parameter in a stored procedure call ?
Second, need C++ code sample of retreiving the VARRAY parameter from the stored procedure via ADO.
Thank you for any asistance.

Similar Messages

  • I forgot Asked Questions safety and I want to be retrieved via e-mail

    I forgot Asked Questions safety and I want to be retrieved via e-mail account

    Hello there, resoooon.
    The following Knowledge Base article goes over what to do if you don't remember your security questions:
    Apple ID: All about Apple ID security questions
    http://support.apple.com/kb/HT5665
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • VARRAY retrieval from MS Visual C++ via ADO

    CREATE TYPE ENAMELIST AS VARRAY(20) OF VARCHAR2(30);
    CREATE TABLE department (
    dept_id NUMBER(2),
    ENAMES ENAMELIST);
    First, can a VARRAY data type be passed as a parameter in a stored procedure call ?
    Second, need C++ code sample of retreiving the VARRAY parameter from the stored procedure via ADO.
    Thank you for any asistance.

    Generally, it's the same way you'd handle a resultset from a standard statement. If you're executing something like:
    select * from emp
    now, you'd just replace it with
    {call getEmp()}
    assuming that getEmp is defined in the database as
    create procedure getEmp( employees OUT REF CURSOR )
    The Oracle ODBC driver is smart enough to notice that you have an OUT REF CURSOR and map that to a resultset without you having to bind anything.
    Justin

  • ORA-13485 when retrieving via getRatserImage(0)

    Hi there,
    i loaded some png images alike the loader tool from the demo. Using compression=NONE works well (except space consumption), but when I change compression to DEFLATE, viewing the imagery with the supplied viewer as extracting them to disk fail. I get an
    java.sql.SQLException: ORA-29400: data cartridge error
    ORA-13485: error occurred during compression or decompression: unknown compression method
    ORA-06512: at "MDSYS.MD", line 1723
    ORA-06512: at "MDSYS.MDERR", line 17
    ORA-06512: at "MDSYS.SDO_GEOR_AUX", line 315
    ORA-06512: at line 13
    ORA-06512: at "MDSYS.SDO_GEOR_INT", line 2764
    ORA-06512: at "MDSYS.SDO_GEOR", line 805
    ORA-06512: at "MDSYS.SDO_GEOR", line 2764
    ORA-06512: at line 9
    ..blahblahjavadump...
    Oracle version is 11.2.0.1.0.
    Is DEFLATE not supported as opposed stated in the docs. Former posts showed that there were problems with former versions : SDO_GEOR.BUILDPYRAMID error ORA-13485 pyramiding compressed mosaic
    I have not tried to import compression=NONE, then do a sdo_geor.changeFormatCopy. I thought it is done via the load process. Or do i have to supply an already compressed image stream to write to the blob .. how would I do that?
    RenderedOp image = JAI.create("stream", params);
    TiledImage ti = new TiledImage(image, tileSize, tileSize);
    Raster tile = ti.getTile(xTile, yTile);
    BLOB blob = my_jgeor.getRasterObject().initRasterBlock(pyramidLevel, bTile, yTile, xTile, blockMBR);
    writeRasterData(blob, tile);
    Thanks
    Ingo

    Hi Jeffrey,
    I've already written the loader part based on the example provided. The raster/geometry get inserted into tables, I view them with the Viewer also provided in the examples. I can extract them with own code (again token from examples).... when I change
    //          rasterSpec = rasterSpec + "compression=NONE ";
              rasterSpec = rasterSpec + "compression=DEFLATE ";
    // *Action: Check that the GeoRaster object is valid, that its metadata
    // is valid for the specified compression format, and that valid
    Q1) How can I check if inserted metadata is right for that compression format?
    I can not extract the raster image, there occurs above error when extracting them with own code The Viewer provides metadata, but cannot read display image, hold on - stacktrace:
    oracle@hormon:~/app/11g/md/demo/georaster/java$ ./startGeoRasterViewer.sh
    java.sql.SQLException: ORA-29400: Data Cartridge-Fehler
    ORA-13485: Fehler bei Komprimierung oder Dekomprimierung aufgetreten: incorrect header check
    ORA-06512: in "MDSYS.MD", Zeile 1723
    ORA-06512: in "MDSYS.MDERR", Zeile 17
    ORA-06512: in "MDSYS.SDO_GEOR_AUX", Zeile 315
    ORA-06512: in Zeile 13
    ORA-06512: in "MDSYS.SDO_GEOR_INT", Zeile 2764
    ORA-06512: in "MDSYS.SDO_GEOR", Zeile 805
    ORA-06512: in "MDSYS.SDO_GEOR", Zeile 2764
    ORA-06512: in Zeile 9
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:439)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:395)
    at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:802)
    at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:436)
    at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:186)
    at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:521)
    at oracle.jdbc.driver.T4CCallableStatement.doOall8(T4CCallableStatement.java:202)
    at oracle.jdbc.driver.T4CCallableStatement.executeForRows(T4CCallableStatement.java:1005)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1307)
    at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3449)
    at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:3550)
    at oracle.jdbc.driver.OracleCallableStatement.execute(OracleCallableStatement.java:4693)
    at oracle.jdbc.driver.OraclePreparedStatementWrapper.execute(OraclePreparedStatementWrapper.java:1086)
    at oracle.spatial.georaster.JRaster.getRasterSubset(JRaster.java:646)
    at oracle.spatial.georaster.image.GeoRasterImage.getRasterImage(GeoRasterImage.java:645)
    at oracle.spatial.georaster.tools.GeoImagePanel$ImagePanel.fetchImage(GeoImagePanel.java:1277)
    at oracle.spatial.georaster.tools.GeoImagePanel$ImagePanel.run(GeoImagePanel.java:830)
    at java.lang.Thread.run(Thread.java:595)
    java.lang.NullPointerException
    at oracle.spatial.georaster.JRaster.getRasterSubset(JRaster.java:729)
    at oracle.spatial.georaster.image.GeoRasterImage.getRasterImage(GeoRasterImage.java:645)
    at oracle.spatial.georaster.tools.GeoImagePanel$ImagePanel.fetchImage(GeoImagePanel.java:1277)
    at oracle.spatial.georaster.tools.GeoImagePanel$ImagePanel.run(GeoImagePanel.java:830)
    at java.lang.Thread.run(Thread.java:595)
    java.sql.SQLException: ORA-29400: Data Cartridge-Fehler
    ORA-13485: Fehler bei Komprimierung oder Dekomprimierung aufgetreten: unknown compression method
    ORA-06512: in "MDSYS.MD", Zeile 1723
    ORA-06512: in "MDSYS.MDERR", Zeile 17
    ORA-06512: in "MDSYS.SDO_GEOR_AUX", Zeile 315
    ORA-06512: in Zeile 13
    ORA-06512: in "MDSYS.SDO_GEOR_INT", Zeile 2764
    ORA-06512: in "MDSYS.SDO_GEOR", Zeile 805
    ORA-06512: in "MDSYS.SDO_GEOR", Zeile 2764
    ORA-06512: in Zeile 9
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:439)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:395)
    at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:802)
    at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:436)
    at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:186)
    at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:521)
    at oracle.jdbc.driver.T4CCallableStatement.doOall8(T4CCallableStatement.java:202)
    at oracle.jdbc.driver.T4CCallableStatement.executeForRows(T4CCallableStatement.java:1005)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1307)
    at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3449)
    at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:3550)
    at oracle.jdbc.driver.OracleCallableStatement.execute(OracleCallableStatement.java:4693)
    at oracle.jdbc.driver.OraclePreparedStatementWrapper.execute(OraclePreparedStatementWrapper.java:1086)
    at oracle.spatial.georaster.JRaster.getRasterSubset(JRaster.java:646)
    at oracle.spatial.georaster.image.GeoRasterImage.getRasterImage(GeoRasterImage.java:645)
    at oracle.spatial.georaster.tools.GeoImagePanel$ImagePanel.fetchImage(GeoImagePanel.java:1277)
    at oracle.spatial.georaster.tools.GeoImagePanel$ImagePanel.run(GeoImagePanel.java:830)
    at java.lang.Thread.run(Thread.java:595)
    java.lang.NullPointerException
    at oracle.spatial.georaster.JRaster.getRasterSubset(JRaster.java:729)
    at oracle.spatial.georaster.image.GeoRasterImage.getRasterImage(GeoRasterImage.java:645)
    at oracle.spatial.georaster.tools.GeoImagePanel$ImagePanel.fetchImage(GeoImagePanel.java:1277)
    at oracle.spatial.georaster.tools.GeoImagePanel$ImagePanel.run(GeoImagePanel.java:830)
    at java.lang.Thread.run(Thread.java:595)
    So from that I figure that it must have to have something to do with imagedata retrieved from the tables. metadata gets displayed...
    Q2) Do I have to insert imagery as already compressed pngs? How would I do that using JAI?
    Thanks
    Ingo

  • HT5622 Can my contacts be retrieved via Apple ID

    Would it be possible for me to retrieve contacts stored on my iPhone that was synchronised via a laptop. Phone and laptop were stolen during a burglary and I have no other way of retrieving my contacts. Was registered with an Apple ID and used iTunes/store. Thanks. 

    Sorry to hear about your loss! If you were signed in to iCloud on the device with your contacts, and had contacts switched on, then you could always try going to www.icloud.com on any computer, logging in with your appleID and seeing if they're there.
    Good hunting!

  • Messages, being retrieved via POP3, are having their alias being replaced by its primary smtp address

    We use a CRM tool (Deerfield's VisNetic Mailflow) that POP's into Exchange 2007 to access their mailboxes.  Senders of email to this mailbox use one of many alias' assigned to the mailbox.  The issue we are having is that the alias (ie secondary address) is being replaced by the mailbox's primary address.
    NB When I perform a test without POP'ing  (ie send\receive testing directly between a private external email address and my Exchange mailbox, back and forth), I am successful in retaining the secondary address.
    Any idea what is causing the address to change from the alias (ie secondary) to the primary address when POP'ing?  POP does seem to be the variable here...just not sure what I should be looking at in order to fix this issue.
    Regards,
    Andrew

    Following up on Andrew's post we're seeing some confirmation of a behaviour change in Exchange 2007:
    Dear Colin,
    Based on our lab test, it is confirmed that the behavior has changed in Exchange 2007. If a mail is received by Exchange 2007 store, the To field will remain as the intended recipient if you view the mail in Outlook 2003/2007. But the To header will always be changed to primary address if you view the mail in Windows Mail, Outlook Express via POP3 or IMAP. This is the reason that the same copy of a mail will exhibit the different address in header. In Exchange 2007, the real P2 address will be written to email to header only when it is transferred to MAPI format.
    Below is the final test report in our lab
    1: Exchange 2003 situation:
    Mailbox Name: Test1, Test2.
    Primary email address: [email protected], [email protected]
    Secondary email address: [email protected], [email protected]
    Use the Test1’s primary email address to send the message to its secondary email address and Test2’s secondary email address, then no matter which type of method we use to open these two mailboxes, the secondary email address will be listed in “to” field in this message’s message header. In the other word, the email address in the “to” field will not be changed to the recipient’s primary email address.
    2: Exchange 2007 situation:
    Mailbox Name: AA,BB.
    Primary email address: [email protected], [email protected]
    Secondary email address: [email protected], [email protected]
    use aa’s primary email address to send the message to its secondary email address and bb’s secondary email address, then if we use pop3 method to open the message, then we will see the recipient’s Primary email address in the “to” field in this message’s message header. However, if open the message by using Outlook MAPI method, then the recipient’s secondary email address in the “to” field in the message’s message header.
    In Exchange 2003 , if send the message to recipient’s secondary email address, then this secondary email address will be shown in the message’s message header without any change.
    However in Exchange 2007 situation, once you send the message to the recipient’s secondary email address, then open and view this message’s message header by Outlook MAPI, then the recipient’s secondary email address will still be shown in the “to” field. If we open and view this message’s message header by the POP3 or IMAP method, then the recipient’s primary email address will be shown in the “to” field in Message header instead of its secondary email address. This behavior is the new change in Exchange 2007 situation.
    Meanwhile, I have reviewed your replies again and I know that we open the message to your tickets message from the General delivery mailbox using Windows Mail on Vista and an IMAP connection. However, you opened the message to your person mailbox using Outlook 2007 on Vista using a MAPI connection. Hence, we will encounter two different behavior in “to” list in the message header.
    I understand that the VisNetic MailFlow application is probably a critical application in your organization. However, it seems this application work with POP3 or IMAP4 method. If so, it may not be able to get the secondary email address in the message’s message header. I am wondering if there is a MAPI versions of this utility so that it can recognize the original header.
    I hope my explanation can clarify this issue more explicitly. If you have any question about my explanation, please let me know.
    Thanks.
    Best regards,
    Jeff Zeng
    Microsoft Messaging Support Service

  • Retrieve role-activity relationship via papiws

    We have a demand from a client who is asking for access the information about the audit trail activities and the role which those activities are associated in an external application.
    We’re using PAPIWS’ method processGetVisibleActivities(String) from the WebService, but it only lists information about interactive activities from a process.
    I would like to know if there’s a way to retrieve, via Webservice, all activities, like Begin, automatic acitivities and decisions.

    Hi,
    can you look at this
    [https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/a92195a9-0b01-0010-909c-f330ea4a585c?overridelayout=true]
    Regards,
    Muralidhar

  • Character sets and ado

    I have a table with a clob field on an Oracle 8.1.7.4 database. When querying the clob field via odbc and ado the value is truncated. The Oracle server and client are using a WE8ISO8859P1 character set. Has anyone come across this before.
    Thanks.

    I believe the data should be able to be represented by IS0-8859. The data is a long random string of characters that represents a fingerprint image.
    We seem to only get 996 characters back from the database. If I do a getchunk on the data then I get 996 characters of data, then 996 NULLS, then 996 characters of data and so on. The 996 NULLS should be data.
    The data is in the database because I can do a dbms_lob.substr and get the correct info back.

  • Siebel Business Entity - EIM Table mapping via Integration Objs, Tools etc

    Hi,
    I was wanting to know if it is possible to access the mapping a Business Entity has to an EIM table (table name + column name ) when information (metadata + data) about a business entity such as Account is retrieved via an Integration Object ?
    Appreciate any other pointers in this direction as well.
    Essentially given a business entity and a field in the entity, we want to find out what are all the EIM tables & columns it has a direct mapping to programmitacally.
    So other questions are like -
    a. Any way by which we can read EIM tables meta data via a web service or VB scripts ?
    b. Any programmatic interface to Siebel Tools ?
    Thanks very much,
    yogs

    Hi DST
    This is a great effort and gesture. thank you on behalf of all the newbies.
    PJ

  • SICF customer service in order to retrieve PDF document from archive (ICC)

    All,
    I am currently trying to set up a scenario to integrate SAP-VIM (vendor invoice management) with the ICC (invoice capture center; from opentext). In this process the ICC application loads data from SAP together with a scanned invoice (in PDF format) stored in our archive.
    Since we are not using any sap-certified archive solution I had to build the data retrieval via custom programming. But when the ICC component is trying to upload the data I am getting following error: "Error while trying to get invoice image(s) and recognition results from SAP: Unable to load datapool. Data at the root level is invalid. Line 1, position 1." Did someone have experience with this kind of set-up of with the error?
    Steps done:
    - create a Z-service in SICF with own class (based on copy of CL_HTTP_EXT_CSIF)
    - inside this class programmed to data retrieval of the PDF document of the archive (in Base64 format or Binary format)
    - filling the header fields of the response via
    l_mimetype = 'application/pdf'.
      call method l_entity->set_header_field:
        exporting name = 'Content-Type'      value = l_mimetype,
        exporting name = 'Content-Length'  value = l_size_s, 
        exporting name = 'pVersion'        value = l_pversion,
      call method l_entity->set_data
        EXPORTING
          data   = l_data
          offset = '0'
          length = l_length.
    l_data = binary data of PDF-file
    Best Regards,
    Kris

    831692 wrote:
    Hello everyone,
    I'm using BI Publisher 11g to generate PDF documents. I had implemented a servlet that uses HTTP POST/GET to simulate the behaviour of BIP console since ScheduleReport Service is not implemented in this version. The problem is about the output of the final documents when i'm not using the bursting option. From my experience, the documents are not saved in any temporary folder in the filesystem. Looking at DEV_BIPLATFORM schema and analysing XMLP_* tables, i'm assuming that the generated document data is the BLOB DATA field in the XMLP_SCHED_DATA table...this is right?
    Next, in java, i'm using the BLOB field to output his binary content to a PDF file but, when i try to open the file, it gives an error: "document may be damaged"...
    Any suggestions here would be appreciated...
    Thanks in Advance
    Regards,
    NP1. Yes, it contains the output document.
    2. If the output type is PDF then the BLOB contains a zip file which contains the PDF document.
    So first unzip it before rendering
    Cheers
    Jorge
    p.s. If your question is answered then please grant the points and close the thread

  • Retrieving personal user certificate for secure webservice

    All,
    I am currently creating a WLW 8.1 webservice that will interact with a non-browser client. The reason I mention non-browser is that in order to secure this webservice and also have it function correctly I need to retrieve a user's personal certificate. Our team has done this for web-content in the past with simple retrieval via the browser, but in this case the client is non-configurable and will be talking directly with my webservice.
    My question is: is it possible to retrieve the user's certificate via a webservice? The certificate is not only used for security validation, but their credentials are also used to validate them in other programs on the back-end of the webservice. This allows personalized content based on the certificate.
    Thanks for any help you can provide. I know that was long winded and semi-complicated so if any clarification is required please ask.
    Thanks,
    Sam

    So in essence, then, Credential Roaming is exactly what we need.
    yes.
    > but if the cert needs to be in the Personal store PRIOR to the user being authenticated on 802.1x
    this is one pitfall of this scenario. You need to have locally installed certificates prior to connecting to wireless network. This means, that you cannot initially connect to wireless prior logging on to domain by using wired network. Once certificates
    are cached, you can connect to wireless networks with cached certificates.
    Vadims Podāns, aka PowerShell CryptoGuy
    My weblog: en-us.sysadmins.lv
    PowerShell PKI Module: pspki.codeplex.com
    PowerShell Cmdlet Help Editor pscmdlethelpeditor.codeplex.com
    Check out new: SSL Certificate Verifier
    Check out new:
    PowerShell File Checksum Integrity Verifier tool.

  • Free text retrieval with Context Cartridge

    I am wondering whether it would a problem to create a Java
    application doing free text retrieval via Context Cartridge.
    I mean by that :
    1. JDBC call via thin Oracle driver with CONTAINS in WHERE
    clause. Is it supposed to work ?
    2. Assuming we have several hits in a BLOB can we provide
    functionality ( next hit prev hit ) in textarea field for Java
    frame.
    null

    This one was forwarded to JDBC experts. Two experts (A and B)
    replied. Their answers are below.
    Michael Mitiaguin (guest) wrote:
    I am wondering whether it would a problem to create a Java
    application doing free text retrieval via Context Cartridge.
    I mean by that :
    1. JDBC call via thin Oracle driver with CONTAINS in WHERE
    clause. Is it supposed to work ?
    A. YES.
    B. There is no limitation in JDBC of using CONTAINS in WHERE
    clause.
    2. Assuming we have several hits in a BLOB can we provide
    functionality ( next hit prev hit ) in textarea field for Java
    frame.
    A. I don't really get what you mean. If you mean that you want to
    map a Java Frame to a BLOB column and depending upon the hit in
    the Java frame, you want to read the data from a certain position
    (offset), then yes. If you are using 8.0.X drivers, you can use
    the dbms_lob.read call. If you are using 8.1.X drivers, you can
    use Blob.getBytes call.
    B. It can be achieved by creating a wrapper of using the
    following method in oracle.sql.BLOB in 8.1 driver.
    public long position(byte[] pattern,
    long start)
    throws SQLException
    Determines the byte position at which the specified byte pattern
    begins within the BLOB value that this Blob object represents.
    Begin search at position start. Parameters:
    pattern - the byte array for which to search
    start - the position at which to begin searching; the first
    position is 1
    Returns: the position at which the pattern appears, else -1.
    Throws: SQLException - if there is an error accessing the BLOB
    null

  • Retain formatting in Excel when retrieving data

    I am attempting to create reports using the Excel add in. Whenever I set up borders or fill in cells in Excel and then retrieve data, the formatting disappears. I have the formula preservation mode on and that's what's described in the documentation to do. I'm a new user and feel stupid asking but I just can't get it to work. I'm on version 6.5.3 in case that matters.

    Hi,for me the most effectiv way to keep formats and formulas on a retrieve is to protect the worksheet before. Therefore:- lock each cell on the sheet except the ones which should be updated by the retrieve (via menue "Format/Cells..."- protect the worksheet (via menue "Extras/Protection..."- RetrieveKind regards,MarcP.S. For I'm working with a german version of Excel, the above mentionned menue descriptions may be different to my "translations".

  • Serialization Retrieval

    I just started messing with serialization and I'm not finding what I want to do, or even if what I want to do is possible. Basically, I can type info into a textfield, click a save button, and then the input is saved to a .txt file. I'm wondering how (or if) I can retrieve that input in the .txt file from another class and have it display in another textfield, or label, or whatever.

    If all you want to do is store the string into a text file, you don?t need to serialize. You just write to an OutputStream, then retrieve via a InputStream.
    You use serialization when you store or send (via TCP/IP) an Object, so the retrieving end knows how to rebuild this Object.

  • A question about CRL retrieval over HTTP

    Hello
    All<o:p></o:p>
    Can
    someone please help me with the following question<o:p></o:p>
    At the moment I have a couple of Windows 2003 R2 Servers with Microsoft
    Certificate Services installed (e.g. domain joined enterprise CA infrastructure). <o:p></o:p>
    The CDP extension of issued certs contains both and LDAP path and HTTP path to retrieve the CRL
    the HTTP path being the standard <o:p></o:p>
    URL=http://<CAServer FQDN>/CertEnroll/ENTRootCA.crl<o:p></o:p>
    and LDAP being the usual location in AD<o:p></o:p>
    Now I need to turn off the 2003 R2 CA in the near future and want to be sure the
    clients requesting a CRL can still obtain the CRL.<o:p></o:p>
    The CARoot Cert is already distributed to all the workstations (as is the SubCA cert) to the usual containers.<o:p></o:p>
    The LDAP Path comes first in the list of CRL locations in the CDP extension followed by the URL location.<o:p></o:p>
    I know (believe) in general a UA (user agent i.e. WEB Browser) with check the list of CRL locations in turn and as long as it can reach one of them will be OK.<o:p></o:p>
    I am OK on the Windows side of things but we also have a UNIX/Linux environment (like most companies) that also utilize certificates issued by the MS CA’s therefore their respective UG will
    (or should that be might) check the CRL via
    the CDP.<o:p></o:p>
    If I turn off the CA then the HTTP path in the CDP will no longer be available (LDAP will still be available).<o:p></o:p>
    I just want to check if there are any UG out on the network using HTTP to retrieve the CRL, so I was thinking about checking one or more logs on the CA for HTTP traffic regarding CRL retrieve.<o:p></o:p>
    Questions<o:p></o:p>
    Is CRL retrieval from the CA (via the default HTTP path) logged in any of the CA
    Logs?
    If so which logs?
    If not logged by default can I turn up logging (i.e. I see there is a Debug option) and if so will this then log HTTP CRL retrieval requests (e.g. clients IP address making the http request)?<o:p></o:p>
    I just want to check this in case some UNIX/Linux UG are not trying LDAP first or cannot retrieve via LDAP and therefore have to reply on Http before I turn on the CA <o:p></o:p>
    Thanks
    all in advance<o:p></o:p>
    AAnotherUser__<o:p></o:p>
    AAnotherUser__

    (same text, formatted better)
    Hello All
    Can  someone please help me with the following question
    At the moment I have a couple of Windows 2003 R2 Servers with Microsoft
    Certificate Services installed (e.g. domain joined enterprise CA infrastructure).
    The CDP extension of issued certs contains both and LDAP path and HTTP path to retrieve the CRL
    the HTTP path being the standard
    URL=http://<CAServer FQDN>/CertEnroll/ENTRootCA.crl
    and LDAP being the usual location in AD
    Now I need to turn off the 2003 R2 CA in the near future and want to be sure the
    clients requesting a CRL can still obtain the CRL.
    The CARoot Cert is already distributed to all the workstations (as is the SubCA cert) to the usual containers
    The LDAP Path comes first in the list of CRL locations in the CDP extension followed by the URL location.
    I know (believe) in general a UA (user agent i.e. WEB Browser) with check the list of CRL locations in turn and as long as it can reach one of them will be OK
    I am OK on the Windows side of things but we also have a UNIX/Linux environment (like most companies) that also utilize certificates issued by the MS CA’s therefore their respective UG will
    (or should that be might) check the CRL via
    the CDP
    If I turn off the CA then the HTTP path in the CDP will no longer be available (LDAP will still be available).
    I just want to check if there are any UG out on the network using HTTP to retrieve the CRL, so I was thinking about checking one or more logs on the CA for HTTP traffic regarding CRL retrieve.
    Questions
    Is CRL retrieval from the CA (via the default HTTP path) logged in any of the CA
    Logs?
    If so which logs?
    If not logged by default can I turn up logging (i.e. I see there is a Debug option) and if so will this then log HTTP CRL retrieval requests (e.g. clients IP address making the http request)?
    I just want to check this in case some UNIX/Linux UG are not trying LDAP first or cannot retrieve via LDAP and therefore have to reply on Http before I turn on the CA
    Thanks all in advance
    AAnotherUser__
    AAnotherUser__

Maybe you are looking for

  • Acr opens raw in bridge but not in photoshop cs5

    When opening a raw (RAF ) file in bridge everything  works fine ,when I want to open the file, ps cs5 opens the file, no problem. But when opening the same file in ps, acr comes up and when I click open image, I get the message " could not comlete yo

  • Making a kernel PKGBUILD

    Hello, I tried to make my own kernel package with the abs system. I studied the wiki documentation (http://wiki.archlinux.org/index.php/Cus … n_with_ABS) After making all configurations in the PKGBUILD, I copied the "kernel126.install", kernel-config

  • Lightroom encountered an error when reading it's preview cache and needs to quit

    When I open the program, it shuts down with the above error. It says it will try to fix next time Lightroom opens. It does not. What can I do?

  • Query takes much time while sum of yearly bases amount

    I have made query on the basis of joing to get payroll data it's woking fine but when we accumulate this on yearly basis while giving parameter from and to date then it takes much time, so how can we optimise this. please advice.

  • 403 Forbidden error calling PL/SQL Procedure from URL

    I am getting a 403 Forbidden browser error when calling a PL/SQL procedure from the URL, as in this: http://<server.port>/apex/SCHEMA.procedure_name/f?p_param1=394&p_param2=2, etc We are upgrading from HTMLDB 2.0 to APEX 4.0.2. I do not believe the u