SSL exception: Duplicate extensions not allowed

Hi,
I have problem with connecting to exchange mail server with java(java mail)
I get this exception.
javax.net.ssl.SSLProtocolException: java.io.IOException: Duplicate extensions not allowed.
Caused by: java.io.IOException: Duplicate extensions not allowed
at sun.security.x509.CertificateExtensions.parseExtension(Unknown Source)
at sun.security.x509.CertificateExtensions.init(Unknown Source)
at sun.security.x509.CertificateExtensions.<init>(Unknown Source)
at sun.security.x509.X509CertInfo.parse(Unknown Source)

So, google has very little about that.
I found that x509 have something like extensions and if i run java with debug -Djavax.net.debug=ssl
I see
adding as trusted cert:
Subject: CN=T-TeleSec GlobalRoot Class 2, OU=T-Systems Trust Center, O=T-Systems Enterprise Services GmbH, C=DE
Issuer: CN=T-TeleSec GlobalRoot Class 2, OU=T-Systems Trust Center, O=T-Systems Enterprise Services GmbH, C=DE
Algorithm: RSA; Serial number: 0x1
Valid from Wed Oct 01 12:40:14 CEST 2008 until Sun Oct 02 01:59:59 CEST 2033
adding as trusted cert:
Subject: EMAILADDRESS=[email protected], CN=http://www.valicert.com/, OU=ValiCert Class 2 Policy Validation Authority, O="ValiCert, Inc.", L=ValiCert Validation Network
Issuer: EMAILADDRESS=[email protected], CN=http://www.valicert.com/, OU=ValiCert Class 2 Policy Validation Authority, O="ValiCert, Inc.", L=ValiCert Validation Network
Algorithm: RSA; Serial number: 0x1
Valid from Sat Jun 26 02:19:54 CEST 1999 until Wed Jun 26 02:19:54 CEST 2019
I dont know if this is that extensions. But i see that some subject are duplicated. Maybe this is all about.

Similar Messages

  • SSL problem: renegotiation is not allowed

    Hi all,
    I'm trying to build a SSL client/server app (something simple, for learning purposes), and I got some pointers on the internet. However, when I ran both client and server, I got an exception on the client side: javax.net.ssl.SSLHandshakeException: renegotiation is not allowed
    Here are my codes:
    Server
    //server.jks = keystore
              //ServerJKS = keystore password
              //SeverKey = certificate's password (certificate = server_full)
              if (args.length<3) {
                   System.out.println("Usage:");
                 System.out.println("   java AdminApp keyStoreName keyStorePass certPass");
                 return;
              String keyStoreName = args[0];
             char[] keyStorePass = args[1].toCharArray();
             char[] certPass = args[2].toCharArray();
             System.setProperty("javax.net.ssl.trustStore", args[0]);
             System.setProperty("javax.net.ssl.trustStorePassword", args[1]);
             try {
                  KeyStore keystore = KeyStore.getInstance("JKS");
                 keystore.load(new FileInputStream(keyStoreName), keyStorePass);
                 KeyManagerFactory kmf = KeyManagerFactory.getInstance("SunX509");
                 kmf.init(keystore, certPass);
                 SSLContext context = SSLContext.getInstance("SSL");
                 context.init(kmf.getKeyManagers(), null, null);
                 SSLServerSocketFactory factory = context.getServerSocketFactory();
                 SSLServerSocket server = (SSLServerSocket) factory.createServerSocket(8888);
                 server.setNeedClientAuth(true);
                 //call method printServerSocketInfo
                 printServerSocketInfo(server);
                 SSLSocket socket = (SSLSocket) server.accept();
                 //call method printSocketInfo
                 printSocketInfo(socket);
                 BufferedWriter writer = new BufferedWriter(new OutputStreamWriter(socket.getOutputStream()));
                 BufferedReader reader = new BufferedReader(new InputStreamReader(socket.getInputStream()));
                 String msg = "Welcome to SSL Reverse Echo Server."+ " Please type in some words.";
                 writer.write(msg,0,msg.length());
                 writer.newLine();
                 writer.flush();
                 while ((msg = reader.readLine())!= null) {
                      if (msg.equals("."))
                           break;
                     char[] a = msg.toCharArray();
                     int n = a.length;
                     for(int i = 0; i < n/2; i++) {
                          char t = a;
              a[i] = a[n-1-i];
              a[n-i-1] = t;
         writer.write(a,0,n);
         writer.newLine();
         writer.flush();
         writer.close();
         reader.close();
         socket.close();
         server.close();
         } catch (Exception e) {
         System.err.println(e.toString());
    _Client_if (args.length<3) {
                   System.out.println("Usage:");
                   System.out.println(" java SslReverseEchoerRevised keyStoreName keyStorePass certPass");
                   return;
              String keyStoreName = args[0];
         char[] keyStorePass = args[1].toCharArray();
         char[] certPass = args[2].toCharArray();
         System.setProperty("javax.net.ssl.trustStore", args[0]);
         System.setProperty("javax.net.ssl.trustStorePassword", args[1]);
         //these two, to get messages out and in
         BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
         PrintStream out = System.out;
         try {
              KeyStore keystore = KeyStore.getInstance("JKS");
         keystore.load(new FileInputStream(keyStoreName), keyStorePass);
         KeyManagerFactory kmf = KeyManagerFactory.getInstance("SunX509");
         kmf.init(keystore, certPass);
         SSLContext context = SSLContext.getInstance("SSL");
         context.init(kmf.getKeyManagers(), null, null);
         SSLSocketFactory factory = context.getSocketFactory();
         SSLSocket socket = (SSLSocket) factory.createSocket("localhost", 8888);
         //call printSocketInfo method
         printSocketInfo(socket);
         //start handshake
         socket.startHandshake();
         BufferedWriter writer = new BufferedWriter(new OutputStreamWriter(socket.getOutputStream()));
         BufferedReader reader = new BufferedReader(new InputStreamReader(socket.getInputStream()));
         String msg = null;
         while ((msg = reader.readLine())!= null) {
              out.println(msg);
         msg = in.readLine();
         writer.write(msg,0,msg.length());
         writer.newLine();
         writer.flush();
         writer.close();
         reader.close();
         socket.close();
         } catch (Exception e) {
              System.err.println(e.toString());

    I think you need to setup your proxy server to allow 7002 port,
    or use port 443 for SSL ( it is the default proxy secured port)
    Hope this will help
    Mohds
    "Paul Patrick" <[email protected]> wrote:
    If this is a production problem, you should file a problem report with BEA
    Support.
    But I didn't see any certificates for the server registered. Without
    certificates and a private
    key the SSL protocol will not work.
    Paul Patrick
    "Antimo" <[email protected]> wrote in message
    news:3a12cc80$[email protected]..
    Hello there,
    we have a BIG PROBLEM on a production system.
    Some user on internet using IEXplore 5.0x could'nt access our https page.
    Error reported are:
    SSL Forbidden
    SSL port specified is not allowed
    We are using SSL on port 7002
    This is the weblogic properties reagrd SSL:.
    weblogic.security.ssl.enable=true
    # SSL listen port
    weblogic.system.SSLListenPort=7002
    Any suggestion?
    Is there a possibility to use port 80 both for https and http?
    Any help will be apprciated.
    THANK'S!

  • SSL problem: SSL Forbidden or 12204 SSL port specified is not allowed

    Hello there,
    we have a BIG PROBLEM on a production system.
    Some user on internet using IEXplore 5.0x could'nt access our https page.
    Error reported are:
    SSL Forbidden
    SSL port specified is not allowed
    We are using SSL on port 7002
    This is the weblogic properties reagrd SSL:.
    weblogic.security.ssl.enable=true
    # SSL listen port
    weblogic.system.SSLListenPort=7002
    Any suggestion?
    Is there a possibility to use port 80 both for https and http?
    Any help will be apprciated.
    THANK'S!

    I think you need to setup your proxy server to allow 7002 port,
    or use port 443 for SSL ( it is the default proxy secured port)
    Hope this will help
    Mohds
    "Paul Patrick" <[email protected]> wrote:
    If this is a production problem, you should file a problem report with BEA
    Support.
    But I didn't see any certificates for the server registered. Without
    certificates and a private
    key the SSL protocol will not work.
    Paul Patrick
    "Antimo" <[email protected]> wrote in message
    news:3a12cc80$[email protected]..
    Hello there,
    we have a BIG PROBLEM on a production system.
    Some user on internet using IEXplore 5.0x could'nt access our https page.
    Error reported are:
    SSL Forbidden
    SSL port specified is not allowed
    We are using SSL on port 7002
    This is the weblogic properties reagrd SSL:.
    weblogic.security.ssl.enable=true
    # SSL listen port
    weblogic.system.SSLListenPort=7002
    Any suggestion?
    Is there a possibility to use port 80 both for https and http?
    Any help will be apprciated.
    THANK'S!

  • File Extension not allowed for upload

    Hi All,
    I'm trying to upload txt file but i got error message saying that "File Extension not allowed for upload".
    Can tell me where i can set the extension to allow txt, xls?
    Thanks a lot for the info,
    CW

    Hi there,
    There are quite some postings on this topic. Hopefully below thread can help you out.
    BPC- File extension not allowed for upload
    Starting point being the BPC AppSet parameters page:
    http://<servername>/osoft/Admin/SetParameters.aspx
    Rgds,
    Said

  • My iPhone 5 pairs with my automobile except it does not allow me to "pickup" calls using the car facility.  I've contacted Acura RDX 2013 about this problem.  It referred me Apple for a fix. My iPhone 4 worked with the car technology.

    My iPhone 5 pairs with my automobile except it does not allow me to "pickup" calls using the car facility.  I've contacted Acura RDX 2013 about this problem.  It referred me Apple for a fix. My iPhone 4 worked with the car technology.  Is there a fix for the iPhone 5 to allow call pickup via the Acura?
    Thanks

    HI Friend,
    Probably the problem it is because your iPhone 4 and your car have the same Bluetooth technology ( 2.1 ), but iPhone 5 has new Bluetooth technology ( 4.0 ).
    http://www.apple.com/iphone/compare-iphones/

  • BPC: File Extension Not allowed in DataManager

    Hello Gurus,
    I am facing with an extrange issue iwith datamanger, I am trying to upload a TXT file and receive the message that the extension is not allowed for upload.
    I am not able to find where to change this configuration...
    Any idea??
    Thanks
    Sergio

    Take a look at the appset parameters under webadmin tasks and fill correct the following parameters:
    -ALLOWEXTENSIONS
    -ALLOW_FILE_SIZE
    -ALLOW_EXTENTIONS
    -DEFAULT_EXTENTIONS
    add TXt and other extentions to these parameters and it will be fixed.
    -Joost

  • BPC- File extension not allowed for upload

    I have read the other thread on this as I was having the same problem (not allowed to upload CSV files) - however now I can not upload any XLS files ! What have I done wrong ?
    I have added the following AppSet Parameters and values :
    ALLOW_EXTENSIONS       csv;XLS
    DEFAULT_EXTENSIONS    csv;XLS
    Thanks
    Si

    Hi Karen,
    I went to http://<servername>/osoft/Admin/SetParameters.aspx
    and added the following parameter values :
    ALLOW_EXTENSIONS
    DEFAULT_EXTENSIONS
    then gave it the values of :
    CSV,XLS,XML,TDM,CDM,XLT
    Hope this helps.
    Si

  • Safari extension not allowing me to manually update, after telling me update is available.

    hi , im running safari 6.0  & in my "Safari extensions prefrence window", there is an update available for one of my extensions.
    i've chosen to have "Install updates Automatically" un-checked, for i wish to do this manually.
    However when i click on "Install All Updates" nothing happens. Same with clicking on the "Install"  tab that is next to the
    extension icon in the update window . Finally  when try checking "Install Update Automatically" that seems to start  the updating process (& completes)  but nothing is installed.  Anybody have the same problem?
    New @ this, hope i'm being clear... & thanks in advance!

    IMO, The last part of your post is very confusing due to a lack of properly placed punctuation. If I am understanding it correctly, yes you have to let the backup finish downloading everything g before you can update the device.

  • Data Upload: file extension not allowed

    Hi alls!!!
    I would like to upload a CSV file to the server.
    I updated through BPC Web the 
    ALLOW_EXTENSIONS = [ALL]
    ALLOWEXTENSIONS = [ALL]
    but it is not working, even after a re-log in and a Re-initialize of the client options ("clear the local application information")
    If i go on the registry of my computer andI go to
    HKEY_USERS > S-1-5-21-448539723-602162358-682003330-1003 > Software > VB and VBA program Settings > Outlooksoft 5 > LATEST
    There is an entry ALLOWEXTENTION and if i put the value to CSV it works...
    But i dont want to do that like this... why it is not working with BPC web?
    Nic
    Edited by: Nicolas Argente on Oct 22, 2008 12:58 PM

    Hi, I'm having the same issue which I believe will be resolved by the solution above.
    I understand that I need to modify the Set AppSet Parameters...but am having much trouble finding where this option is located.
    I have logged onto BPC Administration, and than an Appset.
    On the left panel I see the usual options: Dimension Library, Application, Secuirty..etc
    On the right panel when I have my Appset highlighted I see: Add a new appset, Set App set status, etc
    But I do not see SetAppset Parameters?? How do I get there??
    The user I am logged in has the Administration, Appset, WebApp, etc permissions...
    Thanks in Advance!

  • Two mail accounts with same name and SSL not allowed?!

    Dear Common Wisdom:
    I have two accounts in my Mail program with the same web host. That means the outgoing mail server has the same name.
    If I put on SSL, though, it is not allowed to save two servers with the same name in two different accounts.
    Can I get around this and still use SSL for both accounts?
    Thanks!
    Kostas

    Each domain is expected to refer to its own unique database schema. Same SOA schema should not be shared by multiple SOA clusters/domains. It is technically possible though, I suppose, and still can run fine any one SOA environment at any given time with the other SOA environments/domains (sharing the same SOA schema) shutdown. It is not the general/recommended practice to share SOA schema across domains and there could be potential implications and unexpected behavior, particularly when the SOA environments pointing to the same schema are all running at a time.

  • "Content is not allowed in prolog" with SOAP Attachment

    I'm writing an application using SAAJ that sends a soap message to a servlet which responds with some information, including HTML which the client application will display. The HTML has to go into a SOAP attachment so the tags won't get confused with XML.
    I had the whole thing working with plain text sending within a normal node, and I only switched a few lines to make that text an attachment with HTML instead, but now I'm getting the exception "Content is not allowed in prolog" on the Client side when it tries to create the envelope from the SOAPMessage.
    Code for building answering SOAPMessage with attachment (Servlet to Client)
         public static SOAPMessage buildXML(Message newMessage){
              SOAPMessage msg = null;
              try {
                   MessageFactory msgFactory = MessageFactory.newInstance();
                   msg = msgFactory.createMessage();
                   // Create an envelope in the message
                   SOAPEnvelope envelope = msg.getSOAPPart().getEnvelope();
                   msg.setProperty(SOAPMessage.WRITE_XML_DECLARATION, "true");
                   msg.setProperty(SOAPMessage.CHARACTER_SET_ENCODING, "UTF-8");
                   //Get hold of the the body
                   SOAPBody body = envelope.getBody();
                   SOAPElement soap_message = body.addChildElement("MESSAGE");
                   if (newMessage.message_type != null){
                        SOAPElement soap_message_type = soap_message.addChildElement("MESSAGETYPE");
                        soap_message_type.addTextNode(newMessage.message_type);
                   if (newMessage.questionID != 0){
                        SOAPElement soap_questionID = soap_message.addChildElement("QUESTIONID");
                        soap_questionID.addTextNode("" + newMessage.questionID);
                   if (newMessage.username != null){
                        SOAPElement soap_username = soap_message.addChildElement("USERNAME");
                        soap_username.addTextNode(newMessage.username);
                   if (newMessage.password != null){
                        SOAPElement soap_password = soap_message.addChildElement("PASSWORD");
                        soap_password.addTextNode(newMessage.password);
                   if (newMessage.message_text != null){
                        AttachmentPart soap_message_text = msg.createAttachmentPart("<html><body>" + newMessage.message_text + "</body></html>", "text/html");
                        soap_message_text.setContentId("MESSAGETEXT");
                        msg.addAttachmentPart(soap_message_text);
                        //SOAPElement soap_message_text = soap_message.addChildElement("MESSAGETEXT");
                        //soap_message_text.addTextNode(newMessage.message_text);
                   if (newMessage.sampleString != null){
                        SOAPElement soap_password = soap_message.addChildElement("SAMPLESTRING");
                        soap_password.addTextNode(newMessage.sampleString);
                   SOAPElement tmpEl;
                   for (int i=0; i<newMessage.numArrayUsed; i++){
                        tmpEl = soap_message.addChildElement("SAMPLEINT");
                        tmpEl.addTextNode("" + newMessage.sampleInt);
                   msg.saveChanges();
              } catch (Exception e) {
                   e.printStackTrace();
              return msg;
    You can see in the area where it adds MESSAGETEXT there are two clients commented out which work. The three lines above it are what changed to make it an attachment instead.
    Code in Client for recieving reply from Servlet
    SOAPMessage reply = connection.call(soap_msg, endpoint);
    System.out.println("\nReceived reply from: " + endpoint);
    reply.writeTo(System.out);
    System.out.println("");
    reply_msg = ProcessXML.parse(reply);This is the console output:
    Edit: These forums seem to be inserting an extra > before the <?xml version="1.0" encoding="UTF-8"?> line, but it doesn't exist in the code I'm pasting
    Received reply from: http://localhost:8080/kuj/CaseStudyServlet
    ------=_Part_2_371807.1137465625031
    Content-Type: text/xml; charset=UTF-8
    <?xml version="1.0" encoding="UTF-8"?><SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP-ENV:Header/><SOAP-ENV:Body><MESSAGE><MESSAGETYPE>deliverquestion</MESSAGETYPE><QUESTIONID>1</QUESTIONID><USERNAME>zac</USERNAME></MESSAGE></SOAP-ENV:Body></SOAP-ENV:Envelope>
    ------=_Part_2_371807.1137465625031
    Content-Type: text/html
    Content-Id: MESSAGETEXT
    <html><body>This is an Array sort Question. You will be given 10 random integers and you must sort and return them in the order of greatest to least.</body></html>
    ------=_Part_2_371807.1137465625031--
    ERROR:  'Content is not allowed in prolog.'
    17-Jan-2006 02:40:25 com.sun.xml.messaging.saaj.soap.EnvelopeFactory createEnvelope
    SEVERE: SAAJ0511: Unable to create envelope from given source
    com.sun.xml.messaging.saaj.SOAPExceptionImpl: Unable to create envelope from given source:
         at com.sun.xml.messaging.saaj.soap.EnvelopeFactory.createEnvelope(EnvelopeFactory.java:111)
         at com.sun.xml.messaging.saaj.soap.ver1_1.SOAPPart1_1Impl.createEnvelopeFromSource(SOAPPart1_1Impl.java:39)
         at com.sun.xml.messaging.saaj.soap.SOAPPartImpl.getEnvelope(SOAPPartImpl.java:98)
         at com.zacwittedesign.xml.ProcessXML.realParse(ProcessXML.java:32)
         at com.zacwittedesign.xml.ProcessXML.parse(ProcessXML.java:26)
    (snip)And this is the beginning of the code for extracting the info from the SOAPMessage on the Client side:
    private static Message realParse(SOAPMessage msg){
              Message newMessage = new Message();
              try {
                   SOAPEnvelope envelope = msg.getSOAPPart().getEnvelope();
                   SOAPBody body = envelope.getBody();
    (snip)It dies on SOAPEnvelope envelope = msg.getSOAPPart().getEnvelope();
    Does anyone know what I'm doing wrong?

    I suppose I should also include the bit where the Servlet actually SENDs the resulting SOAPMessage
    SOAPMessage msg = ProcessXML.buildXML(outMessage);
    // try to send it
    try {
         response.setContentType("text/xml");
         msg.writeTo(response.getOutputStream());

  • XML loader and UTF-16 - throws Content is not allowed in prolog

    Hi,
    Our ECC system is updated to unicode system recently. Now the iDoc downloaded from ECC is having a tag <?xml version="1.0" encoding="utf-16"?>.
    The XML Loader in the transaction throws an exception "Cannot perform action on XML document Content is not allowed in prolog. Exception: [Content is not allowed in prolog.]". If I change the encoding manually as "utf-8" and executing the transaction, it is working fine.
    Please let me know how to solve the issue.
    Thanks,
    Raman N

    Where should I enhance the webservice to make it able to handle zipped XML documents? Shouldn't take the AXIS library take care of this automatically?
    This is the web.xml document I use.
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app id="WebApp_ID" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
    <display-name>
    NDW2</display-name>
    <servlet>
    <display-name>
    Apache-Axis Servlet</display-name>
    <servlet-name>AxisServlet</servlet-name>
    <servlet-class>
    org.apache.axis.transport.http.AxisServlet</servlet-class>
    </servlet>
    <servlet>
    <display-name>
    Axis Admin Servlet</display-name>
    <servlet-name>AdminServlet</servlet-name>
    <servlet-class>
    org.apache.axis.transport.http.AdminServlet</servlet-class>
    <load-on-startup>100</load-on-startup>
    </servlet>
    <servlet-mapping>
    <servlet-name>AxisServlet</servlet-name>
    <url-pattern>/servlet/AxisServlet</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
    <servlet-name>AxisServlet</servlet-name>
    <url-pattern>*.jws</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
    <servlet-name>AxisServlet</servlet-name>
    <url-pattern>/services/*</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
    <servlet-name>AdminServlet</servlet-name>
    <url-pattern>/servlet/AdminServlet</url-pattern>
    </servlet-mapping>
    <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</welcome-file>
    </welcome-file-list>
    </web-app>

  • My new iMac will not allow me to daisy chain my external hard drives - what can I do?!

    I just purchased the new late 2013 iMac 27" and all is wonderful except it will NOT allow me to daisy chain my external hard drives which is a HUGE problem because I'm a professional photographer & I won't be able to access my images unless I can sort this out.  I know I can purchase a new giant hard drive but i'd prefer not to because I have about 12 TB of data which will be expensive & time consuming to transfer & I'd also prefer not to have that much info tied into one device.  Ultimately I will need to get a Drive with multiple bays but I'd really like a short term solution that works for the drives I currently have.  Any help is GREATLY appreciated!  Thanks!!

    Why can't you daisy chain your drives. If it's because the iMac only has a Thunderbolt port and you have Firewire drivers purchase the Thunderport to Firewire adaptor from Apple: Apple Thunderbolt to FireWire Adapter - Apple Store (U.S.)
    OT

  • R1: tcAPIException: Duplicate schedule item for a task that does not allow multiples.

    Hi,
    I'm struggling with the following task:
    I have to assure an account exists for a given resource. I do provision it with the .tcUserOperationsIntf.provisionObject().
    I've created a createUser task to create the account.
    The task code checks if there is already matching account.
    If no account exists, is is created in the disabled state, and the object state of OIM account is set to 'Disabled' by means of task return code mapping.
    If it exists, it is 'linked' to OIM account.
    The problem is if the existing account is enabled, I have to change the OIM account state to 'Enabled' either.
    To implement this (thanks, Kevin Pinski https://forums.oracle.com/thread/2564011 )) I've created an additional task 'Switch Enable' which is triggered by a special task return code. This task always succeeds, and its only side effect is switching the object status to 'Enabled'.
    By I've getting the 'Duplicate schedule item for a task that does not allow multiples' exception constantly:
    This is the stack trace:
    Thor.API.Exceptions.tcAPIException: Duplicate schedule item for a task that does not allow multiples.\
      at com.thortech.xl.ejb.beansimpl.tcUserOperationsBean.provisionObject(tcUserOperationsBean.java:2925)\
      at com.thortech.xl.ejb.beansimpl.tcUserOperationsBean.provisionObject(tcUserOperationsBean.java:2666)\
      at Thor.API.Operations.tcUserOperationsIntfEJB.provisionObjectx(Unknown Source)\
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\
      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)\
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\
      at java.lang.reflect.Method.invoke(Method.java:601)\
      at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)\
      at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)\
      at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)\
      ...skipped
      at Thor.API.Operations.tcUserOperationsIntfDelegate.provisionObject(Unknown Source)\
      ... skipped
    What did I wrong?
    Regards,
    Vladimir

    Hi Vladimir,
    Please select 'Allow Multiple Instance' checkbox for the process task.
    Thanks,
    Pallavi

  • What happened to that extension that allowed one to duplicate a tab?

    Hi--
    I recently upgraded to Yosemite (and thus the new version of Safari).  There used to be a great extension that allowed on to click it (it had a rudimentary graphic with a + sign within it -- though I can't remember the name!) -- and it allowed you to duplicate the current window you were viewing in a subsequent (to the right) tabbed window.  It resided up on the top left of Safari once it was installed.  But it doesn't appear to be an extension I can download anymore.  Does anyone remember what it was called?  Maybe I am just not finding it.

    @Jaco_Crash
    I have Yosemite on my MBA, and the latest version of Safari too, so not sure why you don't see it in the Customize Toolbar options window.
    So here again, open a new Safari window, click on View on the top menu bar. Then choose the 2nd option -- Customize Toolbar. A drop down window will open. You should see the Duplicate Tab option just to the left of the Address and Search bar. AdBlock is also there, if you want to add that to your toolbar too.
    You just click on it and drag it to the toolbar where you want it. See screen shot below:

Maybe you are looking for

  • Iphone keeps dipslaying no service after i updated it to ios5

    iphone keeps dipslaying no service after i updated it to ios5

  • Having photo enlarge in Blog...need help

    I need to be able to double click on photo in blog and have it enlarge to full size. This question has been asked here before but was never answered as I can see. This is a must for me to do what I need to do. I appreciate any help. Thanks

  • Change in one vairable  is not reflected in the other  variable

    Question/ Objective / Doubt: during the execution of the program ,change in the member/variable of the class is not reflected in the other variable which is the dependent variable of the previous one; Program / code: class Simple {      static int []

  • My iOS5 device cannot locate my Mac

    My MacBook Pro was located on my iPod Touch just fine at work, but at home my Touch cannot find the laptop.  I am using wifi at home with both devices on the same wifi networ.  The Find iphone utility on my Touch reports "no location available" for t

  • InfoPackage - Delta Update

    Hi, I noticed something strange. I created an InfoPackage in Dev with delta update and promoted to Q and P, but I don't see the radio button 'delta' in Q or P at all. Is it common? I could not find any thread on this in the forums. Another issue is I