Error encountered during execution of procedure....

Hi,
Im new to Oracle..just started with working with Oracle 10g in my company.Im trying to execute a procedure in SQL Developer 1.5.1 but getting this error as shown below.It would be great if anyone could help me out in it.
Error starting at line 3 in command:
EXECUTE EMP_PROC;
Error report:
ORA-06550: line 1, column 7:
PLS-00905: object SYSTEM.EMP_PROC is invalid
ORA-06550: line 1, column 7:
PL/SQL: Statement ignored
06550. 00000 - "line %s, column %s:\n%s"
*Cause:    Usually a PL/SQL compilation error.
*Action:
EMP_PROC is the Procedure im trying to execute.
**I have 2 tables namely Emp_INFO(emp_name,emp_id,dept_id,salary) and DEPT_INFO(dept_name,dept_id)...Im trying to display names of employess based on the range of salaries(low,mid,high)..
The code for this procedure is given below which also contains 3 functions...
/*Procedure EMP_PROC*/
CREATE OR REPLACE PROCEDURE EMP_PROC (sal_low IN NUMBER,
sal_mid IN NUMBER,
sal_high IN NUMBER) AS
/*Declaring variables to be used inside the Procedure*/
sal_low NUMBER(10,2) := 80000;
sal_mid NUMBER(10,2) := 300000;
sal_high NUMBER(10,2) := 500000;
s_low VARCHAR2(25);
s_mid VARCHAR2(25);
s_high VARCHAR2(25);
sal_range VARCHAR2(20);
/*Declaring User Defined Exception*/
usr_excp EXCEPTION;
/*Cursor for retrieving Low Salary Employees */
CURSOR cursor_lowSal IS
SELECT Emp_Name ,Emp_ID ,Dept_ID ,Dept_Name
FROM EMP_INFO,DEPT_INFO
WHERE Salary <= 80000;
/*Cursor for retrieving Mid Salary Employees */
CURSOR cursor_midSal IS
SELECT Emp_Name ,Emp_ID ,Dept_ID ,Dept_Name
FROM EMP_INFO,DEPT_INFO
WHERE Salary > 80000 OR Salary < 500000;
/*Cursor for retrieving High Salary Employees */
CURSOR cursor_highSal IS
SELECT Emp_Name ,Emp_ID ,Dept_ID ,Dept_Name
FROM EMP_INFO,DEPT_INFO
WHERE Salary > 500000;
/*Declaring variables that will hold values*/
e_name EMP_INFO.Emp_Name%TYPE;
e_id EMP_INFO.Emp_ID%TYPE;
d_name DEPT_INFO.Dept_Name%TYPE;
d_id EMP_INFO.Dept_ID%TYPE;
BEGIN
/*Enter the Salary range*/
sal_range := &sal_range;
/*Checking for Salary Range*/
IF sal_range == sal_low THEN
OPEN cursor_lowSal;
FETCH cursor_lowSal INTO e_name ,e_id ,d_name ,d_id;
/*Calling Function Low_Sal*/
s_low := funcLow_sal();
/*Displaying Output*/
dbms_output.put_line(s_low||'::'||e_name||','||e_id||','||d_name||','||d_id);
ELSIF sal_range == mid_sal THEN
OPEN cursor_midSal;
FETCH cursor_lowSal INTO e_name ,e_id ,d_name ,d_id;
/*Calling Function Mid_Sal*/
s_mid := funcMid_sal();
/*Displaying Output*/
dbms_output.put_line(s_mid||'::'||e_name||','||e_id||','||d_name||','||d_id);
ELSIF sal_range == sal_high THEN
OPEN cursor_highSal;
FETCH cursor_lowSal INTO e_name ,e_id ,d_name ,d_id;
/*Calling Function High_Sal*/
s_high := funcHigh_sal();
/*Displaying Output*/
dbms_output.put_line(s_high||'::'||e_name||','||e_id||','||d_name||','||d_id);
ELSE
/*Calling user defined Exception*/
RAISE usr_excp;
END IF;
/*Handling Exceptions*/
EXCEPTION
WHEN usr_excp THEN
dbms_output.put_line('Not in range,please try again!!');
WHEN OTHERS THEN
dbms_output.put_line('Exception');
/*Closing the cursor_lowSal*/
CLOSE cursor_lowSal;
/*Closing the cursor_midSal*/
CLOSE cursor_midSal;
/*Closing the cursor_highSal*/
CLOSE cursor_highSal;
END;
/*Function funcLow_sal*/
CREATE OR REPLACE FUNCTION funcLow_sal RETURN VARCHAR2 AS
BEGIN
return 'Employees with salary less than 80000'
END;
/*Function funcMid_sal*/
CREATE OR REPLACE FUNCTION funcMid_sal RETURN VARCHAR2 AS
BEGIN
return 'Employees with salary within 80000 and 500000'
END;
/*Function funcHigh_sal*/
CREATE OR REPLACE FUNCTION funcHigh_sal RETURN VARCHAR2 AS
BEGIN
return 'Employees with salary more than 500000'
END;
/*Executing the Procedure*/
SET SERVEROUTPUT ON
EXECUTE EMP_PROC;
Cheers...(')
Edited by: user10553245 on Nov 7, 2008 3:49 AM

The current version of code is given below.The 2 compliation errors i mentioned above are coming in the very First line of the procedure..the whole is highlited in red..
::Error(1): PL/SQL: Compilation unit analysis terminated
::Error(2,1): PLS-00410: duplicate fields in RECORD,TABLE or argument list are not permitted
create or replace PROCEDURE EMP_PROC (sal_low IN NUMBER , sal_mid  IN NUMBER , sal_high IN NUMBER) AS
/*Declaring variables to be used inside the Procedure*/
sal_low NUMBER(10,2) := 80000;
sal_mid NUMBER(10,2) := 300000;
sal_high NUMBER(10,2) := 500000;
s_low VARCHAR2(25);
s_mid VARCHAR2(25);
s_high VARCHAR2(25);
sal_range VARCHAR2(20);
/*Declaring User Defined Exception*/
usr_excp EXCEPTION;
/*Cursor for retrieving Low Salary Employees */
CURSOR cursor_lowSal IS
SELECT Emp_Name ,Emp_ID ,Dept_ID ,Dept_Name
FROM EMP_INFO,DEPT_INFO
WHERE Salary <= 80000;
/*Cursor for retrieving Mid Salary Employees */
CURSOR cursor_midSal IS
SELECT Emp_Name ,Emp_ID ,Dept_ID ,Dept_Name
FROM EMP_INFO,DEPT_INFO
WHERE Salary > 80000 OR Salary < 500000;
/*Cursor for retrieving High Salary Employees */
CURSOR cursor_highSal IS
SELECT Emp_Name ,Emp_ID ,Dept_ID ,Dept_Name
FROM EMP_INFO,DEPT_INFO
WHERE Salary > 500000;
/*Declaring variables that will hold values*/
e_name EMP_INFO.Emp_Name%TYPE;
e_id EMP_INFO.Emp_ID%TYPE;
d_name DEPT_INFO.Dept_Name%TYPE;
d_id EMP_INFO.Dept_ID%TYPE;
BEGIN
/*Enter the Salary range*/
sal_range := '&sal_range';
/*Checking for Salary Range*/
IF sal_range = sal_low THEN
OPEN cursor_lowSal;
FETCH cursor_lowSal INTO e_name ,e_id ,d_name ,d_id;
/*Calling Function Low_Sal*/
s_low := funcLow_sal();
/*Displaying Output*/
dbms_output.put_line(s_low||'::'||e_name||','||e_id||','||d_name||','||d_id);
ELSIF sal_range = mid_sal THEN
OPEN cursor_midSal;
FETCH cursor_lowSal INTO e_name ,e_id ,d_name ,d_id;
/*Calling Function Mid_Sal*/
s_mid := funcMid_sal();
dbms_output.put_line(s_mid||'::'||e_name||','||e_id||','||d_name||','||d_id);
ELSIF sal_range = sal_high THEN
OPEN cursor_highSal;
FETCH cursor_lowSal INTO e_name ,e_id ,d_name ,d_id;
/*Calling Function High_Sal*/
s_high := funcHigh_sal();
dbms_output.put_line(s_high||'::'||e_name||','||e_id||','||d_name||','||d_id);
ELSE
/*Calling user defined Exception*/
RAISE usr_excp;
END IF;
EXCEPTION
WHEN usr_excp THEN
dbms_output.put_line('Not in range,please try again!!');
/*Closing the cursor_lowSal*/
CLOSE cursor_lowSal;
/*Closing the cursor_midSal*/
CLOSE cursor_midSal;
/*Closing the cursor_highSal*/
CLOSE cursor_highSal;
END EMP_PROC;
The 3 functions are just being used to display messages...
/*Function funcLow_sal*/
CREATE OR REPLACE FUNCTION funcLow_sal RETURN VARCHAR2 AS
BEGIN
return 'Employees with salary less than 80000'
END;
/*Function funcMid_sal*/
CREATE OR REPLACE FUNCTION funcMid_sal RETURN VARCHAR2 AS
BEGIN
return 'Employees with salary within 80000 and 500000'
END;
/*Function funcHigh_sal*/
CREATE OR REPLACE FUNCTION funcHigh_sal RETURN VARCHAR2 AS
BEGIN
return 'Employees with salary more than 500000'
END;
/

Similar Messages

  • Errors encountered during installation(7)

    When trying to install lightroom through creative cloud I get Installation Failed - Errors encountered during installation(7) - I have tried rebooting the machine logging in and out nothing helps ?

    Hello all and thank you for the replies.  @Mylenium this is a new system  setup = windows 8.1 fully updated - hardware not so new but more that adequate -  i7 processor 3.2Mhz 16GB ram 2TB hdd 2 x Nvidia GTX 60's in SLi and Adobe apps was the first I installed , Bridge & Photoshop went through fine. The only error message was that one clicking  the link to get more info just took me to a generic help site.
    Anyway last night I downloaded the trial version which came down fine and installed it without a glitch and after registering the software online it picked up that I was a CC user and automatically entered the license key so all is good.

  • I am trying to download an update for Adobe Illustrator CC 2014 and it Keeps telling me Errors encountered during installation. (U44M1P7). Why is this happening. It never used to do this on updates.

    @I am trying to download an update for Adobe Illustrator CC 2014 and it Keeps telling me Errors encountered during installation. (U44M1P7). Why is this happening. It never used to do this on updates.

    Updates : http://helpx.adobe.com/creative-suite/kb/error-u44m1p7-installing-updates-ccm.html

  • AE Error encountered during update (U44M1P7)

    Hi. Updating AE CC, on Mac OSX 10.9.5. "Errors encountered during installation (U44M1P7), What do I do next? Thanks, Joe Boulden

    U44.. update error http://forums.adobe.com/thread/1289956 may help
    -more U44.. discussion http://forums.adobe.com/thread/1275963
    -http://helpx.adobe.com/creative-suite/kb/error-u44m1p7-installing-updates-ccm.html
    -http://helpx.adobe.com/creative-suite/kb/error-u44m1i210-installing-updates-ccm.html

  • Errors encountered during installation (U44MIP7)

    Upgrading via cloud.
    Errors encountered during installation (U44MIP7)
    What does this mean....?

    Hi Andy Stevens
    You can follow the below mentioned link -
    http://helpx.adobe.com/creative-suite/kb/error-u44m1p7-installing-updates-ccm.html
    Let us know if that helps
    Thanks!
    Garima

  • Problem updating After Effects CC (2014)  I get this message: Update Failed  Error encountered during installation. (U44M1P7)

    Problem updating After Effects CC (2014)  I get this message: Update Failed  Error encountered during installation. (U44M1P7)

    Hi,
    It’s version 13.1.1  It’s a trial version.
    I am updating it from the Creative cloud desktop application.
    I have the photography subscription with Lightroom and Photoshop with Creative Cloud.
    I was interested in trying out the video software and have trials of Premiere Pro as well as others.  The CC desktop app alerted me to the AF update just as it does for the others I subscribe to plus the ones I am using as trials.  I have not had any problems with the other apps (trial or not), only with AF.
    Thanks.
    Nancy Chadwick

  • I tried updating my Photoshop CS6 via the cloud and received the following message...Update failed Errors encountered during installation.(U44M1P7).  What does that mean

    I tried updating my Photoshop CS6 via the cloud and received the following message...Update failed Errors encountered during installation.(U44M1P7).  What does that mean

    http://helpx.adobe.com/creative-suite/kb/error-u44m1p7-installing-updates-ccm.html

  • Photoshop CS6 update failed - errors encountered during installation U44M1P7

    Photoshop CS6 update failed - errors encountered during installation U44M1P7up

    Hi Creativegeek_route66,
    Please follow the steps mentioned in the below article.
    http://helpx.adobe.com/creative-suite/kb/error-u44m1p7-installing-updates-ccm.html
    Thanks

  • Unknown errors encountered during publish(EJB)

    Hi,
    I am getting following error while deploying simple stateless EJB.
    Can anybody help. Please mail me.
    I am pasting the error both from JDeveloper and from command prompt deployment.
    ==========================================
    ***From JDeveloper 3.2.2 It says***
    *** Executing deployment profile E:\jdevloper\myprojects\Hello.prf ***
    *** Generating archive file E:\jdevloper\myprojects\HelloSource.jar ***
    Compiling the project...done
    Validating the profile...done
    Initializing deployment...done
    Scanning project files...done
    Generating classpath dependencies...done
    Generating archive entries table...done
    *** Archive generation completed ***
    *** Deploying the EJB to 8i JVM ***
    EJB deployment argument list:
    "E:\jdevloper\java1.2\jre\bin\javaw" "-DPATH="standard jdev path"
    -classpath "standard path of Jdev" oracle.aurora.ejb.deployment.GenerateEjb
    -u system -p manager -s sess_iiop://10.5.0.55:2481:ORCL -republish -keep -temp TEMP
    -descriptor "E:\jdevloper\myprojects\Hello.xml" -oracledescriptor E:\jdevloper\myprojects\Hello_oracle.xml
    -generated "E:\jdevloper\myprojects\HelloGenerated.jar" "E:\jdevloper\myprojects\HelloSource.jar"
    Reading Deployment Descriptor...done
    Verifying Deployment Descriptor...done
    Gathering users...done
    Generating Comm Stubs.......................................done
    Compiling Stubs...done
    Generating Jar File...done
    Loading EJB Jar file and Comm Stubs Jar file...done
    Generating EJBHome and EJBObject on the server...done
    Publishing EJBHome...
    Unknown errors encountered during publish. Please check the server trace file
    *** Errors occurred while deploying the EJB to 8i JVM ***
    *** Deployment completed ***
    ==========================================
    ***Error occured while trying to deploy from command line.***
    E:\jdevloper\myprojects>D:\oas9i\bin\deployejb.bat -u system -p manager -s sess_iiop://10.5.0.55:2481:orcl -republish -keep -temp temp -descriptor Hello.xml -oracledescriptor Hello_oracle.xml HelloSource.jar
    Reading Deployment Descriptor...done
    Verifying Deployment Descriptor...done
    Gathering users...done
    Generating Comm Stubs.......................................done
    Compiling Stubs...done
    Generating Jar File...done
    Loading EJB Jar file and Comm Stubs Jar file...Exception in thread "main" org.omg.CORBA.COMM_FAILURE: java.net.SocketException: Connection reset by peer: JVM_recv in socket input stream read minor code: 0 completed: No
    at com.visigenic.vbroker.orb.TcpConnection.read(TcpConnection.java:61)
    at com.visigenic.vbroker.orb.GiopConnectionImpl.receive_message(GiopConnectionImpl.java:436)
    at com.visigenic.vbroker.orb.GiopConnectionImpl.receive_reply(GiopConnectionImpl.java:347)
    at com.visigenic.vbroker.orb.GiopStubDelegate.invoke(GiopStubDelegate.java:562)
    at com.visigenic.vbroker.orb.GiopStubDelegate.invoke(GiopStubDelegate.java:503)
    at com.inprise.vbroker.CORBA.portable.ObjectImpl._invoke(ObjectImpl.java:60)
    at oracle.aurora.AuroraServices._st_JISLoadJava.add(_st_JISLoadJava.java:66)
    at oracle.aurora.server.tools.sess_iiop.Loadjava.add(Loadjava.java:137)
    at oracle.aurora.server.tools.sess_iiop.Loadjar.loadAndCreate(Loadjar.java:101)
    at oracle.aurora.server.tools.sess_iiop.Loadjar.invoke(Loadjar.java:80)
    at oracle.aurora.server.tools.sess_iiop.Loadjava.<init>(Loadjava.java:94)
    at oracle.aurora.server.tools.sess_iiop.Loadjar.<init>(Loadjar.java:52)
    at oracle.aurora.ejb.deployment.GenerateEjb.invoke(GenerateEjb.java:560)
    at oracle.aurora.server.tools.sess_iiop.ToolImpl.invoke(ToolImpl.java:143)
    at oracle.aurora.ejb.deployment.GenerateEjb.main(GenerateEjb.java:575)
    =============================================
    I have checked log also. This is the log from oracle trace file.
    Session 13 exceeded soft sessionspace limit of 0x100000 bytes.
    *** SESSION ID:(8.3994) 2001-06-23 17:44:30.625
    jox_call_java_pres_: caught
    ORA-04031: unable to allocate 4032 bytes of shared memory ("large pool","unknown object","joxu heap init","ioc_allocate_pal")
    Please help me out of this si tuation.
    regards,
    vijay

    You can try to set the java_pool_size and shared_pool_size to larger. This parameter is in the file: init.ora . The size should be large enough. Usually at least 50M.

  • After effects Error installing : Installation failed Errors encountered during installation.(34)

    Hi guys i am having an issue with CreativeCloud.
    I am on PC
    Everytime i try to install After Effect trial on CreativeCloud it keeps saying this error message : "Installation failed Errors encountered during installation.(34)" and i've tried alot of times and always the same error message. I also tryed using  CreativeCloud cleaner tool but that didnt help at all.
    So if anyone can help please do it quickly and reply. ASAP !!!
    Jayden.

    http://forums.adobe.com/thread/1290880

  • VI Metric.Dat​aSize Property Error 1000 during execution

    OK, maybe this will be an easy one for someone.  Today I'm attempting to detect an apparent memory leak in a Windows executable on 8.6.1 that, despite my best efforts, is still causing the painfully ambiguous "Not enough memory to complete this operation" dialog to appear.
    This is within an executable, so I thought the best way to tackle this would be to read the "Metric.DataSize" property off of suspect VIs during execution.  I'm getting error 1000, which leads me to believe that I can't read the property while the VI in question is running.  Is there some way around this?  Is there an easier way that I've forgotten?
    I saw a rather old post of a similar nature relating to 7.1, but the recommendation was to use the memory monitor example.  I took a look at that example's code, but they're calling the same property without error handling.
    Thanks a lot,
    Jim

    Hello Marti,
    First of all, thanks for getting back to me.  I did manage to track down the memory leak -- more on that soon enough -- but here are some answers to your questions:
    First, I'd recommend trying to tackle this issue in the original VI.  When you run the VI, do you get the same error?
    If you're asking whether I see the error in the development environment, I haven't, unfortunately.  However, I haven't run the VI for any extended period of time, either.  Also, I don't know if I was clear on this: it's not really an error message in the traditional sense of a code and description.  It's just a plain dialog that appears to be thrown by the runtime engine.
     If not, can you monitor LabVIEW's usage in the Windows Task Manager, and see if it creeps up continuously?
     I hadn't resorted to trying that just yet because I was hoping there was an easier (and more specific) way.  The dialog I had seen was the plain one that the runtime engine seemed to have launched, so I figured it was a pretty safe bet that it was a memory leak.  I could confirm this with task manager, though, if it's helpful.
    If it does not, then you may not have a memory leak but be performing operations or copying large data arrays inadvertently. What is your VI doing?  Are you ensuring to close all references at the end of your code?
    In this case it's a "web viewer" application that receives data from a parent VI via a notifier and displays it for connected browsers.  I'm also scanning some status strings and parsing out relevant information.  I know it's within the web viewer VI because the parent VI hasn't changed and has run for weeks without any issue.  (I only recently added the web viewer)  I am downright paranoid about memory!   I close every reference every time and even use the "in place" structure every time I can.
    Does the VI run for a bit or error out with the memory issue immediately?
    It takes a while; usually an hour or two.
    Please investigate into the original VI so we can continue troubleshooting.  If this is isolated to the executable, it will be a little tougher to debug.  Additionally, if you don't have the original VI, you will need to get it either way so that we can investigate the source of this issue.
    Okay, as I said earlier, I think I've figured it out.  I have a VI that writes to a string indicator by reference.  I had a circular buffer for messages (it used the in place structure, too!) and I was updating the string indicator with the buffer contents.  I'm almost certain that the circular buffer works properly because I've used it before without any issue.  However, I think it had something to do with the manner in which I was updating that string by reference over and over again.  I know, it sounds crazy because I've updated indicators by reference continuously before and had never had an issue.  It's possible that I was also using my circular buffer in a different way than I was before.  I could explain what I did differently to fix the issue, but it would be a couple more paragraphs. (I will if you want!)  For the record, I was definitely closing the reference every time, too.  In any case, I think the issue is solved, but if you're interested in additional information I'll try my best.
    By the way, here's my circular buffer VI.
    Again, Marti, thanks very much for your assistance.
    Regards,
    Jim
    Attachments:
    Circular Buffer (Strings).vi ‏14 KB

  • Trigger compiles but errors out during execution

    You guys wouldn't like this. Its about a trigger !
    Below is a trigger i've found in OTN. I've a similair requirement. The below trigger will compile . But, during execution i get
    ORA-00936: missing expression during executionI have this feeling that the last line in the INSERT statment is causing the issue.
    create or replace trigger trg_test
    before insert or update on central_dtls.emp_config
    for each row
    declare
    v_schema varchar2(100);
    v_sql_stat varchar2(32767);
    begin
    select schema_name into v_schema from central_dtls.master_config where company_id= :new.id;
                                  v_sql := 'insert into ' ||v_schema||'..emp_config_local
                                  company_id,
                                  values
                                   ||:new.col1||', '
                                   ||:new.col2||', '
                                   ||:new.lastcol||  ')';    ----- Potential issue in this line
    exception
    when others then ......;
    end;
    /I've tried the below things.
    ||:new.lastcol  ');';   --- Trigger Will not compile
    ||:new.lastcol||  ')';    --- Trigger Will compile , but, will get "ORA-00936: missing expression" during execution
    ||:new.lastcol|| ');';   --- Trigger Will compile , but, will get "ORA-00936: missing expression" during execution

    You have:
                                  v_sql := 'insert into ' ||v_schema||'..emp_config_local Try with:
                                  v_sql := 'insert into ' ||v_schema||'.emp_config_local (only one dot between schema and table name :) )

  • Error encountered during generation of default Crystal Report Layout

    Hi Experts,
    I am currently encountering an error on a particular workstation during generation of a default crystal report layout. Is there any SAP note for this or did someone encountered this error already?
    Details:
    SAP B1 8.81 PL:06 (I think its not a patch issue since the error is occurring on a particular workstation)
    Windows OS: Windows 7
    Actions Taken:
    Run CRRedist2005_x86
    Run CRNET11WIN_EN_200403
    Run crnet11win_en_sp1
    Run crnet11win_en_sp2
    Regards,
    Zeus

    Hi,
    Check SAP note regardless of version and PL.
    1529682 - Crystal report not displayed in Windows 7 OS
    1668274 - Print Draft with Crystal Layout
    Thanks & Regards,
    Nagarajan

  • Errors encountered during perfromance testing

    While doing some stress testing on our WLS server we kept seeing the
    following errors:
    1) NullPointerException on NTSocketMuxer, error log follows:
    Tue Feb 22 05:08:28 EST 2000:<E> <NTSockMux> failure in processSockets()
    loop: GetData: fd=16764 numBytes=23
    Tue Feb 22 05:08:28 EST 2000:<E> <NTSockMux>
    java.lang.NullPointerException: null native pointer - socket was closed
    at weblogic.socket.NTSocketMuxer.initiateIO(Native Method)
    at weblogic.socket.NTSocketMuxer.processSockets(NTSocketMuxer.java,
    Compiled Code)
    at
    weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:19)
    at weblogic.t3.srvr.ExecuteThread.run(ExecuteThread.java, Compiled
    Code)
    This error doesn't seem to have any immediate impact, although it can't
    be a good thing and it seems to happen even at times when we are not
    doing stress testing. Also, it is very frequent that we see the above
    messages. We are running WLS 4.51 w/ Service Pack 5. I am wondering if
    this is a problem w/ Service Pack 5 since I don't see this on another
    machine running WLS 4.51 with Service Pack 4. Both are using JDK 1.2.2.
    2) Connection Rejected, error log follows:
    Tue Feb 22 07:08:16 EST 2000:<W> <ListenThread> Connection rejected:
    Login timed out after 15000 msec. The socket came from
    [host=207.17.47.141,port=11929,localport=443] See property
    weblogic.login.readTimeoutMillis.
    I know how to adjust this for this one. My questions on this are:
    If I set my readTimeoutMillisSSL (SSL in this case) from 15000 to 30000
    what does this exactly mean. Does this mean that instead of allowing a
    max 15 seconds for a connection to be established, now I am allowing 30
    seconds? Also, is this only for the initial connection establishment (ie
    user login), or does this parameter effect other aspects of the
    connection later on? What negative side effects would I encounter if I
    set this to 60000 (1 minute)?
    Finally, what can I do so that a connection does not take over 15
    seconds to establish? Note this is not the norm, just happens more often
    during stress testing.
    3) Creating & Closing connection & DGCserver, log follows:
    Tue Feb 22 07:08:44 EST 2000:<I> <RJVM> Closing connection to
    138.8.81.19/138.8.81.19 5634583086356155101
    Tue Feb 22 07:08:45 EST 2000:<I> <RJVM> Creating connection to
    138.8.81.19/138.8.81.19 5634583086356155101
    Tue Feb 22 07:08:45 EST 2000:<I> <RJVM> Closing connection to
    138.8.81.19/138.8.81.19 5634583086356155101
    Tue Feb 22 07:08:50 EST 2000:<I> <RJVM> Creating connection to
    144.14.157.204/144.14.157.204 2864292845294268830
    Tue Feb 22 07:08:50 EST 2000:<I> <RJVM> Creating connection to
    138.8.81.19/138.8.81.19 5634583086356155101
    Tue Feb 22 07:08:50 EST 2000:<I> <RJVM> Closing connection to
    138.8.81.19/138.8.81.19 5634583086356155101
    Tue Feb 22 07:08:50 EST 2000:<I> <RJVM> Creating connection to
    138.8.81.19/138.8.81.19 5634583086356155101
    Tue Feb 22 07:08:50 EST 2000:<I> <RJVM> Closing connection to
    138.8.81.19/138.8.81.19 5634583086356155101
    Tue Feb 22 07:08:51 EST 2000:<I> <DGCserver> tried to renew lease for
    lost ref: 902
    Tue Feb 22 07:08:52 EST 2000:<I> <RJVM> Heartbeat/PublicKey resend
    detected
    Tue Feb 22 07:08:54 EST 2000:<I> <DGCserver> tried to renew lease for
    lost ref: 904
    Tue Feb 22 07:08:58 EST 2000:<I> <RJVM> Creating connection to
    138.8.81.19/138.8.81.19 5634583086356155101
    Why the constant trying to create connection, close connection?
    What is DGCserver?
    4) Ignoring message from a previous JVM, log follows:
    Tue Feb 22 08:29:50 EST 2000:<E> <RJVM> Ignoring message from a previous
    generation: JVMMessage from 8729925219143181234C138.8.222.21 to
    -3465797227003769874C192.168.100.61 with CMD_ONE_WAY, prtNum=6, ack=103,
    seqNum=1384
    Tue Feb 22 08:30:15 EST 2000:<I> <HTTPTunneling> Sending DEAD response
    What does this mean?
    5) PeerGoneExceptions
    What causes these?
    Our environment is set up as follows:
    WLS Server
    WLS 4.51 w/ Service Pack 5
    NativeIO = true
    ExecuteThreadCount = 40
    readTimeoutMillis=5000
    readTimeoutMillisSSL=10000
    Dell Pentium III 600 w/ 512 MB memory
    NT 4.0
    JavaSoft 1.2.2
    -ms128 -mx350
    WLS Client
    Java Application
    t3s and https (using WLS RMI)
    JavaSoft 1.1.7b
    typically Pentium 200 MHz or better w/ 64MB or more
    Basically our clients connect to our WLS server using RMI. Each client
    also has a callback object where the server sends event notification
    back to the clients. Most of the communication is back through these
    client callback objects. Its similar to a stock trading application in
    that 1 client incoming requests will generate 200 outgoing events (if
    for example there are 200 users on the system). The above observations
    where made while 25 very active users where on the system.
    Thanks very much for any and all help,
    Edwin Marcial
    Continental Power Exchange

    Hi Kim,
    Thanks for the response, but which problem in particular did you solve, I've
    listed a couple here.
    Edwin
    kim hyun chan wrote:
    hi,
    I met the problem like you before.
    so I reduce executeThreadCount from 50 to 20 , and then I solved my proplem.
    "Edwin Marcial" <[email protected]> wrote in message
    news:[email protected]...
    While doing some stress testing on our WLS server we kept seeing the
    following errors:
    1) NullPointerException on NTSocketMuxer, error log follows:
    Tue Feb 22 05:08:28 EST 2000:<E> <NTSockMux> failure in processSockets()
    loop: GetData: fd=16764 numBytes=23
    Tue Feb 22 05:08:28 EST 2000:<E> <NTSockMux>
    java.lang.NullPointerException: null native pointer - socket was closed
    at weblogic.socket.NTSocketMuxer.initiateIO(Native Method)
    at weblogic.socket.NTSocketMuxer.processSockets(NTSocketMuxer.java,
    Compiled Code)
    at
    weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:19)
    at weblogic.t3.srvr.ExecuteThread.run(ExecuteThread.java, Compiled
    Code)
    This error doesn't seem to have any immediate impact, although it can't
    be a good thing and it seems to happen even at times when we are not
    doing stress testing. Also, it is very frequent that we see the above
    messages. We are running WLS 4.51 w/ Service Pack 5. I am wondering if
    this is a problem w/ Service Pack 5 since I don't see this on another
    machine running WLS 4.51 with Service Pack 4. Both are using JDK 1.2.2.
    2) Connection Rejected, error log follows:
    Tue Feb 22 07:08:16 EST 2000:<W> <ListenThread> Connection rejected:
    Login timed out after 15000 msec. The socket came from
    [host=207.17.47.141,port=11929,localport=443] See property
    weblogic.login.readTimeoutMillis.
    I know how to adjust this for this one. My questions on this are:
    If I set my readTimeoutMillisSSL (SSL in this case) from 15000 to 30000
    what does this exactly mean. Does this mean that instead of allowing a
    max 15 seconds for a connection to be established, now I am allowing 30
    seconds? Also, is this only for the initial connection establishment (ie
    user login), or does this parameter effect other aspects of the
    connection later on? What negative side effects would I encounter if I
    set this to 60000 (1 minute)?
    Finally, what can I do so that a connection does not take over 15
    seconds to establish? Note this is not the norm, just happens more often
    during stress testing.
    3) Creating & Closing connection & DGCserver, log follows:
    Tue Feb 22 07:08:44 EST 2000:<I> <RJVM> Closing connection to
    138.8.81.19/138.8.81.19 5634583086356155101
    Tue Feb 22 07:08:45 EST 2000:<I> <RJVM> Creating connection to
    138.8.81.19/138.8.81.19 5634583086356155101
    Tue Feb 22 07:08:45 EST 2000:<I> <RJVM> Closing connection to
    138.8.81.19/138.8.81.19 5634583086356155101
    Tue Feb 22 07:08:50 EST 2000:<I> <RJVM> Creating connection to
    144.14.157.204/144.14.157.204 2864292845294268830
    Tue Feb 22 07:08:50 EST 2000:<I> <RJVM> Creating connection to
    138.8.81.19/138.8.81.19 5634583086356155101
    Tue Feb 22 07:08:50 EST 2000:<I> <RJVM> Closing connection to
    138.8.81.19/138.8.81.19 5634583086356155101
    Tue Feb 22 07:08:50 EST 2000:<I> <RJVM> Creating connection to
    138.8.81.19/138.8.81.19 5634583086356155101
    Tue Feb 22 07:08:50 EST 2000:<I> <RJVM> Closing connection to
    138.8.81.19/138.8.81.19 5634583086356155101
    Tue Feb 22 07:08:51 EST 2000:<I> <DGCserver> tried to renew lease for
    lost ref: 902
    Tue Feb 22 07:08:52 EST 2000:<I> <RJVM> Heartbeat/PublicKey resend
    detected
    Tue Feb 22 07:08:54 EST 2000:<I> <DGCserver> tried to renew lease for
    lost ref: 904
    Tue Feb 22 07:08:58 EST 2000:<I> <RJVM> Creating connection to
    138.8.81.19/138.8.81.19 5634583086356155101
    Why the constant trying to create connection, close connection?
    What is DGCserver?
    4) Ignoring message from a previous JVM, log follows:
    Tue Feb 22 08:29:50 EST 2000:<E> <RJVM> Ignoring message from a previous
    generation: JVMMessage from 8729925219143181234C138.8.222.21 to
    -3465797227003769874C192.168.100.61 with CMD_ONE_WAY, prtNum=6, ack=103,
    seqNum=1384
    Tue Feb 22 08:30:15 EST 2000:<I> <HTTPTunneling> Sending DEAD response
    What does this mean?
    5) PeerGoneExceptions
    What causes these?
    Our environment is set up as follows:
    WLS Server
    WLS 4.51 w/ Service Pack 5
    NativeIO = true
    ExecuteThreadCount = 40
    readTimeoutMillis=5000
    readTimeoutMillisSSL=10000
    Dell Pentium III 600 w/ 512 MB memory
    NT 4.0
    JavaSoft 1.2.2
    -ms128 -mx350
    WLS Client
    Java Application
    t3s and https (using WLS RMI)
    JavaSoft 1.1.7b
    typically Pentium 200 MHz or better w/ 64MB or more
    Basically our clients connect to our WLS server using RMI. Each client
    also has a callback object where the server sends event notification
    back to the clients. Most of the communication is back through these
    client callback objects. Its similar to a stock trading application in
    that 1 client incoming requests will generate 200 outgoing events (if
    for example there are 200 users on the system). The above observations
    where made while 25 very active users where on the system.
    Thanks very much for any and all help,
    Edwin Marcial
    Continental Power Exchange

  • Errors encountered during compiling JMS simpleProducer Program

    Hi Friends,
    I have encountered following errors during running this program.Please tell me solution .I am using weblogic Server.Which jar files I have to set.Please reply as earlier as possible.It is urgent
    Thanks
    Bye
    C:\>cd Simple
    C:\Simple>javac SimpleProducer.java
    SimpleProducer.java:65: cannot resolve symbol
    symbol : method createConnection ()
    location: interface javax.jms.ConnectionFactory
    connection=connectionFactory.createConnection();
    ^
    SimpleProducer.java:66: cannot resolve symbol
    symbol : method createSession (boolean,int)
    location: interface javax.jms.Connection
    Session session=connection.createSession(false,Session.AUTO_ACK
    NOWLEDGE);
    ^
    SimpleProducer.java:67: cannot resolve symbol
    symbol : method createProducer (javax.jms.Destination)
    location: interface javax.jms.Session
    producer=session.createProducer(dest);
    ^
    SimpleProducer.java:72: setText(java.lang.String) in javax.jms.TextMessage canno
    t be applied to ()
    System.out.println("Sending message:"+message.setText());
    ^
    SimpleProducer.java:73: cannot resolve symbol
    symbol : method send (javax.jms.TextMessage)
    location: interface javax.jms.MessageProducer
    producer.send(message);
    ^
    SimpleProducer.java:75: cannot resolve symbol
    symbol : method send (javax.jms.Message)
    location: interface javax.jms.MessageProducer
    producer.send(session.createMessage());
    ^
    6 errors

    try to add the jms.jar with JMS interfaces

Maybe you are looking for

  • Script To Update Month Text Field?

    Hello SharePoint Fam, I am wanting to add a choice field to existing list that contains each month(jan,feb,mar,etc) but was wondering is it possible for me to automate this at all so I don't have to manually change default month value to correct mont

  • Nokia 5530 TV-out mode?

    Does the Nokia 5530 support TV-out mode, where one can connect the phone to a TV with a compatible cable?

  • Query activated on page load

    Hi I have a query region with autoCustomizationCriteria on my page. I set some initial values for the query fields. How can I activate the query on page load so the users can see the results based on the default values when the first visit the page?

  • Problem exposing Accessor Methods on View object (ViewRowImpl.java)

    JDeveloper 9.03 I have a view link, ViewLinkSourceDest, that links two view objects Source and Destination. Each view object has its respective ViewRowImpl.java file created. I have selected "Generate Accessor in View Object" in View link Properties

  • Preview Mode question

    Hi All, I'm new to the iMac, having just come from the PC world, and am hoping you can help me with a couple questions. I'm a photographer and in a PC opened my photos in preview then when I wanted to edit one, I'd right click and then choose the pro