UWCMailJSPProvider with proxyauth throws AuthenticationFailedException

hi all,
i currently do a portal setup using portal server 7.1. Everythings works
fine, except UWC Mail Provider.
I get a AuthenticationFailedException. I did a lot of debugging an investigating but now i am out of ideas...
This is my current situation:
I run JES4 UWC, MMP and AccessManager on a frontend system (mfe) and my MailStore is located on a backend system (mbe).
My portal 7.1 (portal) is running on a seperate system.
I setup my own meta adapter (metaUWCmail) using SUN-UWC-MAIL meta adapter as meta adapter basis.
I customized the following settings as meta-adapter attributes within my new meta adapter :
     clientHost           = mfe (UWC, AM, MMP, IMAP, SMTP Frontend)
     clientPort           = 80
     clientProtocol      = http
     domain           = <EMPTY>
     enableProxyAuth = true
     host = mfe (UWC, AM, MMP, IMAP, SMTP Frontend)
     port      = 143
     protocol = imap
     proxyAdminPassword = <CORRECT ADMIN PASSWORD>          
     proxyAdminUid      = admin
     serverSSOEnabled = true          
     smtpPort = 25
     smtpServer = mfe (UWC, AM, MMP, IMAP, SMTP Frontend)
     ssoClassName           = com.sun.ssoadapter.impl.JavaMailSSOAdapter
     subType = sun-one
     type = MAIL-TYPE
     URLBuilderClass = com.sun.portal.comm.url.UWCURLBuilder
     userAttribute = uid
     uwcContext = uwc
i created a SSO adapter (adapUWCmail) based on this meta-adapter (metaUWCmail) on my organisation location.
When i am l logged on to my portal system, i can access my uwc url via browser and my uwc system is acceptig all cookies, that means to me AccessManager SSO in general works fine !
for testing proxyauth from portal server to my mmp/uwc frontend i run
telnet mfe 143
a1 login admin ********
a2 proxyauth myUserName
a3 select inbox
this works fine ! So this means to me: proxy auth in general works fine !
i added a UWCMailJSPProvider to my portal and changed the property ssoAdapter to my freshly created own adapter (adapUWCmail).
when i logon to my portal and want to access my UWCMailJSPProvider I get:
"Channel has not been configured."
my portal log files says:
[#|2008-01-12T18:42:27.186+0100|INFO|SJS Portal Server|debug.com.sun.portal.ssoadapter.impl|ThreadID=93; ClassName=com.sun.ssoadapter.impl.JavaMailSSOAdapter; MethodName=getConnection; |PSSA_CSSI0032:sso adapter failed to establish connection to mail server
javax.mail.AuthenticationFailedException: Authentication failed
at com.sun.mail.imap.IMAPStore.protocolConnect(Unknown Source)
at javax.mail.Service.connect(Unknown Source)
at com.sun.ssoadapter.impl.JavaMailSSOAdapter.getStore(Unknown Source)
at com.sun.ssoadapter.impl.JavaMailSSOAdapter.getConnection(Unknown Source)
at com.sun.portal.wireless.taglibs.mail.MailContext.initMail(Unknown Source)
at com.sun.portal.wireless.taglibs.mail.MailContext.init(Unknown Source)
at com.sun.portal.wireless.taglibs.base.Context.getContext(Unknown Source)
at com.sun.portal.wireless.taglibs.mail.MailContext.getContext(Unknown Source)
at com.sun.portal.wireless.taglibs.mail.MailContextTag.findContext(Unknown Source)
at com.sun.portal.wireless.taglibs.base.ContextTag.doStartTag(Unknown Source)
at jsps.var._opt._SUNWportal._portals._Pp4._desktop._p4v1_en_US._top_tabs._Comms._UWCmail._html._content_jsp._jspService(_content_jsp.java:361)
at com.sun.portal.providers.jsp.jasper3.jasper.runtime.HttpJspBase.service(Unknown Source)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:860)
at com.sun.portal.providers.jsp.JspServletWrapper.service(Unknown Source)
at com.sun.portal.providers.jsp.JSPProvider.processJspFile(Unknown Source)
at com.sun.portal.providers.jsp.JSPProvider.processJspFile(Unknown Source)
at com.sun.portal.providers.jsp.JSPProvider.getContent(Unknown Source)
at com.sun.portal.desktop.context.ReusableProviderCaller.run(Unknown Source)
|#]
i run a tcpdump and recognized what my portal server is doing. When i access UWCMailJSPProvider via
my portal i see:
portal server request: a0 apability
server response: <all mailserver capabilities>
portal server request: a1 authenticate plain
server response: +
portal server request: <encrypted stuff>
server response: NO authentication failed
So this seems to be the main problem ! I also checked my mmp/imap log files and i there also found the incorrect login.
I double-checked the proxy admin credentials more that 20 times and i am sure these creds are correctly stored on my
portal server configuration.
Did anybody had similiar issues, or does anybody has an idea how to solve this issue ?
I am out of any new ideas :-(
So many thanks for any ideas !!
cheers
majo

Thank you very much...
I didn't know that Transport.send creates its own connection! Thanks a lot!

Similar Messages

  • [svn] 3246: Fix fasttrack bug SDK-16910 - Simple List populated with strings throws RTE .

    Revision: 3246
    Author: [email protected]
    Date: 2008-09-17 15:31:25 -0700 (Wed, 17 Sep 2008)
    Log Message:
    Fix fasttrack bug SDK-16910 - Simple List populated with strings throws RTE. This is fallout from the Group/DataGroup split. DefaultItemRenderer now uses a TextBox instead of a Group to show the list data.
    QE: Any List tests that depended on the default item renderer to support anything other than text must be updated.
    Bugs: SDK-16910
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-16910
    http://bugs.adobe.com/jira/browse/SDK-16910
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/flex4/src/flex/skin/DefaultItemRenderer.mxml

    BTW, I do not experience the bug you had mentioned at
    http://www.cs.rit.edu/~cxb0025/flex/TreeControlBugs.html
    Can submit a video of my actions recorded

  • Shoudn't 'put with expiry' throw with read-write backing map?

    Good morning all,
    If I run this client code:
    cache.put(1,  1, CacheMap.EXPIRY_NEVER);I'd expect this entry to never expire. Yet with a read-write backing map it does - immediately, which lead me to digging a bit more...
    According to the [java docs|http://download.oracle.com/otn_hosted_doc/coherence/330/com/tangosol/net/NamedCache.html#put%28java.lang.Object,%20java.lang.Object,%20long%29] support for this call is patchy:
    >
    Note: Though NamedCache interface extends CacheMap, not all implementations currently support this functionality.
    For example, if a cache is configured to be a replicated, optimistic or distributed cache then its backing map must be configured as a local cache. If a cache is configured to be a near cache then the front map must to be configured as a local cache and the back map must support this feature as well, typically by being a distributed cache backed by a local cache (as above.)
    >
    OK, so the docs even say this won't work. But shouldn't it throw an unsupported op exception? Is this a bug or my mistake?
    rw-scheme config:
    <backing-map-scheme>
      <read-write-backing-map-scheme>
         <internal-cache-scheme>
            <local-scheme/>
         </internal-cache-scheme>
         <cachestore-scheme>
        </cachestore-scheme>
        <write-delay>1ms</write-delay>
      </read-write-backing-map-scheme>
    </backing-map-scheme>Edited by: BigAndy on 04-Dec-2012 04:28

    Quick update on this - I've raised an SR and Oracle have confirmed this is a bug and are looking into a fix.

  • Help with scroll/throw a movieclip

    hey guys,
    I'm not an expert coder by any means and this is for a proof of concept. I have a large movieclip called "main" that contains sub movieclips of pictures. Now the code I have put in below allows me to drag and throw the main moviecilp like a regular parallax web page. Due to the size of the photos and child movieclips it's a little choppy, only when I flick the movieclip. So can you guys see any way to clean this code up? I've looked at reducing the size of the child mcs but I still get a stutter if someone flicks it quick. Or do you wizards know any other code snippets that will do what I need in a more concise and effective manner? Listen, any help is greatly appreciately. BTW i'm using the throwprops plug in by greensock.
    main.CFbandEIGHTEEN.CFbandEIGHTEENbutton.addEventListener(MouseEvent.CLICK, CFbandEIGHTEENbutton);
    var bounds: Rectangle = new Rectangle(0, 0, 1280.15, 720);
    var blitMask: BlitMask = new BlitMask(main, bounds.x, bounds.y, bounds.width, bounds.height, false);
    blitMask.bitmapMode = false; // allows me to click on the child movieclips
    var t1: uint, t2: uint, y1: Number, y2: Number, yOverlap: Number, yOffset: Number;
    blitMask.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler);
    function mouseDownHandler(event: MouseEvent): void {
      TweenLite.killTweensOf(main);
      y1 = y2 = main.y;
      yOffset = this.mouseY - main.y;
      yOverlap = Math.max(0, main.height - bounds.height);
      t1 = t2 = getTimer();
      main.stage.addEventListener(MouseEvent.MOUSE_MOVE, mouseMoveHandler);
      main.stage.addEventListener(MouseEvent.MOUSE_UP, mouseUpHandler);
    function mouseMoveHandler(event: MouseEvent): void {
      var y: Number = this.mouseY - yOffset;
      //if main's position exceeds the bounds, make it drag only half as far with each mouse movement (like iPhone/iPad behavior)
      if (y > bounds.top) {
      main.y = (y + bounds.top) * 0.5;
      } else if (y < bounds.top - yOverlap) {
      main.y = (y + bounds.top - yOverlap) * 0.5;
      } else {
      main.y = y;
      blitMask.update();
      var t: uint = getTimer();
      //if the frame rate is too high, we won't be able to track the velocity as well, so only update the values 20 times per second
      if (t - t2 > 50) {
      y2 = y1;
      t2 = t1;
      y1 = main.y;
      t1 = t;
      event.updateAfterEvent();
    function mouseUpHandler(event: MouseEvent): void {
      main.stage.removeEventListener(MouseEvent.MOUSE_UP, mouseUpHandler);
      main.stage.removeEventListener(MouseEvent.MOUSE_MOVE, mouseMoveHandler);
      var time: Number = (getTimer() - t2) / 1000;
      var yVelocity: Number = (main.y - y2) / time;
      ThrowPropsPlugin.to(main, {
      throwProps: {
      y: {
      velocity: yVelocity,
      max: bounds.top,
      min: bounds.top - yOverlap,
      resistance: 50
      onUpdate: blitMask.update,
      ease: Strong.easeOut
      }, 2, 0.3, 0.5);

    anyone?

  • Authenticates but throws AuthenticationFailedException?!??!?

    I have got the following code used for sending a simple mail over a SMTP with Authentication connection.
            boolean debug = true;
            // Create a mail session
            java.util.Properties props = new java.util.Properties();
            props.put("mail.smtp.host", smtpHost);
            props.put("mail.smtp.port", ""+smtpPort);
            props.put("mail.smtp.auth", "true");
            Authenticator passwordAuth = new SMTPAuthenticator(from,passFrom);
            Session session = Session.getDefaultInstance(props, null);
            session.setDebug(debug);
            Transport transport = session.getTransport("smtp");
            // Construct the message
            Message msg = new MimeMessage(session);
            msg.setFrom(new InternetAddress(from));
            msg.setRecipient(Message.RecipientType.TO, new InternetAddress(to));
            msg.setSubject(subject);
            msg.setText(content);
            // Send the message
            transport.connect("hostname","loginame","password");
            //transport.connect();
            transport.send(msg);Now there comes the funny part:
    DEBUG SMTP: connected to host "hostname", port: 25
    EHLO SIECSC_SDS03
    250-hostnamehostname
    250-PIPELINING
    250-SIZE 2556000
    250-VRFY
    250-ETRN
    250-STARTTLS
    250-AUTH PLAIN LOGIN
    250-AUTH=PLAIN LOGIN
    250-ENHANCEDSTATUSCODES
    250-8BITMIME
    250 DSN
    DEBUG SMTP: Found extension "PIPELINING", arg ""
    DEBUG SMTP: Found extension "SIZE", arg "2556000"
    DEBUG SMTP: Found extension "VRFY", arg ""
    DEBUG SMTP: Found extension "ETRN", arg ""
    DEBUG SMTP: Found extension "STARTTLS", arg ""
    DEBUG SMTP: Found extension "AUTH", arg "PLAIN LOGIN"
    DEBUG SMTP: Found extension "AUTH=PLAIN", arg "LOGIN"
    DEBUG SMTP: Found extension "ENHANCEDSTATUSCODES", arg ""
    DEBUG SMTP: Found extension "8BITMIME", arg ""
    DEBUG SMTP: Found extension "DSN", arg ""
    DEBUG SMTP: Attempt to authenticate
    AUTH LOGIN
    334 VXNlcm5hbWU6
    Z2dhbHZhbw==
    334 UGFzc3dvcmQ6
    YXB0NTAz
    235 2.0.0 Authentication successful
    DEBUG: getProvider() returning javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun Microsystems, Inc]
    DEBUG SMTP: useEhlo true, useAuth true
    javax.mail.AuthenticationFailedException
    at javax.mail.Service.connect(Service.java:306)
    at javax.mail.Service.connect(Service.java:156)
    at javax.mail.Service.connect(Service.java:105)
    at javax.mail.Transport.send0(Transport.java:168)
    at javax.mail.Transport.send(Transport.java:98)
    at br.gov.trern.siasf.util.MailSender.send(MailSender.java:73)
    at br.gov.trern.siasf.util.MailSender.sendMail(MailSender.java:85)
    at br.gov.trern.siasf.util.TesteMail.main(TesteMail.java:28)
    Now, that's really crazy. Firstly it says: Authentication Succesful, then it says AuthenticationFailedException! w00t?
    Message was edited by:
    Gabriel.Galvao

    Thank you very much...
    I didn't know that Transport.send creates its own connection! Thanks a lot!

  • SSRS 2008 reports with images throw script error with IE9

    When i try to load SSRS 2008 report in a browser or a application with browser control on machine which has IE9, it loads the image but throws some script error. I also tried installing the ReportViewer08 SP1.exe, but still i get the error.
    The error is "Object doesnt support method or property"
    In the script debugger i see debugger stuck at  "this.Poll..." statement.
    function anonymous()
    this.PollResizeImages(oReportDiv, oReportDiv);

    I'm also getting this error when I run a report using ReportViewer control
    on many environments including production for my customers
    I have Microsoft SQL Server 2008 R2 (SP1) - 10.50.2500.0 (X64)   Jun 17 2011 00:54:03   Copyright (c) Microsoft Corporation  Developer Edition (64-bit) on Windows NT 6.1 <X64> (Build
    7601: Service Pack 1) (Hypervisor) 
    Funny thing is another environment with same version doesn't ( internal )
    doesn't get this error
    Another symptom is that images when report is first run are cropped but
    refreshing report or changing to another report page and back again the
    issue doesn't occur

  • How can I deal with the "throw exception"?

    A function has the following definition:
    import javax.naming.NamingException;
    public BinRelation readBinRelation() throws BadInputDataException,IOException
    When I use this function as follows:
    BinRelation binRel;
    binRel = readBinRelation();
    then comes the error:
    unreported exception javax.naming.NamingException; must be caught or declared to be thrown.
    So how can use this function correctly?
    Thanks

    So how can use this function correctly?By learning what exceptions are, how they're used, and what you can do to deal with them. There's a tutorial here: http://java.sun.com/docs/books/tutorial/essential/exceptions/index.htmlAnd here's a quick overview:
    The base class for all exceptions is Throwable. Java provides Exception and Error that extend Throwable. RuntimeException (and many others) extend Exception.
    RuntimeException and its descendants, and Error and its descendants, are called unchecked exceptions. Everything else is a checked exception.
    If your method, or any method it calls, can throw a checked exception, then your method must either catch that exception, or declare that your method throws that exception. This way, when I call your method, I know at compile time what can possibly go wrong and I can decide whether to handle it or just bubble it up to my caller. Catching a given exception also catches all that exception's descendants. Declaring that you throw a given exception means that you might throw that exception or any of its descendants.
    Unchecked exceptions (RuntimeException, Error, and their descendants) are not subject to those restrictions. Any method can throw any unchecked exception at any time without declaring it. This is because unchecked exceptions are either the sign of a coding error (RuntimeException), which is totally preventable and should be fixed rather than handled by the code that encounters it, or a problem in the VM, which in general can not be predicted or handled.

  • New MacBook Pro won't boot from old HD. Grey circle with dash throw it on Startup.

    Alright then so I bought a new 15" MacBook Pro 2.6GHz from Apple and it arrived all fine and well. However when I went to swap out the standard 750GB HD for my 1TB from my previous MacBook Pro the machine got stuck on a grey boot screen with a circle with a dash through it. I restarted the laptop and the same thing happened. Freaking out I but the 750GB HD back in and everything worked fine. I then tried to boot from the 1TB using an external enclosure I had and the same problem occurred. 
    So it must be some issue with my old HD. If anyone has any tips or ideas I would love the help. 
    Thanks in advance
    Zahni

    Not really. What OS X version is on the new computer? If it's 10.8.1, then you could buy 10.8.2 for your old computer and install it. Then the old drive should boot the new computer. But if the new computer has 10.8.2 installed, then it will be a different build than the one you purchase from the App Store, and that build will not boot the new computer. So, you have to wait for a newer version of OS X.
    Or you could just transfer your Home folder to the new drive and reinstall your third-party applications.

  • PDF generation with FOP throws NPE

    Hi,
    Stack trace
    at oracle.xml.jaxp.JXTransformer.reportXSLException(JXTransformer.java:769)
    at oracle.xml.jaxp.JXTransformer.transform(JXTransformer.java:342)
    I'm using standard Java 1.4 API calls to create a PDF document from a DOM with Apache FOP 0.20.5.
    The servlet is deployed to Oracle 10g Application Server 9.0.4.0.0. With Tomcat 4.1.30 the same code executes without exceptions
    Because I have to port our web application to Oracle for a new customer it is important for me to get this fixed soon.
    Thank you
    Eckard

    Light at the end of the tunnel: It seems to work when FO and PDF generation are separated. Until now the DOM was piped into FOP who internally created the FO from SAX events and then seems to parse it again to create PDF.
    I separated the two steps: There is no problem in FO generation, but due to a namespace problem subsequent parsing fails
    ("org.apache.fop.apps.FOPException: null:2:10 Root element is missing the namespace declaration: http://www.w3.org/1999/XSL/Format")
    Now the correct exception comes up. Whether FOP SAX event listener is buggy or XML parser's error handling has a problem, I don't know
    Thank you anyway
    Eckard

  • How to add rdlc reports to winform project with out throwing any error

    Hi,
    I have been trying to resolve this problem in all ways.I am working on win forms in VS 2010 using C#.I have designed 4 rdlc reports in a copy of same projects, and now I have been trying to add those rdlc reports to main project(same name of 2 projects).
    They are adding but throwing an error as "A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible.Verify that the instance name is correct and that
    SQL Server is configured to allow remote connections. (provider: SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specified) "
    at 
    private void report10th_Load(object sender, EventArgs e)
    // TODO: This line of code loads data into the 'dataset10th.attendance' table. You can move, or remove it, as needed.
    this.attendanceTableAdapter.Fill(this.dataset10th.attendance);//throws an error here
    // TODO: This line of code loads data into the 'dataset10th.regestration' table. You can move, or remove it, as needed.
    this.regestrationTableAdapter.Fill(this.dataset10th.regestration);
    // TODO: This line of code loads data into the 'dataset10th.tenthclass_marks' table. You can move, or remove it, as needed.
    this.tenthclass_marksTableAdapter.Fill(this.dataset10th.tenthclass_marks);
    //this.reportViewer1.RefreshReport();
    please Help me out how to add these RDLC reports to win forms 

    Thank you for replaying me sir,
    Finally i got to know the answer through your instructions.
    I have a look into app.config file and replaced the server name as 
    <add name="f2.Properties.Settings.smssmsConnectionString" connectionString="Data Source=User-pc\sqlexpress;Initial Catalog=smssms;Integrated Security=True"
    providerName="System.Data.SqlClient" />
    //to
    <add name="f2.Properties.Settings.smssmsConnectionString" connectionString="Data Source=.;Initial Catalog=smssms;Integrated Security=True"
    providerName="System.Data.SqlClient" />

  • ViewCriteria with Timstamp throw ORA-01843

    I try to Filter Rows by Timestap with ViewCriteria:
    Env:
    jdev 10.1.3
    table:
    create table DATE_TIMSTAMP
    DATE_VALUE DATE,
    TIMESTAMP_VALUE TIMESTAMP(3)
    EO, VO and AM created with the wizard
    EO Attribute "TimestampValue" is set to TIMSTAMP
    JUnitTest:
    public void testTimestampViewCriteria() {
    ViewObject view = fixture1.getApplicationModule().findViewObject("DateTimstampView1");
    Row row = view.createRow();
    Timestamp ts = new Timestamp(System.currentTimeMillis());
    row.setAttribute("TimestampValue",ts);
    view.insertRow(row);
    fixture1.getApplicationModule().getTransaction().postChanges();
    ViewCriteria vc = view.createViewCriteria();
    ViewCriteriaRow vcr = vc.createViewCriteriaRow();
    vcr.setAttribute("TimestampValue",ts);
    vc.add(vcr);
    view.applyViewCriteria(vc);
    view.executeQuery();
    assertNotNull(view.hasNext());
    fixture1.getApplicationModule().getTransaction().rollback();
    StackTrace:
    oracle.jbo.SQLStmtException: JBO-27122: SQL-Fehler bei Vorbereitung der Anweisung. Anweisung: SELECT DateTimstamp.DATE_VALUE, DateTimstamp.TIMESTAMP_VALUE, DateTimstamp.ROWID FROM DATE_TIMSTAMP DateTimstamp WHERE ( ( (DateTimstamp.TIMESTAMP_VALUE = '2006-07-27 11:08:29.776') ) )
    ## Detail 0 ##
    java.sql.SQLException: ORA-01843: Kein gültiger Monat
    uli

    Oracle is smarter than you think .. ;)
    Look at the filter condition, in the explain plan for your second query..
    SQL> select *
      2  from table(dbms_xplan.display);
    PLAN_TABLE_OUTPUT
    Plan hash value: 1685426719
    | Id  | Operation        | Name | Rows  | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT |      |     1 |     4   (0)| 00:00:01 |
    |*  1 |  FILTER          |      |       |            |          |
    |   2 |   FAST DUAL      |      |     1 |     2   (0)| 00:00:01 |
    |   3 |   FAST DUAL      |      |     1 |     2   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       1 - filter( EXISTS (SELECT 0 FROM "SYS"."DUAL" "DUAL"))
    15 rows selected.Edited by: jeneesh on Jun 3, 2013 2:20 PM
    IMO, It is correct.. That is how EXISTS works.It is supposed to check only the existence..

  • Using Weblogic JDBC driver 5.1.0sp8  with MSSQL, throwing "abstract method" error when trying to use scrollable resultsets

    I am using the weblogic driver with Allaire JRun.
    Using these lines, I am trying to make my resultsets scrollable and updatable.
    dbConnection.createStatement( ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_UPDATABLE
    ResultSet rs = queryStatement.executeQuery(query);
    When I run the code, I get this error ..
    java.lang.AbstractMethodError
    at allaire.jrun.sql.ConnectionProxy.createStatement(../sql/ConnectionProxy.java:413)
    at com.mindseye.utils.database.DBAccessor.executeQuery(DBAccessor.java:35)
    at com.fao.shopping.tag.HandleShoppingCartTag.checkExists(HandleShoppingCartTag.java:635)
    at com.fao.shopping.tag.HandleShoppingCartTag.doStartTag(HandleShoppingCartTag.java:90)
    at jrun__jsp__shoppingbag2ejsp14._jspService(jrun__jsp__shoppingbag2ejsp14.java:45)
    at allaire.jrun.jsp.HttpJSPServlet.service(../jsp/HttpJSPServlet.java:39)
    at allaire.jrun.jsp.JSPServlet.service(../jsp/JSPServlet.java:228)
    Everything works fine when I do not try and specify attributes to the statement
    object. (i.e. dbConnection.createStatement();)
    Anybody know what is going on?
    thanks,
    randy

    Hi. I don't see our code anywhere in the stacktrace, but I'll assume
    it's there somewhere. The basic fact is that our MS SQLServer driver
    implements practically zero of the JDBC 2.0 methods. There is a way
    to connect to this driver that has the methods defined, but then all
    the difference will be that you'll get an exception saying 'this jdbc 2.0
    method not implemented'.
    Joe
    randy shepherd wrote:
    >
    I am using the weblogic driver with Allaire JRun.
    Using these lines, I am trying to make my resultsets scrollable and updatable.
    dbConnection.createStatement( ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_UPDATABLE
    ResultSet rs = queryStatement.executeQuery(query);
    When I run the code, I get this error ..
    java.lang.AbstractMethodError
    at allaire.jrun.sql.ConnectionProxy.createStatement(../sql/ConnectionProxy.java:413)
    at com.mindseye.utils.database.DBAccessor.executeQuery(DBAccessor.java:35)
    at com.fao.shopping.tag.HandleShoppingCartTag.checkExists(HandleShoppingCartTag.java:635)
    at com.fao.shopping.tag.HandleShoppingCartTag.doStartTag(HandleShoppingCartTag.java:90)
    at jrun__jsp__shoppingbag2ejsp14._jspService(jrun__jsp__shoppingbag2ejsp14.java:45)
    at allaire.jrun.jsp.HttpJSPServlet.service(../jsp/HttpJSPServlet.java:39)
    at allaire.jrun.jsp.JSPServlet.service(../jsp/JSPServlet.java:228)
    Everything works fine when I do not try and specify attributes to the statement
    object. (i.e. dbConnection.createStatement();)
    Anybody know what is going on?
    thanks,
    randy

  • Jar made with JDeveloper throws WebServiceException

    Hello experts,
    I have a situation where i have to call a webservice from OIM via OSB.The exposed webservice is for adding ESSO credentials.When the webservice is called from OSB by the way of hardcoding everything works ok, when the same webservice is called from JDeveloper everything works ok, but when called from OIM i get the exception in step 6. I did the following steps:
    1.Generated the webservice proxy and client in JDeveloper based on a wsdl.
    2.Called with success the exposed webservice and sent the data correctly from JDeveloper.
    3.Packed the code into a jar.
    4.Deployed the jar on the server and made an adapter for the method that calls the webservice with correct mappings.
    5.Runned UploadJars.sh with the option JavaTasks and made a process task for the above adapter with correct mappings.
    6.Got the following exception when runned from OIM : javax.xml.ws.WebServiceException: class <ClassName>do not have a property <Property in the form of a String>.
    My first question would be : must i run UploadJars for other jars except for the one that i made for calling the webservice?
    I'm using java 1.6.0_24, IDE version 11.1.2.2.39.61.83.1, 11g release 2, JAX-WS 2.1.5.
    I saw this error on other forums but didn't see anywhere direct solution.Is there any workaround?
    Thanks in advance and best regards!
    Carol

    This probably isn't posted on the correct forum. This JVM forum is for discussing issues related to running java in an Oracle database using the OJVM, Oracle's embedded java VM. Possibly you are trying to use OJVM through JDEV but that isn't clear from your post and I don't believe that the error you are reporting would occur in that case. If it did or if you are in fact trying to run client java via JDEV the problem would be a JDEV rather than OJVM issue and so the JDEV forum,
    JDeveloper and ADF
    is the correct one to use.

  • Using of universallogcollector.pl with -afterdate throws error

    Reference:  11gR2 GI/ASM/RAC Universal Collection Guide (Doc ID 1485042.1)
    11gR2 Universal Collection is expanded diagcollection.pl to collect GI, ASM and database (RAC) diagnostics (logfile, trace file etc), the goal is to reduce back and forth information request
    between Oracle Support and customers.
    Once finishes, it will generate files in current directory. Only one file needs to be uploaded per node, the name of the file is highlighted on screen and
    default to allData_<nodename>_<timestamp>.tar.gz
    When I tried with below command I am getting the error as;
      /exports/universallogcollector/universallogcollector.pl  --orahome --afterdate '09/07/2013'
    root@dbsrvr1/exports/universallogcollector/test_run/run2>/exports/universallogcollector/universallogcollector.pl --collect --orahome --afterdate '09/07/2013'
    Production Copyright 2004, 2010, Oracle. All rights reserved.
    Universal Log Collector tool Version 1.4
    The following diagnostic archives will be created in the local directory if it's not excluded.
    etcData_dbsrvr1_20130911_0035.tar.gz -> oraInst.loc, oratab and /etc/oracle or /var/opt/oracle(platform dependent).
    crshomeData_dbsrvr1_20130911_0035.tar.gz -> logs, traces and cores from CRS Home.
                                                 Note: core files will be packaged only with the --core option.
    ocrData_dbsrvr1_20130911_0035.tar.gz -> ocrdump, ocrcheck etc.
    chmosData_dbsrvr1_20130911_0035.tar.gz -> Cluster Health Monitor (OS) data.
    coreData_dbsrvr1_20130911_0035.tar.gz -> contents of CRS core files in text format.
    osData_dbsrvr1_20130911_0035.tar.gz -> logs from Operating System.
    baseData_dbsrvr1_20130911_0035.tar.gz -> logs from CRS Base & Oracle Base(s).
    invtData_dbsrvr1_20130911_0035.tar.gz -> logs from Oracle installation log.
    orahomeData_dbsrvr1_20130911_0035.tar.gz -> logs from Oracle Home(s) log.
    sysconfig_dbsrvr1_20130911_0035.txt -> system config info for cpu, memory, swap, network and disks.
    crsresStatus_dbsrvr1_20130911_0035.txt -> outputs from "crsctl stat res -t -f [-init]"
    vendorData_dbsrvr1_20130911_0035.tar.gz -> vendor clusterware logs if present.
    acfsData_dbsrvr1_20130911_0035.tar.gz -> logs from acfs log.
    rdbmsData_dbsrvr1_20130911_0035.tar.gz -> RDBMS traces and alert logs.
    allData_dbsrvr1_20130911_0035.tar.gz -> a summary tarball for all above logs.
    Collecting CRS home data
    tar: a: unknown option
    tar: usage  tar [-]{txruc}[eONvVwAfblhm{op}][0-7[lmh]] [tapefile] [blocksize] [[-C directory] file] ...
    tar: a: unknown option
    tar: usage  tar [-]{txruc}[eONvVwAfblhm{op}][0-7[lmh]] [tapefile] [blocksize] [[-C directory] file] ...
    tar: a: unknown option
    tar: usage  tar [-]{txruc}[eONvVwAfblhm{op}][0-7[lmh]] [tapefile] [blocksize] [[-C directory] file] ...
    tar: a: unknown option
    tar: usage  tar [-]{txruc}[eONvVwAfblhm{op}][0-7[lmh]] [tapefile] [blocksize] [[-C directory] file] ...
    tar: usage  tar [-]{txruc}[eONvVwAfblhm{op}][0-7[lmh]] [tapefile] [blocksize] [[-C directory] file] ...
    tar: a: unknown option
    Collecting information from core dump files
    No corefiles found
    Collecting OCR data
    tar: a: unknown option
    tar: usage  tar [-]{txruc}[eONvVwAfblhm{op}][0-7[lmh]] [tapefile] [blocksize] [[-C directory] file] ...
    gzip: ocrData_dbsrvr1_20130911_0035.tar: No such file or directory
    Collecting Etc Oralce data
    cp: /var/opt/oracle/oprocd/check/port: Operation not supported on socket
    cp: /var/opt/oracle/oprocd/stop/port: Operation not supported on socket
    cp: /var/opt/oracle/oprocd/fatal/port: Operation not supported on socket
    Collecting CRS base & Oracle base(s) data
    CRS base not specified or invalid, will try to get correct CRS base
    Get valid CRS base "/app/oracle" and will collect it.
    tar: a: unknown option
    tar: usage  tar [-]{txruc}[eONvVwAfblhm{op}][0-7[lmh]] [tapefile] [blocksize] [[-C directory] file] ...
    Collecting Oracle home data from "/app/crs/product/11g"
    tar: a: unknown option
    tar: usage  tar [-]{txruc}[eONvVwAfblhm{op}][0-7[lmh]] [tapefile] [blocksize] [[-C directory] file] ...
    Collecting Oracle home data from "/app/oracle/product/11g/asm_1"
    tar: a: unknown option
    tar: usage  tar [-]{txruc}[eONvVwAfblhm{op}][0-7[lmh]] [tapefile] [blocksize] [[-C directory] file] ...
    Collecting Oracle home data from "/app/oracle/product/11g/db_1"
    tar: a: unknown option
    tar: usage  tar [-]{txruc}[eONvVwAfblhm{op}][0-7[lmh]] [tapefile] [blocksize] [[-C directory] file] ...
    Collecting Oracle home data from "/app/oracle/product/em/agent11g"
    tar: a: unknown option
    tar: usage  tar [-]{txruc}[eONvVwAfblhm{op}][0-7[lmh]] [tapefile] [blocksize] [[-C directory] file] ...
    Collecting Oracle home data from "/app/oracle/product/11.2.0.3/db"
    tar: a: unknown option
    tar: usage  tar [-]{txruc}[eONvVwAfblhm{op}][0-7[lmh]] [tapefile] [blocksize] [[-C directory] file] ...
    Collecting OS logs
    tar: a: unknown option
    tar: usage  tar [-]{txruc}[eONvVwAfblhm{op}][0-7[lmh]] [tapefile] [blocksize] [[-C directory] file] ...
    Collecting Oracle installation logs
    tar: a: unknown option
    tar: usage  tar [-]{txruc}[eONvVwAfblhm{op}][0-7[lmh]] [tapefile] [blocksize] [[-C directory] file] ...
    Collecting vendor cluster logs
    tar: a: unknown option
    tar: usage  tar [-]{txruc}[eONvVwAfblhm{op}][0-7[lmh]] [tapefile] [blocksize] [[-C directory] file] ...
    Collecting sysconfig data
    Collecting CRS resource status
    Collecting RDBMS traces and alert logs
    tar: a: unknown option
    tar: usage  tar [-]{txruc}[eONvVwAfblhm{op}][0-7[lmh]] [tapefile] [blocksize] [[-C directory] file] ...
    Done
    #########Universal Log Collection Finished.#######
        Please upload ONLY allData_dbsrvr1_20130911_0035.tar.gz to Oracle Support!
    root@dbsrvr1/exports/universallogcollector/test_run/run2>

    Could you explain what do you want to fix?
    I think you should read StockAccess's javadoc.
    It should describe how you can use it.

  • BCM43228 with broadcom_wl throwing warnings & problems with connection

    Hey there,
    I'm using a Thinkpad X131e with a BCM43228 wlan chip with broadcom-wl driver from AUR.
    Cut from `lspci -vvDnn`:
    0000:02:00.0 Network controller [0280]: Broadcom Corporation BCM43228 802.11a/b/g/n [14e4:4359]
    Subsystem: Broadcom Corporation Device [14e4:0607]
    Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
    Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 0, Cache Line Size: 32 bytes
    Interrupt: pin A routed to IRQ 17
    Region 0: Memory at f0a00000 (64-bit, non-prefetchable) [size=16K]
    Capabilities: [40] Power Management version 3
    Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
    Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=2 PME-
    Capabilities: [58] Vendor Specific Information: Len=78 <?>
    Capabilities: [48] MSI: Enable- Count=1/1 Maskable- 64bit+
    Address: 0000000000000000 Data: 0000
    Capabilities: [d0] Express (v1) Endpoint, MSI 00
    DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s <4us, L1 unlimited
    ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
    DevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
    RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
    MaxPayload 128 bytes, MaxReadReq 128 bytes
    DevSta: CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr+ TransPend-
    LnkCap: Port #0, Speed 2.5GT/s, Width x1, ASPM L1, Latency L0 <4us, L1 <64us
    ClockPM+ Surprise- LLActRep+ BwNot-
    LnkCtl: ASPM L1 Enabled; RCB 64 bytes Disabled- Retrain- CommClk+
    ExtSynch- ClockPM+ AutWidDis- BWInt- AutBWInt-
    LnkSta: Speed 2.5GT/s, Width x1, TrErr- Train- SlotClk+ DLActive+ BWMgmt- ABWMgmt-
    Capabilities: [100 v1] Advanced Error Reporting
    UESta: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
    UEMsk: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
    UESvrt: DLP+ SDES- TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
    CESta: RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
    CEMsk: RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
    AERCap: First Error Pointer: 00, GenCap+ CGenEn- ChkCap+ ChkEn-
    Capabilities: [13c v1] Virtual Channel
    Caps: LPEVC=0 RefClk=100ns PATEntryBits=1
    Arb: Fixed- WRR32- WRR64- WRR128-
    Ctrl: ArbSelect=Fixed
    Status: InProgress-
    VC0: Caps: PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
    Arb: Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
    Ctrl: Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
    Status: NegoPending- InProgress-
    Capabilities: [160 v1] Device Serial Number 00-00-e6-ff-ff-fa-e0-06
    Capabilities: [16c v1] Power Budgeting <?>
    Kernel driver in use: wl
    Kernel modules: bcma, wl
    I often see in my `journalctl -xfn` these lines and my wpa_supplicant using nl80211 has problems with my connection. first it works for a while, then it suddenly dies and doesn't want to reconnect. After some time it works again until it suddenly dies the next time.
    Jun 01 01:55:53 gibson.local kernel: ------------[ cut here ]------------
    Jun 01 01:55:53 gibson.local kernel: WARNING: at net/wireless/sme.c:642 cfg80211_roamed+0x8c/0x90 [cfg80211]()
    Jun 01 01:55:53 gibson.local kernel: Hardware name: 3372CTO
    Jun 01 01:55:53 gibson.local kernel: Modules linked in: ppp_deflate zlib_deflate bsd_comp ppp_async crc_ccitt ppp_generic slhc sr_mod cdrom option usb_wwan u
    Jun 01 01:55:53 gibson.local kernel: snd rfkill ac button soundcore r8169 video mii battery processor ext4 crc16 mbcache jbd2 sd_mod usb_storage rtsx_pci_sdmmc mmc_core ahci lib...mmon rtsx_pci
    Jun 01 01:55:53 gibson.local kernel: Pid: 147, comm: wl_event_handle Tainted: P O 3.9.4-1-ARCH #1
    Jun 01 01:55:53 gibson.local kernel: Call Trace:
    Jun 01 01:55:53 gibson.local kernel: [<ffffffff810580b0>] warn_slowpath_common+0x70/0xa0
    Jun 01 01:55:53 gibson.local kernel: [<ffffffff8105819a>] warn_slowpath_null+0x1a/0x20
    Jun 01 01:55:53 gibson.local kernel: [<ffffffffa03b68dc>] cfg80211_roamed+0x8c/0x90 [cfg80211]
    Jun 01 01:55:53 gibson.local kernel: [<ffffffffa0611a35>] wl_bss_connect_done.isra.21+0x105/0x1b0 [wl]
    Jun 01 01:55:53 gibson.local kernel: [<ffffffffa0611dbf>] wl_notify_connect_status+0x2df/0x3c0 [wl]
    Jun 01 01:55:53 gibson.local kernel: [<ffffffffa060e4e5>] wl_event_handler+0x55/0x1f0 [wl]
    Jun 01 01:55:53 gibson.local kernel: [<ffffffffa060e490>] ? wl_deinit_priv_mem+0xa0/0xa0 [wl]
    Jun 01 01:55:53 gibson.local kernel: [<ffffffff8107b600>] kthread+0xc0/0xd0
    Jun 01 01:55:53 gibson.local kernel: [<ffffffff8107b540>] ? kthread_create_on_node+0x120/0x120
    Jun 01 01:55:53 gibson.local kernel: [<ffffffff814d9dec>] ret_from_fork+0x7c/0xb0
    Jun 01 01:55:53 gibson.local kernel: [<ffffffff8107b540>] ? kthread_create_on_node+0x120/0x120
    Jun 01 01:55:53 gibson.local kernel: ---[ end trace 92d276a463b89308 ]---
    Jun 01 01:55:53 gibson.local kernel: ------------[ cut here ]------------
    Jun 01 01:55:53 gibson.local kernel: WARNING: at net/wireless/sme.c:642 cfg80211_roamed+0x8c/0x90 [cfg80211]()
    Jun 01 01:55:53 gibson.local kernel: Hardware name: 3372CTO
    Jun 01 01:55:53 gibson.local kernel: Modules linked in: ppp_deflate zlib_deflate bsd_comp ppp_async crc_ccitt ppp_generic slhc sr_mod cdrom option usb_wwan u
    Jun 01 01:55:53 gibson.local kernel: snd rfkill ac button soundcore r8169 video mii battery processor ext4 crc16 mbcache jbd2 sd_mod usb_storage rtsx_pci_sdmmc mmc_core ahci lib...mmon rtsx_pci
    Jun 01 01:55:53 gibson.local kernel: Pid: 147, comm: wl_event_handle Tainted: P W O 3.9.4-1-ARCH #1
    Jun 01 01:55:53 gibson.local kernel: Call Trace:
    Jun 01 01:55:53 gibson.local kernel: [<ffffffff810580b0>] warn_slowpath_common+0x70/0xa0
    Jun 01 01:55:53 gibson.local kernel: [<ffffffff8105819a>] warn_slowpath_null+0x1a/0x20
    Jun 01 01:55:53 gibson.local kernel: [<ffffffffa03b68dc>] cfg80211_roamed+0x8c/0x90 [cfg80211]
    Jun 01 01:55:53 gibson.local kernel: [<ffffffffa06118ac>] wl_notify_roaming_status+0xac/0x130 [wl]
    Jun 01 01:55:53 gibson.local kernel: [<ffffffffa060e4e5>] wl_event_handler+0x55/0x1f0 [wl]
    Jun 01 01:55:53 gibson.local kernel: [<ffffffffa060e490>] ? wl_deinit_priv_mem+0xa0/0xa0 [wl]
    Jun 01 01:55:53 gibson.local kernel: [<ffffffff8107b600>] kthread+0xc0/0xd0
    Jun 01 01:55:53 gibson.local kernel: [<ffffffff8107b540>] ? kthread_create_on_node+0x120/0x120
    Jun 01 01:55:53 gibson.local kernel: [<ffffffff814d9dec>] ret_from_fork+0x7c/0xb0
    Jun 01 01:55:53 gibson.local kernel: [<ffffffff8107b540>] ? kthread_create_on_node+0x120/0x120
    Jun 01 01:55:53 gibson.local kernel: ---[ end trace 92d276a463b89309 ]---

    Well, sorry I can't be of more help than this.  I think the only reasonable thing to try would be to see if it happens in another distirbution with a similar kernel version.  At least then you could try to narrow it down to whether it is specific to your setup, or something that is actually wrong with the hardware.
    I think the ultimate test would be to see if it happens in windows.  Then if it still does it, you can call Lenovo with certainty that it is an issue with the hardware and that you need another.  Fortunately, I am pretty sure it is considered a CRU (Custoner Replaceable Unit), so they would likely just send you a new one, rather than require you send your entire system to them.

Maybe you are looking for

  • Problem opening old Diagrams in JDeveloper 10.1.3.0.4

    Hi, I have UML and Database diagrams done in JDeveloper 10.1.2.1 and older versions. When I try to open the diagram in 10.1.3.0.4 version the the ide doesn't open it and gives the message error: oracle.bm.persist.VersionMigrationFailureException: Una

  • Projector resolution?

    I am hooking up an Epson Home Cinema digital projector to an iMac G5. When the projector is not connected, the highest I can set the screen resolution is 1440 X 900. But when I connect the projector, then I have the option of 1920 X 1080 (which is th

  • Create Netscape Identity Cookie Through a Script

    I have identity server running with ldap authentication. When a user logs into Solaris 9 through ldap, I need to create a netscape portal cookie without any interaction from the user. I know that the url to accomplish this is: http://www.myserver.com

  • Reg: Long running SAP job SAP_XMB_PERF_AGGREGATE

    Hello, Above mentioned SAP job is running for days. I tried with changing parameters In integration engine administration SXMB_ADM for Category PERF there is a paramter DAYS_TO_KEEP_DATA. Created the Index too in Table SXMSPFAGG. But still the job is

  • ACE design with inter-Vlan routing

    Hello all. I'm working on a design for a customer where the ACE will perform inter vlan routing. A few questions about that : - is routed traffic enforced in hardware with some kind of CEF-like mechanism ? (I suppose yes because there is a FIB ? per