Configuring JSP's in Weblogic server 7.0

Hi,
I'm trying to port my web application from weblogic server 6.1 to weblogic
7.0. I'm having a little problem with jsp pages in weblogic 7.0. Some of the text
box controls which are populated dynamically in my jsp pages are getting populated
with
"null" value in WL 7.0 e.g. in the following case
<%
String claim_id=null;
%>
<input type=text value=<%= claim_id %> >
on weblogic 6.1 an empty string is printed but in wl 7.0 null is printed as the
value for the text field.
I used the domain configuration wizard in wl 7.0 to make a WLS Domain and then
deployed my application. If I deploy the same application in one of the examples
domain which is installed with Weblogic 7.0 then everything works fine. So its
definity a configuration issue.
Could someone please help me with this.
Thanks,
-Taqdees.

As per the j2ee 1.2, jsp 1.2 specification mandates that the expressions
default must be "null".
We have introduced a new flag in weblogic.xml called printNulls which is
true by default meaning that "null" will be the default.
Setting this to false makes sure that expressions(<%=expr%> ) with "null"
results are printed as "" (earlier behavior)
Here is how to configure the printNulls from weblogic.xml :
<weblogic-web-app>
<jsp-param>
<param-name>printNulls</param-name>
<param-value>false</param-value>
</jsp-param>
</weblogic-web-app>
Regards,
Eric
"taqdees malik" <[email protected]> wrote in message
news:3daaff99$[email protected]..
>
Hi,
I'm trying to port my web application from weblogic server 6.1 toweblogic
7.0. I'm having a little problem with jsp pages in weblogic 7.0. Some ofthe text
box controls which are populated dynamically in my jsp pages are gettingpopulated
with
"null" value in WL 7.0 e.g. in the following case
<%
String claim_id=null;
%>
<input type=text value=<%= claim_id %> >
on weblogic 6.1 an empty string is printed but in wl 7.0 null is printedas the
value for the text field.
I used the domain configuration wizard in wl 7.0 to make a WLS Domain andthen
deployed my application. If I deploy the same application in one of theexamples
domain which is installed with Weblogic 7.0 then everything works fine. Soits
definity a configuration issue.
Could someone please help me with this.
Thanks,
-Taqdees.

Similar Messages

  • Help in executing jsp files using weblogic server 6.0.

              I have an operating system Windows2000, i have downloaded 30 day trial version of weblogic server 6.0.
              I have a file called hello.jsp.
              Where do i have to save hello.jsp file in weblogic server 6.0.
              How do i execute hello.jsp through browser using weblogic server6.0.
              As there is no properties file in weblogic server6.0.
              TO run it i started default server and when i started default console it got opened in the browser as http://127.0.0.1:7001/console/index.jsp
              Where do i have to save it and how do i open it in the browser.
              Any help will be greatly appreciated.
              Thanks,
              

              I started the Start default Server and opened the http://localhost:7001/ in the bowser and by default
              this loaded the index.html file
              and when i tried to change index.html to hello.jsp i got the same error message as before
              Error 404--Not Found
              From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
              10.4.5 404 Not Found
              The server has not found anything matching the Request-URI. No indication is given of whether the condition is temporary or permanent.
              If the server does not wish to make this information available to the client, the status code 403 (Forbidden) can be used instead. The 410 (Gone) status code SHOULD be used if the server knows, through some internally configurable mechanism, that an old resource is permanently unavailable and has no forwarding address.
              "mils" <[email protected]> wrote:
              >
              >There are quite a few reasons it couldn't be working, and things you can try...
              >
              >Ensure there are no errors on startup of the server in the console, especially that there is not an error about another web listener running on the same port.
              >
              >Try just http://localhost:7001 by default this should load the index.html file that comes with the WebLogic installation.
              >
              >If you are running on a corporate LAN, your browser settings may not be set correctly to find "localhost", ensure that your browser is not using a proxy server for local addresses, or put localhost:7001 in the list of exceptions for which the browser should not look at the proxy server.
              >
              >Hope this helps!
              >
              >"Red" <[email protected]> wrote:
              >>
              >>I created hello.jsp file under E:\weblogic\wlserver6.0\config\mydomain\applications\DefaultWebApp_myserver\hello.jsp
              >>and i started the Start Default Server and when i try to open
              >>http://localhost:7001/hello.jsp in the browser
              >>getting an error message as
              >>
              >>Error 404--Not Found
              >>From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
              >>10.4.5 404 Not Found
              >>The server has not found anything matching the Request-URI. No indication is given of whether the condition is temporary or permanent.
              >>
              >>If the server does not wish to make this information available to the client, the status code 403 (Forbidden) can be used instead. The 410 (Gone) status code SHOULD be used if the server knows, through some internally configurable mechanism, that an old resource is permanently unavailable and has no forwarding address.
              >>
              >>Any help?
              >>
              >>
              >>
              >>
              >>
              >>
              >>
              >>
              >>
              >>
              >>
              >>
              >>
              >>
              >>"Mils" <[email protected]> wrote:
              >>>
              >>>In WebLogic 6.0, to run simple JSP pages with the default installation, the JSP files should be put in....
              >>>
              >>>C:\bea\wlserver6.0\config\DefaultWebApp_myserver
              >>>
              >>>...assuming you installation was on the C: drive.
              >>>
              >>>To access a file bar.jsp in this directory, go to http://localhost:7001/bar.jsp
              >>>
              >>>"Red" <[email protected]> wrote:
              >>>>
              >>>>I have an operating system Windows2000, i have downloaded 30 day trial version of weblogic server 6.0.
              >>>>I have a file called hello.jsp.
              >>>>Where do i have to save hello.jsp file in weblogic server 6.0.
              >>>>How do i execute hello.jsp through browser using weblogic server6.0.
              >>>>As there is no properties file in weblogic server6.0.
              >>>>
              >>>>TO run it i started default server and when i started default console it got opened in the browser as http://127.0.0.1:7001/console/index.jsp
              >>>>
              >>>>Where do i have to save it and how do i open it in the browser.
              >>>>
              >>>>Any help will be greatly appreciated.
              >>>>Thanks,
              >>>>
              >>>>
              >>>>
              >>>>
              >>>
              >>
              >
              

  • Configuring multiple instances of weblogic server 7.0 on single machine

    Hi,
    I am trying to configure multiple instances of weblogic server 7.0 on single machine
    ( sun Solaris 7). I tried to create everytime new domain. Can anybody help me.
    Thanks in advance.
    Ravi

    You can have several servers under one domain. No need to create a new
    domain for each server. Just configure a server and make sure they are
    listening on different ports. you are all set.
    Kumar
    ravikiran wrote:
    Hi,
    I am trying to configure multiple instances of weblogic server 7.0 on single machine
    ( sun Solaris 7). I tried to create everytime new domain. Can anybody help me.
    Thanks in advance.
    Ravi

  • How to configure SSL for Oracle Weblogic Server

    Hi,
    Please help me to configure SSL in oracle weblogic server.
    If possible, please provide step by step to configure SSL.

    this should help
    http://weblogic-wonders.com/weblogic/2010/05/19/configuring-ssl-on-weblogic-server-custom-identity-custom-trust/

  • Configuring file realm in weblogic server 9.2

    Hi,
    I am trying to upgrade my application from weblogic 6.1 to weblogic 9.2 and I am using compatibility security.
    I have configured a RDBMS realm and then configured the caching realm giving that RDBMS realm as its Base realm.
    Now since caching realm works with file realm. I have to configure this also. Now on click of file realm tab in weblogic 9.2 throws the following error.
    java.lang.RuntimeException: The requested operation is not exposed through JMX in this context: equals
    Caused by: java.lang.NoSuchMethodException: equals(java.lang.Object,) for com.bea:Name=CachingRealm-0,Type=CachingRealm
         at weblogic.management.jmx.modelmbean.WLSModelMBean.invoke(WLSModelMBean.java:369)
         at com.sun.jmx.mbeanserver.DynamicMetaDataImpl.invoke(DynamicMetaDataImpl.java:213)
         at com.sun.jmx.mbeanserver.MetaDataImpl.invoke(MetaDataImpl.java:220)
         at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerInterceptor.java:815)
         at com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(JmxMBeanServer.java:784)
         at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase.invoke(WLSMBeanServerInterceptorBase.java:149)
         at weblogic.management.mbeanservers.internal.SecurityMBeanMgmtOpsInterceptor.invoke(SecurityMBeanMgmtOpsInterceptor.java:63)
         at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase.invoke(WLSMBeanServerInterceptorBase.java:149)
         at weblogic.management.mbeanservers.edit.internal.EditLockInterceptor.invoke(EditLockInterceptor.java:141)
         at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase.invoke(WLSMBeanServerInterceptorBase.java:149)
         at weblogic.management.mbeanservers.internal.SecurityInterceptor.invoke(SecurityInterceptor.java:426)
         at weblogic.management.mbeanservers.internal.AuthenticatedSubjectInterceptor$10.run(AuthenticatedSubjectInterceptor.java:377)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
         at weblogic.management.mbeanservers.internal.AuthenticatedSubjectInterceptor.invoke(AuthenticatedSubjectInterceptor.java:375)
         at weblogic.management.jmx.mbeanserver.WLSMBeanServer.invoke(WLSMBeanServer.java:310)
         at javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1408)
         at javax.management.remote.rmi.RMIConnectionImpl.access$100(RMIConnectionImpl.java:81)
         at javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1245)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1348)
         at javax.management.remote.rmi.RMIConnectionImpl.invoke(RMIConnectionImpl.java:782)
         at javax.management.remote.rmi.RMIConnectionImpl_WLSkel.invoke(Unknown Source)
         at weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:174)
         ... 91 more
    Can anyone help me out?
    Thank you
    Njoy
    :-)

    You may still need to define the role in the weblogic.xml file in order for deployment descriptor-based role definition to work (alternatively you could use the WebLogic Server console to define the role and policy).
    You can specify your role "testrole" as "externally-defined" as opposed to mapping it to specific principals.
    See http://e-docs.bea.com/wls/docs92/webapp/weblogic_xml.html#wp1040908
    Jeff

  • I can't configuring Pool Conection in WebLogic Server 7.0

    I'm configuring a pool connection in WebLogic Server 7.0 but I can't.
    The DBMS is Oracle 8.1.6 and the parameters of this are:
    server=gratil.hi.inet
    port=1521
    sid=bdtest
    user=system
    password=manager
    The driver that I'm using is OCI Driver. In the weblogic console I'm configuring
    the parameters of the pool. These parameters are:
    Name: DBPoolGeiser
    URL: jdbc:weblogic:pool:bdtest
    Driver Classname: weblogic.jdbc.pool.Driver
    Properties:
    user=system
    When I start the Weblogic I obtain this trace:
    <15-oct-02 8:34:13 BST> <Error> <JDBC> <001060> <Cannot startup connection pool
    "DBPoolGeiser" java.sql.SQLException: No suitable driver>
    <15-oct-02 8:34:13 BST> <Error> <JDBC> <001059> <Error during Data Source creation:
    weblogic.common.ResourceException: DataSource(examples-dataSource-demoPool) can't
    be created with non-existent Pool (connection or multi) (DBPoolGeiser)
    at weblogic.jdbc.common.internal.JdbcInfo.validateConnectionPool(JdbcInfo.java:127)
    at weblogic.jdbc.common.internal.JdbcInfo.startDataSource(JdbcInfo.java:260)
    at weblogic.jdbc.common.internal.JDBCService.addDeploymentx(JDBCService.java:293)
    at weblogic.jdbc.common.internal.JDBCService.addDeployment(JDBCService.java:270)
    at weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(DeploymentTarget.java:375)
    at weblogic.management.mbeans.custom.DeploymentTarget.addDeployments(DeploymentTarget.java:303)
    at weblogic.management.mbeans.custom.DeploymentTarget.updateServerDeployments(DeploymentTarget.java:256)
    at weblogic.management.mbeans.custom.DeploymentTarget.updateDeployments(DeploymentTarget.java:207)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:732)
    at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:714)
    at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:417)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1557)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1525)
    at weblogic.management.internal.RemoteMBeanServerImpl.invoke(RemoteMBeanServerImpl.java:926)
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:470)
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:198)
    at $Proxy35.updateDeployments(Unknown Source)
    at weblogic.management.configuration.ServerMBean_CachingStub.updateDeployments(ServerMBean_CachingStub.java:4060)
    at weblogic.management.deploy.slave.SlaveDeployer.updateServerDeployments(SlaveDeployer.java:2259)
    at weblogic.management.deploy.slave.SlaveDeployer.resume(SlaveDeployer.java:373)
    at weblogic.management.deploy.DeploymentManagerServerLifeCycleImpl.resume(DeploymentManagerServerLifeCycleImpl.java:235)
    at weblogic.t3.srvr.ServerLifeCycleList.resume(ServerLifeCycleList.java:61)
    at weblogic.t3.srvr.T3Srvr.resume(T3Srvr.java:806)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:295)
    at weblogic.Server.main(Server.java:32)
    Somebody can help me.
    Thank you.

    You have to modify couple of things. If you are talking to 816 database you should use 817 oci driver.
    You must do java utils.dbping oracle scott tiger dbname
    to check if your environment is set properly or not.
    You need following properties for creating connection pool in config.xml
    <JDBCConnectionPool
    DriverName="weblogic.jdbc.oci.Driver"
    InitialCapacity="4"
    MaxCapacity="4"
    Name="OraclePool-2"
    Properties="user=scott;password=tiger;server=patrick"
    RefreshMinutes="5"
    TestConnectionsOnRelease="true"
    TestTableName="emp"
    URL="jdbc:weblogic:oracle"/>
    Let me know if that works.
    Thanks,
    Mitesh
    "Carlos Gómez" wrote:
    I'm configuring a pool connection in WebLogic Server 7.0 but I can't.
    The DBMS is Oracle 8.1.6 and the parameters of this are:
    server=gratil.hi.inet
    port=1521
    sid=bdtest
    user=system
    password=manager
    The driver that I'm using is OCI Driver. In the weblogic console I'm configuring
    the parameters of the pool. These parameters are:
    Name: DBPoolGeiser
    URL: jdbc:weblogic:pool:bdtest
    Driver Classname: weblogic.jdbc.pool.Driver
    Properties:
    user=system
    When I start the Weblogic I obtain this trace:
    <15-oct-02 8:34:13 BST> <Error> <JDBC> <001060> <Cannot startup connection pool
    "DBPoolGeiser" java.sql.SQLException: No suitable driver>
    <15-oct-02 8:34:13 BST> <Error> <JDBC> <001059> <Error during Data Source creation:
    weblogic.common.ResourceException: DataSource(examples-dataSource-demoPool) can't
    be created with non-existent Pool (connection or multi) (DBPoolGeiser)
    at weblogic.jdbc.common.internal.JdbcInfo.validateConnectionPool(JdbcInfo.java:127)
    at weblogic.jdbc.common.internal.JdbcInfo.startDataSource(JdbcInfo.java:260)
    at weblogic.jdbc.common.internal.JDBCService.addDeploymentx(JDBCService.java:293)
    at weblogic.jdbc.common.internal.JDBCService.addDeployment(JDBCService.java:270)
    at weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(DeploymentTarget.java:375)
    at weblogic.management.mbeans.custom.DeploymentTarget.addDeployments(DeploymentTarget.java:303)
    at weblogic.management.mbeans.custom.DeploymentTarget.updateServerDeployments(DeploymentTarget.java:256)
    at weblogic.management.mbeans.custom.DeploymentTarget.updateDeployments(DeploymentTarget.java:207)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:732)
    at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:714)
    at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:417)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1557)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1525)
    at weblogic.management.internal.RemoteMBeanServerImpl.invoke(RemoteMBeanServerImpl.java:926)
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:470)
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:198)
    at $Proxy35.updateDeployments(Unknown Source)
    at weblogic.management.configuration.ServerMBean_CachingStub.updateDeployments(ServerMBean_CachingStub.java:4060)
    at weblogic.management.deploy.slave.SlaveDeployer.updateServerDeployments(SlaveDeployer.java:2259)
    at weblogic.management.deploy.slave.SlaveDeployer.resume(SlaveDeployer.java:373)
    at weblogic.management.deploy.DeploymentManagerServerLifeCycleImpl.resume(DeploymentManagerServerLifeCycleImpl.java:235)
    at weblogic.t3.srvr.ServerLifeCycleList.resume(ServerLifeCycleList.java:61)
    at weblogic.t3.srvr.T3Srvr.resume(T3Srvr.java:806)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:295)
    at weblogic.Server.main(Server.java:32)
    Somebody can help me.
    Thank you.

  • 10.3, how to configure cluster as "single Weblogic server"

    Hello,
    We have a Cluster with Two Managed servers. The ports for the MS's are 7002, 7003. We want deployments for these servers to be visible through port 80/443. Currently we have Mapviewer application deployed and targeted to the cluster. All servers are RUNNING and the deployment is active. However we are only able to access the deployment on ports 7002, 7003.
    The documentation states: "A WebLogic Server cluster consists of multiple WebLogic Server server instances running simultaneously and working together to provide increased scalability and reliability. A cluster appears to clients to be a single WebLogic Server instance."
    But nowhere does it state how to get a cluster to appear as a "single Weblogic server instance". Where does this happen in the admin console or config files? Perhaps its a node manager function? Please help. Thank you.

    Thank you. I was beginning to think it was something external to Weblogic. I saw alot in the docs about Load Balancing within Weblogic but didn't read much into it. I'm assuming its more at the application level? Anyhow..
    Reading the description of the FrontEndHttpPort config option for Clusters made me think it was the solution:
    "Sets the FrontendHTTPPort for the default webserver (not virtual hosts) for all the servers in the cluster. Provides a method to ensure that the webapp will always have the correct PORT information, even when the request is coming through a firewall or a proxy. If this parameter is configured, the HOST header will be ignored and the information in this parameter will be used in its place, when constructing the absolute urls for redirects."
    I would set FrontendHTTPPort to 80, restart everything and get strange results. If I typed in http://localhost:7003/mapviewer it will redirect browser to http://localhost/mapviewer/faces/home.jspx and give a 404 type error. Using this new URL if I inserted the :7003 port again and hit go, the page would come up...but submitting a form or link on the page it would redirect back to port 80 and a 404 error. edit: this is probably working as intended.
    So is there a popular solution or plugin for this issue?
    Edited by: jstretch on Jan 21, 2009 2:06 PM

  • How to configure WebCenter runtime on WebLogic server

    Hi,
    I have exposed my existing ADF 11g application as a portlet based on the inputs that I got from Re: Exposing Existing ADF application as a portlet in WebCenter . I'm able to deploy this and run this in the embedded WebLogic server that comes with JDev. But I'm getting an error when I try to deploy it on an standalone WebLogic Server? Do I need to anytshing specific to configure WebCenter run time? Currently, I just have ADF run time configured on the server. Please let me know.
    Regards,
    Antony.

    You have to install webcenter. It's a rather large installation.
    You can find the download here:
    http://www.oracle.com/technetwork/middleware/downloads/fmw-11-download-092893.html
    The one you are looking for is:
    WebCenter Suite (11.1.1.2.0)
    And if you are running WLS 10.3.3 you also need to install
    WebCenter Suite (11.1.1.3.0) (after installing the 11.1.1.2.0)
    And don't forget to first run the RCU which you also need to download if you haven't already done so
    Repository Creation Utility (11.1.1.3.3) (if you are using WLS 10.3.3 with Webcenter 11.1.1.3)
    or Repository Creation Utility (11.1.1.2.1) (if you are using WLS 10.3.2 with webcenter 11.1.1.2)
    If the installation askes to install UCM, don't check this on because otherwhise you also need to download UCM:
    Content Management for WebCenter (10.1.3.5.1)
    After the installation is done, you can run the configuration tool from the WLS to create a new domain and then you can select the webcenter components you want to install in the domain.

  • Getting Error while configuring thirdparty adaptor on weblogic server.

    Hi,
    I am using Oracle SOA Suite 11g & weblogic server 10.1.3. We have requirement in which SAP need to call BPEL webservice. So i came to know that this i can achive through oracle thirdparty adaptor. I have installed this as per oracle document. Now for SAP, i am going to deploy J2CA into weblogic server. I am getting following error. Could you please help me on this?
    java.lang.IllegalArgumentException: </resourceadapter> </connector> icrosystems, Inc.//DTD Connector 1.0//EN' 'http://java.sun.com/dtd/connector_1_0.dtd'> <connector> <display-name>IWAFJCA10</display-name> <vendor-name>IWAY Software</vendor-name> <spec-version>1.0</spec-version> <eis-type>IWAF</eis-type> <version>1.0</version> <license> <license-required>false</license-required> </license> <resourceadapter> <managedconnectionfactory-class>com.ibi.afjca.spi.IWAFManagedConnectionFactory</managedconnectionfactory-class> <connectionfactory-interface>javax.resource.cci.ConnectionFactory</connectionfactory-interface> <connectionfactory-impl-class>com.ibi.afjca.cci.IWAFConnectionFactory</connectionfactory-impl-class> <connection-interface>javax.resource.cci.Connection</connection-interface> <connection-impl-class>com.ibi.afjca.cci.IWAFConnection</connection-impl-class> <transaction-support>LocalTransaction</transaction-support> <config-property> <config-property-name>AdapterName</config-property-name> <config-property-type>java.lang.String</config-property-type> <config-property-value>SAP</config-property-value> </config-property> <config-property> <config-property-name>Config</config-property-name> <config-property-type>java.lang.String</config-property-type> <config-property-value></config-property-value> </config-property> <config-property> <config-property-name>IWayHome</config-property-name> <config-property-type>java.lang.String</config-property-type> <config-property-value>D:\Oracle\ora11g\fmw11gHome\Oracle_SOA1\soa\thirdparty\ApplicationAdapters</config-property-value> </config-property> <config-property> <config-property-name>IWayConfig</config-property-name> <config-property-type>java.lang.String</config-property-type> <config-property-value>J2CA_SampleConfig</config-property-value> </config-property> <config-property> <config-property-name>IWayRepoDriver</config-property-name> <config-property-type>java.lang.String</config-property-type> <config-property-value></config-property-value> </config-property> <config-property> <config-property-name>IWayRepoURL</config-property-name> <config-property-type>java.lang.String</config-property-type> <config-property-value></config-property-value> </config-property> <config-property> <config-property-name>IWayRepoUser</config-property-name> <config-property-type>java.lang.String</config-property-type> <config-property-value>weblogic</config-property-value> </config-property> <config-property> <config-property-name>IWayRepoPassword</config-property-name> <config-property-type>java.lang.String</config-property-type> <config-property-value>weblogic1</config-property-value> </config-property> <config-property> <config-property-name>LogLevel</config-property-name> <config-property-type>java.lang.String</config-property-type> <config-property-value>DEBUG</config-property-value> </config-property> <config-property> <config-property-name>LogSize</config-property-name> <config-property-type>java.lang.Integer</config-property-type> <config-property-value>100000</config-property-value> </config-property> <config-property> <config-property-name>LogCount</config-property-name> <config-property-type>java.lang.Integer</config-property-type> <config-property-value>10</config-property-value> </config-property> <authentication-mechanism> <authentication-mechanism-type>BasicPassword</authentication-mechanism-type> <credential-interface>javax.resource.spi.security.PasswordCredential</credential-interface> </authentication-mechanism> <reauthentication-support>false</reauthentication-support> is not a legal value for TransactionSupport. The value must be one of the following: [NoTransaction, LocalTransaction, XATransaction]
    Thanks

    Hi,
    anybody has any idea on this??
    i am also facing one issue in which after installing Oracle Application Adaptor. i am not able see adaptors detail like SAP, peoplesoft, JDEdwards, Siebel.
    Please help me onthis issue.
    Thanks
    Amit

  • How to deploy jsp project in weblogic server 10.3

    I have downloaded a jsf project from a website. I want to deploy it in weblogic server 10.3. What to do?

    This has nothing to do with JDev.
    Ask your question WebLogic Server - General
    Timo

  • Configuring web.xml for Weblogic Server 5.1

    Hi,
    I am working on Weblogic Server (WLS) 5.1 SP 12. I have a web application running on it. At present, it does not have a web.xml file. I want to use Front Controller pattern, and therefore I need to have a web.xml file (to specify the URL Pattern for Front Controller) inside WEB-INF directory on server. I have placed the web.xml file inside WEB-INF directory of application, and have marked the URL pattern. However, the application is not taking into consideration that thing, i.e. mu front controller is not getting into picture, its entry is being ignored. How to make sure that it is not by-passed?
    My application is not in a .war format. WLS 5.1 SP12 is running on Sun Solaris.
    Is there a way to make sure that the intended thing happens?
    Plz help.
    Regards,
    Raj

    Yes, I restarted the app server after making changes to web.xml file. No effects.

  • JSPs, EJBs in WebLogic Server 6.1

              Hi everyone,
              I'm starting to develop my first j2ee application. Mainly it is a few jsp pages
              accessing ejbs business logic.
              I would like to implement a security system to prevent anonymous users to access
              the jsp pages.
              It is possible to configure in a descriptor the user information and a profile
              associated with each user, such as read, write, update, delete...? When i refer
              these users i'm talking about the customers that will user the application..they
              are not weblogic users.
              In a few words...i want to implement a basic security system.
              Thanks for your help,
              Best Regards,
              João Seixas
              +351 93 8487351
              [email protected]
              [email protected]
              

    Please post this to the security newsgroup.
              Joao Carlos Seixas wrote:
              > Hi everyone,
              > I'm starting to develop my first j2ee application. Mainly it is a few jsp pages
              > accessing ejbs business logic.
              > I would like to implement a security system to prevent anonymous users to access
              > the jsp pages.
              > It is possible to configure in a descriptor the user information and a profile
              > associated with each user, such as read, write, update, delete...? When i refer
              > these users i'm talking about the customers that will user the application..they
              > are not weblogic users.
              > In a few words...i want to implement a basic security system.
              >
              > Thanks for your help,
              > Best Regards,
              > João Seixas
              > ------------------------------------
              > +351 93 8487351
              > [email protected]
              > [email protected]
              > ------------------------------------
              Regards,
              Ann
              Developer Relations Engineer
              BEA Support
              

  • How to configure SSL in standalone weblogic server for ADF apps

    Hello,
    I'm new to weblogic, Could anyone provide documentation/blog references to configuring SSL in weblogic for adf application. Currently adf application deploys on http I need it to deploy as https.
    Appreciate your response
    Thanks and Regards

    Expand Environment > Click on Server > Click on Keystores Tab
    Under Keystores you have some options like DemoIdentity & Demo Trust.
    If u want to use the default keystores, you dont have to modify these configuations.
    Just enable SSL and specify the listen port.
    Expand Environment > Click on Server > General
    SSL Listen Port Enabled
    SSL Listen Port:
    If u want to use your own keystore Select Custom Identity and Custom Trust besides Keystores Drop Down and specify the require values.
    If u need any clarification let me knw.
    HTH,
    Faisal
    http://download-llnw.oracle.com/docs/cd/E11035_01/wls100/secmanage/ssl.html

  • JHTML to JSP convertor for WebLogic Server 4.5.0 and above

    Hallo,
    For what kind of JHTML is that convertor ???
    Can it convert Dynamo JHTML pages to JSP pages ???
    Thanks
    [email protected]
    Dusan

    The tool in the freeware downloads section of commerce.bea.com was a
    tool that was originally targeted at converting pre-WLS 4.51 JHTML into
    JSP 1.0 pages. It might be able to help you do the Dynamo conversion
    but I would suspect that you will still need to do some work by hand to
    make sure that everything is correctly converted...
    Hope this helps,
    Robert
    Dusan Petrovic wrote:
    Hallo,
    For what kind of JHTML is that convertor ???
    Can it convert Dynamo JHTML pages to JSP pages ???
    Thanks
    [email protected]
    Dusan

  • How to run jsp in weblogic server

    hi,
    how to run jsp application in weblogic server,plz send the procedure how to deploy..
    Thanks

    How to run JSP and EJB program using weblogic server

Maybe you are looking for