ClassCastException Document Security Server

Hi,
I've got problems invoking the PDF manipulation module.
Environment:
- Linux 9.0
- j2sdk1.4.2_13
- jboss-3.2.5
- Oracle 10i
the code:
public void createPDF()throws Exception{
UserTransaction transaction = null;
try{
ConnectionFactory dmConnectionFactory = null;
InitialContext namingContext = new InitialContext();
Object dmObject = namingContext.lookup("DataManagerService");
dmConnectionFactory = (ConnectionFactory)PortableRemoteObject.narrow(dmObject,ConnectionFactory.class);
transaction = (UserTransaction)namingContext.lookup("java:comp/UserTransaction");
transaction.begin();
DataManager mDataManager = DataManagerHelper.narrow((org.omg.CORBA.Object)dmConnectionFactory.getConnection());
Object pdfObject = namingContext.lookup("PDFManipulation");
//TODO Now the ClassCastExeption is thrown
ConnectionFactory pdfConnectionFactory = (ConnectionFactory)PortableRemoteObject.narrow(pdfObject,ConnectionFactory.class);
transaction.commit();
catch(Exception e){
transaction.rollback();
throw e;
server.log:
2007-01-31 17:32:19,236 WARN [org.jgroups.blocks.ConnectionTable] packet from /127.0.0.1:54127 has different version (0220) from ours (0227). This may cause problems
2007-01-31 17:32:19,236 WARN [org.jgroups.blocks.ConnectionTable] exception is java.io.InvalidClassException: org.jgroups.stack.IpAddress; local class incompatible: stream classdesc serialVersionUID = -4126459214503530426, local class serialVersionUID = -8753594169997651306
2007-01-31 17:32:54,523 INFO [STDOUT] java.lang.ClassCastException
2007-01-31 17:32:54,524 INFO [STDOUT] at com.sun.corba.se.internal.javax.rmi.PortableRemoteObject.narrow(PortableRemoteObject.java :293)
2007-01-31 17:32:54,524 INFO [STDOUT] at javax.rmi.PortableRemoteObject.narrow(PortableRemoteObject.java:134)
2007-01-31 17:32:54,524 INFO [STDOUT] at src.ch.ajila.server.layer1servlets.net.LookupUtil.createPDF(LookupUtil.java:57)
2007-01-31 17:32:54,525 INFO [STDOUT] at src.ch.ajila.server.layer1servlets.LoginServlet.handleRequest(LoginServlet.java:28)
2007-01-31 17:32:54,525 INFO [STDOUT] at org.apache.velocity.servlet.VelocityServlet.doRequest(VelocityServlet.java:372)
2007-01-31 17:32:54,525 INFO [STDOUT] at org.apache.velocity.servlet.VelocityServlet.doGet(VelocityServlet.java:333)
2007-01-31 17:32:54,525 INFO [STDOUT] at javax.servlet.http.HttpServlet.service(HttpServlet.java:697)
2007-01-31 17:32:54,525 INFO [STDOUT] at javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
2007-01-31 17:32:54,525 INFO [STDOUT] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.j ava:237)
2007-01-31 17:32:54,525 INFO [STDOUT] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
2007-01-31 17:32:54,525 INFO [STDOUT] at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:214)
2007-01-31 17:32:54,525 INFO [STDOUT] at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
2007-01-31 17:32:54,526 INFO [STDOUT] at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
2007-01-31 17:32:54,526 INFO [STDOUT] at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:19 8)
2007-01-31 17:32:54,526 INFO [STDOUT] at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:152)
2007-01-31 17:32:54,526 INFO [STDOUT] at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
2007-01-31 17:32:54,526 INFO [STDOUT] at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.ja va:72)
2007-01-31 17:32:54,526 INFO [STDOUT] at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:102)
2007-01-31 17:32:54,527 INFO [S

Hi,
I've got problems invoking the PDF manipulation module.
Environment:
- Linux 9.0
- j2sdk1.4.2_13
- jboss-3.2.5
- Oracle 10i
the code:
public void createPDF()throws Exception{
UserTransaction transaction = null;
try{
ConnectionFactory dmConnectionFactory = null;
InitialContext namingContext = new InitialContext();
Object dmObject = namingContext.lookup("DataManagerService");
dmConnectionFactory = (ConnectionFactory)PortableRemoteObject.narrow(dmObject,ConnectionFactory.class);
transaction = (UserTransaction)namingContext.lookup("java:comp/UserTransaction");
transaction.begin();
DataManager mDataManager = DataManagerHelper.narrow((org.omg.CORBA.Object)dmConnectionFactory.getConnection());
Object pdfObject = namingContext.lookup("PDFManipulation");
//TODO Now the ClassCastExeption is thrown
ConnectionFactory pdfConnectionFactory = (ConnectionFactory)PortableRemoteObject.narrow(pdfObject,ConnectionFactory.class);
transaction.commit();
catch(Exception e){
transaction.rollback();
throw e;
server.log:
2007-01-31 17:32:19,236 WARN [org.jgroups.blocks.ConnectionTable] packet from /127.0.0.1:54127 has different version (0220) from ours (0227). This may cause problems
2007-01-31 17:32:19,236 WARN [org.jgroups.blocks.ConnectionTable] exception is java.io.InvalidClassException: org.jgroups.stack.IpAddress; local class incompatible: stream classdesc serialVersionUID = -4126459214503530426, local class serialVersionUID = -8753594169997651306
2007-01-31 17:32:54,523 INFO [STDOUT] java.lang.ClassCastException
2007-01-31 17:32:54,524 INFO [STDOUT] at com.sun.corba.se.internal.javax.rmi.PortableRemoteObject.narrow(PortableRemoteObject.java :293)
2007-01-31 17:32:54,524 INFO [STDOUT] at javax.rmi.PortableRemoteObject.narrow(PortableRemoteObject.java:134)
2007-01-31 17:32:54,524 INFO [STDOUT] at src.ch.ajila.server.layer1servlets.net.LookupUtil.createPDF(LookupUtil.java:57)
2007-01-31 17:32:54,525 INFO [STDOUT] at src.ch.ajila.server.layer1servlets.LoginServlet.handleRequest(LoginServlet.java:28)
2007-01-31 17:32:54,525 INFO [STDOUT] at org.apache.velocity.servlet.VelocityServlet.doRequest(VelocityServlet.java:372)
2007-01-31 17:32:54,525 INFO [STDOUT] at org.apache.velocity.servlet.VelocityServlet.doGet(VelocityServlet.java:333)
2007-01-31 17:32:54,525 INFO [STDOUT] at javax.servlet.http.HttpServlet.service(HttpServlet.java:697)
2007-01-31 17:32:54,525 INFO [STDOUT] at javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
2007-01-31 17:32:54,525 INFO [STDOUT] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.j ava:237)
2007-01-31 17:32:54,525 INFO [STDOUT] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
2007-01-31 17:32:54,525 INFO [STDOUT] at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:214)
2007-01-31 17:32:54,525 INFO [STDOUT] at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
2007-01-31 17:32:54,526 INFO [STDOUT] at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
2007-01-31 17:32:54,526 INFO [STDOUT] at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:19 8)
2007-01-31 17:32:54,526 INFO [STDOUT] at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:152)
2007-01-31 17:32:54,526 INFO [STDOUT] at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
2007-01-31 17:32:54,526 INFO [STDOUT] at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.ja va:72)
2007-01-31 17:32:54,526 INFO [STDOUT] at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:102)
2007-01-31 17:32:54,527 INFO [S

Similar Messages

  • SSL & Document Security Server

    Hi -
    Previously I had successfully implemented a solution to allow me to apply a policy to a PDF remotely. I did this by creating an EJB to interact with the Document Security server. The EJB takes a byte[] as input (which is the unprotected PDF) and returns a byte[] as output (which is the protected PDF). This was working well.
    I've now implemented SSL on JBoss/Document Security server and although the certificate seems fine, the application no longer works. At the point where it's writing the data back to the client the following error is presented within the server.log file:
    2006-10-17 14:18:54,973 INFO [STDOUT] omniORB: From endpoint: giop:tcp:192.168.1.103:3528. Detected GIOP 1.2 protocol error in input message. Connection is
    closed.
    2006-10-17 14:18:55,116 INFO [STDOUT] omniORB: From endpoint: giop:tcp:192.168.1.103:3528. Detected GIOP 1.2 protocol error in input message. Connection is
    closed.
    2006-10-17 14:18:55,137 ERROR [com.adobe.document.PDFManipulation] Service PDFManipulation: Native process (PID=0) /opt/semantico/slot/Adobe/1/LiveCycle_7.0.
    2/PolicyServer/jboss-3.2.5/server/all/svcnative/PDFManipulation/bin/PDFManipulation.exe terminated abnormally with error code 1
    2006-10-17 14:18:55,140 INFO [com.adobe.service.logging.Logger] $$$/server/service/logging/msg.LogSvcInit=Logger com.adobe.service.logging.Logger initialize
    d
    The system doesn't actually seem to terminate as my client just sits there waiting for a response that doesn't seem to come.
    Has anyone seen this before? Have I done something wrong when implementing the certificate? Is it unrelated to the SSL work that I've been doing?
    I'm really confused and can't seem to find any forum topics addressing this issue so am very stuck. If anyone could offer any ideas as to how to solve this issue I'd be most grateful.
    The steps I took to implement SSL were:
    - generated a new certificate
    - generated a CSR to get signed by a trusted authority
    - added the signed certificate into my java environment
    - performed an 'expert' installation of document security server to incorporate the new certificate (I had to do this as configtool doesn't seem to work on my machine)
    - added the certificate to the JBoss installation & configured JBoss
    If anyone could help me with this I'd be very grateful.
    Anil.

    Hi Steve (and anyone that can help!) - <br /><br />I've installed my SSL certificate onto JBoss etc, and when I go to:<br /><br />https://<machine>:8433/edc/Main.do<br /><br />I see the certificate and it is trusted etc. The certificate appears fine.<br /><br />But when I run my application to apply a policy to a PDF (which works without the SSL connection) I get a problem being displayed in the server.log file.<br /><br />It initially says it has a problem retrieving the trust info (I assume that it's related) and then when it tries to do the work I get an SSLHandshakeException. <br /><br />javax.net.ssl.SSLHandshakeException: Received fatal alert: handshake_failure  vmcid: 0x0  minor code: 0  completed: No<br />        at org.jacorb.orb.iiop.IIOPConnection.to_COMM_FAILURE<br /><br />I'm confused as to why the certificate seems fine for the browser but there is a problem with the system communicating internally in order to apply the policy to the document.<br /><br />-------------<br /><br />2006-11-03 16:09:21,409 WARN  [com.adobe.document.PDFManipulation] problem retrieving trust info, security functions will not work<br />2006-11-03 16:09:21,422 DEBUG [org.jboss.mx.loading.UnifiedClassLoader] New jmx UCL with url null<br />2006-11-03 16:09:21,422 DEBUG [org.jboss.mx.loading.UnifiedClassLoader] setRepository, r=org.jboss.mx.loading.HeirarchicalLoaderRepository3@1944379, ucl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@1002a9d{ url=null ,addedOrder=0}<br />2006-11-03 16:09:21,422 DEBUG [org.jboss.mx.loading.UnifiedClassLoader] New jmx UCL with url null<br />2006-11-03 16:09:21,422 DEBUG [org.jboss.mx.loading.UnifiedClassLoader] setRepository, r=org.jboss.mx.loading.HeirarchicalLoaderRepository3@1944379, ucl=org.jboss.mx.loading.UnifiedClassLoader3@71edc8{ url=null ,addedOrder=0}<br />2006-11-03 16:09:21,432 INFO  [com.adobe.document.PDFManipulation] @@@ Starting PDFManipulation Services @@@<br />2006-11-03 16:09:21,434 DEBUG [com.adobe.document.PDFManipulation] Service PDFManipulation: Signal READY received<br />2006-11-03 16:09:21,435 DEBUG [org.jboss.mx.loading.UnifiedClassLoader] New jmx UCL with url null<br />2006-11-03 16:09:21,435 DEBUG [org.jboss.mx.loading.UnifiedClassLoader] setRepository, r=org.jboss.mx.loading.HeirarchicalLoaderRepository3@1944379, ucl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@1c4ecb7{ url=null ,addedOrder=0}<br />2006-11-03 16:09:21,435 DEBUG [org.jboss.mx.loading.UnifiedClassLoader] New jmx UCL with url null<br />2006-11-03 16:09:21,435 DEBUG [org.jboss.mx.loading.UnifiedClassLoader] setRepository, r=org.jboss.mx.loading.HeirarchicalLoaderRepository3@1944379, ucl=org.jboss.mx.loading.UnifiedClassLoader3@7c0754{ url=null ,addedOrder=0}<br />2006-11-03 16:09:21,490 INFO  [com.adobe.document.PDFManipulation] Service PDFManipulation: Exception while allocating a connection.<br />2006-11-03 16:09:21,494 INFO  [com.adobe.document.PDFManipulation] org.omg.CORBA.COMM_FAILURE: IOException: javax.net.ssl.SSLHandshakeException: Received fatal alert: handshake_failure  vmcid: 0x0  minor code: 0  completed: No<br />org.omg.CORBA.COMM_FAILURE: IOException: javax.net.ssl.SSLHandshakeException: Received fatal alert: handshake_failure  vmcid: 0x0  minor code: 0  completed: No<br />        at org.jacorb.orb.iiop.IIOPConnection.to_COMM_FAILURE(Unknown Source)<br />        at org.jacorb.orb.iiop.IIOPConnection.flush(Unknown Source)<br />        at org.jacorb.orb.giop.GIOPConnection.sendMessage(Unknown Source)<br />        at org.jacorb.orb.giop.GIOPConnection.sendRequest(Unknown Source)<br />        at org.jacorb.orb.giop.ClientConnection.sendRequest(Unknown Source)<br />        at org.jacorb.orb.giop.ClientConnection.sendRequest(Unknown Source)<br />        at org.jacorb.orb.Delegate.invoke_internal(Unknown Source)<br />        at org.jacorb.orb.Delegate.invoke(Unknown Source)<br />        at org.omg.CORBA.portable.ObjectImpl._invoke(ObjectImpl.java:457)<br />        at com.adobe.service._ControlAgentStub.newRequestHandler(_ControlAgentStub.java:23)<br />        at com.adobe.service.ProcessResource.allocateConnection(ProcessResource.java:561)<br />        at com.adobe.service.ConnectionResource.getConnection(ConnectionResource.java:39)<br />        at com.adobe.service.J2EEConnectionFactoryManagerPeerImpl.getConnection(J2EEConnectionFactor yManagerPeerImpl.java:106)<br />        at com.semantico.depp.drm.documentsecurity.server.PolicyApplicationBean.applyPolicy(Unknown Source)<br />        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)<br />        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)<br />        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)<br />        at java.lang.reflect.Method.invoke(Method.java:324)<br />        at org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invoke(StatelessSessionConta iner.java:683)<br />        at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionI nterceptor.java:185)<br />        at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:84)<br />        at org.jboss.ejb.plugins.AbstractTxInterceptorBMT.invokeNext(AbstractTxInterceptorBMT.java:1 44)<br />        at org.jboss.ejb.plugins.TxInterceptorBMT.invoke(TxInterceptorBMT.java:62)<br />        at org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSessionInstance Interceptor.java:72)<br />        at org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:120)<br />        at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:191)<br />        at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor. java:122)<br />        at org.jboss.ejb.StatelessSessionContainer.internalInvoke(StatelessSessionContainer.java:331 )<br /><br />--------------<br /><br />Can anyone shed any light on what's going on here? I've configured my system as documented by a few people but I don't seem to be able to get it working.<br /><br />Many thanks,<br />Anil.

  • Livecycle Policy Server and Livecycle Document Security

    Do I need Document Security to use Policy Server??

    Hello,
    I've been hunting around but can't find it. Is there a concise refernce for how to use Adobe Acrobat8 Security features with the Adobe Document Center? Is it so new that there's no book (Quick Start, etc.) on it?
    I send PDFs to people. But I only want them to be able to print the PDF, not copy any of its content. I also want the PDF to "self destruct" after a 3 month period. I was going to use Pinion Software's AutoShred product, but then I stumbled upon Adobe8 and the Document Center, which seemed like a perfect fit. So I immediately upgraded to Adobe8 and signed up for the trial at the Document Center.
    I have created security policies. But when I look at the policy, there is nothing allowing the detailed modifications permitted in Acrobat8 - Secure / Show Security Properties / SecurityTab / and the list for Document Restrictions Summary.
    For some reason, when I set up a security policy - most restrictive to only permit printing and file non-access after 3 months - the "page extraction: allowed" always shows up when I examine Show Security Properties / Security Tab / Document Restrictions Summary, even though for everything else it is "Not allowed" which is what I want.
    I thought maybe its a bug, because when I close the file and then reopen it, the page extraction is grayed out. But I don't know if people I send the file to will be able to extract the pages, thus getting around my objective of not allowing them to copy/paste any of my proprietary content onto some other file format.
    Any help on this?
    Thanks,
    Robert

  • Document Security API Issue

    I have developed a web application through which I can apply a policy to a set of documents present on my server's file system,(using APS and DSS API's ) and it is working fine on my jboss.I want to develop an application through which i can apply policy to documents from remote client's file system. And I don't want to upload my files to the server. Imagine if i have a 100 mb document
    Document Security service can't be accessed remotely.
    Is there any solution to this

    Acrobat and Acrobat Professional can both apply policies to documents. The engine on the server side that does this is called PDF Manipulation but the same technology is built into Acrobat.

  • Certificates from Oracle Security Server

    Hi everyone
    Has anyone been able to genereate a certificate using the Oracle Security Server (OSS) and been able to use that to set up a HTTP listener to use SSL with that?
    If so, how????
    OAS documentation goes on and on about how to install a certificate from a known CA, but forgets to document it's own OSS.
    Please help.
    Regards Gerard.

    John,
    I appreciate you asking around...FYI, I found reference to Oracle Security Server in Metalink...but couldn't attach it to a version of Oracle or another product!
    Thanks,
    Ed

  • ClassCastException: weblogic.security.acl.internal.FileRealm

    Hi,
    I am trying to create new user through the CachingRealm.newUser(?,?,?) method..What
    I do is -
    weblogic.security.acl.BasicRealm baseRealm =
    (weblogic.security.acl.BasicRealm)weblogic.security.acl.Security.getRealm();
    weblogic.security.acl.CachingRealm realm = (weblogic.security.acl.CachingRealm)
    baseRealm;
    However it is not able to classcast to CachingRealm , it gives the exception -
    java.lang.ClassCastException: weblogic.security.acl.internal.FileRealm..
    Do I need to do anything else ?
    Thx

    Hi Kumar,
    I took a look at config.xml
    Looks like you do not have an alternate realm hooked into WebLogic and that is the
    source of the problem.
    If you try to cast anything to CachingRealm and call methods on it, when you don't have
    an alternate realm, then the cast will fail with ClassCastException.
    For example, take a look at the very, very simple JSP code
    <%@ page import="
    import java.util.*,
    import weblogic.common.*,
    import javax.servlet.*,
    import javax.servlet.http.*,
    import java.io.*,
    import weblogic.security.*,
    import weblogic.security.acl.User,
    import weblogic.security.acl.Security,
    import weblogic.security.acl.Realm,
    import weblogic.security.acl.CachingRealm,
    import weblogic.security.acl.*,
    import java.security.acl.*,
    import java.security.acl.Permission,
    import java.security.Principal,
    import javax.servlet.http.*,
    import weblogic.html.*,
    import weblogic.common.internal.WLColor
    "%>
    <%
    response.setContentType("text/html");
    BasicRealm basicRealm = Security.getRealm();
    try {
    ((CachingRealm) basicRealm).clearCaches();
    } catch (ClassCastException ce) {
    out.println("There is a class cast.. getRealm ain't no returned a
    CachingRealm");
    out.println("This probably means that you don't have a pluggable realm hooked
    into WebLogic.");
    out.println("No pluggable Realm = no Cachingrealm!");
    %>
    This JSP will give you a class cast if you do not have some alternate realm hooked up
    (LDAP, NTREalm, UnixRealm, RDBMSRealm)
    But will work just fine if you do have an alternate realm hooked up .
    I think that this is what you are seeing.
    Hope this helps
    Joe Jerry
    kumar wrote:
    Hi Jerry,
    Thanks for your response.
    I have attached my config.xml . It is a very small config.xml with all the default
    configurations. Please look at it ..
    Thx
    Jerry <[email protected]> wrote:
    Hi Kumar,
    Do you have an alternate realm hooked into WebLogic (LDAP, UNIXrealm,
    NTRealm,
    CustomRealm)?
    Thanks,
    Joe Jerry
    kumar wrote:
    Hi,
    I am trying to create new user through the CachingRealm.newUser(?,?,?)method..What
    I do is -
    weblogic.security.acl.BasicRealm baseRealm =
    (weblogic.security.acl.BasicRealm)weblogic.security.acl.Security.getRealm();
    weblogic.security.acl.CachingRealm realm = (weblogic.security.acl.CachingRealm)
    baseRealm;
    However it is not able to classcast to CachingRealm , it gives theexception -
    java.lang.ClassCastException: weblogic.security.acl.internal.FileRealm..
    Do I need to do anything else ?
    Thx
    Name: config.xml
    config.xml Type: XML Document (text/xml)
    Encoding: base64

  • Advanced Security Server /Entrust-enabled SSL

    We are expermenting to configure Advanced Security Server to work with Entrust. I had a quick look on Oracle 9i Advanced Security Server /Administrators Guide, and found a lot more detailed instructions about configuring Entrust-enabled SSL.. In addition, there are samples of how sqlnet.ora will look like. The question: Can we use 9i manual to configure Entrust-enabled SSL for Oracle 817? If we can't use the 9i manual, is there any addendum document to the Chapter 10-Enabling Entrust
    Authentication in Oracle8i Advanced Security Administrators Guide, other than CR #281745 ....
    null

    Hi Justin,
    The Visual Basic application software uses Oracle OLEDB Provider 9.2.0.7.0
    We use various classes available in OLEDB for acessing the database. For example, the connection string looks like the following:
    Provider=oraoledb.oracle; data source=oraserve; user id=myuserid; password=mypasswd;
    The application uses ADODB objects to access data.
    Hope this clarifies
    Regards,
    SAM

  • What is the platform and minimum system requirement for Adobe LiveCycle Security Server?

    You can learn more about this by going to this webpage
    http://www.adobe.com/products/server/securityserver/systemreqs.html

    hi,
    i have installed Adobe LiveCycle Policy Server and Adobe Document Security Manager.i followed all the steps to integrate these two.but i have this feeling that the integration didn't go on well.how do i check if it is integrated or not?moreover,LiveCycle Policy Server has an interface where we can create policies.likewise,does Document Security Manager also have some sort of an interface where we can attach documents to polices or encrpyt policies,etc.thanks in advance.
    praneeth

  • Adobe Secured Server

    I’m not sure if this is the right forum to ask this question but does Adobe have a media server comparable to Avid Interplay where multi-user have access to the media content of various format and maintained locally without any outside web access. It’s would be on a secured server.

    the user tryin to open the document secured with the policy server should be added to the policy first....using policy server web pages one can add users and groups to a policy...only those users/groups added to the policy will be entitled to open any document secured with that policy...

  • Will not allow me to add caldav account (Calendar couldn't log in to the CalDAV server "webdav.skedge.me"error message)or I get the not a secure server message with the option to continue...but then it sticks it wont continue

    I WISH I HAD NOT UPGRADED...THIS IS A NIGHTMARE.  I need to sync my appointment scheduler that is embedded in my website to my ical (which was easily done through publishing with the previous version) since I have upgraded I dont have the option to publish...but can add the cal DAV account, which I tried to do but I get a "Calendar couldn't log in to the CalDAV server “webdav.skedge.me”." error message if I go through edit ccount> add other account  in system prefereneces otherwise I get a not secure server warning that will not continue when I select continue if I simply try to add an account using the + sign options at the bottom left of the systems preference pop up window
    found a potenital fix (that I think would work if I could understand how to do what they are telling me to do) it said to configure webdav sharing for active directory accounts...tried to follow the instructions...could not understand them (very techy instructions). 
    FYI to any one that may find it in thier heart to answer this...I AM NOT COMPUTER LITERATE I am a veterinarian not a computer programer...so please but things in terms I can understand...i dont know what root access or server admin means...I dont know how to edit config files or even open directories with terminal ...i dont know what pico is or how to open it on my computer.  Thanks
    If know one can help can someone please tell me how to un-upgrade..this *****!
    thanks
    Catherine

    Check the date and time in the clock on your computer: (double) click the clock icon on the Windows Taskbar.
    * https://support.mozilla.com/kb/Secure+Connection+Failed
    You can retrieve the certificate and check who issued the certificate and other details like when it is valid.
    * Click the link at the bottom of the error page: "I Understand the Risks"
    Let Firefox retrieve the certificate: "Add Exception" -> "Get Certificate".
    * Click the "View..." button to inspect the certificate and check who is the issuer.

  • Why does reindex documents at Server in the Configuration Manager break the help system?

    Background:
    So, I have a nice hosted help system on Server 9. I'm using the Access database since it's a light load project. It works OK. All admin features work OK (except groups and users bug, unrelated), including reports on search and usage. So, I have been having a devil of a time making a particular search term work in my project: UTS. It's an acronym for a system at my work, and it's important that users be able to search on it. UTS is in several Heading 1s. It's not in the stop list as a typo. Just to be sure, I deleted the whole stop list. I added "UTS" as a topic keyword. It still refuses to find any results. Also, I've noticed some other peculiarities with search: the "context" displayed below the search result is supposed to show the word you searched for in its context, but it never does in my search results. It just shows the first words of the document it's listed as a hit in search. The search is not bad, but these two bugs were odd enough to me to start rooting around for solutions.
    So, I run Server 9 on Windows Server 2008 R2 with Tomcat 7 and JDK 7u17.
    The problem:
    I noticed in all the Server documentation that Adobe crows about the wonderful full text search powered by Lucene, and how it's checked "on" by default in all contexts. It's not in mine. When I check "reindex documents at server," it breaks the project. Literally--Server can't find the project anymore, web calls come back with no answer. Uncheck the box, A-OK. So, why is this wonderful search technology not available to me? Is it because it's not available when using default Access? Or is something else going on here?
    many thanks in advance.
    David Morgan
    Robohelp HTML11/Server 9 user

    The problem is that my data collection software (VisualPlant by EMT) is unable to browse to the National Instruments.LookoutOPCServer. When I added an Identification category to the registry entry for the lookout OPC server I was able to connect but with some odd behavior. My setup is:
    2 machines each running Win NT4 SP6a. One machine is running Lookout as well as several other OPC servers. The other is running my data collection software. I am able to connect to lookout using several client apps on my data collection machine (Kepware's Quick Client, and Matrikon's Client), however my data collection software (VisualPlant) cannot see Lookout. Using the NI server explorer and viewing the properties of all of my OPC servers I noticed that Lookout was the on
    ly one listed that did not have a CatID. By modifying the registry and adding the ID's listed in my original note I was able to connect using VisualPlant, however this exibited some odd behavior. It appears that adding this setting prevents multiple OPC connections to Lookout. If you have any suggestions I would greatly appreciate it.
    Thanks.

  • To save a word/xls document from server machine to client

    Hi Folks,
    I am facing a problem in storing a document from server to client machine.
    I have a document in Oracle database BLOB column and i am able to read and open that document in client browser. But it is stored in the server machine when accessing from the client browser it is opening as a read only copy.
    I want to open it as editable copy in client machine and once it is edited i want to save back to the databse. But it can be stored in server or client machine without promting to the user.
    Any one can help me?
    Senthil

    Hi, I am wondering whether this will take time for a document/image which is about 3, 4 MB??? Cos customer has to scan documents one by one and the saving of the file in the DB and then using that to transfer to MSMQ (which is the requirement) should take less time than scanning 2 documents.

  • [svn] 949: Bug: BLZ-96 - When sending a HttpService request from ActionScript with multiple headers with the same name , it causes a ClassCastException in the server

    Revision: 949
    Author: [email protected]
    Date: 2008-03-27 07:12:59 -0700 (Thu, 27 Mar 2008)
    Log Message:
    Bug: BLZ-96 - When sending a HttpService request from ActionScript with multiple headers with the same name, it causes a ClassCastException in the server
    QA: Yes - try again with legacy-collection true and false.
    Doc: No
    Checkintests: Pass
    Details: Another try in fixing this bug. When legacy-collection is false, Actionscript Array on the client becomes Java Array on the server and my fix yesterday assumed this case. However, when legacy-collection is true, Actionscript Array becomes Java ArrayList on the server. So added code to handle this case.
    Ticket Links:
    http://bugs.adobe.com/jira/browse/BLZ-96
    Modified Paths:
    blazeds/branches/3.0.x/modules/proxy/src/java/flex/messaging/services/http/proxy/RequestF ilter.java

    Hi all!
    Just to post the solution to this if anyone ever runs accross this thread...
    For some reason i had it bad the first time, don't have time right now to see why but here is what worked for me:
    HashMap primaryFile = new HashMap();
    primaryFile.put("fileContent", bFile);
    primaryFile.put("fileName", uploadedFile.getFilename());
    operationBinding.getParamsMap().put("primaryFile", primaryFile);
    HashMap customDocMetadata = new HashMap();
    HashMap [] properties = new HashMap[1];
    HashMap customMetadataPropertyRoom = new HashMap();
    customMetadataPropertyRoom.put("name", "xRoom");
    customMetadataPropertyRoom.put("value", "SOME ROOM");
    properties[0] = customMetadataPropertyRoom;
    customDocMetadata.put("property", properties);
    operationBinding.getParamsMap().put("CustomDocMetaData", customDocMetadata);
    Basically an unbounded wsdl type is an array of objects (HashMaps), makes sense, i thought i had it like this before, must have messed up somewhere...
    Good luck all!

  • [svn] 931: Bug: BLZ-96 - When sending a HttpService request from ActionScript with multiple headers with the same name , it causes a ClassCastException in the server

    Revision: 931
    Author: [email protected]
    Date: 2008-03-26 11:31:01 -0700 (Wed, 26 Mar 2008)
    Log Message:
    Bug: BLZ-96 - When sending a HttpService request from ActionScript with multiple headers with the same name, it causes a ClassCastException in the server
    QA: Yes - we need automated tests for this basic case.
    Doc: No
    Checkintests: Pass
    Details: RequestFilter was not handling multiple headers with the same name properly.
    Ticket Links:
    http://bugs.adobe.com/jira/browse/BLZ-96
    Modified Paths:
    blazeds/branches/3.0.x/modules/proxy/src/java/flex/messaging/services/http/proxy/RequestF ilter.java

    Hi all!
    Just to post the solution to this if anyone ever runs accross this thread...
    For some reason i had it bad the first time, don't have time right now to see why but here is what worked for me:
    HashMap primaryFile = new HashMap();
    primaryFile.put("fileContent", bFile);
    primaryFile.put("fileName", uploadedFile.getFilename());
    operationBinding.getParamsMap().put("primaryFile", primaryFile);
    HashMap customDocMetadata = new HashMap();
    HashMap [] properties = new HashMap[1];
    HashMap customMetadataPropertyRoom = new HashMap();
    customMetadataPropertyRoom.put("name", "xRoom");
    customMetadataPropertyRoom.put("value", "SOME ROOM");
    properties[0] = customMetadataPropertyRoom;
    customDocMetadata.put("property", properties);
    operationBinding.getParamsMap().put("CustomDocMetaData", customDocMetadata);
    Basically an unbounded wsdl type is an array of objects (HashMaps), makes sense, i thought i had it like this before, must have messed up somewhere...
    Good luck all!

  • Allow users to Download documents from server

    Hello Everybody,
    I am working on an Flex application where I have to allow the
    users to Open/Save documents such as Word document, Excel sheet,
    PDFs, Jpeg, Media files (any digital format document) when a user
    clicks on a link present in a Flex application. To do this I am
    using the navigateToURL() method and simply passing the URL string
    as a URLRequest to the navigateToURL method. This works fine but
    whenenver the link is invoked and the user selects to Save the
    Excel sheet or any document it displays an unwanted browser window
    behind the Open/Save/Cancel dialog box saying action cancelled.
    I can not use "_self" as I require the Flex application to
    run as is. I tried using the javascript:window.open() but this did
    not work.
    1) Is there a process to stop the browser window from
    opening?
    2) How can we invoke a javascript using navigateToURL(), I
    tried to invoke javascript.alert('Ok') and also
    javascript:window.open() both did not function.
    3) Is there any other method or flex classes etc. to invoke
    external applications (allow to download documents from server)?
    Please help me.
    Thanks and Regards,
    Paromita

    Paromita,
    You could use the file download functionality. This is from
    the docs:
    You can let users download files from a server using the
    FileReference.download() method, which takes two parameters:
    request and defaultFileName. The first parameter is the URLRequest
    object that contains the URL of the file to download. The second
    parameter is optional--it lets you specify a default filename that
    appears in the download file dialog box. If you omit the second
    parameter, defaultFileName, the filename from the specified URL is
    used.
    The following code downloads a file named index.xml from the
    same directory as the SWF document:
    var request:URLRequest = new URLRequest("index.xml");
    var fileRef:FileReference = new FileReference();
    fileRef.download(request);
    To set the default name to currentnews.xml instead of
    index.xml, specify the defaultFileName parameter, as the following
    snippet shows:
    var request:URLRequest = new URLRequest("index.xml");
    var fileToDownload:FileReference = new FileReference();
    fileToDownload.download(request, "currentnews.xml");
    I think this will accomplish what you are trying to do.
    Vygo

Maybe you are looking for

  • Need assistance converting some AS2 code to AS3

    Hi, I have some simple AS2 code that brings in a MovieClip when you click a button. This is currently AS2, and I would rather convert it to AS3. I also have some code which closes the MovieClip upon button Click. The code I am currently using is belo

  • HT5132 I can't click on the 'Learn More' or 'Ok' options so cannot use Aperture. How do I overcome this problem? I use OS X Lion 10.7.4

    I can't click on the 'Learn More' or 'Ok' options so cannot use Aperture. How do I overcome this problem? I use OS X Lion 10.7.4. I also don't seem to be able to disable the Mobileme account via the system preferences option as mobileme doesn't allow

  • Prob in loading

    Hi 2 all               i am new to BI .i got a prob while iam loading from r/3 to dso. actualLY in r/3 there is 9000 rec  i put load to psa .THEN 10000 rec came to psa from therE  i put load to dso  .There I GOT ONLY 75OO  rec this  is my prob can an

  • Taskflow navigation case to same page.

    In my application, I have a taskflow with a control flow case which navigates to the same fragment. I can't get it to work. If I change the navigation case to navigate to another fragment, it works. Is there a known problem with navigation to the sam

  • Lost ratings during data migration to new mac

    I recently bought the new macbook pro and had the applestore migrate my entire data to from my old macbook. Absolutely everything worked out fine except that I lost all ratings in Lightroom version 2. As I have around 15,000 pics and most of them rat