Web Agent - MEDIAPUT ORA-3113

Hi,
I'm running an 8.1.6 db and using WebAgent on Redhat 6.1.
I have a running application to upload files into blob columns that usually works well except that from time to time the following error message appears:
"Oracle interMedia Web Agent
An error occurred processing your MEDIAGET or MEDIAPUT request
Error while trying to retrieve text for error ORA-03113"
I have no idea why I'm getting this error, if I refresh the page then I get the normal MEDIAPUT succeeded message and the document is loaded.
This is a little disconcerting for my end-users. Does anyone know what is causing this error or where to start looking?
Many Thanks.
Niall.
null

Hi Niall,
Unfortunately, the fact that you're not seeing any trace files or
anything in the alert log isn't giving us much to go on. I'll answer
your questions first, then list some ideas at the end.
The error message you are seeing, "MWM-00608: error executing a SQL
statement", indicates that the Web Agent really is executing a
statement - its pretty specific about what its doing when it has to
write an error message. For example, if the error were occuring when
it was trying to connect to the server or start a new database
session, then you'd see something like "MWM-00546: OCI error attaching
to database server using service name '%s'" or "MWM-00548: OCI error
beginning database session using service name '%s'".
Are there any delay / timeout parameters that should be examined or
changed ?The Web Agent doesn't use any timers. It simply issues calls to OCI and
waits for the response.
Does the Web Agnet try to keep it's connection alive from the previous
upload ?Yes it does. For database agents defined with a fixed user name and
password, the Web Agent keeps both the server connection and database
session active for use in subsequest requests. For database agents
that do not specify a password, the Web Agent keeps only the server
connection active between requests. It does this to avoid the overhead
of creating a new server connection/database session for every
request, something which would result in a noticeable in servicing
requests.
The fact that the MEDIAPUT request works immediately after the error
(upon page refresh) makes me wonder if the server process is not
coming up fast enough for the Web Agent? A page refresh should result in the browser resending the same request
to the web server. When the web agent gets the request, it will simply
create a new server connection/database session with which to execute
the necessary SQL. That is, assuming the request goes to the same
process. If it goes to a different process, then there may already be
an existing connection that can be used, or a new connection may be
created.
Here are some thoughts as to what might be causing the problem, plus
some suggestions where I can make any:
1. The database is being shutdown and restarted without restarting the
web agent and/or web server. This will cause the error you are
seeing, because the Web Agent doesn't know the database has gone
down and will try to use existing sessions when new requests
arrive.
If you're using Apache, then you'll need to restart Apache in order
to restart the Web Agent. If you're using iPlanet Web Server in
single-process mode, then you can use the Web Agent's on-line admin
interface to reload the configuration, which will cause the Web
Agent to shutdown any existing database sessions and server
connections, then re-read the configuration file. As new requests
are received, new connections will be established.
2. Individual database sessions are being killed by something and/or
someone. Although some documentation I read says that clients
should get an ORA-00028 error message, when I tried it, I got
ORA-03113. I didn't see anything in my alert log when I was trying
it, but there may be settings you can use to enable the logging of
such actions.
3. Individual TCP/IP network connections are being killed by something
and/or someone. I don't know how you're web server and database
server are configured, or what transport they're using, but this
sort of thing will result in the error you are seeing.
4. There's some sort of bug in the 8.1.6 server on Linux which results
in the server consuming virtual memory or some other resource to the
point that when the resource runs out, it doesn't have enough resource
to write a trace dump file.
If this is happening, then its going to be a case for the support
folks to look at. One possible way of proving this would be to
periodically restart the web server or reload the Web Agent
configuration, so re-initializing all the connections.
Some other questions that may or may not have a bearing on the issue.
- How often does this occur? Once a day, once a week, or multiple
times per day to different users?
- Which web server are you using?
- Does it always happen to the empentblobs.empent_doc procedure or
do other procedures experience problems?
- What does the empentblobs.empent_doc procedure do, and can it be
simplified in any way to narrow down the problem?
That's all I can think of for now. Please let us know if any of this
helps, or at least helps to point in the right directory.
Regards,
Simon
null

Similar Messages

  • Intermedia Web Agent error MWM-00622

    Has anyone encountered the error "MWM-00622 Error Describing
    PL/SQL procedure" when using the web agent?
    I am using the interMedia web agent to upload images to a BLOB.
    Everything works fine, until I pass a table as a parameter to
    the ord_call procedure of mediaput.
    Does the mediaput procedure accept tables as parameters?
    Thanks!

    The mediaput procedure only takes varchar2 type parameters and
    some reserved parameters, such as content_blob as BLOB type.
    Those varchar2 type parameters should have names that exist in
    the HTTP request headers or HTML FORM INPUT names. Otherwise,
    MWM-00622 error will be thrown.
    In your case, do you pass in a table name as a parameter? What
    do you mean pass a table to mediaput procedure? If it's a table
    name, then it should be OK if the parameter name exists in the
    FORM INPUT name.
    regards,
    Richard

  • Error using intermedia web agent on image upload

    I use web agent, the PL/SQL Proc are OK, but sometimes, when I upload images, I've got this message.
    don't understand because the same image can upload the next time....
    MWM-00015: event logged at 17-Oct-2000 15:51:11 web agent 'interMedia'
    MWM-00013: request: method='POST' path='/intermedia/kiliko/mediaput/LIVR_PUT/' client=213.228.49.133
    MWM-00740: MEDIAPUT request did not return a non-NULL content handle
    null

    That's the JSP page I use to upload image if you need more info.
    the PL proc I used are generated by clipboard.
    <%@ page contentType="text/html;charset=WINDOWS-1252"%>
    <jsp:useBean id="annonceejb" scope="page" class="a2a.annonce.pages.annoncejsp">
    </jsp:useBean>
    <%@ include file="../../includes/globals.txt" %>
    <%
    java.lang.String strannonce=request.getParameter("annonce");
    int idannonce=-1;
    if (strannonce!=null)
    idannonce=java.lang.Integer.parseInt(strannonce);
    annonceejb.insertImageAnnonce(idannonce);
    %>
    <html>
    <head>
    <title>Ajoutez une photo &agrave; l'annonce</title>
    <SCRIPT LANGUAGE="JavaScript1.2">
    <!-- Debut script
    function valide() {
    if (document.all)
    window.event.cancelBubble=true;
    window.event.returnValue = false;
    if (document.forms[0].ord_content.value=="")
    alert("Selection obligatoire du fichier!")
    // Fin script -->
    </SCRIPT>
    </head>
    <body bgcolor="#3399CC">
    <p>
    <br>
    <br>
    <br>
    </p>
    <form action="<%=SGBD_SERVER%>/mediaput/PUT_ANN/"
    method="post"
    enctype="multipart/form-data">
    <div align="center"><font color="#FFFFFF"><b><font size="2" face="Arial">s&eacute;lectionnez
    la photo de votre annonce</font></b></font> </div>
    <input type="hidden" name="ord_post_put_call" value="REDIRECT_ANN_AMS">
    <input type="hidden" name="ord_procedure_path" value="<%=idannonce%>">
    <p align="center"> <!-- We use file input to add the image -->
    <input type="file" name="ord_content" size=20>
    <br>
    </p>
    <div align="center"><font face="Arial" size="1" color="#FFFFFF">
    <IMG SRC="../../commun/images/stabtn_valider.gif" BORDER=0 WIDTH=64 HEIGHT=12>
    <a href="supphotoannonce.jsp?annonce=<%=idannonce%>"><img src="../../commun/images/stabtn_annuler.gif" width="64" height="12" border="0"></a>
    </div>
    </form>
    <div id="Layer1" style="position:absolute; width:451px; height:546px; z-index:1; left: 503px; top: 51px; background-color: #FFFFFF; layer-background-color: #FFFFFF; border: 1px none #000000; visibility: hidden"></div>
    </body>
    </html>
    null

  • 9i Web Agent Error when displaying Java Table/Graph

    Hi,
    I am in the process of upgrading a Express 6.3.4 Web Agent database app to 9i.
    I have been able to import the databases correctly, under the OOWAAPP schema.
    On my app when ever I go to a page to display a Java Table I get the following error:
    oracle.olap.webAgent.express.OWAException: <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"><HTML><HEAD><TITLE>Oracle OLAP Web Agent</TITLE></HEAD><BODY bgcolor="#FFFFFF"><P><img src="/oowa-install/sample/wabanner.gif" alt="Oracle OLAP Web Agent"></p><P><STRONG>An error occurred in the Oracle OLAP Web Agent</STRONG></p><STRONG>ORA-33272: (DBERR06) Analytic workspace IADSSDEMO.OOWASEL cannot be opened.
    ORA-01950: no privileges on tablespace 'IADSS'
    ORA-06512: at "SYS.DBMS_AW", line 18
    ORA-06512: at line 1
    </STRONG><P><!--<STRONG>Click <A HREF="/oowa-install/help/en/owacauseaction.html#ORA-33272: (DBERR06) Analytic workspace IADSSDEMO.OOWASEL cannot be opened.
    ORA-01950: no privileges on tablespace 'IADSS'
    ORA-06512: at SYS.DBMS_AW", line 18
    ORA-06512: at line 1
    ">here</A> to display information about potential causes for this error and about potential resolutions for the problem.</STRONG>--></p></BODY></HTML>
    The UserID I am logged in as is IADSSDEMO. While the AW are in the OOWA schema, I have forced them to use a tablspace of IADSS.
    The Page has some option/selectors followed by a java table.
    Any ideas?
    Regards,
    Imran Shah
    Ioppolo & Associates

    This forum is for Warehouse Builder related issues. Your question is better suited for the OLAP forum:
    OLAP

  • ORA 3113 error when dropping user

    I have an instance of oracle 9.2 that when I drop a user I get the ORA-3113 error.
    I have no other problems with this database, It can be started and stopped with out error, users can connect...etc.
    I tried the following oracle solution without success
    Subject:      ORA-03113 While Dropping a User     
          Doc ID:      Note:291186.1     Type:      PROBLEM     
          Last Revision Date:      21-JUL-2005     Status:      MODERATED     
    The information in this document applies to:
    Oracle Server - Enterprise Edition - Version: 9.2.0.5
    This problem can occur on any platform.
    Errors
    ORA-03113 "end-of-file on communication channel"
    Symptoms
    ORA-03113 is thrown, while dropping a User
    SQL> drop user test9 cascade;
    ORA-03113 end-of-file on communication channel
    Cause
    Corrupted password file
    Check whether REMOTE_LOGIN_PASSWORDFILE is set to { SHARED | EXCLUSIVE}
    Fix
    -- Recreate the password file.
    ++ $ orapwd file=orapw<sid> password=<sys's password> entries=<max # user's>
    NOTE:
    -- Set the REMOTE_LOGIN_PASSWORDFILE=NONE
    -- Drop the user
    -- If it is successful, You are hitting this problem.

    Are u getting this error sometimes while connecting to DB.
    If not check the trace file generated on the server at failure time.
    Regards
    Raman

  • ORA-3113 while running export (first run ok, second run fails)

    Hi,
    I'm running 10g (10.1.0.2.0) on gentoo Linux.
    After a restart of the database I can do an EXP for any user without errors. But when I repeat the same command after the export I get the following error:
    . . exporting table WEB_SESSION_DATA 0 rows exported
    . exporting synonyms
    EXP-00008: ORACLE error 3113 encountered
    ORA-03113: end-of-file on communication channel
    EXP-00000: Export terminated unsuccessfully
    It's always the same error on the same task (exporting synonyms) but always just for the second and any later export, while the first one is ok.
    I read through some forums and found, that ORA-3113 is a standard error which just hides the real error. So I look into the trace files and found:
    ksedmp: internal or fatal error
    ORA-07445: exception encountered: core dump [jox_lookup_known_object()+413] [SIGSEGV] [Address not mapped to object] [0x1AD14034] [] []
    Current SQL statement for this session:
    SELECT SYNNAM, DBMS_JAVA.LONGNAME(SYNNAM), DBMS_JAVA.LONGNAME(SYNTAB), TABOWN, TABNODE, PUBLIC$, SYNOWN, SYNOWNID, TABOWNID, SYNOBJNO FROM SYS.EXU9SYN WHERE SYNOWNID = :1 ORDER BY SYNTIME
    If I call this SQL from sqlplus I get the same ORA-3113, so this seems to be the cause for the export failure.
    When I remove the DBMS_JAVA.LONGNAME calls from the statement, it runs fine. It also runs fine, when I add a "and 1=0" to the EXU9SYN view. But this will not really solve the problem, because then all synonyms don't get exported.
    I also checked all the synonyms and they are valid, the referenced tables exist and can be queried.
    Because we use JavaStoredProcedures I cannot remove the Java Features in Oracle. But I reinstalled it (rmjvm.sql and initjvm.sql) but this did not help.
    Does anyone have an idea what's happening here?
    Especially the "first run ok, second run fails" seems to be very strange, because DB objects including DBMS_JAVA should be ok, if the first export can be done. So what changes in the database during or after the first run?

    Maybe description for bug 3953108 (ORA-7445 AND ORA-3113 DURING DIRECT FULL DATABASE EXPORT OF PUBLIC SYNONYMS) is helpful.
    Werner

  • SQL*Plus Raises: ORA-3113 End of file on communication channel

    I have a Win2000 machine running Oracle client 8i, connecting to an HP-UX server running 9i RAC, with an unknown collection of switches/firewalls in between. Using SQL*Plus I can successfully connect and run queries. However, if I leave the session idle for some time, approximately 15 minutes (though this varies), the next query I execute hangs for a few seconds, then returns with ORA-3113.
    I have enabled client-side tracing (ADMIN level). The following extract shows the point at which an error first occurs:
    nsprecv: reading from transport...
    nttrd: entry
    ntt2err: entry
    ntt2err: soc 660 error - operation=5, ntresnt[0]=517, ntresnt[1]=54, ntresnt[2]=0
    ntt2err: exit
    nttrd: exit
    nsprecv: transport read error
    nserror: nsres: id=0, op=68, ns=12547, ns2=12560; nt[0]=517, nt[1]=54, nt[2]=0; ora[0]=0, ora[1]=0, ora[2]=0
    nsdo: nsctxrnk=0
    nioqrc: wanted 1 got 0, type 0
    nioqper: error from nioqrc
    nioqper: nr err code: 0
    nioqper: ns main err code: 12547
    nioqper: ns (2) err code: 12560
    nioqper: nt main err code: 517
    nioqper: nt (2) err code: 54
    nioqper: nt OS err code: 0
    nioqer: entry
    nioqce: entry
    nioqce: exit
    nioqer: exit
    nioqrc: exit
    nioqbr: entry
    nioqbr: state = normal (0)
    nioqsm: entry
    nsdo: cid=0, opcode=67, bl=1, what=17, uflgs=0x100, cflgs=0x3
    nsdo: rank=64, nsctxrnk=0
    nsdo: nsctx: state=1, flg=0x420d, mvd=0
    nsdo: nsctxrnk=0
    nioqsm: send-break: failed to send break...
    nioqper: error from send-marker
    nioqper: nr err code: 0
    nioqper: ns main err code: 12583
    nioqper: ns (2) err code: 0
    nioqper: nt main err code: 0
    nioqper: nt (2) err code: 0
    nioqper: nt OS err code: 0
    nioqsm: exit
    A google search returned one page that suggests the culprit here is the line:
    ntt2err: soc 660 error - operation=5, ntresnt[0]=517, ntresnt[1]=54, ntresnt[2]=0
    This apparently indicates that the network timed out, a sign of a busy network.
    Can anyone:
    a) Confirm this or otherwise;
    b) Suggest how I may go about proving this to a corporate network operations team;
    Cheers, Si.

    I think the reason can be timeout on one of the firewalls. Network administrators
    quite often configure following setting:
    "Disconnect idle connection after 15 minutes" - I facedd this problem several
    times.
    Best Regards
    Krystian Zieja / mob

  • Ora -3113 error in the alert log

    Hi ,
    We are getting ORA-3113 error in the alertlog and i pasted below alert log entry.
    VERSION INFORMATION:
    TNS for Linux: Version 11.1.0.7.0 - Production
    Unix Domain Socket IPC NT Protocol Adaptor for Linux: Version 11.1.0.7.0 - Production
    Oracle Bequeath NT Protocol Adapter for Linux: Version 11.1.0.7.0 - Production
    TCP/IP NT Protocol Adapter for Linux: Version 11.1.0.7.0 - Production
    Time: 27-JAN-2011 16:11:25
    Tracing not turned on.
    Tns error struct:
    ns main err code: 12535
    TNS-12535: TNSperation timed out
    ns secondary err code: 12560
    nt main err code: 505
    TNS-00505: Operation timed out
    nt secondary err code: 110
    nt OS err code: 0
    Client address: (ADDRESS=(PROTOCOL=tcp)(HOST=10.100.72.127)(PORT=2844))
    Thu Jan 27 16:13:55 2011
    opidcl aborting process unknown ospid (18585_47319544949952) due to error ORA-3113
    Thu Jan 27 16:14:03 2011
    Thread 2 advanced to log sequence 2022 (LGWR switch)
    Current log# 4 seq# 2022 mem# 0: +DATA/systemprod/onlinelog/group_4.269.736019283
    Current log# 4 seq# 2022 mem# 1: +FLASH1/systemprod/onlinelog/group_4.262.736019285
    Thu Jan 27 16:14:13 2011
    opidcl aborting process unknown ospid (14096_47207734746304) due to error ORA-3113
    Thu Jan 27 16:16:34 2011
    Thread 2 advanced to log sequence 2023 (LGWR switch)
    Current log# 8 seq# 2023 mem# 0: +DATA/systemprod/onlinelog/group_8.319.736018999
    Current log# 8 seq# 2023 mem# 1: +FLASH1/systemprod/onlinelog/group_8.3138.736018999
    Thu Jan 27 16:19:33 2011
    Thread 2 advanced to log sequence 2024 (LGWR switch)
    Current log# 3 seq# 2024 mem# 0: +DATA/systemprod/onlinelog/group_3.268.736019049
    Current log# 3 seq# 2024 mem# 1: +FLASH1/systemprod/onlinelog/group_3.261.736019051
    Thu Jan 27 16:22:17 2011
    What could be the workaround to resove this issue
    Regards
    Prem

    ORA-00600/ORA-07445/ORA-03113 = Oracle bug => search on Metalink and/or call Oracle support

  • Apache Web Agent problem (web agent 2.0, Opensso 8.0) with IHS/WAS 6.1

    I installed a apache web agent 2.0 and opensso 8.0 on the same windows server. The web agent is running over IHS server. Opensso is running overs WAS 6.1
    While attempting to access an application, after succesful authentification, i got on the web browser a 403 error.
    Can someone help me?
    You can find below, the error message on the browser, and an extract of agent log file.
    Thanks
    Regards
    Gigi62
    Error message on the web browser:
    Forbidden
    You don't have permission to access /AppliTestOpensso1 on this server.
    IBM_HTTP_Server Server at aaaa.agent.com Port 80
    Extract of the agent log file:
    2009-12-22 09:31:44.647MaxDebug 5356:d11e88 AM_POLICY_SERVICE: am_policy_compare_urls(): compare usePatterns=false returned 3
    2009-12-22 09:31:44.647MaxDebug 5356:d11e88 all: is_url_enforced(): URL http://aaaa.agent.com:80/AppliTestOpensso1 is enforced.
    2009-12-22 09:31:44.647 Debug 5356:d11e88 all: am_web_get_parameter_value(): Param Name = iPlanetDirectoryPro, & Param Value = NULL, status not found
    2009-12-22 09:31:44.647 Debug 5356:d11e88 all: am_web_is_access_allowed()(http://aaaa.agent.com:80/AppliTestOpensso1,GET): no sso token, setting status to invalid session.
    2009-12-22 09:31:44.647 Info 5356:d11e88 all: am_web_is_access_allowed()(http://aaaa.agent.com:80/AppliTestOpensso1, GET) returning status: invalid session.
    2009-12-22 09:31:44.647 Info 5356:d11e88 all: process_request(): Access check for URL http://aaaa.agent.com:80/AppliTestOpensso1 returned invalid session.
    2009-12-22 09:31:44.647MaxDebug 5356:d11e88 all: am_web_get_url_to_redirect: goto URL is http://aaaa.agent.com:80/AppliTestOpensso1
    2009-12-22 09:31:44.647MaxDebug 5356:d11e88 all: find_active_login_server(): Trying server: http://aaaa.agent.com:9080/opensso/UI/Login
    2009-12-22 09:31:44.647 Debug 5356:d11e88 all: is_server_alive(): Connection timeout set to 2
    2009-12-22 09:31:44.709 Debug 5356:d11e88 all: process_access_redirect(): get redirect url returned AM_SUCCESS, redirect url [http://aaaa.agent.com:9080/opensso/UI/Login?goto=http%3A%2F%2Faaaa.agent.com%3A80%2FAppliTestOpensso1].
    2009-12-22 09:31:44.709 Debug 5356:d11e88 all: process_access_redirect(): returning web result AM_WEB_RESULT_REDIRECT.
    2009-12-22 09:31:44.709 Debug 5356:d11e88 all: process_request(): returning web result AM_WEB_RESULT_REDIRECT, data [http://aaaa.agent.com:9080/opensso/UI/Login?goto=http%3A%2F%2Faaaa.agent.com%3A80%2FAppliTestOpensso1]
    2009-12-22 09:31:44.709 Debug 5356:d11e88 all: am_web_process_request(): Rendering web result AM_WEB_RESULT_REDIRECT
    2009-12-22 09:31:44.709 Debug 5356:d11e88 all: am_web_process_request(): render result function returned AM_SUCCESS.
    2009-12-22 09:31:44.709MaxDebug 5356:d11e88 all: get_request_url(): Host: aaaa.agent.com
    2009-12-22 09:31:44.709MaxDebug 5356:d11e88 all: get_request_url(): Port is 80.
    2009-12-22 09:31:44.709 Debug 5356:d11e88 all: get_request_url(): Returning request URL http://aaaa.agent.com:80/AppliTestOpensso1.
    2009-12-22 09:31:44.709 Warning 5356:d11e88 all: get_method_num(): Apache request method number did not match method string. Setting method number to match method string GET.
    2009-12-22 09:31:44.709MaxDebug 5356:d11e88 all: am_web_is_notification(), http://aaaa.agent.com:80/AppliTestOpensso1 is not notification url http://aaaa.agent.com:80/UpdateAgentCacheServlet?shortcircuit=false.
    2009-12-22 09:31:44.709MaxDebug 5356:d11e88 all: am_web_is_access_allowed(): Processing url http://aaaa.agent.com:80/AppliTestOpensso1.
    2009-12-22 09:31:44.709MaxDebug 5356:d11e88 all: FqdnHandler::isValidFqdnResource() Resource => http://aaaa.agent.com:80/AppliTestOpensso1, is valid => true
    2009-12-22 09:31:44.709 Debug 5356:d11e88 all: is_url_enforced(): client_ip 10.245.197.145 not found in client ip not enforced list
    2009-12-22 09:31:44.709MaxDebug 5356:d11e88 AM_POLICY_SERVICE: am_policy_compare_urls(): compare usePatterns=true returned 3
    2009-12-22 09:31:44.709 Debug 5356:d11e88 all: in_not_enforced_list: enforcing access control for http://aaaa.agent.com:80/AppliTestOpensso1
    2009-12-22 09:31:44.709 Debug 5356:d11e88 all: am_web_is_logout_url(http://aaaa.agent.com:80/AppliTestOpensso1): normalized URL http://aaaa.agent.com:80/AppliTestOpensso1.

    Hi gimbal2 ,
    thanks for your prompt response.
    I deleted jsf-facelets.jar from the lib.
    Also I removed      <context-param>
              <param-name>org.apache.myfaces.trinidad.ALTERNATE_VIEW_HANDLER</param-name>
              <param-value>org.apache.myfaces.trinidadinternal.facelets.TrinidadFaceletViewHandler</param-value>
         </context-param>
         <context-param>
              <param-name>org.apache.myfaces.trinidad.FACELETS_VIEW_MAPPINGS</param-name>
              <param-value>*.xhtml</param-value>
         </context-param>Now that error has gone .But I am still not able to switch between the tabs for .xhtml page but it is working fine for .jsp page.
    For .xhtml page , on clicking on the tab, console is showing something like below
    Aug 17, 2010 9:20:49 PM org.apache.myfaces.trinidad.component.UIXShowDetail broadcast
    WARNING: Event org.apache.myfaces.trinidad.event.DisclosureEvent[phaseId=INVOKE_APPLICATION(5),component=CoreShowDetailItem[UINodeFacesBean, id=j_id957384125_39108532],expanded=true] was delivered to a showDetail already in that disclosure state.

  • Web agent

    Hey there,
    I'm new to intermedia, but I have managed to get it installed, uploaded some images using the clipboard and I'm even able to view them...my question is when I create the web agent, does that user have to have DBA priviledges?? When I use a user that has DBA granted to it, I don't have problems...when I try to change to a user w/ lesser permissions...it doesn't work. Is there a reason for this?
    null

    Hi,
    What error are you seeing, and what operation are you trying to perform when things do go wrong? (In all the work I've done on the Web Agent, I don't think I've ever specified a user that DID have DBA privs!!) Just for interest, have you tried firing up the Clipboard against a simple table created in scott/tiger [eg, create table images(id number, image ordsys.ordimage);]?
    Simon

  • ORA-3113 Error in pl/sql

    Hi,
    I am working in oracle9i and solaris 8.If i execute a package in Pl/sql it shows error as
    ora-03113 end-of-file on communication channel...
    but the same package if i executed in TOAD means it's working fine ....
    Please explain me...

    If i execute a package in Pl/sql Do you mean in SQL*Plus (as opposed to TOAD)?
    ORA-3113 is a generic error, usually meaning the client did something the server didn't like. This can often be caused by incompatibilities between the versions of the client and the database server.
    Unfortunately the generic nature of teh error makes it hard for us to give you a specific answer, Is there anything in the alert log file?
    Cheers, APC

  • My Intermedia Web agent and Clipboard doesn't work!

    Hi,Simon
    I'v just downloaded the Intermedia Web agent and Clipboard plugin from OTN a few days ago.But both of it don't work when I install it.Would you please help me look for the reason?
    My operating system is Windows 2000 Professional,and my web server is OAS 4.0.8.1,and my database is 8i.
    When I visit these address"http://host:port/intermedia/^about"and "http://host:port/intermedia/admin",the browser returns to me a error page.
    When I connect to host in Clipborad,it returns to me an error message which says"The following error was received from the intermedia web agent,<HTML><HEAD><TITLE>Invalid host specified</TITLE></HEAD><BODY>The request did not specify a valid virtual host</BODY>
    I don't know if this web agent can work with OAS 4.0.8.1 and if OAS 4.0.8.1 can run in the Windows 2000 Professional.
    Thanks
    null

    Hi,Simon,
    Thank you for your help!I have sent my application information to your product manager by email!
    But the error stll appears.When I typed the whole domain name in the host area of Clipborad,the error message changed to "An application error has occured,please try again!".When I typed the address"http://My host:port/intermedia/~about"(I have substituted ^ with ~ )"and "http://My host:port/intermedia/admin",it still returns an error page which says"HTTP 500 Server internal error......"like before!
    Also,I found other errors about OAS.One Application cannot add the second Cartridge,it returns an error:"OWS-09103:Cartridge section'[Application wscWRBApp" when I do it.So I suspect the reason is my operating system platform,I will try to reinstall it now.
    Regards!
    Reemon                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Integrating WebLogic Server with CA SiteMinder Web Agent R6

    Hi I have searched on the topic of integrating WebLogic Server with the CA SiteMinder Web Agent R6 to provide single sign on services, and have been unable to find anything. Does anyone have any experience with this that could provide some tips, or could direct me to some documentation?

    It definitely can work. We have done the same thing in several installations. The question is "How secure does it need to be?" You will be using SM to do authentication. You will configure SSO to trust the SM header variable. If you really want to be secure you need to configure your boxes so that the http server on you SUSE box (for Portal) can only be accessed from the Reverse Proxy. If another machine can access it someone could spoof the header variable and log in as anyone they want.
    Hope this is helpful.
    Anton

  • The Web Agent for Apache not working

    Any chances to put the last version of Web Agent (im8154) working with Apache in Linux?
    I4m using a Red Hat 6.2 system with Apache 1.3.12 and I compile the web agent without errors. In the some box I use php40 with Apache and I connect and use my Oracle database in another machine without problem.
    All the enviroment is set (ORACLE_HOME, LD_LIBRARY_PATH, PATH) and I even put the Apache user running as oracle.dba
    The problem is always the some: the Apache don4t find any page (404 in the log) in the /intermedia path. It4s seems that dont fire the web agent module that is compiled (I confirm with httpd -l) into. I can put anything in the httpd.conf in the Intermedia Location section that the symtom is the same: no errors, no logs in ORACLE_HOME/ord/web/log or in the /tmp, nothing at all. Just "Page not Found". But the others Location sections are working like the server-status.
    Any ideias people?
    Fernando Soares

    Any chances to put the last version of Web Agent (im8154) working with Apache in Linux?
    I4m using a Red Hat 6.2 system with Apache 1.3.12 and I compile the web agent without errors. In the some box I use php40 with Apache and I connect and use my Oracle database in another machine without problem.
    All the enviroment is set (ORACLE_HOME, LD_LIBRARY_PATH, PATH) and I even put the Apache user running as oracle.dba
    The problem is always the some: the Apache don4t find any page (404 in the log) in the /intermedia path. It4s seems that dont fire the web agent module that is compiled (I confirm with httpd -l) into. I can put anything in the httpd.conf in the Intermedia Location section that the symtom is the same: no errors, no logs in ORACLE_HOME/ord/web/log or in the /tmp, nothing at all. Just "Page not Found". But the others Location sections are working like the server-status.
    Any ideias people?
    Fernando Soares

  • Import failing with ORA 3113 end of file on communication channel error

    While doing a schema level import on oracle 9.2.0.6 enterprise edition db, i get IMP 00003 with ORA 3113 error.
    The import job fails particularly at one point where it tries to create a view with around 7000 lines.
    Now I tried to create this view manually by executing the sql statement and get the same error.
    As an another exercise when i pick up just a few lines say first 10 or 15 of the view definition, the view gets created in no time.
    So, is there any limitation with Oracle as to how many lines a view can hold or buffer space or something.
    Here is the sample code:
    create or replace view uix_kana_kanji_c_evw as
    select 'EFBC90' as kana_kanji_char from dual
    union select 'EFBC91' as kana_kanji_char from dual
    union select 'EFBC92' as kana_kanji_char from dual
    union select 'EFBC93' as kana_kanji_char from dual
    union select 'EFBC94' as kana_kanji_char from dual
    union select 'EFBC95' as kana_kanji_char from dual
    union select 'EFBC96' as kana_kanji_char from dual
    union select 'EFBC97' as kana_kanji_char from dual
    union select 'EFBC98' as kana_kanji_char from dual
    union select 'EFBC99' as kana_kanji_char from dual
    union select 'EFBCA1' as kana_kanji_char from dual
    union select 'EFBCA2' as kana_kanji_char from dual
    union select 'EFBCA3' as kana_kanji_char from dual
    union select 'EFBCA4' as kana_kanji_char from dual
    union select 'EFBCA5' as kana_kanji_char from dual
    union select 'EFBCA6' as kana_kanji_char from dual
    union select 'EFBCA7' as kana_kanji_char from dual

    ORA-3113 is a generic error. The bad news is there are slightly less than a million combination of OS, platform, versions and events that might cause it to happen.
    The good news is there should be a message in the alert log whenever this occurs. If you're lucky there may be .TRC file as well (check udump directory as well as bdump). The contents of the file(s) should give you some guidance about what causes it to happen. If you still need help from us you'll need to post some concrete details for us to ponder.
    Good luck, APC

Maybe you are looking for

  • Game Center issues. Please help!

    I recently changed my Apple ID email to my gmail one because my other one got hacked. After switching it over everything ran smoothly except for my Game Center profile which would work occasionally, but now every time I try to sign out and sign back

  • Specs on olders minis to work well for video streaming

    What would be the minimum specs for a mini that would work well to show streaming video on a plasma/lcd TV? For example the video player for ABC.com seems like a real resource hog and I'll even experience freeze/delay issues on my 2.4ghz MBP from tim

  • No SmartView Bar on Excel started from DotNet Interop

    If I start Ms-Excel Independantly on Windows OS, I can work fine with SmartView, But If I open Excel Window thru a C# Program using Interop-VBE, then the SmartView ToolBar/MenuTab is missing and cant work with SV and hence Smartview Macros donot run

  • Using 2 iPods on the same system

    Hi Everyone, I have a 20GB 4th gen iPod and my boyfriend recently gave me his old 30GB 4th gen iPod. I have about 40GB worth of music in my iTunes and want to split the content between the two iPods. Is there an easy way to partition iTunes or manual

  • Cant see my photos in iphone4, help please!!!

    Why i cant see my photos in iphone4? Help please!!!