Monday, February 15, 2010

How to add a user to to Administrator in Webcneter


you need to add the user to the role name :
s8bba98ff_4cbb_40b8_beee_296c916a23ed#-#Administrator

How to Configure RSS feeds for Webcenter

If you planning on subcribing to external RSS in webcenter you need to configure the proxy from the server you have configured webcenter.

i) go to the /app/oracle/product/Middleware/Oracle_WC1/common/bin
ii) ./wlst.sh
Welcome to WebLogic Server Administration Scripting Shell
Type help() for help on available commands
wls:/offline>

iii) connect ()

Please enter your username [weblogic] :weblogicPlease enter your password [welcome1] :Please enter your server URL [t3://localhost:7001] :t3://soalab01.ros.com:7001Connecting to t3://soalab01.ros.com:7001 with userid weblogic ...Successfully connected to Admin Server 'AdminServer' that belongs to domain 'wc_domain'.
Warning: An insecure protocol was used to connect to theserver. To ensure on-the-wire security, the SSL port orAdmin port should be used instead.
wls:/wc_domain/serverConfig>

iv) setRssProxyConfig( appName = 'webcenter', proxyHost = 'proxy.ros.com', proxyPort = '80' )

v) restart the Managed Service [ I have restarted both spaces and webcenter services]

Tuesday, February 2, 2010

Weblogic Server Shutting down automatically - BEA-000388

The WebLogic Server is shutting down automatically after few hrs(7-8) with the following message:


----If you start the $MIDDLEWARE_HOME/user_projects/domains/wc_domain/bin/startWebLogic.sh and put in the background, after few hours of incativity the process shuts down Automaticall.

the cause could be OS specific kicking out the user, so a as to make the startup script independent of this OS specific bootouts , add the folliwing in your startup script startWebLogic.sh

SAVE_JAVA_OPTIONS="-Xrs"

the version i have is:
WebLogic Server Version: 10.3.2.0

Oracle B2B setup over AS2

As2 is a protocol used to transfer EDI payloads over HTTP or HTTPS , the AS2 Headers will add extra level of security while exchanging Data with your Tradin Partners.

Key Advantage of using AS2 is the USe of MDN's - which are Responses for the message sent..similar to ACK that the message is been recieved from a trusted party.

Host TP -------Payload over AS2----------->Remote TP
Host TP <-------MDN for the sent Payload---Remote TP

Follow the steps below to Setup Transfers over AS2 using Oracle B2B Server:

i) Exchange AS2 related information with your Trading Partners [ AS2 Identifiers, End point URL's]
ii)Exchange Public Certificates of Each Parties Involved. [Verisign,godaddy..]

Monday, February 1, 2010

How to Setup Oracle Webcenter Spaces

  1. Installation
  2. Post Installation
  3. Wire up the Webcenter Services with Webcenter Spaces
  4. Patches [MLR] Installed :9308777 ,9313626

How to Extend a Table Space

If you run out of Table Space on any of your database
you can extend with the following SQL:

ALTER DATABASE DATAFILE '+SOAUAT_DATA01/idmuat/datafile/idmdata_ts.433.676232907'
AUTOEXTEND ON
NEXT 1000M
MAXSIZE 17000M;
commit;