Linux+WebLogic+SJIS

Our environment is
WebLogic Server (5.1.0 04/03/2000 17:13:23 #66825)
IBM JDK1.1.8/Sun JDK1.2.2
Redhat Linux 6.1J
We are developping servlet, that is used for Japanese wireless phones.
NTT i-Mode(CHTML)/HDML/HHTML...
These charactor encoding is SHIFT_JIS code.
I think, IBM JDK 1.1.8/Sun JDK 1.2.2 only supports ja_JP.eucJP .
But we must need SHIFT_JIS encoding.
Is there any solution?
Makoto Shibata

We found IBM JDK 1.1.8 cannot change file.encoding from EUC_JP to SJIS.
That is same with IBMJava2-13 and Sun jdk 1.2.2.
And RedHat 6.2J support only ja_JP.eucJP but ja_JP.SJIS.
We change Servlet code about File Reading,
File Writing and HttpServletResponce.
//BufferedReader buffReader = new BufferedReader(fileReader) ;
BufferedReader buffReader = new BufferedReader(new
InputStreamReader(new
FileInputStream(file), "SJIS")) ;
//mWriter = new PrintWriter(new FileWriter(logFile), true);
mWriter = new PrintWriter(new OutputStreamWriter(new
FileOutputStream(mLogDirName + "/" + logFileName, true), "SJIS"));
//pw = response.getWriter() ;
pw = new PrintWriter(new
OutputStreamWriter(response.getOutputStream(),"SJIS"));
This is ugly but work...
root wrote:
Our environment is
WebLogic Server (5.1.0 04/03/2000 17:13:23 #66825)
IBM JDK1.1.8/Sun JDK1.2.2
Redhat Linux 6.1J
We are developping servlet, that is used for Japanese wireless phones.
NTT i-Mode(CHTML)/HDML/HHTML...
These charactor encoding is SHIFT_JIS code.
I think, IBM JDK 1.1.8/Sun JDK 1.2.2 only supports ja_JP.eucJP .
But we must need SHIFT_JIS encoding.
Is there any solution?
Makoto Shibata

Similar Messages

  • 在FreeBSD下安装Linux版本的WebLogic

      1、首先安装FreeBSD 5.1,选择标准安装方式,不安装GUI,在安装过程中提示
    Would you like to enable Linux binary compatibility? 时,选择Yes;
      2、进入/cdrom目录,也就是在光盘里,运行server811_linux32.bin安装程序,
    安装Linux版本的WebLogic Server8.1.1,由于找不到GUI,安装程序自动进入文本安
    装方式;
      3、提示选择安装目录时,输入/bea,其余步骤按提示操作即可;
      4、安装完成后,会发现/bea目录不存在,实际上是被安装在/usr/compat/linux
    /bea目录下,为了使程序能正常运行,需要建立一个链接到/bea:#ln -s /usr/compat
    /linux/bea /bea;
      5、进入/bea/weblogic81/samples/domains/examples目录,执行./startEx
    amplesServer.sh脚本,Weblogic Server 8.1.1开始运行。

  • Linux weblogic.EJBDeployerTool error

    I continually get this:
    java.lang.NoClassDefFoundError: com/sun/java/util/collections/Collection
         at weblogic.ejb.ui.deployer.DeployerTool$1.run(DeployerTool.java:99)
    How do I get around this? Does BEA have it's own JVM or something?
    How do I fix this?
    -LEO
    [email protected]

    "Sachin Dole" <[email protected]> wrote:
    Even I have got a same problem with Linux, can someone help with this one??
    LEO Przybylski <[email protected]> wrote in message
    news:39e4af8d$[email protected]..
    I continually get this:
    java.lang.NoClassDefFoundError: com/sun/java/util/collections/Collection
    at weblogic.ejb.ui.deployer.DeployerTool$1.run(DeployerTool.java:99)
    You need to run Java 2 (jdk1.2 or jdk1.3). java.util.collections is new in Java 2.

  • Performance issue Runtime. exec("cp folder1 folder") in Linux,Weblogic.

    Using Runtime. exec() copying files from folder1 to folder2 using cp command in Linux. It will take each file copy 2 sec if we use web logic 10.3 and jrocket. if we run in Linux without web logic it takes only 0.013 sec. why it takes more time to load cp command with web logic.
    Environment
    Weblogic 10.3
    Linux 5.2
    Jrocket 1.6

    A 64 bit VM is not necessarily faster than a 32 bit one. I remember at least on suggestion that it could be slower.
    Make sure you use the -server option.
    As a guess IBM isn't necessarily a slouch when it comes to Java. It might simply be that their VM was faster. Could have used a different dom library as well.
    Could be an environment problem of course.
    Profiling the application and the machine as well might provide information.

  • Problem JDBC Connection using OCI Driver on Weblogic Portal on Linux

    Hi Team,
    I want a JDBC connection using OCI Driver in Weblogic Portal 8.1 sp4 on Linux. When I had tested using JDBC connection using Plain Java Code it is working. Also when I create the OCI Connection Weblogic Connection Pool it is working.
    But My Requirement is to create the connection using Java Code in Portal Application
    But When I create OCI connection in the code it is throwing NO SUITABLE DRIVER Found.
    ---------- Code in Plain Java Code ------------ Same code is used in Weblogic Portal Application --------------------------------
         public static void main(String[] args) throws Exception{
              Class.forName("oracle.jdbc.driver.OracleDriver");
              DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
              String url="jdbc:oracle:oci8:@TESTDB";
              Properties props = new Properties();
         props.put("user","scott");
         props.put("password","tiger");
              conn=DriverManager.getConnection(url,props);
    When I am using the same code in Weblogic Portal and Deployed on Weblogic Portal Server 8.1 SP4 it is throwing following error.
    -------------- Exception on Server Log --------------------
    java.sql.SQLException: No suitable driver
    at java.sql.DriverManager.getConnection(Ljava.lang.String;Ljava.util.Properties;Ljava.lang.ClassLoader;)Ljava.sql.Connection;(Unknown Source)
    at java.sql.DriverManager.getConnection(Ljava.lang.String;Ljava.util.Properties;)Ljava.sql.Connection;(Unknown Source)
    My Environment is
    LINUX
    Weblogic 8.1 SP4
    Oracle 9i Client on Same Machine
    Oracle 10g Server on Different Machine
    My Environment Variables on the Linux Server also set properly as following
    PATH=/apps/pmaaum/ant/apache-ant-1.6.5/bin:.:/apps/beahomedev/jdk142_05/bin:/usr/kerberos/bin:/usr/local/bin:/bin:/usr/bin:/usr/X11R6/bin:/apps/oracle/ora9i/product/9.2.0/bin:/usr/local/bin:/bin:/usr/bin:/usr/X11R6/bin:/apps/oracle/ora9i/bin
    LD_LIBRARY_PATH=/usr/lib:/apps/oracle/ora9i/product/9.2.0/lib:/apps/oracle/ora9i/product/9.2.0/lib32:/apps/oracle/ora9i/product/9.2.0/rdbms/lib:/usr/openwin/lib:/apps/oracle/ora9i/product/9.2.0/jdbc/lib
    JAVA_HOME=/apps/beahomedev/jdk142_05
    JDBC_LIB=/apps/oracle/ora9i/product/9.2.0/jdbc/lib
    CLASSPATH=:.:/apps/beahomedev/jdk142_05/lib/rt.jar:/apps/oracle/ora9i/product/9.2.0/jdbc/lib/classes12.jar
    Please help me, Let me know if you required anything.
    Thanks in Advance
    Vishnu
    Edited by: vishnuk on Oct 23, 2009 4:07 AM
    Edited by: vishnuk on Oct 23, 2009 4:10 AM

    Hi Vishnu
    Looks like a classloader issue. BEA class loader is very tricky. Any jar added manually in classpath, will end up loading only those classes. Any imports that we have in any of those classes do not get loaded. Anyhow, coming to your point, add classes12.jar inside your portal web project Web-Inf/lib folder and see if that helps. Usually thats where we put all the JARs for 8.1 SPxx applications. If this still breaks, then remove the jar from web-inf/lib folder and add under your portal app App-Inf/lib folder. First try with app-inf/lib folder having this jar. If not then with web-inf/lib. Basically web-inf is specific to that web app only. If you have a different app having this jdbc code, then put under app-inf/lib folder. Make sure that you remove the classes12.jar that you added in classpath either in env variable or in setdomainenv.cmd file.
    When weblogic uses native OCI Drivers, it refers to jars at this location: ....\beawlp814\weblogic81\server\ext\jdbc\oracle\10g or 9g. Try using one of these jars and see if that works. Most of the times I used these jars only for oracle specific native drivers.
    Word of caution. Try to use Connection Pool and a DataSource created in weblogic console for your jdbc code. This Datasource can still use the Oracle drivers that you want (instead of BEA Weblogic wrapper oci drivers) located in above location. Use JNDI Lookup and get Datasource and then connection. This is more recommended approach with many advantages then using DriverManager approach..
    Goud

  • URL for apache plugin for linux with weblogic 6.1

    Hi,
    can anyone tell me, where i can find the apache plugin for linux weblogic 6.1
    thanks in advance,
    cheers chris

    Could you give some detail for this issue? I have tried the plugin with IIS6 and it does works.

  • Deploy Oracle Webcenter Interaction on Weblogic 10.3 ( Oracle Linux 5)

    Dear All ,
    am trying to deploy Oracle Webcenter Interaction on Oracle Linux Weblogic every thing goes fine with installation but after finishing when we stop on deploy stage on Weblogic what's parameters need to be provided to succcfully deploy the application cause once we go throw default setting its deployed fine then we try to access the portal on http://<IP.Address>:7001/portal/server.pt it give us error " Contact your Portal Administrator " we ran the diagnostics and all works fine with no error . we try it on Windows and Linux with same error and nothing written in documents about deploy Webcenter interaction on weblogic
    regards
    Ahmad K. Haddad

    did you do this part:
    Launch Configuration Manager      Launch the Configuration Manager.
    The Configuration Manager is located at:
    https://host:port/
    Where host is the host you are installing on and port is the port you specified.
    Log in to the Configuration Manager using the user name administrator and the password you specified on the Configuration Manager – Port and Password page.
    The Configuration Manager displays a list of all recently installed components. Clicking the link next to each component leads you through the settings you need to configure to complete the installation. For information on the settings in the Configuration Manager, refer to the Configuration Manager online help or to the Administrator Guide for Oracle WebCenter Interaction.
    When you have completed all Configuration Manager tasks, return to the installer and click Done.
    http://download-llnw.oracle.com/docs/cd/E13158_01/alui/wci/docs103/map_wci_unix_installguide_10-3/ref_unix_installerwizardpages.html
    in the configuration manager, you'll have to type in your imageserver settings.

  • Weblogic 10.0 sends chunked encoding with a HTTP 1.0 request

    This took ages to find, it was only the mod_weblogic's Debug ALL parameter that pointed me in the right direction because it printed all the headers in each stage.
    Server:
    Apache 2.0 with mod_weblogic and SSL (Dev: Windows XP SP2)
    Apache 2.2 with mod_weblogic and SSL (Prod: Unix/Solaris/Linux)
    Weblogic 10.0 running on SPARC Solaris 9
    Proxy:
    Squid/2.6.STABLE22 (Prod: Unix/Solaris, Dev:Windows XP SP2)
    Client:
    IE 6.0.2900.2180
    Windows XP SP2
    Under IE if a user doesn't have both of the "Use HTTP 1.1" and "Use HTTP 1.0 through proxy connections" selected they will get an error message when trying to download a file sent with "Content-disposition attached" header through a proxy server and over SSL.
    This is because IE is sending a HTTP 1.0 request to weblogic and weblogic is responding with HTTP 1.1 "Transfer-encoding: chunked" response which is causing IE 6 to fail to display the error. It manifests itself as an 'apache bridge error'.
    If either of the other two requirements of a proxy server or SSL aren't there then IE handles it properly.
    Workaround is to disable chunked transfer for that particular server. In WLST set /Servers/<server>/WebServer/<server>/ChunkedTransferDisabled = 'true'
    Any further information of a patch or additional settings would be appreciated.
    This seems less than ideal as some of the reports are quite large and would benefit from chunked transfer particularly those that use the correct IE settings and those using Firefox.

    Does your MDB require transactions ? If so you need to XA enable the connection factory. Looks like you are using a transactional MDB with non XA connection factory.

  • Deploying application on Linux machine

    Hi there,
    I'm desperately trying to deploy an application on a linux machine - getting
    this error:
    java.lang.NoClassDefFoundError:
    com/bea/wlw/runtime/core/bean/SLSBContainerBean
    The application was written using Weblogic Workshop on WinXP. I've taken the
    EAR file, created with Weblogic Workshop and copied it to the linux server.
    But unfortunately this leads to an exception.
    I just need general information on whether this is normal, that you can't
    deploy a Weblogic Workshop application on a usual linux weblogic server.
    thanks kindly,
    Can

    What you are trying to do is certainly possible...
    I suspect that your domain on Linux is not a workshop domain. I would double-check that you are creating a workshop domain.
    Best regards...
    Hi there,
    I'm desperately trying to deploy an application on a
    linux machine - getting
    this error:
    java.lang.NoClassDefFoundError:
    com/bea/wlw/runtime/core/bean/SLSBContainerBean
    The application was written using Weblogic Workshop
    on WinXP. I've taken the
    EAR file, created with Weblogic Workshop and copied
    it to the linux server.
    But unfortunately this leads to an exception.
    I just need general information on whether this is
    normal, that you can't
    deploy a Weblogic Workshop application on a usual
    linux weblogic server.
    thanks kindly,
    Can

  • Weblogic hangs while configuring JDBC data sources

    Hi,
    We are performing the pre-installation configuration setps. Once we clicked on the Finish button weblogic it takes the request but unable to complete the same.
    Kindly provide the inputs in resolving the issue.
    Configuration details:
    database - Oracle 11g
    O/S : Linux
    Weblogic: 10.3.4
    Prime catalog: 10
    Regards,
    Syam.

    Issue got resolved after restarting the weblogic server. However we are unable to view the 'Data Source' in View JNDI Tree’ page of weblogic. Which is causing the deployment of RequestConsole.war file to fail.
    Kindly add your inputs to address the issue:
    Regards,
    Syam.

  • Weblogic gives error:  ADF_FACES-60099

    Dear Experts,
    Here is the environment:
    Linux Server version:
    lsb_release -a
    LSB Version: :core-3.1-amd64:core-3.1-ia32:core-3.1-noarch:graphics-3.1-amd64:graphics-3.1-ia32:graphics-3.1-noarch
    Distributor ID: EnterpriseEnterpriseServer
    Description: Enterprise Linux Enterprise Linux Server release 5.5 (Carthage)
    Release: 5.5
    Codename: Carthage
    uname -a
    Linux black.testrac.com 2.6.18-194.el5 #1 SMP Mon Mar 29 22:10:29 EDT 2010 x86_64 x86_64 x86_64 GNU/Linux
    Weblogic version:
    java weblogic.version -verbose
    WebLogic Server 10.3.5.0 Fri Apr 1 20:20:06 PDT 2011 1398638 ImplVersion: 10.3.5.0
    Oracle WebLogic Server Module Dependencies 10.3 Thu Mar 3 14:37:52 PST 2011 ImplVersion: 10.3.5.0
    Oracle WebLogic Server on JRockit Virtual Edition Module Dependencies 10.3 Thu Feb 3 16:30:47 EST 2011 ImplVersion: 10.3.5.0
    Oracle Virtual Machine Manager Client implementation ImplVersion: 1.1.0.0
    Oracle Web Services Manager ImplVersion: J2EE_11.1.1.5.0_GENERIC_110329.0915
    Oracle Web Services Manager ImplVersion: J2EE_11.1.1.5.0_GENERIC_110329.0915
    DB version
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
    PL/SQL Release 11.1.0.7.0 - Production
    CORE 11.1.0.7.0 Production
    TNS for Linux: Version 11.1.0.7.0 - Production
    NLSRTL Version 11.1.0.7.0 - Production
    I have installed both OBIEE, and Discoverer on the same server.
    OBIEE version:
    cat /middleware/Oracle_BI1/bifoundation/version.txt
    Build: 11.1.1.5.0.BIFNDN_11.1.1.5.0_LINUX.X64_110427.0752
    Release Version: Oracle Business Intelligence 11.1.1.5.0
    Package: 110427.0955.000
    Discoverer Version:
    cat /middleware/user_projects/domains/ClassicDomain/config/fmwconfig/servers/WLS_DISCO/applications/discoverer_11.1.1.2.0/configuration/styles/version.txt
    UIX 11.1.1.2
    Since I've installed Discoverer, I often get the error, ADF_FACES-60099.
    Spilling over the screen that I used for startup:
    ADF_FACES-60099
    <Feb 6, 2012 1:34:11 PM CST> <Warning> <org.apache.myfaces.trinidadinternal.context.RequestContextImpl> <BEA-000000> <Could not find partial trigger disco_enableComponent from RichTable[org.apache.myfaces.trinidad.component.UIXTable$RowKeyFacesBeanWrapper@330e98e9, id=disco_componentsTable] with the supported partialTriggers syntax. The partial trigger was found with the deprecated syntax. Please use the supported syntax.>
    <Feb 6, 2012 1:34:11 PM CST> <Warning> <org.apache.myfaces.trinidadinternal.context.RequestContextImpl> <BEA-000000> <Could not find partial trigger disco_disableComponent from RichTable[org.apache.myfaces.trinidad.component.UIXTable$RowKeyFacesBeanWrapper@330e98e9, id=disco_componentsTable] with the supported partialTriggers syntax. The partial trigger was found with the deprecated syntax. Please use the supported syntax.>
    <Feb 6, 2012 1:34:12 PM CST> <Warning> <oracle.adfinternal.view.faces.renderkit.rich.RegionRenderer> <ADF_FACES-60099> <The region component with id: emTemplate:chartRegion has detected a page fragment with multiple root components. Fragments with more than one root component may not display correctly in a region and may have a negative impact on performance. It is recommended that you restructure the page fragment to have a single root component.>
    <Feb 6, 2012 1:34:13 PM CST> <Warning> <org.apache.myfaces.trinidadinternal.context.RequestContextImpl> <BEA-000000> <Could not find partial trigger disco_enableComponent from RichTable[org.apache.myfaces.trinidad.component.UIXTable$RowKeyFacesBeanWrapper@330e98e9, id=disco_componentsTable] with the supported partialTriggers syntax. The partial trigger was found with the deprecated syntax. Please use the supported syntax.>
    <Feb 6, 2012 1:34:13 PM CST> <Warning> <org.apache.myfaces.trinidadinternal.context.RequestContextImpl> <BEA-000000> <Could not find partial trigger disco_disableComponent from RichTable[org.apache.myfaces.trinidad.component.UIXTable$RowKeyFacesBeanWrapper@330e98e9, id=disco_componentsTable] with the supported partialTriggers syntax. The partial trigger was found with the deprecated syntax. Please use the supported syntax.>
    <Feb 6, 2012 1:34:14 PM CST> <Warning> <oracle.adfinternal.view.faces.renderkit.rich.RegionRenderer> <ADF_FACES-60099> <The region component with id: emTemplate:chartRegion has detected a page fragment with multiple root components. Fragments with more than one root component may not display correctly in a region and may have a negative impact on performance. It is recommended that you restructure the page fragment to have a single root component.>
    <Feb 6, 2012 1:34:16 PM CST> <Warning> <oracle.adfinternal.view.faces.renderkit.rich.RegionRenderer> <ADF_FACES-60099> <The region component with id: emTemplate:chartRegion has detected a page fragment with multiple root components. Fragments with more than one root component may not display correctly in a region and may have a negative impact on performance. It is recommended that you restructure the page fragment to have a single root component.>
    <Feb 6, 2012 1:34:29 PM CST> <Warning> <oracle.adfinternal.view.faces.renderkit.rich.RegionRenderer> <ADF_FACES-60099> <The region component with id: emTemplate:chartRegion has detected a page fragment with multiple root components. Fragments with more than one root component may not display correctly in a region and may have a negative impact on performance. It is recommended that you restructure the page fragment to have a single root component.>
    ... This one repeats many times.
    pwd
    /middleware/user_projects/domains/ClassicDomain/servers/AdminServer/logs
    grep -i "ADF_FACES-60099" * -l
    AdminServer-diagnostic.log
    ClassicDomain.log
    From ClassicDomain.log:
    ####<Feb 6, 2012 1:34:14 PM CST> <Warning> <oracle.adfinternal.view.faces.renderkit.rich.RegionRenderer> <black.testrac.com> <AdminServer> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <weblogic> <> <c5855f2192e14e03:79487e21:1355413ee77:-8000-000000000000014e> <1328556854267> <ADF_FACES-60099> <The region component with id: emTemplate:chartRegion has detected a page fragment with multiple root components. Fragments with more than one root component may not display correctly in a region and may have a negative impact on performance. It is recommended that you restructure the page fragment to have a single root component.>
    ####<Feb 6, 2012 1:34:16 PM CST> <Warning> <oracle.adfinternal.view.faces.renderkit.rich.RegionRenderer> <black.testrac.com> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <weblogic> <> <c5855f2192e14e03:79487e21:1355413ee77:-8000-0000000000000154> <1328556856204> <ADF_FACES-60099> <The region component with id: emTemplate:chartRegion has detected a page fragment with multiple root components. Fragments with more than one root component may not display correctly in a region and may have a negative impact on performance. It is recommended that you restructure the page fragment to have a single root component.>
    ####<Feb 6, 2012 1:34:29 PM CST> <Warning> <oracle.adfinternal.view.faces.renderkit.rich.RegionRenderer> <black.testrac.com> <AdminServer> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <weblogic> <> <c5855f2192e14e03:79487e21:1355413ee77:-8000-0000000000000156> <1328556869899> <ADF_FACES-60099> <The region component with id: emTemplate:chartRegion has detected a page fragment with multiple root components. Fragments with more than one root component may not display correctly in a region and may have a negative impact on performance. It is recommended that you restructure the page fragment to have a single root component.>
    from: AdminServer-diagnostic.log
    [2012-02-06T13:34:14.267-06:00] [AdminServer] [WARNING] [ADF_FACES-60099] [oracle.adfinternal.view.faces.renderkit.rich.RegionRenderer] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: weblogic] [ecid: c5855f2192e14e03:79487e21:1355413ee77:-8000-000000000000014e,0] [APP: em] The region component with id: emTemplate:chartRegion has detected a page fragment with multiple root components. Fragments with more than one root component may not display correctly in a region and may have a negative impact on performance. It is recommended that you restructure the page fragment to have a single root component.
    [2012-02-06T13:34:16.204-06:00] [AdminServer] [WARNING] [ADF_FACES-60099] [oracle.adfinternal.view.faces.renderkit.rich.RegionRenderer] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: weblogic] [ecid: c5855f2192e14e03:79487e21:1355413ee77:-8000-0000000000000154,0] [APP: em] The region component with id: emTemplate:chartRegion has detected a page fragment with multiple root components. Fragments with more than one root component may not display correctly in a region and may have a negative impact on performance. It is recommended that you restructure the page fragment to have a single root component.
    [2012-02-06T13:34:29.899-06:00] [AdminServer] [WARNING] [ADF_FACES-60099] [oracle.adfinternal.view.faces.renderkit.rich.RegionRenderer] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: weblogic] [ecid: c5855f2192e14e03:79487e21:1355413ee77:-8000-0000000000000156,0] [APP: em] The region component with id: emTemplate:chartRegion has detected a page fragment with multiple root components. Fragments with more than one root component may not display correctly in a region and may have a negative impact on performance. It is recommended that you restructure the page fragment to have a single root component.
    [2012-02-06T13:34:44.825-06:00] [AdminServer] [ERROR] [] [org.apache.myfaces.trinidadinternal.application.StateManagerImpl] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: c5855f2192e14e03:79487e21:1355413ee77:-8000-000000000000015b,0] [APP: em] Could not find saved view state for token -7yh2thw99
    How can I fix this error?
    Thanks a lot!

    Please Refer Oracle document Id for this error ID 1303644.1
    As per the doc:
    Cause
    A file might have been corrupted when you ran out of disk space.
    Solution
    1. Delete the instance.jspx.xml file in folder $Middleware_home\user_projects\domains\bifoundation_domain\sysman\mds\partition1\ai\bi\mdssys\cust\user\USER_NAME
    where USER_NAME represents the user id of the user in question.
    2. Stop and re-start all services, including WebLogic. The instance.jspx.xml file will be recreated.

  • Oracle reports 6i to Oracle forms 10g migration

    Hi,
    I have .rdf files which were created on Oracle Reports 6i. I would like to migrate the .rdf files into Oracle Reports module which is present as a part of Oracle Forms 10g to generate PDF output.
    Please let me know the detailed steps to be followed as I am a total newbie. Also I need to generate these reports on demand from a java 5 application (JSF 2.0).
    Currently for ORacle reports 6i, I have the following code in my java application
    rwrun60.exe g:\tomcat33\webapps\reports\web-inf\src\null userid=***/*** destype=FILE desformat="pdf" paramform=NO printjob=NO batch=YES desname=temp.pdf
    1. What would be the equivalent for reports in ORacle Forms 10g ? I know there is an Oracle Apps server where ther report services reside. How to I invoke my report from my java application (residing on a weblogic server 10.3.6)?
    2. What ould I do with the 6i .rdf files to upgrade them to 10g ?

    I am trying to call an Oracle report i.e .rdf (which is located on the Oracle  App Server) from my java EE 5 (JSF) application. The Oracle  App server is Oracle Application Server 10g Release 2. I assume Oracle report generation capability is available in this release.  I need to invoke the report from my Java JSF application on demand (whenever the user clicks a button on the web browser page, the report should appear on the browser as PDF) . My java application resides on Linux weblogic server.
    Please let me know how it can be done ? I see rwclient.sh and another method to directly invoke using a URL. How do I do it on java, would a request.redirect() to the URL work ?
    Also for hiding the params in the URL. keys need to be configured on the Oracle server right ?
    Also if we use rwclient.sh or the URL based invocation, would there be any issue in concurrency when multiple users request the same report at the same time ?

  • OBIEE 11g (11.1.1.5.0) - Issue with starting Node Manager

    Hi,
    Have anyone faced an issue with starting Node Manager in OBIEE 11g (11.1.1.5.0)? OS is 64 bit Linux, WebLogic is 10.3.5. I used the software-install method and followed by running config.sh. Everything completed successfully. I updated the catalog and rpd location in the FMW control screen.
    To get it activated I bounced services and when I try to start Node Manager it gives below error --
    <Aug 30, 2011 2:02:42 PM CDT> <Info> <Security> <BEA-090906> <Changing the default Random Number Generator in RSA CryptoJ from ECDRBG to FIPS186PRNG. To disable this change, specify -Dweblogic.security.allowCryptoJDefaultPRNG=true>
    <Aug 30, 2011 2:02:42 PM> <SEVERE> <Fatal error in node manager server>
    java.io.IOException: Unsupported cypher suite: TLS_RSA_EXPORT_WITH_RC4_40_MD5
    at weblogic.nodemanager.server.SSLListener.init(SSLListener.java:82)
    at weblogic.nodemanager.server.NMServer.start(NMServer.java:206)
    at weblogic.nodemanager.server.NMServer.main(NMServer.java:377)
    at weblogic.NodeManager.main(NodeManager.java:31)
    Aug 30, 2011 2:02:42 PM weblogic.nodemanager.server.NMServer main
    SEVERE: Fatal error in node manager server
    java.io.IOException: Unsupported cypher suite: TLS_RSA_EXPORT_WITH_RC4_40_MD5
    at weblogic.nodemanager.server.SSLListener.init(SSLListener.java:82)
    at weblogic.nodemanager.server.NMServer.start(NMServer.java:206)
    at weblogic.nodemanager.server.NMServer.main(NMServer.java:377)
    at weblogic.NodeManager.main(NodeManager.java:31)
    + set +x
    I see the same issue reported in ML OBIEE 11g - Node manager fails to start upon upgrade [ID 1329442.1] and WebLogic Server: Node Manager Startup is Failing with java.io.IOException: Unsupported cypher suite [ID 1329260.1] I tried to modify commEnv.sh. But it didnt help me.
    Please let me know if anyone have faced similar issue and what exactly did you do to resolve it.
    Cherrish Vaidiyan
    Edited by: Cherrish on Aug 30, 2011 3:14 PM

    Hi,
    There are Two types of Cipher suites --- Certicom Cipher Suite and SunJSSE Equivalent Cipher Suite. And with Weblogic 10.3.5, you are using Sun JSSE Cipher Suite, and by default Node Manager uses the Certicom Cipher Suite.
    In the nodemanager.properties, Add CipherSuite=SSL_RSA_EXPORT_WITH_RC4_40_MD5, save and restart Node Manager.
    Reference Metalink Note: WebLogic Server 10.3.x: Getting "Unsupported Cipher" Exceptions When Starting Node Manager [ID 1307325.1]
    Cherrish Vaidiyan

  • Issue in deployement on server restart.

    Hi All,
    We are facing an issue with deployement. We are having more than 4 ADF applications in our complete project. Login is a separate adf application. All the application has logout. When we click on logout the user is taken into the login page in login application. When we initially deploy all the application and click on logout everything works fine. But once we restart the server and click on logout I get an exception
    java.net.MalformedUrlException : The path for getResource() must begin with a '/'.
    The url is correct but still we are getting the error.
    The issue is resolved when I deploy the login application once again to the server. The login application has to be deployed each time the server is restarted.
    We are using jdev 11.1.1.2.0.
    Our application is deployed in in a linux weblogic server in production mode.
    Please help someone.
    Thanks
    Susan

    Hi:
    You may also want to post your question on the HP Business Support Forum -- DL Servers section.
    http://h30499.www3.hp.com/t5/ProLiant-Servers-ML-DL-SL/bd-p/itrc-264#.VKK0M10MA

  • Naming Service not availabe

    Hi,
    We are devloping Wrapper arround the Identity server sdk which is going to be placed on linux+weblogic platform. Everything is working fine without SSL enabled for access manager(identity server). When AM is running in SSL mode we are facing problem when our code is trying to create AuthContext. Following is the log trace from debug file
    01/20/2005 06:00:06:750 PM MST: Thread[ExecuteThread: '14' for queue: 'weblogic.kernel.Default',5,Thread Group for Queue: 'weblogic.kernel.Default']
    authenticate...START
    01/20/2005 06:00:09:586 PM MST: Thread[ExecuteThread: '14' for queue: 'weblogic.kernel.Default',5,Thread Group for Queue: 'weblogic.kernel.Default']
    ERROR: authenticate :
    com.sun.identity.authentication.spi.AuthLoginException(1):null
    com.sun.identity.common.L10NMessageImpl(2):Failed to create New AuthContext: Error while processing XML request
    Naming Service is not available
    com.sun.identity.common.L10NMessageImpl: Failed to create New AuthContext: Error while processing XML request
    Naming Service is not available
    at com.sun.identity.authentication.AuthContext.createAuthContext(AuthContext.java:1220)
    at com.sun.identity.authentication.AuthContext.createAuthContext(AuthContext.java:1142)
    at com.sun.identity.authentication.AuthContext.<init>(AuthContext.java:148)
    at com.abs.security.b2b.AuthenticationService.authenticate(Unknown Source)
    at com.abs.security.b2b.B2BIDSInterfaceImpl.authenticate(Unknown Source)
    at com.abs.security.b2b.client.B2BInitialAdminClientServlet.authenticate(Unknown Source)
    at com.abs.security.b2b.client.B2BInitialAdminClientServlet.doGet(Unknown Source)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:971)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:402)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:305)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6350)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:317)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:118)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3635)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2585)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)
    we took care of loading JSS libraries and AMConfig. properties file changes, trusted CA certificate import and also we added system property java.protocol.handler.pkgs=com.iplanet.services.comm
    any help is appreciated.

    Did you resolve this issue. I have just encountered it when I switched from non-SSL to an SSL port. The exception I get is the same as yours. The debug log indicates that the host name is incorrect:
    03/25/2005 03:23:57:841 PM EST: Thread[main,5,main]
    ERROR: updateNamingTable : Naming Service is not available^M
    03/25/2005 03:23:57:881 PM EST: Thread[main,5,main]
    ERROR: Naming service connection failed for https://dakota.abcd.com:4405/am
    server/namingservice
    com.iplanet.services.comm.client.SendRequestException: HTTPS hostname wrong: sh
    ould be <dakota.abcd.com>^M
    at com.iplanet.services.comm.client.PLLClient.send(PLLClient.java:131)^M
    at com.iplanet.services.comm.client.PLLClient.send(PLLClient.java:71)^M
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.jav
    a:335)^M
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java
    :308)^M
    at com.iplanet.services.naming.WebtopNaming.getServiceURL(WebtopNaming.java:12

Maybe you are looking for

  • Problem during material variant creation

    Hi Guys, I am trying to create material variant in MM01. I entered configurable material let's say DESKTOP. nOw i have partial variant scenario so instead of entering all 30 characteristics i need to enter only 3 characteristics.These 3 charcteristic

  • Can System property set in Java Plug-in?

    Hello gurus, In desktop app, we could set certain system properties for example System.setProperty( "sun.java2d.translaccel", "true" ); I am trying to develop simple game in applet. But calling this method requires the applet to signed, which is not

  • Touch screen acting bizar

    My ipad is acting bizar, It clicks on by it self and turns off the songs by it self,scroling also by it self This happens not only when it is in my hand but also when kept on a plain surface. This started from the day i switched on my ipad and connec

  • Help my itouch's screen won't respond to home & sleep/wake button

    Hi guys need your help, My itouch's(4th gen) screen won't respond to home & sleep/wake button. also the device is on cause when I try to do screen capture the shutters do come off.I've also resetted it a couple of time, tried to drain it and charge a

  • How can I change the order SubVIs are loaded?

    Hello, I have a SubVI which needs to be called before any other SubVI. I tried to put that SubVI in another VI which again calls a second SubVI with the rest of the application: MainSubVI  --- call ---> 'Need-to-be-loaded-first-VI'             |