Question : Owa 2010 Error creating rules and when i click Options (error 400 /owa/auth.owa)


Dear Friends :

 I have the sequent scenario

- Windows 2008 Server R2 (x64)
- Exchange Server 2010 Rollup 4 (x64)

My exchange is working , owa is working , i cand send an retrieve emails trought owa but i have 2 problems :

 1 - In owa when i make right click in a mail and select "create rule"  a new Internet Explorer Windows is opened asking to me my username and password (see File1.jpg)

 
 
File 1 - The new Internet Explorer Appear window
324708
 


And when i click on "sign in" i get an Http error 400 , and the url status bar show :
https://smtp.mycompany.com/owa/auth.owa  , please se file 2 atached.

 
 
File 2 - The error that Explorer Show me
324709
 


I try it with  explorer , firefox and i always get the same error.

2 - The other problem is when i click the option button for my mailbox i get the same procedure error.

Any ideas?

Thansk a lot.

Answer : Owa 2010 Error creating rules and when i click Options (error 400 /owa/auth.owa)

the package procedures are part of the package body.
you cannot create a procedure "outside" of the package, unless you make the package body procedures just a wrapper for the external procedures
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
CREATE PACKAGE NEW_PACKGE_FOR_PROC AS  
   PROCEDURE NAMEOFPROC;
--New Procedures will be added here later;
END NEW_PACKGE_FOR_PROC;

CREATE PACKAGE BODY NEW_PACKGE_FOR_PROC AS  
PROCEDURE NAMEOFPROC AS
BEGIN
INSERT ..............;
DBMS_OUTPUT.put_line ('Rows Inserted ' || SQL%ROWCOUNT);
UPDATE................;
DBMS_OUTPUT.put_line ('Rows Updated ' || SQL%ROWCOUNT);
END; -- end procedure
END; -- end package body
Random Solutions  
 
programming4us programming4us