Re : Works on 32 bit Tomcat . fails in 64 bit Web Logic

Hello All,
When I try to decrypt using 32 bit tomcat ... i can decrypt the hex string but when I use 64 bit Web Logic for the same , I get javax.crypto.badpaddingexception , Invalid pad value.... any thoughts in code what is causing this ? The sample code used is as follows.
Help is appreciated.
import java.security.SecureRandom;
import javax.crypto.Cipher;
import javax.crypto.KeyGenerator;
import javax.crypto.SecretKey;
import javax.crypto.spec.SecretKeySpec;
public class Crypto{
     public static String decrypt(String seed, String encrypted) throws Exception {
          byte[] rawKey = getRawKey(seed.getBytes());
          byte[] enc = toByte(encrypted);
          byte[] result = decrypt(rawKey, enc);
          return new String(result);
     private static byte[] getRawKey(byte[] seed) throws Exception {
          KeyGenerator kgen = KeyGenerator.getInstance("AES");
          SecureRandom sr = SecureRandom.getInstance("SHA1PRNG");
          sr.setSeed(seed);
     kgen.init(128, sr); // 192 and 256 bits may not be available
     SecretKey skey = kgen.generateKey();
     byte[] raw = skey.getEncoded();
     return raw;
     private static byte[] decrypt(byte[] raw, byte[] encrypted) throws Exception {
     SecretKeySpec skeySpec = new SecretKeySpec(raw, "AES");
          Cipher cipher = Cipher.getInstance("AES");
     cipher.init(Cipher.DECRYPT_MODE, skeySpec);
     byte[] decrypted = cipher.doFinal(encrypted);
          return decrypted;
     public static String toHex(String txt) {
          return toHex(txt.getBytes());
     public static String fromHex(String hex) {
          return new String(toByte(hex));
     public static byte[] toByte(String hexString) {
          int len = hexString.length()/2;
          byte[] result = new byte[len];
          for (int i = 0; i < len; i++)
               result[i] = Integer.valueOf(hexString.substring(2*i, 2*i+2), 16).byteValue();
          return result;
     public static String toHex(byte[] buf) {
          if (buf == null)
               return "";
          StringBuffer result = new StringBuffer(2*buf.length);
          for (int i = 0; i < buf.length; i++) {
               appendHex(result, buf);
          return result.toString();
     private final static String HEX = "0123456789ABCDEF";
     private static void appendHex(StringBuffer sb, byte b) {
          sb.append(HEX.charAt((b>>4)&0x0f)).append(HEX.charAt(b&0x0f));

I could be wrong but I'm pretty sure that your problem is caused by these lines of code :-
KeyGenerator kgen = KeyGenerator.getInstance("AES");
SecureRandom sr = SecureRandom.getInstance("SHA1PRNG");
sr.setSeed(seed);
kgen.init(128, sr); // 192 and 256 bits may not be available
SecretKey skey = kgen.generateKey();In it's basic form a SHA1PRNG based random number generator is a deterministic generator and not really suitable for cryptographic use. I'm betting that Web Logic is replacing the SHA1PRNG core with a non-deterministic version of SecureRandom; in their position I would.
If you want to transform bytes into a deterministic key you should use one of the PBE algorithms.
P.S. When you create a cipher using
Cipher cipher = Cipher.getInstance("AES");you by default specify ECB block mode and PKCS5 padding. ECB block mode is considered insecure since it allows forgery by splicing ciphertext. When used properly, the PBE based algorithms avoid this forgery by using CBC block mode.

Similar Messages

  • JRE v6 and v7 no longer work in my updated 64-bit W7 HPE's 32-bit IE8.

    Hello.
    Since last week, my JRE/Java v6u34 stopped working. My 32-bit IE8 kept asking me to run it in protected mode or not which was weird since it never did that before: http://i.imgur.com/Tubsl.gif ... Then, Java didn't work. So I restarted IE8 and retried again to allow it. Java applets still didn't show up (shows an empty box with X icon, JRE console doesn't even run/load). I tried my 64-bit JRE v6u35 in 64-bit IE8, no problems with Java. I tried my 32-bit Mozilla's SeaMonkey v2.12 web browser and no problems with its Java. Why is my 32-bit IE8 having problems all the sudden?
    I thought maybe my JRE installation was broken. So, I uninstalled it and reinstalled with the latest v6 (u35). Same results. I tried the very latest v7u7. Same problem. I tried uninstalling Java again, running JavaRa v1.16-23-8-12 (didn't find anything to remove), resetting IE8 options and clearing its caches), etc. I also tried disabling protected mode to see if it makes any differences when reinstalling and accessing a Java applet. Nope! I looked at my IE8's addons list and noticed jp2ssv.dll was still listed like:
    Name: Java(tm) Plug-In 2 SSV Helper
    Publisher: Control name is not available
    Type: Browser Helper Object
    Version: Not available
    File date:
    Date last accessed: Today, September 04, 2012, 1 minute ago
    Class ID: {DBC80044-A445-435B-BC74-9C25C1C588A9}
    Use count: 2030
    Block count: 9
    File: jp2ssv.dll
    Folder: C:\winstuff\JRE6\bin
    http://i.imgur.com/wvKdn.gif for a screen shot/capture.
    I searched jp2ssv.dll on my computer, and it was not found. Even my uninstalled JRE removed its JRE location/folder. How do I remove this one from 32-bit IE8's addons list? Maybe this is the problem? What's going on?
    Thank you in advance. :)

    I think you are having the same issue I've been working on. I just posted about this here:
    Newer JREs are not registering old JRE ClassIDs for all users
    You can try the following.
    * On a working user, export the key HKCU\Software\Classes\CLSID. Then import it for a failing user. Its not a real pretty solution. You should be able to narrow down exactly which subkey is needed by using Process Monitor or looking at your application HTML code where the JRE object is being called.
    * If you can change the code, look for the OBJECT or EMBED tags and look what CLSID they are referencing. Change that CLSID to "8AD9C840-044E-11D1-B3E9-00805F499D93" allow it to work with the latest Oracle/Sun JRE installed.

  • W500 w/ Windows 7 64-Bit Ultimate fails to recognize some audio CDs

    My DVD/CD drive (a HL-DT-ST_DVDRAM_GSA-U20N) in my Lenovo W500 laptop (running Windows 7 64-Bit Ultimate) fails to recognize some audio CDs.
    It recognizes most audio CDs, but a few are not recognized by Windows 7 itself, or by any other program on my computer.
    These CDs are recognized by other Windows 7 computers.
    I don't think that it's a copy protection issue, since the CDs don't mention any copy protection scheme (and also since they work on other Windows 7 machines).
    One CD that wasn't recognized by my machine was the second CD from a two CD set (the first CD was correctly recognized).
    I have the latest updates for Windows, and all my programs, drivers, BIOS & firmware.
    Thanks.

    What kind of behavior are you getting from the drive? If it's spinning up, down, and up again your lens might be dirty or the drive could be failing. 
    If you do clean the lens, be careful. Do your research first or you might make it worse.
    Edit: Replacements are:
    42T2511 or 42T2541 (DVD)
    42T2543 or 42T2513 (DVD/CD-RW combo)
    42T2545, 42T2515 or 42T2551 (DVD-RAM/RW)
    You can get the 42T2543 for $23 and the 42T2545 for $45 on eBay.

  • OBIEE 11.1.1.5 configuration failing on 64 bit Linux(please don't delete)

    Please DONOT delete this thread. I see someone keeps trying to do it don't know why. The last two threads on the same topic were
    https://forums.oracle.com/forums/thread.jspa?messageID=10473944#10473944
    and
    https://forums.oracle.com/forums/messageview.jspa?messageID=10467383&stqc=true
    OBIEE 11.1.1.5 Software only install configuration failing on 64 bit Linux
    My scenario is installing in 64 bit Linux with WLS 10.3.5 (with SOA/BAM server installed already). So as recommend by Oracle (http://docs.oracle.com/cd/E21764_01/bi.1111/e10539/a1_installscrn.htm) I did a software only install and then tried to configure BI using config.sh. I didn’t have root privilege, so continued with local inventory, hope that wasn't an issue.
    1) First time it failed in 'Configure BI Domain' step. I aborted and retried. It failed saying there is already entry in HSS Component table. I fixed the issue and tried again
    2) Then it failed again in 'Configure BI Domain' step, the error stack is
    Executing Task: Configure BI Domain
    javax.management.InstanceNotFoundException: oracle.biee.admin:group=Service,type=BIDomain
    at weblogic.rjvm.ResponseImpl.unmarshalReturn(ResponseImpl.java:234)
    at weblogic.rmi.internal.BasicRemoteRef.invoke(BasicRemoteRef.java:223)
    at javax.management.remote.rmi.RMIConnectionImpl_1035_WLStub.invoke(Unknown Source)
    at weblogic.management.remote.common.RMIConnectionWrapper$16.run(ClientProviderBase.java:919)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:146)
    at weblogic.security.Security.runAs(Security.java:61)
    at weblogic.management.remote.common.RMIConnectionWrapper.invoke(ClientProviderBase.java:917)
    at javax.management.remote.rmi.RMIConnector$RemoteMBeanServerConnection.invoke(RMIConnector.java:993)
    at oracle.as.install.bi.biconfig.standard.BIDomainConfigureTask.doExecute(BIDomainConfigureTask.java:58)
    at oracle.as.install.bi.biconfig.standard.AbstractProvisioningTask.execute(AbstractProvisioningTask.java:70)
    at oracle.as.install.bi.biconfig.standard.StandardProvisionTaskList.execute(StandardProvisionTaskList.java:61)
    at oracle.as.install.bi.biconfig.BIConfigMain.doExecute(BIConfigMain.java:112)
    at oracle.as.install.engine.modules.configuration.client.ConfigAction.execute(ConfigAction.java:335)
    at oracle.as.install.engine.modules.configuration.action.TaskPerformer.run(TaskPerformer.java:87)
    at oracle.as.install.engine.modules.configuration.action.TaskPerformer.startConfigAction(TaskPerformer.java:104)
    at oracle.as.install.engine.modules.configuration.action.ActionRequest.perform(ActionRequest.java:15)
    at oracle.as.install.engine.modules.configuration.action.RequestQueue.perform(RequestQueue.java:63)
    at oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager.start(StandardConfigActionManager.java:158)
    at oracle.as.install.engine.modules.configuration.boot.ConfigurationExtension.kickstart(ConfigurationExtension.java:81)
    at oracle.as.install.engine.modules.configuration.ConfigurationModule.run(ConfigurationModule.java:83)
    at java.lang.Thread.run(Thread.java:662)
    Caused by: javax.management.InstanceNotFoundException: oracle.biee.admin:group=Service,type=BIDomain
    at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1094)
    at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getClassLoaderFor(DefaultMBeanServerInterceptor.java:1438)
    at com.sun.jmx.mbeanserver.JmxMBeanServer.getClassLoaderFor(JmxMBeanServer.java:1276)
    at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase$1.run(WLSMBeanServerInterceptorBase.java:58)
    at java.security.AccessController.doPrivileged(Native Method)
    at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase.getClassLoaderFor(WLSMBeanServerInterceptorBase.java:53)
    at weblogic.management.mbeanservers.domainruntime.internal.FederatedMBeanServerInterceptor.getClassLoaderFor(FederatedMBeanServerInterceptor.java:141)
    at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase$1.run(WLSMBeanServerInterceptorBase.java:56)
    at java.security.AccessController.doPrivileged(Native Method)
    at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase.getClassLoaderFor(WLSMBeanServerInterceptorBase.java:53)
    at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase$1.run(WLSMBeanServerInterceptorBase.java:56)
    at java.security.AccessController.doPrivileged(Native Method)
    at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase.getClassLoaderFor(WLSMBeanServerInterceptorBase.java:53)
    at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase$1.run(WLSMBeanServerInterceptorBase.java:56)
    at java.security.AccessController.doPrivileged(Native Method)
    at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase.getClassLoaderFor(WLSMBeanServerInterceptorBase.java:53)
    at weblogic.management.jmx.mbeanserver.WLSMBeanServer.getClassLoaderFor(WLSMBeanServer.java:527)
    at weblogic.management.mbeanservers.internal.JMXConnectorSubjectForwarder$19.run(JMXConnectorSubjectForwarder.java:1014)
    at weblogic.management.mbeanservers.internal.JMXConnectorSubjectForwarder$19.run(JMXConnectorSubjectForwarder.java:1012)
    at java.security.AccessController.doPrivileged(Native Method)
    at weblogic.management.mbeanservers.internal.JMXConnectorSubjectForwarder.getClassLoaderFor(JMXConnectorSubjectForwarder.java:1012)
    at javax.management.remote.rmi.RMIConnectionImpl$5.run(RMIConnectionImpl.java:1326)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.management.remote.rmi.RMIConnectionImpl.getClassLoaderFor(RMIConnectionImpl.java:1323)
    at javax.management.remote.rmi.RMIConnectionImpl.invoke(RMIConnectionImpl.java:771)
    at javax.management.remote.rmi.RMIConnectionImpl_WLSkel.invoke(Unknown Source)
    at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:667)
    at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:522)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:146)
    at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:518)
    at weblogic.rmi.internal.wls.WLSExecuteRequest.run(WLSExecuteRequest.java:118)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    Does this option actually work?? Can someone help please

    Has someone ever got it to work? Is there any resolution to the problem described

  • 64-bit driver fails to attach in Sol-9

    Hi,
    I have a driver which I can compile, install and use succesfully on sparc (Enterprise 450) in Sol 7 and 8 in both 32 and 64-bit kernels (it also runs in 2.6 and in i386 2.6, 7 and 8 32-bit modes but never mind).
    Sol-9 32-bit is also OK but with 64-bit, when I run add_drv, it loads (I can see cmn_err() messages from my ini() routine) but it fails to probe or attach. I see fini() traces too but nothing from my probe() or attach. devfsadm returns error 11.
    If I do a simple modload, then I can see the init() traces so I assume it has linked OK. modinfo shows the driver is loaded. modunload removes it and I then see the fini() traces.
    Any ideas?
    Just to cover the bases mentioned elsewhere in this forum:
    I am using Forte C 6U2 with -xarch=v9 -D_KERNEL -xO3
    I am putting the driver into /platform/sun4u/kernel/drv/sparcv9 and I have an entry in /etc/devlink.tab.
    I have tried putting it into /usr/kernel/drv/sparcv9 to no avail
    I use the following to load it:
    add_drv -m"* 0666 root root" -i'"pci1011,1065"' e8k
    I don't have a driver.conf file as it is PCI (and none of the other platforms need it)
    There's nothing interesting in /var/adm/messages apart from my cmn_err() traces.
    In fact I am using exactly the same methodology and build/install scripts that work so well in Sol-7/8 64-bit.
    TIA
    Bob

    Did you had a look at the "compatible:" property in the "prtconf -pv" output > for your pci device? Does it contain the string 'pci1011,1065' ? Yes, it does - here is the entry from prtconf -pv (I also tried the secondary address EACA,8000 with add_drv - which works on Sol-i386 - but no progress):
    Node 0xf0096d10
    assigned-addresses: 82001010.00000000.00001000.00000000.00000080.81001014.00000000.00000400.00000000.00000080.c2001018.00000000.00040000.00000000.00040000
    reg: 00001000.00000000.00000000.00000000.00000000.02001010.00000000.00000000.00000000.00000080.01001014.00000000.00000000.00000000.00000080.42001018.00000000.00000000.00000000.00040000
    compatible: 'pcieaca,8000' + 'pci1011,1065' + 'pciclass,0b4001' + 'cpu'
    name: 'cpu'
    fast-back-to-back:
    devsel-speed: 00000001
    class-code: 000b4001
    interrupts: 00000001
    subsystem-vendor-id: 0000eaca
    subsystem-id: 00008000
    max-latency: 00000000
    min-grant: 00000000
    revision-id: 00000004
    device-id: 00001065
    vendor-id: 00001011
    The prtpci script gives:
    pci, instance #4 (driver name: pcipsy)
    Driver properties:
    name='interrupt-priorities' type=int items=6 dev=none
    value=0000000e.0000000e.0000000e.0000000e.0000000e.0000000e
    name='virtual-dma' type=int items=2 dev=none
    value=f0000000.10000000
    Register Specifications:
    Bus Type=0x1cc, Address=0x4000, Size=0x2000
    Bus Type=0x1cc, Address=0x1000000, Size=0x100
    Bus Type=0x1cc, Address=0x0, Size=0xd000
    cpu (driver name: cpu)
    Thanks for the prtpci script - I will study it and maybe I can learn something new about prtconf!
    Cheers
    Bob

  • Oms configuration failing as 64 bit java executable cannot be found

    I'm installing grid control on Solaris 10 using version 1.6_18 of the Java jdk as advised by the documentation on a 64 bit sparc platform. Also, I'm using web logic 10.3.2 from the generic installation (via the single jar) and I have applied the WDJ7 patch to the web logic installation. When installing grid control, which is painfully slow when it comes to creating the repository in the target database it fails on the oms configuration step with:-
    INFO: oracle.sysman.top.oms:execve(): No such file or directory
    INFO: oracle.sysman.top.oms:Error trying to exec /usr/jdk/instances/jdk1.6.0/bin/sparcv9/java.
    INFO: oracle.sysman.top.oms:Check if file exists and permissions are set correctly.
    INFO: oracle.sysman.top.oms:Failed to start a 64-bit JVM process from a 32-bit JVM.
    INFO: oracle.sysman.top.oms:Verify all necessary J2SE components have been installed.
    INFO: oracle.sysman.top.oms:(Solaris SPARC 64-bit components must be installed after 32-bit components.)
    INFO: oracle.sysman.top.oms:
    Check the OMS Configuration Assistant logs at: /u01/app/oracle/product/Middleware/oms11g/cfgtoollogs/omsca
    INFO: oracle.sysman.top.oms:The plug-in OMS Configuration has failed its perform method
    INFO: Cfm.save() was called
    INFO: Cfm.save(): 8 aggregate instances saved
    INFO: done waiting for Action from 13:48:46.577
    When I downloaded the 1.6_18 jdk there was only one distribution, i.e. no distinction is made as to whether the installation platform is 32 or 64 bit. I understand that with version 1.6_21 of the jdk you can get the 64 bit run time via the SUNWj6rtx package, however the Oracle documentation explicitly states that 1.16_18 should be used and there are plenty of articles on the internet stating that if a different versions of the 1.6 JDK are used this will cause problems further down the line. Can someone advise me has to how to resolve this issue.

    I successfully installed OMS 11g on solaris 64 bit sparc. Although I used JDK build 1.6.0_20-b02 but it worked perfectly. I think your JDK installation is not proper. you have to install sparcv9 part of JDK as well. please check is there any folder sparcv9 under your JAVA_HOME/bin? if not then you have to install it

  • Will MS Office Standard 2011 for MAC 32-bit work on my MacBook Pro which is 64-bit?

    Will MS Office Standard 2011 for MAC 32-bit work on my MacBook Pro which is 64-bit?

    MacOffice 2011 will run on your computer. 32 bit software runs on a 64 bit computer.

  • I reset my iPhone 5s yesterday because my fingerprint bottom is not working. It says that failed every time I was trying to put my print... Now that I reset my phone the fingerprint pass code do not appear in the setting.

    I reset my iPhone 5s yesterday because my fingerprint bottom is not working. It says that failed every time I was trying to put my print... Now that I reset my phone the fingerprint pass code do not appear in the setting.

    Hi Emilemny,
    Welcome to Apple Support Communities.
    The TouchID settings will not be available until you create a passcode, see the article linked below for more information.
    iPhone 5s: Using Touch ID
    http://support.apple.com/kb/HT5883
    You can set up Touch ID in iOS Setup Assistant or by tapping Settings > Touch ID & Passcode. To set up Touch ID, you must first set a passcode. Touch ID is designed to minimize the input of your passcode, but you need a passcode for additional security validation, such as enrolling new fingerprints.
    -Jason

  • SSIS package works in development environment but fails when job scheduler executes, file path invalid

    SIS package works in development environment but fails when job scheduler executes, file path invalid
    Relatively simple package to get OLE-DB connection to MS FoxPro 9.0 DB
    The failure in the job log states that the path is invalid its a network path (\\192.168.1.xxx\foldername) this has been run several ways with the remote computer being mapped as a network drive and through the \\ notation described above.
    Thinking it was a security issue between the SQL agent account and my account I tested by subsitution myself as a proxy account for the agent when running this job, again same result failed on network path.
    One issue I see is that the remote computer is running Server 2000 (legacy software incompatable with newer versions) 
    Is it possible that this is a security issue, since if i understand correctly the current MS domain security model didn't exist until Server 2003.

    Hi REIData,
    Have you got the issue resolved? Based on your description, please make sure the target folder is shared properly. If the computer on which the SQL Server Agent job runs doesn’t join the domain as the server that hosts the shared folder, you have to share
    the folder with everyone by adding “Everyone” to the people list on the File Sharing page of the folder and assign "Read/Write" permission to it.
    Regards,
    Mike Yin
    TechNet Community Support

  • [svn:bz-trunk] 20680: Tomcat 7 Login Module work, due to the Tomcat 7 Security framework change we need to work out the security integration piece for tomcat 7 .

    Revision: 20680
    Revision: 20680
    Author:   [email protected]
    Date:     2011-03-08 08:23:30 -0800 (Tue, 08 Mar 2011)
    Log Message:
    Tomcat 7 Login Module work, due to the Tomcat 7 Security framework change we need to work out the security integration piece for tomcat 7. So far the ValveBase and tomcat Realm had API changes which will impact on the Login integration with Tomcat 7
    Modified Paths:
        blazeds/trunk/modules/opt/build.xml
    Added Paths:
        blazeds/trunk/modules/opt/lib/catalina-708.jar
        blazeds/trunk/modules/opt/src/tomcat/flex/messaging/security/TomcatValve708.java

    Revision: 20680
    Revision: 20680
    Author:   [email protected]
    Date:     2011-03-08 08:23:30 -0800 (Tue, 08 Mar 2011)
    Log Message:
    Tomcat 7 Login Module work, due to the Tomcat 7 Security framework change we need to work out the security integration piece for tomcat 7. So far the ValveBase and tomcat Realm had API changes which will impact on the Login integration with Tomcat 7
    Modified Paths:
        blazeds/trunk/modules/opt/build.xml
    Added Paths:
        blazeds/trunk/modules/opt/lib/catalina-708.jar
        blazeds/trunk/modules/opt/src/tomcat/flex/messaging/security/TomcatValve708.java

  • Firefox 4: have 4 users and its not working for one. The actual Firefox search bit doesn't load properly: very bare and search doesn't work . However, bookmarks etc seem OK

    Have just upgraded to Firefox 4 today, and seems OK for 3 out of 4 users, but not for one of us. It's just that bit in the middle with the red fox logo and the search box that don't load properly - looks very bare - and can type into box but nothing happens when press 'search'

    Don't know - the bit in the middle of the web page which sounds like the search container!
    However, have found a work around - opening up Google and saving that as the home page.
    Thanks for your reply.

  • DirectoryContext.search with WildCard "*" Fails in 64 Bit JRE

    Hi all,
    I'm using DirectoryContext.search with wildcard "*" filter. it works fine in 32 Bit JRE, but throws the following exception when I run the same in Solaris 64 Bit JRE.
    Exception in thread "main" javax.naming.directory.InvalidSearchFilterException: invalid attribute description; remaining name 'ou=People,dc=mydomain,dc=com'
    at com.sun.jndi.ldap.Filter.encodeSimpleFilter(Unknown Source)
    at com.sun.jndi.ldap.Filter.encodeFilter(Unknown Source)
    at com.sun.jndi.ldap.Filter.encodeFilterList(Unknown Source)
    at com.sun.jndi.ldap.Filter.encodeComplexFilter(Unknown Source)
    at com.sun.jndi.ldap.Filter.encodeFilter(Unknown Source)
    at com.sun.jndi.ldap.Filter.encodeFilterString(Unknown Source)
    at com.sun.jndi.ldap.LdapClient.search(Unknown Source)
    at com.sun.jndi.ldap.LdapCtx.doSearch(Unknown Source)
    at com.sun.jndi.ldap.LdapCtx.searchAux(Unknown Source)
    at com.sun.jndi.ldap.LdapCtx.c_search(Unknown Source)
    at com.sun.jndi.toolkit.ctx.ComponentDirContext.p_search(Unknown Source)
    at com.sun.jndi.toolkit.ctx.PartialCompositeDirContext.search(Unknown Source)
    at com.sun.jndi.toolkit.ctx.PartialCompositeDirContext.search(Unknown Source)
    at javax.naming.directory.InitialDirContext.search(Unknown Source)
    Please help.
    Thanks in advance,
    Regards,
    Kaja

    When will Aobe Acrobat support Office 2010 64 bit and Windows 7 64 bit?

  • Netboot - worked with Deploy Studio, now fails?

    Hello everyone.
    Up until now I've been using Deploystudio to manage all my builds, however I've decided to try out a Netinstall path instead. I have my Netinstall image created, it's a basic workflow but does include creation of some users, and removes access to printer drivers and languages on install. NFS is running, Netboot is running, and as I say up to now my Deploy Studio system on this exact machine has worked a charm.
    Netinstall fails. The client (brand new Mac Mini 2010 Slim) connects to the server (boot with option, choose the Net install) and the server logs confirm this. No errors are shown in the logs as far as I can see. However, after 20-30 seconds I get the dreaded crossed out circle.
    I'm creating my Net Install image from a locked DMG rather than optical media. The DMG was taken from a retail, non system specific DVD. I've added the client as an allowed system, server's been rebooted etc. Any ideas, things I should look for?
    Thanks, A.

    Sadly, there is no newer retail disk so, that option is out. You could, however, make a CPU specific install image for the mini by using the disk it came with (I'm assuming it came with a disk... which it may not have)

  • My Photoshop CC and also my CS6 has suddenly stopped working. I'm using Windows 7 - 64 bit.

    My Photoshop CC and also my CS6 has suddenly stopped working. I'm using Windows 7 - 64 bit. I need help, does anyone know what to do?

    We can't know. You have not told us what exactly the problem is. If there are any warnings, you need to provide them along with other info like the crash logs. If not you have to explain the situation in more detail. Just saying that it doesn't work anymore is not particularly useful.
    Mylenium

  • When running lion 32bit my wireless works great, when I run lion in 64 bit the wireless works awful. Any ideas?

    When running lion 32bit my wireless works great, when I run lion in 64 bit the wireless works awful. Any ideas?

    I solved my own problem. Found spotlight in Lion 7 doesn't seem to like third party external drives and gets hung up and unmounts the drives. Had to go into the spotlight preferences and choose all my external drives to not be searched by spotlight.
      Temporary fix but would love to see apple address this issue in the next version of Lion.

Maybe you are looking for