DB Adapter - DB2/JD Edwards Graphic Datatype Error

Hello,
I am not sure which forum I should post this question to. If there is another forum, please let me know.
I am running into an issue with using the DB Adapter to insert into a DB2 database hosted on an AS/400. The column I am attempting to insert into is a graphic datatype which contains character data. The table is a JD Edwards table where character data is stored in graphic columns.
My development environment consists of the following:
J Developer 11.1.1.5
SOA Suite 11.1.1.5
DB2/400 Version 6, release 1
JDBC Driver - IBM JT400.jar
WebLogic 10.3.5
When I run the composite application in WebLogic, the process faults at the insert statement (error messages are posted below). When I look at my or-mappings.xml file I find the following mapping for the column causing the error:
<attribute-mapping xsi:type="direct-mapping">
<attribute-name>absic</attribute-name>
<field table="F0101" name="ABSIC" xsi:type="column"/>
<attribute-classification>[B</attribute-classification>
</attribute-mapping>
The attribute-classification seems incorrect. In J Developer 10, the attribute-classification was java.lang.String. When I manually change this attribute to java.lang.String, the application works correctly. This same error happens on all graphic datatype columns. At the top of the or-mappings.xml file, there is a reference to eclipselink. In J Developer 10, I think there was a reference to Toplink vs Eclipselink. So it appears that J Developer is now using EclipseLink by default to create the or-mappings.xml file.
I would rather not have to change the attribute-classification each time I want to create an insert statement. Is there a way to fix/configure how J Developer/EclipseLink creates this mapping? Is it safe to manually edit the or-mappings.xml file?
Thanks in advance.
The error messages I receive are:
<bpelFault><faultType>0</faultType><bindingFault xmlns="http://schemas.oracle.com/bpel/extension"><part name="summary"><summary>Exception occured when binding was invoked. Exception occured during invocation of JCA binding: "JCA Binding execute of Reference operation 'insert' failed due to: DBWriteInteractionSpec Execute Failed Exception. insert failed. Descriptor name: [F0101.F0101]. Caused by Exception [EclipseLink-3001] (Eclipse Persistence Services - 2.1.3.v20110304-r9073): org.eclipse.persistence.exceptions.ConversionException Exception Description: The object [xs:base64Binary SR Test Case - Vince], of class [class java.lang.String], could not be converted to [class java.sql.Timestamp]. Internal Exception: java.io.IOException: Error in encoded stream: needed 4 valid base64 characters but only got 3 before EOF, the 10 most recent characters were: "se - Vince". Please see the logs for the full DBAdapter logging output prior to this exception. ConnectionFactory property platformClassName was set to org.eclipse.persistence.platform.database.oracle.Oracle10Platform but the database you are connecting to is DB2 UDB for AS/400. Please validate your platformClassName setting. This mismatch can cause the adapter to trigger runtime exceptions or execute SQL that is invalid for the database you are connected to. This exception is considered not retriable, likely due to a modelling mistake. ". The invoked JCA adapter raised a resource exception. Please examine the above error message carefully to determine a resolution. </summary></part><part name="detail"><detail> Exception Description: The object [xs:base64Binary SR Test Case - Vince], of class [class java.lang.String], could not be converted to [class java.sql.Timestamp]. Internal Exception: java.io.IOException: Error in encoded stream: needed 4 valid base64 characters but only got 3 before EOF, the 10 most recent characters were: "se - Vince"</detail></part><part name="code"><code>null</code></part></bindingFault></bpelFault>
Exception occured when binding was invoked. Exception occured during invocation of JCA binding: "JCA Binding execute of Reference operation 'insert' failed due to: DBWriteInteractionSpec Execute Failed Exception. insert failed. Descriptor name: [F0101.F0101]. Caused by Exception [EclipseLink-3001] (Eclipse Persistence Services - 2.1.3.v20110304-r9073): org.eclipse.persistence.exceptions.ConversionException Exception Description: The object [xs:base64Binary SR Test Case - Vince], of class [class java.lang.String], could not be converted to [class java.sql.Timestamp]. Internal Exception: java.io.IOException: Error in encoded stream: needed 4 valid base64 characters but only got 3 before EOF, the 10 most recent characters were: "se - Vince". Please see the logs for the full DBAdapter logging output prior to this exception. ConnectionFactory property platformClassName was set to org.eclipse.persistence.platform.database.oracle.Oracle10Platform but the database you are connecting to is DB2 UDB for AS/400. Please validate your platformClassName setting. This mismatch can cause the adapter to trigger runtime exceptions or execute SQL that is invalid for the database you are connected to. This exception is considered not retriable, likely due to a modelling mistake. ". The invoked JCA adapter raised a resource exception. Please examine the above error message carefully to determine a resolution.

Just as an FYI for anyone else running into this problem - we have had an SR open with Oracle Support for a while on this and they are working on the issue.
The problem is essentially this:
JDE Oneworld running on iSeries/DB2 utilized CCSID 65535 GRAPHIC data types behind the scenes to handle storage of unicode information in EBCDIC. The JDBC driver handles this conversion for you, returning unicode data as long as you include the "translate binary=true" clause in the JDBC connection string. The driver returns string/nchar data for these CCSID 65535 GRAPHIC fields - they are not returned to the client as binary/clobs.
SOA Suite 10.1.3.4.0 used "Oracle Toplink - 10g Release 3" for object persistence and mappings. In 11g, this was swapped out to use "Eclipse Persistence Services 2.x.x" for the object persistence and mappings. The original Toplink had a default behavior, that if it did not understand the type of the field, it would assume that the driver was handling it and would assume it was a string value, ie it would map it as xs:string and NCHAR. So one could argue (and Oracle support did...) that it was a bug that this ever worked in 10g/OAS. However it was a bug that worked out favorably. Eclipse Persistence Services did not have this bug, and whenever the developers see a GRAPHIC db data type, they assume that the information being returned to the client by the JDBC driver is in xs:base64Binary format.
Bottom line if you do a simple hello world java project to use the jdbc driver and return the value, and examine that in hex, it is returning straight string values, not xs:base64Binary format stuff that need blob conversion code run.
The good news is that Oracle has come up with a solution and is working on a patch for Oracle SOA 11.1.1.6.
As a side note - Vince came up with a temporary workaround to get this working, which involves changing the three generated mappings/schema files manually to update the types, and per a suggestion from a very helpful Oracle technical Sales resource (Mike Loos) was working on an ant script to automate that process.
If you need any more details, post and let us know. Vince or I will update this message when the patch is available.
Jim

Similar Messages

  • DB Adapter - DB2 Graphic Datatype Error

    Hello,
    I am running into an issue with using the DB Adapter to insert into a DB2 database hosted on an AS/400. The column I am attempting to insert into is a graphic datatype which contains character data. The table is a JD Edwards table where character data is stored in graphic columns.
    My development environment consists of the following:
    J Developer 11.1.1.5
    SOA Suite 11.1.1.5
    DB2/400 Version 6, release 1
    JDBC Driver - IBM JT400.jar
    WebLogic 10.3.5
    When I run the composite application in WebLogic, the process faults at the insert statement (error messages are posted below). When I look at my or-mappings.xml file I find the following mapping for the column causing the error:
    <attribute-mapping xsi:type="direct-mapping">
    <attribute-name>absic</attribute-name>
    <field table="F0101" name="ABSIC" xsi:type="column"/>
    <attribute-classification>[B</attribute-classification>
    </attribute-mapping>
    The attribute-classification seems incorrect. In J Developer 10, the attribute-classification was java.lang.String. When I manually change this attribute to java.lang.String, the application works correctly. This same error happens on all graphic datatype columns. At the top of the or-mappings.xml file, there is a reference to eclipselink. In J Developer 10, I think there was a reference to Toplink vs Eclipselink. So it appears that J Developer is now using EclipseLink by default to create the or-mappings.xml file.
    I would rather not have to change the attribute-classification each time I want to create an insert statement. Is there a way to fix/configure how J Developer/EclipseLink creates this mapping? Is it safe to manually edit the or-mappings.xml file?
    Thanks in advance.
    The error messages I receive are:
    <bpelFault><faultType>0</faultType><bindingFault xmlns="http://schemas.oracle.com/bpel/extension"><part name="summary"><summary>Exception occured when binding was invoked. Exception occured during invocation of JCA binding: "JCA Binding execute of Reference operation 'insert' failed due to: DBWriteInteractionSpec Execute Failed Exception. insert failed. Descriptor name: [F0101.F0101]. Caused by Exception [EclipseLink-3001] (Eclipse Persistence Services - 2.1.3.v20110304-r9073): org.eclipse.persistence.exceptions.ConversionException Exception Description: The object [xs:base64Binary SR Test Case - Vince], of class [class java.lang.String], could not be converted to [class java.sql.Timestamp]. Internal Exception: java.io.IOException: Error in encoded stream: needed 4 valid base64 characters but only got 3 before EOF, the 10 most recent characters were: "se - Vince". Please see the logs for the full DBAdapter logging output prior to this exception. ConnectionFactory property platformClassName was set to org.eclipse.persistence.platform.database.oracle.Oracle10Platform but the database you are connecting to is DB2 UDB for AS/400. Please validate your platformClassName setting. This mismatch can cause the adapter to trigger runtime exceptions or execute SQL that is invalid for the database you are connected to. This exception is considered not retriable, likely due to a modelling mistake. ". The invoked JCA adapter raised a resource exception. Please examine the above error message carefully to determine a resolution. </summary></part><part name="detail"><detail> Exception Description: The object [xs:base64Binary SR Test Case - Vince], of class [class java.lang.String], could not be converted to [class java.sql.Timestamp]. Internal Exception: java.io.IOException: Error in encoded stream: needed 4 valid base64 characters but only got 3 before EOF, the 10 most recent characters were: "se - Vince"</detail></part><part name="code"><code>null</code></part></bindingFault></bpelFault>
    Exception occured when binding was invoked. Exception occured during invocation of JCA binding: "JCA Binding execute of Reference operation 'insert' failed due to: DBWriteInteractionSpec Execute Failed Exception. insert failed. Descriptor name: [F0101.F0101]. Caused by Exception [EclipseLink-3001] (Eclipse Persistence Services - 2.1.3.v20110304-r9073): org.eclipse.persistence.exceptions.ConversionException Exception Description: The object [xs:base64Binary SR Test Case - Vince], of class [class java.lang.String], could not be converted to [class java.sql.Timestamp]. Internal Exception: java.io.IOException: Error in encoded stream: needed 4 valid base64 characters but only got 3 before EOF, the 10 most recent characters were: "se - Vince". Please see the logs for the full DBAdapter logging output prior to this exception. ConnectionFactory property platformClassName was set to org.eclipse.persistence.platform.database.oracle.Oracle10Platform but the database you are connecting to is DB2 UDB for AS/400. Please validate your platformClassName setting. This mismatch can cause the adapter to trigger runtime exceptions or execute SQL that is invalid for the database you are connected to. This exception is considered not retriable, likely due to a modelling mistake. ". The invoked JCA adapter raised a resource exception. Please examine the above error message carefully to determine a resolution.

    Resolution: Oracle created a patch for J Developer to solve the problem. Essentially the patch mapped the graphic datatypes to string datatypes. This was the behavior in Oracle 10g. I'm not sure how things are going to work if/when we have a graphic column that actually contains binary data instead of string.
    Patch that I applied: p13591655_111160_Generic.zip

  • Graphic processor error

    I'm using Photoshop CS6 on a Asus I3. When I tried to apply the oil pain filter, I got an error message saying "The filter you were using encountered an unknown graphics processor error that caused an unexpected exit. Check the manufacturer's website for the latest software."
    Adobe Photoshop Version: 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00) x32
    Operating System: Windows 7 32-bit
    Version: 6.1 Service Pack 1
    System architecture: Intel CPU Family:6, Model:5, Stepping:2 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, HyperThreading
    Physical processor count: 2
    Logical processor count: 4
    Processor speed: 2261 MHz
    Built-in memory: 2732 MB
    Free memory: 244 MB
    Memory available to Photoshop: 1664 MB
    Memory used by Photoshop: 60 %
    Image tile size: 128K
    Image cache levels: 4
    OpenGL Drawing: Enabled.
    OpenGL Drawing Mode: Basic
    OpenGL Allow Normal Mode: False.
    OpenGL Allow Advanced Mode: False.
    OpenGL Allow Old GPUs: Not Detected.
    Video Card Vendor: Intel
    Video Card Renderer: Intel(R) HD Graphics
    Display: 2
    Display Bounds:=  top: 0, left: 1366, bottom: 768, right: 2732
    Display: 1
    Display Bounds:=  top: 0, left: 0, bottom: 768, right: 1366
    Video Card Number: 2
    Video Card: Intel(R) HD Graphics
    OpenCL Unavailable
    Driver Version: 8.15.10.2202
    Driver Date: 20100825000000.000000-000
    Video Card Driver: igdumdx32.dll,igd10umd32.dll
    Video Mode: 1366 x 768 x 4294967296 colors
    Video Card Caption: Intel(R) HD Graphics
    Video Card Memory: 1024 MB
    Video Rect Texture Size: 4096
    Video Card Number: 1
    Video Card: NVIDIA GeForce 310M   
    OpenCL Unavailable
    Driver Version: 8.16.11.8964
    Driver Date: 20100327000000.000000-000
    Video Card Driver: nvd3dum.dll,nvwgf2um.dll,nvwgf2um.dll
    Video Mode:
    Video Card Caption: NVIDIA GeForce 310M   
    Video Card Memory: 1024 MB
    Video Rect Texture Size: 4096
    Serial number: 92298657679610430630
    Application folder: C:\Program Files\Adobe\Adobe Photoshop CS6\
    Temporary file path: C:\Users\User\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      C:\, 170.9G, 16.7G free
    Required Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6\Required\
    Primary Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6\Plug-ins\
    Additional Plug-ins folder: not set
    Installed components:
       A3DLIBS.dll   A3DLIB Dynamic Link Library   9.2.0.112  
       ACE.dll   ACE 2012/01/18-15:07:40   66.492997   66.492997
       adbeape.dll   Adobe APE 2012/01/25-10:04:55   66.1025012   66.1025012
       AdobeLinguistic.dll   Adobe Linguisitc Library   6.0.0  
       AdobeOwl.dll   Adobe Owl 2012/02/09-16:00:02   4.0.93   66.496052
       AdobePDFL.dll   PDFL 2011/12/12-16:12:37   66.419471   66.419471
       AdobePIP.dll   Adobe Product Improvement Program   6.0.0.1654  
       AdobeXMP.dll   Adobe XMP Core 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPFiles.dll   Adobe XMP Files 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPScript.dll   Adobe XMP Script 2012/02/06-14:56:27   66.145661   66.145661
       adobe_caps.dll   Adobe CAPS   6,0,29,0  
       AGM.dll   AGM 2012/01/18-15:07:40   66.492997   66.492997
       ahclient.dll    AdobeHelp Dynamic Link Library   1,7,0,56  
       aif_core.dll   AIF   3.0   62.490293
       aif_ocl.dll   AIF   3.0   62.490293
       aif_ogl.dll   AIF   3.0   62.490293
       amtlib.dll   AMTLib   6.0.0.75 (BuildVersion: 6.0; BuildDate: Mon Jan 16 2012 18:00:00)   1.000000
       ARE.dll   ARE 2012/01/18-15:07:40   66.492997   66.492997
       AXE8SharedExpat.dll   AXE8SharedExpat 2011/12/16-15:10:49   66.26830   66.26830
       AXEDOMCore.dll   AXEDOMCore 2011/12/16-15:10:49   66.26830   66.26830
       Bib.dll   BIB 2012/01/18-15:07:40   66.492997   66.492997
       BIBUtils.dll   BIBUtils 2012/01/18-15:07:40   66.492997   66.492997
       boost_date_time.dll   DVA Product   6.0.0  
       boost_signals.dll   DVA Product   6.0.0  
       boost_system.dll   DVA Product   6.0.0  
       boost_threads.dll   DVA Product   6.0.0  
       cg.dll   NVIDIA Cg Runtime   3.0.00007  
       cgGL.dll   NVIDIA Cg Runtime   3.0.00007  
       CIT.dll   Adobe CIT   2.0.5.19287   2.0.5.19287
       CoolType.dll   CoolType 2012/01/18-15:07:40   66.492997   66.492997
       data_flow.dll   AIF   3.0   62.490293
       dvaaudiodevice.dll   DVA Product   6.0.0  
       dvacore.dll   DVA Product   6.0.0  
       dvamarshal.dll   DVA Product   6.0.0  
       dvamediatypes.dll   DVA Product   6.0.0  
       dvaplayer.dll   DVA Product   6.0.0  
       dvatransport.dll   DVA Product   6.0.0  
       dvaunittesting.dll   DVA Product   6.0.0  
       dynamiclink.dll   DVA Product   6.0.0  
       ExtendScript.dll   ExtendScript 2011/12/14-15:08:46   66.490082   66.490082
       FileInfo.dll   Adobe XMP FileInfo 2012/01/17-15:11:19   66.145433   66.145433
       filter_graph.dll   AIF   3.0   62.490293
       hydra_filters.dll   AIF   3.0   62.490293
       icucnv40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       icudt40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       image_compiler.dll   AIF   3.0   62.490293
       image_flow.dll   AIF   3.0   62.490293
       image_runtime.dll   AIF   3.0   62.490293
       JP2KLib.dll   JP2KLib 2011/12/12-16:12:37   66.236923   66.236923
       libeay32.dll   The OpenSSL Toolkit   0.9.8g  
       libifcoremd.dll   Intel(r) Visual Fortran Compiler   10.0 (Update A)  
       libmmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   10.0  
       LogSession.dll   LogSession   2.1.2.1640  
       mediacoreif.dll   DVA Product   6.0.0  
       MPS.dll   MPS 2012/02/03-10:33:13   66.495174   66.495174
       msvcm80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcm90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcp100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcp71.dll   Microsoft® Visual Studio .NET   7.10.3077.0  
       msvcp80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcp90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcr100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcr71.dll   Microsoft® Visual Studio .NET   7.10.3052.4  
       msvcr80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcr90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       pdfsettings.dll   Adobe PDFSettings   1.04  
       Photoshop.dll   Adobe Photoshop CS6   CS6  
       Plugin.dll   Adobe Photoshop CS6   CS6  
       PlugPlug.dll   Adobe(R) CSXS PlugPlug Standard Dll (32 bit)   3.0.0.383  
       PSArt.dll   Adobe Photoshop CS6   CS6  
       PSViews.dll   Adobe Photoshop CS6   CS6  
       SCCore.dll   ScCore 2011/12/14-15:08:46   66.490082   66.490082
       ScriptUIFlex.dll   ScriptUIFlex 2011/12/14-15:08:46   66.490082   66.490082
       shfolder.dll   Microsoft(R) Windows (R) 2000 Operating System   5.50.4027.300  
       ssleay32.dll   The OpenSSL Toolkit   0.9.8g  
       tbb.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406  
       tbbmalloc.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406  
       TfFontMgr.dll   FontMgr   9.3.0.113  
       TfKernel.dll   Kernel   9.3.0.113  
       TFKGEOM.dll   Kernel Geom   9.3.0.113  
       TFUGEOM.dll   Adobe, UGeom©   9.3.0.113  
       updaternotifications.dll   Adobe Updater Notifications Library   6.0.0.24 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   6.0.0.24
       WRServices.dll   WRServices Friday January 27 2012 13:22:12   Build 0.17112   0.17112
       wu3d.dll   U3D Writer   9.3.0.113  
    Required plug-ins:
       3D Studio 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Accented Edges 13.0
       Adaptive Wide Angle 13.0
       ADM 3.11x01
       Angled Strokes 13.0
       Average 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Bas Relief 13.0
       BMP 13.0
       Camera Raw 7.0
       Chalk & Charcoal 13.0
       Charcoal 13.0
       Chrome 13.0
       Cineon 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Clouds 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Collada 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Color Halftone 13.0
       Colored Pencil 13.0
       CompuServe GIF 13.0
       Conté Crayon 13.0
       Craquelure 13.0
       Crop and Straighten Photos 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Crop and Straighten Photos Filter 13.0
       Crosshatch 13.0
       Crystallize 13.0
       Cutout 13.0
       Dark Strokes 13.0
       De-Interlace 13.0
       Dicom 13.0
       Difference Clouds 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Diffuse Glow 13.0
       Displace 13.0
       Dry Brush 13.0
       Eazel Acquire 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Embed Watermark 4.0
       Entropy 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Extrude 13.0
       FastCore Routines 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Fibers 13.0
       Film Grain 13.0
       Filter Gallery 13.0
       Flash 3D 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Fresco 13.0
       Glass 13.0
       Glowing Edges 13.0
       Google Earth 4 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Grain 13.0
       Graphic Pen 13.0
       Halftone Pattern 13.0
       HDRMergeUI 13.0
       IFF Format 13.0
       Ink Outlines 13.0
       JPEG 2000 13.0
       Kurtosis 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Lens Blur 13.0
       Lens Correction 13.0
       Lens Flare 13.0
       Liquify 13.0
       Matlab Operation 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Maximum 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Mean 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Measurement Core 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Median 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Mezzotint 13.0
       Minimum 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       MMXCore Routines 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Mosaic Tiles 13.0
       Multiprocessor Support 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Neon Glow 13.0
       Note Paper 13.0
       NTSC Colors 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Ocean Ripple 13.0
       Oil Paint 13.0
       OpenEXR 13.0
       Paint Daubs 13.0
       Palette Knife 13.0
       Patchwork 13.0
       Paths to Illustrator 13.0
       PCX 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Photocopy 13.0
       Photoshop 3D Engine 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Picture Package Filter 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Pinch 13.0
       Pixar 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Plaster 13.0
       Plastic Wrap 13.0
       PNG 13.0
       Pointillize 13.0
       Polar Coordinates 13.0
       Portable Bit Map 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Poster Edges 13.0
       Radial Blur 13.0
       Radiance 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Range 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Read Watermark 4.0
       Reticulation 13.0
       Ripple 13.0
       Rough Pastels 13.0
       Save for Web 13.0
       ScriptingSupport 13.0
       Shear 13.0
       Skewness 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Smart Blur 13.0
       Smudge Stick 13.0
       Solarize 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Spatter 13.0
       Spherize 13.0
       Sponge 13.0
       Sprayed Strokes 13.0
       Stained Glass 13.0
       Stamp 13.0
       Standard Deviation 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Sumi-e 13.0
       Summation 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Targa 13.0
       Texturizer 13.0
       Tiles 13.0
       Torn Edges 13.0
       Twirl 13.0
       U3D 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Underpainting 13.0
       Vanishing Point 13.0
       Variance 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Variations 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Water Paper 13.0
       Watercolor 13.0
       Wave 13.0
       Wavefront|OBJ 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       WIA Support 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Wind 13.0
       Wireless Bitmap 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       ZigZag 13.0
    Optional and third party plug-ins: NONE
    Plug-ins that failed to load: NONE
    Flash:
       Mini Bridge
       Kuler
    Installed TWAIN devices: NONE

    Hi,
    I notice a couple things from your system info. You don't have the latest updates; Here's more info on what fixes are provided:
    http://blogs.adobe.com/photoshopdotcom/2013/11/photoshop-cs6-13-0-5mac-13-0-1-2win-perpetu al-license-updates-now-available.html
    Second, and more directed at the error message you're seeing, you have 2 video cards which both have older drivers. Since this is a laptop, you may be stuck with having to rely on Asus to publish any updates. Go to Asus first and see if they have updates that are newer. You might also want to check both Intel and nVidia to see if they have drivers that are compatible. Your looking for driver for the Intel HD integrated GPU and the Nvidia GeForce 310M discrete GPU.
    Video Card Number: 2
    Video Card: Intel(R) HD Graphics
    OpenCL Unavailable
    Driver Version: 8.15.10.2202
    Driver Date: 20100825000000.000000-000
    Video Card Driver: igdumdx32.dll,igd10umd32.dll
    Video Mode: 1366 x 768 x 4294967296 colors
    Video Card Caption: Intel(R) HD Graphics
    Video Card Memory: 1024 MB
    Video Rect Texture Size: 4096
    Video Card Number: 1
    Video Card: NVIDIA GeForce 310M   
    OpenCL Unavailable
    Driver Version: 8.16.11.8964
    Driver Date: 20100327000000.000000-000
    Video Card Driver: nvd3dum.dll,nvwgf2um.dll,nvwgf2um.dll
    Video Mode:
    Video Card Caption: NVIDIA GeForce 310M   
    Video Card Memory: 1024 MB
    Video Rect Texture Size: 4096
    regards,
    steve

  • System crashes after waking; problems with distnoted, graphics chip error

    I am running 10.3.9 on a Dual 1 GHz G4, with 1.5 GB SDRAM, a GeForce4 Ti 4600 LCD display, and a LaCie 1394 external drive. I have recently started to put my computer to sleep at night, rather than leaving it running 24 hours a day (I also installed sleepwatcher, to allow me to put my computer to sleep remotely, and anacron, to allow the nightly system maintenance jobs to continue to run). This was working fine for about a week, but for the last two days, when I woke my computer up in the morning, I got kernel panics after a few minutes. First some aspects of the display would start to get mangled (e.g. strange lines appearing, some text that I typed not showing up, icons in the dock looking speckled, etc.), then some applications would stop responding, and then a minute or so later I would get the feared kernel panic message ("You need to restart your computer" in multiple languages).
    This problem only seems to occur after the computer has been asleep for a long time (I've only experienced it after it's been asleep for 12 hours or so, and not when it's only been asleep for a few minutes). The only thing I can think of that I've changed in the last few days is an AppleScript that mounts my external LaCie drive (using "do shell script diskutil mountDisk ...") before backing up my files - using FoldersSynchronizer - then putting my computer to sleep (before I was never UNmounting this drive, so I didn't have to mount it in the AppleScript - I was still using the script to back up the files then put the computer to sleep).
    I have tried running Apple's Disk Utility (both to repair the permissions, and to repair the disk), DiskWarrior (to rebuild my startup disk), fsck, and TechTool Deluxe. None seemed to reveal any major errors except the "Surface Scan" in TechTool, which failed, presumably because of media defects in the disk (but my understanding is that fixing this would require reformatting my disk, something that I only want to do as a last resort).
    My system.log shows the following, from the time I woke my computer to the time I restarted (I've highlighted some suspicious-looking lines). It seems like the problem might either be occurring in distnoted, or with the graphics chip. Any thoughts on how I can determine the cause of the problem?
    Mar 28 10:58:31 localhost kernel: System Sleep
    Mar 28 10:58:38 localhost kernel: System Wake
    Mar 28 10:58:38 localhost kernel: Wake event 0020
    Mar 28 10:58:38 localhost kernel: enableClockSpreading returned with 0
    Mar 28 10:58:38 localhost kernel: AppleNMI unmask NMI
    Mar 28 10:58:38 localhost kernel: Adaptec warning: Resetting SCSI bus.
    Mar 28 10:58:38 localhost kernel: FWOHCI handleSelfIDInt - nodeID not valid (reset bus and retry 1)
    Mar 28 10:58:38 localhost kernel: UniNEnet::monitorLinkStatus - Link is up at 100 Mbps - Half Duplex
    Mar 28 10:58:44 localhost mDNSResponder[186]: mDNSResponder Waking at 1236250
    Mar 28 10:58:44 localhost SymMissedTask - parent[233]: sleeptime recorded: Mon Mar 27 16:05:06 2006
    Mar 28 10:58:44 localhost SymMissedTask - parent[233]: waketime is: Tue Mar 28 10:58:44 2006
    Mar 28 10:59:04 localhost crontab[436]: (root) LIST (root)
    Mar 28 10:59:04 localhost crontab[438]: (root) LIST (sage)
    Mar 28 11:05:09 localhost crashdump: Unable to determine CPSProcessSerNum pid: 151 name: distnoted
    Mar 28 11:05:09 localhost mach_init[2]: Server 0 in bootstrap d03 uid 0: "/usr/sbin/distnoted": exited as a result of signal 10 [pid 151]
    Mar 28 11:05:09 localhost crashdump: Started writing crash report to: /Library/Logs/CrashReporter/distnoted.crash.log
    Mar 28 11:05:09 localhost crashdump: Finished writing crash report to: /Library/Logs/CrashReporter/distnoted.crash.log
    Mar 28 11:05:10 localhost kernel: Graphics chip error! Restarted.
    Mar 28 11:05:15 localhost last message repeated 2 times
    Mar 28 11:05:19 localhost crashdump: Unable to determine CPSProcessSerNum pid: 448 name: distnoted
    Mar 28 11:05:19 localhost crashdump: Started writing crash report to: /Library/Logs/CrashReporter/distnoted.crash.log
    Mar 28 11:05:19 localhost mach_init[2]: Server 180b in bootstrap d03 uid 0: "/usr/sbin/distnoted": exited as a result of signal 10 [pid 448]
    Mar 28 11:05:19 localhost crashdump: Finished writing crash report to: /Library/Logs/CrashReporter/distnoted.crash.log
    Mar 28 11:05:20 localhost kernel: Graphics chip error! Restarted.
    Mar 28 11:05:29 localhost last message repeated 7 times
    Mar 28 11:06:59 localhost last message repeated 12 times
    Mar 28 11:07:01 localhost crashdump: Started writing crash report to: /Users/sacks/Library/Logs/CrashReporter/MouseWorks Background.crash.log
    Mar 28 11:07:01 localhost kernel: Graphics chip error! Restarted.
    Mar 28 11:07:02 localhost crashdump: Finished writing crash report to: /Users/sacks/Library/Logs/CrashReporter/MouseWorks Background.crash.log
    Mar 28 11:07:11 localhost kernel: Graphics chip error! Restarted.
    Mar 28 11:07:14 localhost last message repeated 2 times
    Mar 28 11:07:24 localhost kernel: NVKernel::initializeChannel time out.
    Mar 28 11:08:43 localhost syslogd: restart
    Yesterday's crash looks similar, except that the Graphics chip error occurs 13 seconds before the distnoted error (rather than after the distnoted error), and rather than a crash of "MouseWorks Background" there was a crash of "WindowServer". A log file from a few days ago, when I woke my computer up without a crash, has one line that is now absent: Mar 23 08:48:43 nitrogen kernel: AFPSleepWakeHandler: waking up.
    panic.log contains:
    Tue Mar 28 11:08:55 2006
    Unresolved kernel trap(cpu 1): 0x300 - Data access DAR=0x000000003AA4C34E PC=0x000000000099E54C
    Latest crash info for cpu 1:
    Exception state (sv=0x2CD3AC80)
    PC=0x0099E54C; MSR=0x00009030; DAR=0x3AA4C34E; DSISR=0x40000000; LR=0x0099EFA0; R1=0x19D63AC0; XCP=0x0000000C (0x300 - Data access)
    Backtrace:
    0x0099FF28 0x0099EFA0 0x00997468 0x00988020 0x0027E650 0x00280324 0x0007AC48 0x00021668
    0x0001BCE8 0x0001C0F0 0x00094318 0x00000000
    Kernel loadable modules in backtrace (with dependencies):
    com.apple.GeForce(3.4.2)@0x981000
    dependency: com.apple.iokit.IOPCIFamily(1.4)@0x4b3000
    dependency: com.apple.iokit.IOGraphicsFamily(1.3.5)@0x4c6000
    dependency: com.apple.NVDAResman(3.4.2)@0x4fc000
    dependency: com.apple.iokit.IONDRVSupport(1.3.5)@0x4e6000
    Proceeding back via exception chain:
    Exception state (sv=0x2CD3AC80)
    previously dumped as "Latest" state. skipping...
    Exception state (sv=0x2CDA8000)
    PC=0x900078B8; MSR=0x0200F030; DAR=0xE0FA8000; DSISR=0x42000000; LR=0x90007438; R1=0xBFFEE3D0; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 7.9.0:
    Wed Mar 30 20:11:17 PST 2005; root:xnu/xnu-517.12.7.obj~1/RELEASE_PPC
    panic(cpu 1): 0x300 - Data access
    Latest stack backtrace for cpu 1:
    Backtrace:
    0x00083498 0x0008397C 0x0001EDA4 0x00090C38 0x0009402C
    Proceeding back via exception chain:
    Exception state (sv=0x2CD3AC80)
    PC=0x0099E54C; MSR=0x00009030; DAR=0x3AA4C34E; DSISR=0x40000000; LR=0x0099EFA0; R1=0x19D63AC0; XCP=0x0000000C (0x300 - Data access)
    Backtrace:
    0x0099FF28 0x0099EFA0 0x00997468 0x00988020 0x0027E650 0x00280324 0x0007AC48 0x00021668
    0x0001BCE8 0x0001C0F0 0x00094318 0x00000000
    Kernel loadable modules in backtrace (with dependencies):
    com.apple.GeForce(3.4.2)@0x981000
    dependency: com.apple.iokit.IOPCIFamily(1.4)@0x4b3000
    dependency: com.apple.iokit.IOGraphicsFamily(1.3.5)@0x4c6000
    dependency: com.apple.NVDAResman(3.4.2)@0x4fc000
    dependency: com.apple.iokit.IONDRVSupport(1.3.5)@0x4e6000
    Exception state (sv=0x2CDA8000)
    PC=0x900078B8; MSR=0x0200F030; DAR=0xE0FA8000; DSISR=0x42000000; LR=0x90007438; R1=0xBFFEE3D0; XCP=0x00000030 (0xC00 - Sp
    The distnoted.crash.log refers to the following exception:
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x00000006
    (I can post this whole log if it would be helpful.)
    Any thoughts on what might be causing this problem? I will continue to test the effects of changing various aspects of my configuration, but since I can only get the problem to occur once a day (after my computer has been asleep for a while), it might take me a few days or weeks to track the problem down through blind trial-and-error.
    Thanks!
    Dual 1 GHz G4   Mac OS X (10.3.9)   1.5 GB SDRAM, GeForce4 Ti 4600 LCD display, LaCie 1394 external drive

    After a little experimentation, I've managed to narrow the problem down a little, but still haven't resolved it. My computer still crashes almost every time I wake it up after a long sleep (multiple hours). Things work fine for a few minutes, but then some aspects of the display start to get mangled (e.g. strange lines appearing, text becoming distorted, etc.), then some applications start crashing and the system hangs. Sometimes I get a kernel panic, but not always - but I always need to reboot to solve the problem.
    The errors in the system log files differ from crash to crash, but the one thing that seems to be consistent is that I get a "Graphics chip error". Is this usually a hardware problem, or can it be due to a software problem? Sometimes this graphics chip error is the first error to occur, although sometimes an application will crash a few seconds before the graphics chip error is recorded in the system.log.
    In my original post, I suggested that the problem might be due to an AppleScript that mounts an external drive. I have since determined that this is NOT the cause of the problem.
    Any thoughts on what might be going on?
    Here's the relevant part of the system log file from today's crash:
    From /var/log/system.log:
    Mar 31 13:52:18 nitrogen kernel: System Sleep
    Mar 31 13:52:24 nitrogen kernel: System Wake
    Mar 31 13:52:24 nitrogen kernel: Wake event 0020
    Mar 31 13:52:24 nitrogen kernel: enableClockSpreading returned with 0
    Mar 31 13:52:24 nitrogen kernel: AppleNMI unmask NMI
    Mar 31 13:52:24 nitrogen kernel: Adaptec warning: Resetting SCSI bus.
    Mar 31 13:52:24 nitrogen kernel: FWOHCI handleSelfIDInt - nodeID not valid (reset bus and retry 1)
    Mar 31 13:52:24 nitrogen kernel: UniNEnet::monitorLinkStatus - Link is up at 100 Mbps - Half Duplex
    Mar 31 13:52:30 nitrogen mDNSResponder[159]: mDNSResponder Waking at 19764350
    Mar 31 13:52:30 nitrogen mDNSResponder[159]: -1: DNSServiceRegister("Bill's Mostly Celtic Music", "daap.tcp.", "local.", 3689) failed: Client id -1
    invalid (-65549)
    Mar 31 13:52:30 nitrogen mDNSResponder[159]: -1: DNSServiceRegister("iTunesCtrl5DC89B66EC5DD60B", "dacp.tcp.", "local.", 3689) failed: Client id
    -1 invalid (-65549)
    Mar 31 13:52:30 nitrogen SymMissedTask - parent[240]: sleeptime recorded: Thu Mar 30 17:58:59 2006
    Mar 31 13:52:30 nitrogen SymMissedTask - parent[240]: waketime is: Fri Mar 31 13:52:30 2006
    Mar 31 13:52:50 nitrogen crontab[659]: (root) LIST (root)
    Mar 31 13:52:50 nitrogen crontab[661]: (root) LIST (sage)
    Mar 31 13:57:07 nitrogen kernel: Graphics chip error! Restarted.
    Mar 31 13:57:24 nitrogen last message repeated 19 times
    Mar 31 13:57:24 nitrogen crashdump: Started writing crash report to: /Library/Logs/CrashReporter/WindowServer.crash.log
    Mar 31 13:57:24 nitrogen crashdump: Finished writing crash report to: /Library/Logs/CrashReporter/WindowServer.crash.log
    Mar 31 13:57:25 nitrogen kernel: Graphics chip error! Restarted.
    Mar 31 13:57:31 nitrogen last message repeated 42 times
    Mar 31 14:00:00 nitrogen CRON[667]: (root) CMD ("/Library/Application Support/Symantec/Scheduler/SymSecondaryLaunch.app/Contents/schedLauncher" 1 "/Applications/Symantec Solutions/LiveUpdate.app/Contents/MacOS/LiveUpdate" " " "oapp" "aevt" "exAG" "-update LUdf -liveupdatequiet YES -liveupdateautoquit YES")
    Mar 31 14:00:00 nitrogen /Library/Application Support/Symantec/Scheduler/SymSecondaryLaunch.app/Contents/schedLauncher[667]: launch for id = 1 event = oapp result = 0
    aped[186]: Attach denied: super-user process, for LiveUpdate[674]
    aped[186]: Attach denied: super-user process, for loginwindow[686]
    aped[186]: Attach denied: super-user process, for SecurityAgent[690]
    aped[186]: Attach denied: super-user process, for IRTool[710]
    aped[186]: Attach denied: super-user process, for loginwindow[836]
    aped[186]: Attach denied: super-user process, for SecurityAgent[839]
    Mar 31 14:01:55 nitrogen sudo: sacks : TTY=ttyp1 ; PWD=/private/var/log ; USER=root ; COMMAND=/sbin/shutdown -r now
    Mar 31 14:01:55 nitrogen shutdown: reboot by sacks:
    Mar 31 14:01:57 nitrogen syslogd: exiting on signal 15
    Mar 31 14:08:44 localhost syslogd: restart
    Dual 1 GHz G4   Mac OS X (10.3.9)   1.5 GB SDRAM, GeForce4 Ti 4600 LCD display, LaCie 1394 external drive

  • Inconsistent datatypes error when inserting into a object

    I am trying to insert some test data into the table emp.I have managed to succesfully create the objects and types but when I try to insert into the emp table I get a inconsistent datatypes error however I have checked the datatypes and they all seem fine. Can anyone help me.
    thanks
    CREATE OR REPLACE TYPE Address_T AS object
    (ADDR1                VC2_40,
    ADDR2               VC2_40,
    CITY_TX          VC2_40,
    COUNTY_CD          VC2_40,
    POST_CD          VC2_40);
    CREATE OR REPLACE TYPE PERSON_T AS OBJECT (
    LNAME_TX           NAME_T,
    FNAME_TX           NAME_T,
    BIRTH_DATE          DATE,
    TELEPHONE          VC2_20,
    EMAIL               VC2_40);
    CREATE OR REPLACE TYPE EMP_T AS OBJECT (
    EMP_ID     NUMBER (10),
    PERSON     PERSON_T,
    ADDRESS ADDRESS_T,
    HIRE_DATE DATE)
    CREATE TABLE EMP OF EMP_T
    (EMP_ID NOT NULL PRIMARY KEY);
    INSERT INTO EMP VALUES (1,           
    PERSON_T('PETCH',
    'GAVIN',
    '23-JAN-80',
    '(01964)550700',
    '[email protected]'),
    ADDRESS_T('67 CANADA',
    'WALKINGTON',
    'BEVERLEY',
    'EAST YORKSHIRE',
    'HU17 7RL'),
    '11-FEB-02'
    ERROR at line 1:
    ORA-00932: inconsistent datatypes

    Gavin,
    What is your VC2_40 and NAME_T type definition? Your insert used these as varchar2, which is a built-in type not a user-defined type. If you explicitly define these to be varchar2's, the insert statement works fine.
    Regards,
    Geoff
    I am trying to insert some test data into the table emp.I have managed to succesfully create the objects and types but when I try to insert into the emp table I get a inconsistent datatypes error however I have checked the datatypes and they all seem fine. Can anyone help me.
    thanks
    CREATE OR REPLACE TYPE Address_T AS object
    (ADDR1                VC2_40,
    ADDR2               VC2_40,
    CITY_TX          VC2_40,
    COUNTY_CD          VC2_40,
    POST_CD          VC2_40);
    CREATE OR REPLACE TYPE PERSON_T AS OBJECT (
    LNAME_TX           NAME_T,
    FNAME_TX           NAME_T,
    BIRTH_DATE          DATE,
    TELEPHONE          VC2_20,
    EMAIL               VC2_40);
    CREATE OR REPLACE TYPE EMP_T AS OBJECT (
    EMP_ID     NUMBER (10),
    PERSON     PERSON_T,
    ADDRESS ADDRESS_T,
    HIRE_DATE DATE)
    CREATE TABLE EMP OF EMP_T
    (EMP_ID NOT NULL PRIMARY KEY);
    INSERT INTO EMP VALUES (1,           
    PERSON_T('PETCH',
    'GAVIN',
    '23-JAN-80',
    '(01964)550700',
    '[email protected]'),
    ADDRESS_T('67 CANADA',
    'WALKINGTON',
    'BEVERLEY',
    'EAST YORKSHIRE',
    'HU17 7RL'),
    '11-FEB-02'
    ERROR at line 1:
    ORA-00932: inconsistent datatypes

  • Windows 7 graphics card errors with games - how do I get/update drivers??

    Just recently installed windows 7 with bootcamp and having some issues with games and screen savers. Most of the screen savers that come with 7 say I need a video card compatible with Direct3D. Secondly, 2 games that I want to play (minecraft and terraria) both give me graphics card errors. Minecraft works fine on the OS X side but says I should update my graphics card drivers. Terraria says the graphics card does not support Direct3D. How/where do I get these drivers or how/where do I update them? The graphics card I have is NVIDIA GeForce 9400M, running on a MacBook Pro 13" Mid 2009 model.

    And you tried the Nvidia drivers, no.
    Windows 64-bit:
    http://www.nvidia.com/object/notebook-win7-winvista-64bit-275.27-beta-driver.htm l

  • ADAPTER.HTTP_EXCEPTION, HTTP 500 Internal Server Error, in Receiver soap A

    Greetings All,
                         In my scenario i am calling external service of SFDC using receiver soap adapter but i am facing below error in the response.
    ADAPTER.HTTP_EXCEPTION, HTTP 500 Internal Server Error
    I am creating the soap structure/envelope using Java mapping since need to add additional parameter in soap header.
    I am setting the URL in java UDF using parameter TServerLocation.
    In comm channel checked "do not use soap envlope" also set the format to text/xml using MessageTransformBean.
    The service was working fine when tested in SoapUI tool.
    Looking forword for your help and will be appreciated.
    Thanks,
    Sandip

    Hello Sandip, I hope you are doing fine!
    I`m not sure if you are using a sync or async scenario...
    The behavior that you describe is the expected behavior for SOAP receiver adapter in nosoap mode, asynchronous case.
    The explanation that lies behind it is that in nosoap mode the bahavior is just similar to pure HTTP communication. An HTTP 4/5 error received from the target server is treated as HTTP internal error and logged into AFW as an error. The message in an asynchronous scenario without acknowledgements is normally seen as successful on IE side as it is successfully sent to the target system. It can be even successfully consumed by the target webservice, but for amo other reason, the HTTP request from SAP PI to the target system returns HTTP 500 error.
    If you ask for system delivery acknowledgements, you should get a non-successful delivery acknowledgement.
    In synchrnous scenarios, when a response is expected, the behavior is different.
    If this is a sync scenario, there is an official patch released on the service marketplace. SAP Note 1533195 is released.
    In addition to deploying the patch, apply the additional configuration steps. As per this note, for the default module
    sap.com/com.sap.aii.af.soapadapter/XISOAPAdapterBean
    you will need to set:
    Module Key  = soap
    Parameter Name = noSOAPMakeSysErrFromResponseFault
    Parameter Value = false
    If you need to bypass the HTTP errors in the communication with the target system, you need to apply note 1055678.
    To apply it, just add  for the default module
    sap.com/com.sap.aii.af.soapadapter/XISOAPAdapterBean in your receiver
    channel, Modules tab the following:
    Module Key  = soap
    Parameter Name = XMBWS.NoSOAPIgnoreStatusCode
    Parameter Value = false
    If you need any SOAP fault related behavior or any other SOAP related feature, you should setup the channel to run normal SOAP mode, since as already mentioned nosoap mode is used now.
    In addition, check note:
      856597 - FAQ: XI 3.0 / PI 7.0 / PI 7.1 SOAP Adapter
    section "1. Sender Connection"
    Q: I get a server error "500 Internal Servler Error" from the
    adapter's servlet. What went wrong?
    and get the trace to give you more details of the error.
    One more thing, VERY IMPORTANT.
    I STRONLGY recommend you to update all XI-PI components to latest patch available in the Service Marketplace. Thery are:
    XITOOLS, XIESR, XIAF, XIAFC, MESSAGING, XIGUI. Some of them might not be present depending on the release of you system. e.g: 3.0, 7.0, 7.1
    I hope this helps you.
    Cheers
    Jorge Eidelwein

  • WSRM Adapter replaced with soap in PO7.4. Getting error "Response message contains an errorXIAdapter/HTTP/ADAPTER.HTTP_EXCEPTION - HTTP 500 Internal Server Error"

    Hello All,
    We have scenario proxy->pi->webservice. In older versions of PI system they used wsrm adapter at receiver side and it's working fine.
    Receiver interface is asynchronous. So no response structute is present and receiver service is business component(since receiver is a third party).
    During migration, we have replaced the receiver adapter with SOAP adapter and used message protocol as SOAP 1.1 but the message is failing and in communication channel it is showing error "Response message contains an errorXIAdapter/HTTP/ADAPTER.HTTP_EXCEPTION - HTTP 500 Internal Server Error". In this case the receiver interface is stateless xi 3.0 compatible(re using the old), after changing it to just stateless also issue persists.
    In target url field if i prefix the url with "http" then above mentioned error is occurring otherwise if i use the hostname:port/path.. then it is giving error
    "soap: Call failed: com.sap.aii.af.sdk.xi.srt.BubbleException: Unsupported protocol". So maintaing the url as http://hostname:port/pat.....
    As in old channel wsrm channel there is no userid and password, i haven't given any userid/pwd in receiver channel.
    used the bean sap.com/com.sap.aii.af.soapadapter/XISOAPAdapterBean with  parameters
    Module Key  =  soap
      Parameter Name  =  noSOAPMakeSysErrFromResponseFault
    Parameter Value  =  false
    and
    xmbws.No SOAPIgnoreStatus = true
    but not successful.
    Please help me. I got stcuk here.

    Hello Jannus,
    The connectivity is working fine. Network team has confirmed it. I doubt that any strucutre(header) difference might be present in message when sending with wsrm adapter compared to sending with soap adapter.
    Please let me know the exact difference between soap and wsrm functionality in receiving end.
    By considering the structure issue, i have checked the "do not use soap envelope" check box, then i got error "Response message contains an errorXIAdapter/HTTP/ADAPTER.HTTP_EXCEPTION - HTTP 415 Unsupported Media Type"
    Then i used message transform bean, but not successful.
    Regards,
    Ch.Venkat.

  • 'com.sap.aii.adapter.file.ftp.FTPEx: 501 Unknown error

    Hello ,
    I am facing an error in communication channel while trying to post the file to the FTP server,
    The error is " Message processing failed. Cause: com.sap.engine.interfaces.messaging.api.exception.MessagingException: An error occurred while connecting to the FTP server '10.100.5.00:20'. The FTP server returned the following error message: 'com.sap.aii.adapter.file.ftp.FTPEx: 501 Unknown error'. For details, contact your FTP server vendor"
    Please could you advice what need to be done to resolve this.
    Thanks ,
    Siva

    Hi ,
    FTP 501 Error is: "Syntax error in parameters or arguments"
    Also, i see that the ftp address and port mentioned in your case is:
    10.100.5.00:20
    Hence, i see three probable issues here.
    1. FTP Port :
    Just check if the FTP server's port number '20' mentioned in your case is open as this is the data connection port. Moreover, the default port mentioned while creating a file channel is 21. Just check about the port number '20' with the FTP server administrator if this port number is opened and functioning.
    2. FTP server address:
    Also, try giving your FTP Server's address as 10.100.5.0
    3. Also, check if the FTP server is reachable from the PI Server by using a simple ping command.

  • XIAdapter/HTTP/ADAPTER.HTTP_EXCEPTION - HTTP 500 Internal Server Error

    I'm getting this message in RWB when trying to send an order:
    Message processing failed. Cause: com.sap.aii.af.ra.ms.api.RecoverableException: SOAP: response message contains an error XIAdapter/HTTP/ADAPTER.HTTP_EXCEPTION - HTTP 500 Internal Server Error
    Weird thing is, other orders have been successfully to the same partner.
    Is this something on my side or the receivers side?
    What does HTTP 500 Internal Server Error mean and how to fix?
    Thanks,
    Jeff

    More info on this problem:
    Discovered that the HTTP 500 error only occurs when a "change" file is sent:
    I send an order create file to a partner using a SOAP adapter. They receive it successfully.
    I make a change to the sales order and send that file. It uses the same Config Scenario, receiver determination, receiver agreement and comm. Channel.
    But this file shows an HTTP 500 error in the RWB.
    I send it right after the first order create file, so no overloading is happening, etc.
    Conenctivity to the url is fine because the create file went through.
    I don't know what else it could be. Any other info/log in RWB to look at to help decipher the error?

  • How run reports JDE from BPEL using the Adapter for JD Edwards OneWorld?

    Hi,
    I need to load on line a lot of invoices from Bpel to JD Edwards using the Adapter for JD Edwards OneWorld (iWay).
    Using Business Functions as Web Services it wasn't a not good idea because of this Adapter is poorly constructed and doesn't allow simultaneous loads, a memory leak occurs on JDE server. And to load them invoice by invoice is very slow.
    A choice is to use Z tables and load them through schedules, but Bpel loses total control.
    I heard that I can run processes reports that enable to extract the data from the Z tables and load them into JDE.
    How can I execute reports JD Edwards invoked from BPEL using the Adapter for JD Edwards OneWorld?
    Thanks
    Francisco

    Hi Dario,
    BizTalk 2013 R2 (JDE LOB Adapter) is not tested against latest release of JDE EnterpriseOne 9.1.
    It only supports with 8.12 and 9.0 version of JDE.
    Refer the discussion here:
    Integrating BizTalk with JDE EnterpriseOne
    Rachit
    Please mark as answer or vote as helpful if my reply does

  • Oil Paint Filter "unknown graphics processor error"

    When I try to use the Oil Paint filter in Photoshop, I get this error message:
    "The filter you were using encountered an unknown graphics processor error that caused an unexpected exit. Check the manufacturer's website for the latest software."
    I have updated both my system and Photoshop. When I'm at work on a newer machine the filter works great, but I've been working from home on a macbook from 2007 and it doesn't work. I can't afford to buy an ENTIRELY NEW laptop simply to use this filter.
    Below are my mac and graphic card specs - is there anything I can do?
    Model Name:
    MacBook
      Model Identifier:
    MacBook4,1
      Processor Name:
    Intel Core 2 Duo
      Processor Speed:
    2.1 GHz
      Number Of Processors:
    1
      Total Number Of Cores:
    2
      L2 Cache:
    3 MB
      Memory:
    4 GB
      Bus Speed:
    800 MHz
      Boot ROM Version:
    MB41.00C1.B00
      SMC Version (system):
    1.31f1
      Serial Number (system):
    W8835A9X0P0
      Hardware UUID:
    278DEAE8-4839-53CC-9DCB-ED08A646BF70
      Sudden Motion Sensor:
      State:
    Enabled
    Intel GMA X3100:
      Chipset Model:    GMA X3100
      Type:    GPU
      Bus:    Built-In
      VRAM (Total):    144 MB
      Vendor:    Intel (0x8086)
      Device ID:    0x2a02
      Revision ID:    0x0003
      Displays:
    Color LCD:
      Resolution:    1280 x 800
      Pixel Depth:    32-Bit Color (ARGB8888)
      Main Display:    Yes
      Mirror:    Off
      Online:    Yes
      Built-In:    Yes
    Display Connector:
      Status:    No Display Connected

    Photoshop CS6's GPU requirements are here along with discussion of the Oil Paint filter.
    http://helpx.adobe.com/photoshop/kb/photoshop-cs6-gpu-faq.html
    When you go to Preferences > Performance and look at the GPU settings, what is the mode? Basic, Normal, or Advanced?
    Perhaps you can try ratcheting down the settings,but I somehow sense your video card is not supported and your vram is below the 256MB minimum.
    Gene

  • Unknown Graphics Processor Error

    When I try to use the Oil Paint Tool, I get the above error.  There is a strange history here.  Several months ago when I had this problem, I read and followed the advice given in an earlier forum, and downloaded the ATI driver Tool and updated my drivers.  I was then able to use the Oil Paint Tool for quite some time.  Then I had to have the hard drive replaced.  After downloading CS6 again, I had the same issue.  So I went through the same process with the ATI driver tool, but this time it doesn't work.  I have a Dell 1569 with Intel HD Graphics card which is supposedly up to date.  Can you think of anything else that I might do?  thanks, Jane

    I downloaded the driver tool off the ATI site.  It diagnosed which Intel drivers needed updating.  I don't have an ATI card.  I have an Intel (R) HD graphics card.
    There are two lines (from the scan) which don't seem to download:  Intel (R)5 series/3400 series Series Chipset family PCI express root port1-3B42 and  Intel (R)5 series/3400 Series Chipset Family SMBus Controller-3B30.  I don't know what those two mean if anything.  I'm not a techie, so don't understand if I need them.  Besides they don't seem to download, anyway.  Hope I'm not screwing things up worse than they already were.
    J
    Date: Tue, 11 Sep 2012 16:40:43 -0600
    From: [email protected]
    To: [email protected]
    Subject: Unknown Graphics Processor Error
        Re: Unknown Graphics Processor Error
        created by Curt Y in Photoshop General Discussion - View the full discussion
    magicshell wrote:  So I went through the same process with the ATI driver tool, but this time it doesn't work.   I have  Intel HD Graphics card which is supposedly up to date.   These two statements-342 says to me you must have an ATI card and an Intel graphics card.  What am I missing?
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4691393#4691393
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4691393#4691393. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Photoshop General Discussion by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Kernel Panic -- Graphics chip error! Restarted.

    Anyone out there seen ridiculous gfx card/kernel errors with Adobe CS2? My machine runs weird every time that I use Photoshop or Illustrator. Batches don't finish, and I have even been getting kernel panics lately. I would post it to Adobe, but kernel panics and hardware errors fall into Apple's domain. Hardware/Software/OS is fine for all but CS2, including opengl/coreimage/corevideo apps. I have a quad g5 with an nvidia 6800 GT gfx card with dual cinema displays and a wacom tablet. OSX is up-to-date, as is CS2.
    Here's a snippet from my rather scary system log for yesterday, when I was attempting to run a batch process in illustrator...my logs are peppered with graphics chip errors every time that I use CS2. Any options other than wait for a new gfx driver from Apple or keep re-running the hardware tests?
    Feb 5 03:15:01 bourbon cp: error processing extended attributes: Operation not permitted
    Feb 5 08:55:06 bourbon ntpd[158]: time reset 0.443060 s
    Feb 5 18:27:49 bourbon kernel[0]: Graphics chip error! Restarted.
    Feb 5 18:27:51 bourbon kernel[0]: Graphics chip error! Restarted.
    Feb 5 18:27:51 bourbon kernel[0]: Graphics chip error! Restarted.
    Feb 5 18:28:19 bourbon /Applications/Adobe Illustrator CS2/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator: Emergency Save Failed
    Feb 5 22:59:03 bourbon kernel[0]: Graphics chip error! Restarted.
    Feb 5 22:59:44 bourbon kernel[0]: Graphics chip error! Restarted.
    Feb 5 22:59:45 bourbon kernel[0]: Graphics chip error! Restarted.
    Feb 5 22:59:52 bourbon kernel[0]: Graphics chip error! Restarted.
    Feb 5 22:59:56 bourbon kernel[0]: Graphics chip error! Restarted.
    Feb 5 22:59:56 bourbon kernel[0]: Graphics chip error! Restarted.
    Feb 5 22:59:58 bourbon kernel[0]: Graphics chip error! Restarted.
    Feb 5 22:59:58 bourbon kernel[0]: Graphics chip error! Restarted.
    Feb 5 23:00:04 bourbon kernel[0]: Graphics chip error! Restarted.
    Feb 5 23:00:06 bourbon kernel[0]: Graphics chip error! Restarted.
    Feb 5 23:00:06 bourbon kernel[0]: Graphics chip error! Restarted.
    Feb 5 23:00:06 bourbon kernel[0]: Graphics chip error! Restarted.
    Feb 5 23:00:06 bourbon kernel[0]: Graphics chip error! Restarted.
    Feb 5 23:00:07 bourbon kernel[0]: Graphics chip error! Restarted.
    Feb 5 23:00:07 bourbon kernel[0]: Graphics chip error! Restarted.
    Feb 5 23:00:08 bourbon kernel[0]: Graphics chip error! Restarted.
    Feb 5 23:00:12 bourbon kernel[0]: Graphics chip error! Restarted.
    Feb 5 23:00:12 bourbon kernel[0]: Graphics chip error! Restarted.
    Feb 5 23:00:12 bourbon kernel[0]: Graphics chip error! Restarted.
    Feb 5 23:00:12 bourbon kernel[0]: Graphics chip error! Restarted.
    Feb 5 23:00:15 bourbon kernel[0]: Graphics chip error! Restarted.
    Feb 5 23:00:16 bourbon kernel[0]: Graphics chip error! Restarted.
    Feb 5 23:00:19 bourbon kernel[0]: Graphics chip error! Restarted.
    Feb 5 23:00:20 bourbon kernel[0]: Graphics chip error! Restarted.
    Feb 5 23:00:21 bourbon kernel[0]: Graphics chip error! Restarted.
    Feb 5 23:00:21 bourbon kernel[0]: Graphics chip error! Restarted.
    Feb 5 23:00:22 bourbon kernel[0]: Graphics chip error! Restarted.
    Feb 5 23:00:22 bourbon kernel[0]: Graphics chip error! Restarted.
    Feb 5 23:00:22 bourbon kernel[0]: Graphics chip error! Restarted.
    Feb 5 23:00:23 bourbon kernel[0]: Graphics chip error! Restarted.
    Feb 5 23:00:23 bourbon kernel[0]: Graphics chip error! Restarted.
    Feb 5 23:00:23 bourbon kernel[0]: Graphics chip error! Restarted.
    Feb 5 23:00:24 bourbon kernel[0]: Graphics chip error! Restarted.
    Feb 5 23:00:25 bourbon kernel[0]: Graphics chip error! Restarted.
    Feb 5 23:00:25 bourbon kernel[0]: Graphics chip error! Restarted.
    Feb 5 23:00:25 bourbon kernel[0]: Graphics chip error! Restarted.
    Feb 5 23:00:25 bourbon kernel[0]: Graphics chip error! Restarted.
    Feb 5 23:00:25 bourbon kernel[0]: Graphics chip error! Restarted.
    Feb 5 23:00:27 bourbon kernel[0]: Graphics chip error! Restarted.
    Feb 5 23:00:27 bourbon kernel[0]: Graphics chip error! Restarted.
    Feb 5 23:00:28 bourbon kernel[0]: Graphics chip error! Restarted.
    Feb 5 23:00:30 bourbon kernel[0]: Graphics chip error! Restarted.
    Feb 5 23:00:31 bourbon kernel[0]: Graphics chip error! Restarted.
    Feb 5 23:00:32 bourbon kernel[0]: Graphics chip error! Restarted.
    Feb 5 23:00:35 bourbon /Applications/Adobe Illustrator CS2/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator: Emergency Save Failed
    Feb 5 23:37:58 bourbon crashdump[828]: Adobe Illustrator crashed
    PowerMac G5   Mac OS X (10.4.8)  
    PowerMac G5   Mac OS X (10.4.8)   CS2, nvidia 6800 GT, kernel panic

    Here are the relevant snippets from panic log...I got a new wacom tablet in January. From the logs, it looks like 1 USB panic and 2 gfx driver panics this year....
    Sun Jan 14 18:41:43 2007
    panic(cpu 3 caller 0x0003FFE8): zalloc: "ipc kmsgs" (3061024 elements) retry fail 3
    Latest stack backtrace for cpu 3:
    Backtrace:
    0x00095138 0x00095650 0x00026898 0x0003FFE8 0x0001A308 0x0001AA8C 0x000295B0 0x002E84C4
    0x002BD140 0x002BD294 0x002BF230 0x00446A0C 0x004D0E08 0x002EB00C 0x0008C318 0x0002921C
    0x000233F8 0x000ABAAC 0x6B3C2F73
    Kernel loadable modules in backtrace (with dependencies):
    com.apple.iokit.IOUSBUserClient(2.5.0)@0x4cc000
    dependency: com.apple.iokit.IOUSBFamily(2.5.6)@0x43e000
    com.apple.iokit.IOUSBFamily(2.5.6)@0x43e000
    Proceeding back via exception chain:
    Exception state (sv=0x60BBF280)
    PC=0x9000AB48; MSR=0x0000D030; DAR=0x36CE7000; DSISR=0x42000000; LR=0x9000AA9C; R1=0xF0080A20; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.8.0: Fri Sep 8 17:18:57 PDT 2006; root:xnu-792.12.6.obj~1/RELEASE_PPC
    Sun Jan 14 22:14:00 2007
    Unresolved kernel trap(cpu 3): 0x300 - Data access DAR=0x000000007970E34E PC=0x0000000000939D3C
    Latest crash info for cpu 3:
    Exception state (sv=0x60C3BA00)
    PC=0x00939D3C; MSR=0x00009030; DAR=0x7970E34E; DSISR=0x40000000; LR=0x00939D24; R1=0x4684BB40; XCP=0x0000000C (0x300 - Data access)
    Backtrace:
    0x00000000 0x00949814 0x00922EE0 0x002E8A34 0x002EA900 0x0008BEC4
    0x0002921C 0x000233F8 0x000ABAAC 0x4D697861
    backtrace terminated - frame not mapped or invalid: 0xBFFFE050
    Kernel loadable modules in backtrace (with dependencies):
    com.apple.GeForce(4.1.8)@0x917000
    dependency: com.apple.iokit.IOPCIFamily(1.7)@0x45f000
    dependency: com.apple.iokit.IOGraphicsFamily(1.4.1)@0x714000
    dependency: com.apple.iokit.IONDRVSupport(1.4.1)@0x738000
    dependency: com.apple.NVDAResman(4.1.8)@0x74e000
    Proceeding back via exception chain:
    Exception state (sv=0x60C3BA00)
    previously dumped as "Latest" state. skipping...
    Exception state (sv=0x60988500)
    PC=0x9000AB48; MSR=0x0200F030; DAR=0x3715D000; DSISR=0x42000000; LR=0x9000AA9C; R1=0xBFFFE050; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.8.0: Fri Sep 8 17:18:57 PDT 2006; root:xnu-792.12.6.obj~1/RELEASE_PPC
    panic(cpu 3 caller 0xFFFF0003): 0x300 - Data access
    Latest stack backtrace for cpu 3:
    Backtrace:
    0x00095138 0x00095650 0x00026898 0x000A7E04 0x000AB780
    Proceeding back via exception chain:
    Exception state (sv=0x60C3BA00)
    PC=0x00939D3C; MSR=0x00009030; DAR=0x7970E34E; DSISR=0x40000000; LR=0x00939D24; R1=0x4684BB40; XCP=0x0000000C (0x300 - Data access)
    Backtrace:
    0x00000000 0x00949814 0x00922EE0 0x002E8A34 0x002EA900 0x0008BEC4
    0x0002921C 0x000233F8 0x000ABAAC 0x4D697861
    backtrace terminated - frame not mapped or invalid: 0xBFFFE050
    Kernel loadable modules in backtrace (with dependencies):
    com.apple.GeForce(4.1.8)@0x917000
    dependency: com.apple.iokit.IOPCIFamily(1.7)@0x45f000
    dependency: com.apple.iokit.IOGraphicsFamily(1.4.1)@0x714000
    dependency: com.apple.iokit.IONDRVSupport(1.4.1)@0x738000
    dependency: com.apple.NVDAResman(4.1.8)@0x74e000
    Exception state (sv=0x60988500)
    PC=0x9000AB48; MSR=0x0200
    Sun Feb 4 13:53:46 2007
    Unresolved kernel trap(cpu 3): 0x300 - Data access DAR=0x000000007BA1A34E PC=0x0000000000939E14
    Latest crash info for cpu 3:
    Exception state (sv=0x61ACE500)
    PC=0x00939E14; MSR=0x00009030; DAR=0x7BA1A34E; DSISR=0x40000000; LR=0x0093A82C; R1=0x46753AE0; XCP=0x0000000C (0x300 - Data access)
    Backtrace:
    0x0093B6C4 0x0093A82C 0x00935D5C 0x00922C74 0x002E8A34 0x002EA900
    0x0008BEC4 0x0002921C 0x000233F8 0x000ABAAC 0x3C3C3C3C
    backtrace terminated - frame not mapped or invalid: 0xBFFFE240
    Kernel loadable modules in backtrace (with dependencies):
    com.apple.GeForce(4.1.8)@0x917000
    dependency: com.apple.iokit.IOPCIFamily(1.7)@0x45f000
    dependency: com.apple.iokit.IOGraphicsFamily(1.4.1)@0x714000
    dependency: com.apple.iokit.IONDRVSupport(1.4.1)@0x738000
    dependency: com.apple.NVDAResman(4.1.8)@0x74e000
    Proceeding back via exception chain:
    Exception state (sv=0x61ACE500)
    previously dumped as "Latest" state. skipping...
    Exception state (sv=0x60D3C000)
    PC=0x9000AB48; MSR=0x0200F030; DAR=0x01852808; DSISR=0x0A000000; LR=0x9000AA9C; R1=0xBFFFE240; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.8.0: Fri Sep 8 17:18:57 PDT 2006; root:xnu-792.12.6.obj~1/RELEASE_PPC
    panic(cpu 3 caller 0xFFFF0003): 0x300 - Data access
    Latest stack backtrace for cpu 3:
    Backtrace:
    0x00095138 0x00095650 0x00026898 0x000A7E04 0x000AB780
    Proceeding back via exception chain:
    Exception state (sv=0x61ACE500)
    PC=0x00939E14; MSR=0x00009030; DAR=0x7BA1A34E; DSISR=0x40000000; LR=0x0093A82C; R1=0x46753AE0; XCP=0x0000000C (0x300 - Data access)
    Backtrace:
    0x0093B6C4 0x0093A82C 0x00935D5C 0x00922C74 0x002E8A34 0x002EA900
    0x0008BEC4 0x0002921C 0x000233F8 0x000ABAAC 0x3C3C3C3C
    backtrace terminated - frame not mapped or invalid: 0xBFFFE240
    Kernel loadable modules in backtrace (with dependencies):
    com.apple.GeForce(4.1.8)@0x917000
    dependency: com.apple.iokit.IOPCIFamily(1.7)@0x45f000
    dependency: com.apple.iokit.IOGraphicsFamily(1.4.1)@0x714000
    dependency: com.apple.iokit.IONDRVSupport(1.4.1)@0x738000
    dependency: com.apple.NVDAResman(4.1.8)@0x74e000
    Exception state (sv=0x60D3C000)
    PC0
    PowerMac G5   Mac OS X (10.4.8)  

  • Does anyone know or heard of a resorce adapter for JD Edwards?

    Does anyone know or heard of a resource adapter for JD Edwards?
    Many thanks in advance.

    Hi there is a JAASRealm in tomcat. It can be
    configured simillarly to the UserDatabaseRealm. Have a
    look at JAASRealm in the catalina API documentation.
    JAASRealm allows you to use standard LoginModules and
    Permissions (as given in the jaas manuals etc)Take a look at this. This is an implementation of a JAASRealm
    http://w4.metronet.com/~wjm/tomcat/2000/Dec/msg00905.html
    vijay

Maybe you are looking for

  • Connection error while provisioning to AD in SSL mode

    Hi all, I am trying to establish the OIM-AD communication in SSL mode to provision the passwords. for that i used the MSFT_AD_base_91100 connector and deployed it on my OIM-9101which is on Win Server 2003 I configured the ITResource by specifying the

  • How do I sync downloaded PDF files in iBooks between my iPhone, iPad, and MacBook Pro?

    I've combed the forums.  I can't sync through iTunes.  These PDF files don't show up.  I've downloaded tech manuals for gear I have via manufacturer's websites.  I can't populate them across my devices.  I have some in iPhone, some on iPad.  I have a

  • Compatibility with PowerPoint?

    I have edited videos in PE9 for Mac and saved them as both MOV and MPG files. Both formats play in VLC, and as expected, only the MOV plays in QuickTime. However, when I try to insert either format into PowerPoint (ver 2011 for Mac), an error message

  • I get error 131:4 with adobe creative suite, how do I fix

    I need help, and my software said to go here. Something is wrong with with at least Photoshop, illustrator, dreamweaver and indesign, I get the error 131:4 and the programs will come up but will not respond. Yes I have turned the power off to the com

  • Flash player and shockwave player "not installed"

    I recently downloaded the most current shockwave player and flash player, but when I go to a website that requires the program it tells me that I need to install the shockwave player/flash player. I download each again and have even shut down and reb