RCU Database Coneection Details "Bad Packect Type"  error

Hi,
I am installing oracle soa suite 11.1.1.2.0, In RCU wizard, shows "Bad Packect Type" error, anybody give me a details how to i solve this issue
I am providing following details
Databasetype: Oracle Database
Host: localhost
port: 5560
servicename: xe
username: sys
password: tiger
ROLE: SYSDBA
It shows Bad packet type,In Database connection details page

Hi,
Here are some pre-RCU-run you can perform:
1) Check if you service is up and running.
2) Try to connect to the DB separately using a tool/IDE like SQL Developer, JDeveloper, Toad, etc.
3) Try to run RCU from a different machine. May be there are some Port conflicts.
Thanks,
Sanjay

Similar Messages

  • RFC call from Delphi (Bad Variant Type error)

    Well, I'm trying to call an RFC function from Delphi via ActiveX objects..
    I have Codegear 2009 installed and it works without any problem..
    But on another system with Delphi7 installed when I ran same code it gives "Bad Variant Type" error when assigning SapLogonControl's connection object to SapFunction's connection parameter... Both computers have same SAP installation. And on both systems ActiveX objects imported correctly on Delphi.
    Here is the code:
    unit logon1;
    interface
    uses
    Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
    ExtCtrls, OleCtrls, StdCtrls, SAPFunctionsOCX_TLB,
    Grids, SAPLogonCtrl_TLB;
    type
      TForm1 = class(TForm)
      SAPFunctions1: TSAPFunctions;
      Button2: TButton;
      Grid: TStringGrid;
      Edit1: TEdit;
      Edit2: TEdit;
      Label1: TLabel;
      Label2: TLabel;
      SAPLogonControl1: TSAPLogonControl;
    procedure Button2Click(Sender: TObject);
    private
    { Private-Deklarationen }
    public
    { Public-Deklarationen }
    end;
    var
    Form1 : TForm1 ;
    Table, Funct, Connection : VARIANT ;
    implementation
    {$R *.DFM}
    procedure TForm1.Button2Click(Sender: TObject);
    begin
      Connection                  := SAPLogoncontrol1.newConnection;
      Connection.User             := 'testuser';
      Connection.System           := 'CRD';
      Connection.Client           := '300';
      Connection.ApplicationServer:= '10.1.1.10';
      Connection.SystemNumber     := '00';
      Connection.Password         := 'testpass';
      Connection.Language         := 'EN' ;
      if Connection.LogOn(0,true) = true then
      (* parameter "true" = SilentLogOn *)
      begin
        (* assign the existing connection to the *)
        (* component SAPFunctions1                *)
        SAPFunctions1.Connection := Connection; // It gives error on this line...
        Funct := SAPFunctions1.add('ZGIS_TEST_FUNC');
      end;
    end;
    end.
    As I said while Codegear 2009 runs this code without any problem, Delphi 7 crashes on that assignment.. Also I tried outside Delphi, and the file compiled with Codegear works on both systems while the file compiled with Delphi 7 again crashes on buth systems...
    Is there a problem with Delphi 7? Should I use at least Delphi 8 or something for compiling?

    Hi Hakan,
    You must use Non-Unicode RFC library for Delphi 7.0.
    ( Bende Delphi 7.0 kullaniyorum. Ayni hatayi aldim. Unicode library kullanmistim. Kaldirip Non-Unicode olani kullandim. Su an hata yok. RFC cagirabiliyorum. )
    Mustafa Yalcin

  • : %AAA-3-BAD SERVER TYPE ERROR

                       Hi all,
    Receving this error in switch logs
    : %AAA-3-BADSERVERTYPEERROR: Cannot process authentication server type tacacs+ (UNKNOWN)
    %AAA-3-BADSERVERTYPEERROR: Cannot process authentication server type tacacs+ (UNKNOWN)
    Anynone please tell me how to  fix it?
    When i telnet to switch it just ask for pw  only.
    Thanks
    Mahesh

    Need more information than just this. Did you debug? What are the aaa commands on the switch?
    Sent from my iPhone

  • ASPX Bad Variant Type

    This code is simply to prove my connection to SAP is working.  So far, I'm unable to get it to work without getting the "Bad Variant Type" error.
    <%@ Page Language="VB" Debug="true" %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <%
        Dim fc As Object
        Dim sapConn As Object
        Dim PARTNERS_TAB As Object
        Dim RETURN_TAB As Object
        Dim Z_BAPI_FIND_CUSTOMERS As Object
        Dim msg As String
        Dim fld_type As String
        Dim count As Integer
        Dim index As Integer
        Dim index2 As Integer
        Dim cnt_sold_to As Integer
        Dim cnt_ship_to As Integer
        Dim retcd As Integer
        msg = "start" & "<BR>"
        fc = CreateObject("SAP.Functions")
        fc.LogLevel = 9
        fc.LogFileName = "C:temperrors.txt"
        sapConn = CreateObject("SAP.Logoncontrol.1")
        fc.Connection = sapConn.NewConnection()
        'Pass the name of the system
        fc.Connection.System = "TST"
        fc.Connection.SystemNumber = "02"
        'Pass the name of the Server
        fc.Connection.ApplicationServer = "server.fqdn.net"
        'Pass the name of the Client
        fc.Connection.client = 100
        'Pass the name of the USER
        fc.Connection.user = "username"
        'Pass the name of the Password
        fc.Connection.Password = "password"
        'Pass the name of the Language
        fc.Connection.language = "EN"
        'Log On to the SAP System
        retcd = fc.Connection.Logon(0, True)
        If (retcd = False) Then
            msg = msg & "SAP Logon Failed." & "<BR>"
        Else
            msg = msg & "logon success / setting vars" & "<BR>"
            Z_BAPI_FIND_CUSTOMERS = fc.Add("Z_BAPI_FIND_CUSTOMERS")
            Z_BAPI_FIND_CUSTOMERS.Exports("SOLDTO_NAME") = "Customer Name"
            Z_BAPI_FIND_CUSTOMERS.Exports("SOLDTO_CITY") = "CHICAGO"
            'Z_BAPI_FIND_CUSTOMERS.Exports("SOLDTO_NBR")
            Z_BAPI_FIND_CUSTOMERS.Exports("SHIPTO_NAME") = "Customer Name"
            Z_BAPI_FIND_CUSTOMERS.Exports("SHIPTO_CITY") = "BAYONNE"
            Z_BAPI_FIND_CUSTOMERS.Exports("SHIPTO_STATE") = "NJ"
            'Z_BAPI_FIND_CUSTOMERS.Exports("SHIPTO_NBR")
            msg = msg & "calling func" & "<BR>"
            If (Z_BAPI_FIND_CUSTOMERS.Call() <> True) Then
                msg = msg & "func fail" & "<BR>"
            Else
                msg = msg & "func success" & "<BR>"
                RETURN_TAB = Z_BAPI_FIND_CUSTOMERS.Tables("RETURN_TAB")
                fld_type = RETURN_TAB.Value("TYPE")
                If ((fld_type = "M") Or (fld_type = "N")) Then
                    msg = msg & fld_type & " " & RETURN_TAB.Value("MESSAGE") & "<BR>"
                Else
                    msg = msg & "parameters are correct <BR>"
                    PARTNERS_TAB = Z_BAPI_FIND_CUSTOMERS.Tables("PARTNERS_TAB")
                    ' Results
                    count = PARTNERS_TAB.Rows.Count
                    msg = msg & "partner rows: " & CStr(count) & "<BR>"
                    If (count > 2) Then ' we have more than one soldto or shipto
                        cnt_sold_to = 0
                        cnt_ship_to = 0
                        For index = 1 To PARTNERS_TAB.Rows.Count
                            If (PARTNERS_TAB.Value(index, "PARTN_ROLE") = "AG") Then
                                cnt_sold_to = cnt_sold_to + 1 ' PARTN_ROLE = "AG"
                            Else
                                cnt_ship_to = cnt_ship_to + 1 ' PARTN_ROLE = "WE"
                            End If
                        Next ' go to next record in partner_tab
                        msg = msg & "sold to: " & CStr(cnt_sold_to) & " ship to: " & CStr(cnt_ship_to) & "<BR>"
                    End If ' count of partners_tab > 2 we *may* need to do something about it here - fix me
                    msg = msg & "<table>"
                    For index = 1 To PARTNERS_TAB.Rows.count
                        msg = msg & "<tr>"
                        For index2 = 1 To 8
                            msg = msg & "<td>" & PARTNERS_TAB.Value(index, index2) & "</td>"
                        Next
                        msg = msg & "</tr>"
                    Next
                    msg = msg & "</table>"
                    'If ((cnt_sold_to = 1) And (cnt_ship_to = 1)) Then ' we only have one soldto and one shipto
                    '    Results.Visible = False
                    'Else ' we have more than one shipto or soldto - fix me
                End If
            End If
        End If
        msg = msg & "<br>DONE!"
        Response.Write(msg)
        Response.End()
    %>
    The error occurs when I make the call to fc.add.

    It seems the fc.Connection and the RETURN_TAB.Value needed (row, field) to solve the problem.
    For reasons I do not understand, I had to create a separate connection
    object and assign the handle of it to the function control handle.
    The RETURN_TAB.Value(row, field) was a syntax error on my part.
    Here is the updated, working code:
    <%@ Page Language="VB" Debug="true" %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <%
        Dim fc As Object
        Dim sapConn As Object
        Dim PARTNERS_TAB As Object
        Dim RETURN_TAB As Object
        Dim msg As String
        Dim fld_type As String
        Dim count As Integer
        Dim index As Integer
        Dim index2 As Integer
        Dim cnt_sold_to As Integer
        Dim cnt_ship_to As Integer
        Dim retcd As Integer
        msg = "start" & "<BR>"
        fc = CreateObject("SAP.Functions")
        fc.LogLevel = 9
        fc.LogFileName = "C:temperrors.txt"
        sapConn = CreateObject("SAP.Logoncontrol.1")
        Dim conn As Object = sapConn.NewConnection()
        'Pass the name of the system
        conn.System = "TST"
        conn.SystemNumber = "99"
        'Pass the name of the Server
        conn.ApplicationServer = "server.domain.com"
        conn.MessageServer = "server.domain.com"
        'Pass the name of the Client
        conn.client = 999
        'Pass the name of the USER
        conn.user = "USER_NAME"
        'Pass the name of the Password
        conn.Password = "PASSWORD"
        'Pass the name of the Language
        conn.language = "EN"
        'Log On to the SAP System
        retcd = conn.Logon(0, True)
        If (retcd = False) Then
            msg = msg & "SAP Logon Failed." & "<BR>"
        Else
             fc.Connection.ConnectionHandle = conn.ConnectionHandle
            msg = msg & "logon success / setting vars" & "<BR>"
            Dim Z_BAPI_FIND_CUSTOMERS As Object = fc.Add("Z_BAPI_FIND_CUSTOMERS")
            Z_BAPI_FIND_CUSTOMERS.Exports("SOLDTO_NAME") = "CUSTOMER NAME"
            Z_BAPI_FIND_CUSTOMERS.Exports("SOLDTO_CITY") = "CITY"
            'Z_BAPI_FIND_CUSTOMERS.Exports("SOLDTO_NBR")
            Z_BAPI_FIND_CUSTOMERS.Exports("SHIPTO_NAME") = "CUSTOMER NAME"
            Z_BAPI_FIND_CUSTOMERS.Exports("SHIPTO_CITY") = "CITY"
            Z_BAPI_FIND_CUSTOMERS.Exports("SHIPTO_STATE") = "ZZ"
            'Z_BAPI_FIND_CUSTOMERS.Exports("SHIPTO_NBR")
            msg = msg & "calling func" & "<BR>"
            If (Z_BAPI_FIND_CUSTOMERS.Call() <> True) Then
                msg = msg & "func fail" & "<BR>"
            Else
                msg = msg & "func success" & "<BR>"
                RETURN_TAB = Z_BAPI_FIND_CUSTOMERS.Tables("RETURN_TAB")
                fld_type = RETURN_TAB.Value(1,"TYPE")
                If ((fld_type = "M") Or (fld_type = "N")) Then
                    msg = msg & fld_type & " " & RETURN_TAB.Value(1,"MESSAGE") & "<BR>"
                Else
                    msg = msg & "parameters are correct <BR>"
                    PARTNERS_TAB = Z_BAPI_FIND_CUSTOMERS.Tables("PARTNERS_TAB")
                    ' Results
                    count = PARTNERS_TAB.Rows.Count
                    msg = msg & "partner rows: " & CStr(count) & "<BR>"
                    If (count > 2) Then ' we have more than one soldto or shipto
                        cnt_sold_to = 0
                        cnt_ship_to = 0
                        For index = 1 To PARTNERS_TAB.Rows.Count
                            If (PARTNERS_TAB.Value(index, "PARTN_ROLE") = "AG") Then
                                cnt_sold_to = cnt_sold_to + 1 ' PARTN_ROLE = "AG"
                            Else
                                cnt_ship_to = cnt_ship_to + 1 ' PARTN_ROLE = "WE"
                            End If
                        Next ' go to next record in partner_tab
                        msg = msg & "sold to: " & CStr(cnt_sold_to) & " ship to: " & CStr(cnt_ship_to) & "<BR>"
                    End If ' count of partners_tab > 2 we *may* need to do something about it here - fix me
                    msg = msg & "<table>"
                    For index = 1 To PARTNERS_TAB.Rows.count
                        msg = msg & "<tr>"
                        For index2 = 1 To 8
                            msg = msg & "<td>" & PARTNERS_TAB.Value(index, index2) & "</td>"
                        Next
                        msg = msg & "</tr>"
                    Next
                    msg = msg & "</table>"
                    'If ((cnt_sold_to = 1) And (cnt_ship_to = 1)) Then ' we only have one soldto and one shipto
                    '    Results.Visible = False
                    'Else ' we have more than one shipto or soldto - fix me
                End If
            End If
        End If
        msg = msg & "<br>DONE!"
        Response.Write(msg)
        Response.End()
    %>

  • SAP Web Service error text : The database returned a value containing an error , type  CX_SY_OPEN_SQL_DB

    Hello Guru's,
    we are creating sales order in SAP from a quote created in .NET,  through Web Service created in SAP, and consumed in .NET.
    When ever a order is created in SAP for a given quote, SAP returns the sales order number to .NET.
    Orders are getting created as expected, but once in a while we are getting the following error from webservice :
    Web service processing error; more details in the web service error log on provider side (UTC timestamp 20140609173429; Transaction ID 4DFCEFE33301F1EBB5CE00155D0B4530)
    But the problem is order is getting created in SAP for the perticular quote for which we are getting the above error and this order number is not getting returned to .NET.
    Upon analysis in TCODE  SRT_UTIL for the above transaction ID, has the following details , which are hardly help full to resolve the error.
    ----TYPE                                  CX_SY_OPEN_SQL_DB
    ----ERROR_TEXT                   The database returned a value containing an error
    ----CX_SY_NO_HANDLER
    -----CLASSNAME                     CX_SY_OPEN_SQL_DB
    This Exception raised by Web Service application
    Could you please help in resolving this issue or alteast provide an approach for the same.
    Thank you,
    Suresh.

    Thank you Bhaskar,
    How can we clarify whether the error is from SAP or Web part.
    I have checked ST22, but there is not entry for the perticular  exception transaction ID
    My exception time stamp is
    -------------------START-------------6/9/2014 1:34:33 PM
    Error :Web service processing error; more details in the web service error log on provider side (UTC timestamp 20140609173429; Transaction ID 4DFCEFE33301F1EBB5CE00155D0B4530)
    -------------------END-------------6/9/2014 1:34:33 PM
    In al11, i found the following for the perticular exception time stamp
    **** Trace file opened at 20140609 133431 Eastern Daylight Time, by disp+work
    **** Versions SAP-REL 720,0,500 RFC-VER U 3 1442251 MT-SL
    XRFC> Begin of user trace
    XRFC> ---------------------------------------------------------------------
    XRFC>                                                                     <
    XRFC> TRACE SOAP RUNTIME - header                                         <
    XRFC>                                                                     <
    XRFC> ------------------------------------------------------------------  <
    XRFC> REQ_SIZE   : 2685                                                   <
    XRFC> RESP_SIZE  : 0                                                      <
    XRFC> PARENT_ID  : ROOT_CALL_ID                                           <
    XRFC> TRC_KEY    : 40FCEFE3BD6EF184B5CE00155D0B4530                       <
    XRFC> REQ_BASED  :                                                        <
    XRFC> SESSION_ID : 0003925540FCEFE3BD6EF17DB5CE00155D0B4530               <
    XRFC> TS_CALL    : 20140609173408.2880000                                 <
    XRFC> SY_UNAME   :                                            <
    XRFC> HOSTNAME   :                                              <
    XRFC> SY_SID     : PRD                                                    <
    XRFC> SY_MANDT   : 300                                                    <
    XRFC> SYS_NR     : 19                                                     <
    XRFC> APPLSERVER :                                      <
    XRFC> ISPRESCHED : X                                                      <
    XRFC> DURATION   : 21810                                                  <
    XRFC> NETHDRTIME : 21810                                                  <
    XRFC> CALL_STATE : 2                                                      <
    XRFC> ERRORTYPE  : APPLFAIL                                               <
    XRFC> ERRORAREA  : APPL                                                   <
    XRFC> CTXDP_TYPE : SOAP_RUNTIME                                           <
    XRFC> SYNC_ASYNC : S                                                      <
    XRFC> LOCATION   : P                                                      <
    XRFC> DIRECTION  : I                                                      <
    XRFC> REQ_ID     : 91C57815916E421CA9F3D652FFACE9C7                       <
    XRFC> RESP_ID    : 00155D0B45301EE3BBFF89A0267EB5CE                       <
    XRFC> MSG_STATE  : 114                                                    <
    XRFC> IF_NAME_I  : ZSD_CS_CREATE_SALESORDER_SERVI                         <
    XRFC> IF_NS_E    : urn:sap-com:document:sap:soap:functions:mc-style       <
    XRFC> IF_NAME_E  : ZSD_CS_CREATE_SALESORDER_SERVI                         <
    XRFC> ISSHORTCUT :                                                        <
    XRFC> TRC_PATT   : WSTEST                                                 <
    XRFC> TRC_SSID   : PRD_19                                                 <
    XRFC> TRC_USER   :                                           <
    XRFC> TRC_TS     : 20140609173409                                         <
    XRFC> TRC_COUNT  : 99                                                     <
    XRFC> TRC_EXT    :                                                        <
    XRFC> COMPLETE   : OK                                                     <
    XRFC> CALLEDPROG : ZSD_CS_CREATE_SALESORDER_SERVI                         <
    XRFC> SOAP_APPLI : urn:sap-com:soap:runtime:application:rfc:710           <
    XRFC> CONF_ID    : 00155D0B45301EE3AEFDAD78756555CE                       <
    XRFC> BIND_ID    : 00155D0B45301EE3AEFDAD787565B5CE                       <
    XRFC> OP_NAME    : ZsdCsCreateSalesorder                                  <
    XRFC> COMM_PATRN : Method:ZsdCsCreateSalesorder                           <
    XRFC> OP_NS      : urn:sap-com:document:sap:soap:functions:mc-style       <
    XRFC> REMADDRESS : 172.16.11.43                                           <
    XRFC> DT_OBJ     : ZSD_CS_CREATE_SALESORDER_SERVI                         <
    XRFC> MEMCONSUMP : 296291                                                 <
    XRFC> WSHOST     :                                                        <
    XRFC> WSPORT     :                                                        <
    XRFC> WSPROT     :                                                        <
    XRFC> WSCLIENT   :                                                        <
    XRFC> WSPATH     :                                                        <
    XRFC> PXYHOST    :                                                        <
    XRFC> PXYPORT    :                                                        <
    XRFC> USEDRFCDES :                                                        <
    XRFC> BONAME     :                                                        <
    XRFC> PROCCOMP   :                                                        <
    XRFC> DEPLOYUNIT :                                                        <
    XRFC> ------------------------------------------------------------------  <
    XRFC>                                                                     <
    XRFC> TRACE SOAP RUNTIME - trace records                                  <
    XRFC>                                                                     <
    XRFC> ------------------------------------------------------------------  <
    XRFC> E SOAP_RUNTIME 20140609173429.7400000 : CL_SOAP_RUNTIME_SERVER      <
    XRFC> ->EXECUTE_PROCESSING Exception handling for IF "ZSD_CS_CREATE       <
    XRFC> _SALESORDER_SERVI" OP name "ZsdCsCreateSalesorder" MSG ID           <
    XRFC> "91C57815916E421CA9F3D652FFACE9C7" user "STULZWEBSERV"              <
    XRFC>                                                                     <
    XRFC>                                                                     <
    XRFC> E SOAP_RUNTIME 20140609173429.7240000 : CL_SOAP_RUNTIME_SERVER      <
    XRFC> ->EXECUTE_PROCESSING CX_SOAP_ROOT : An exception has occurred. |    <
    XRFC> program: CL_SOAP_RUNTIME_ROOT==========CP include: CL_SOAP          <
    XRFC> _RUNTIME_ROOT==========CM004 line: 120                              <
    XRFC>                                                                     <
    XRFC>                                                                     <
    XRFC> E SOAP_RUNTIME 20140609173429.7400000 : CL_SOAP_RUNTIME_SERVER      <
    XRFC> ->EXECUTE_PROCESSING CX_SY_NO_HANDLER : An exception with the type  <
    XRFC> CX_SY_OPEN_SQL_DB occurred, but was neither handled locally, nor    <
    XRFC> declared in a RAISING clause | program: SAPLSTXD include: LSTXDFDB  <
    XRFC> line: 200                                                           <
    XRFC>                                                                     <
    XRFC>                                                                     <
    XRFC> E SOAP_RUNTIME 20140609173429.7400000 : CL_SOAP_RUNTIME_SERVER      <
    XRFC> ->EXECUTE_PROCESSING CX_SY_OPEN_SQL_DB : The database returned a    <
    XRFC> value containing an error | program: SAPLSTXD include: LSTXDFDB     <
    XRFC> line: 227                                                           <
    XRFC>                                                                     <
    XRFC> ---------------------------------------------------------------------
    XRFC> End of user trace

  • Error:arch: posix_spawnp: osascript: Bad CPU type in executable

    Hi, i am new to these issues
    I use to be able to excute my frank-cucmber on Lion and now when i move to mountain lion and I  get the following error
    error:arch: posix_spawnp: osascript: Bad CPU type in executable
    i read on the interent that mountain lion is not supporting 32 bit
    so how can  i solve the problem so 32 bit will be supported?

    You need a 64-bit version.
    32-bit will never be supported on Mountain Lion.

  • [Solved]{scheme} Error: (/) bad argument type: # unspecified

    I'm working through Structure and Interpretation of Computer Programs, and I've run into some behaviour I don't understand.
    The code:
    (define (average x y)
    (/ (+ x y) 2))
    (define (refine r g)
    (print "["r"]["g"]")
    (average (/ r g) g))
    (define (sqrt-guess rad guess)
    (define oldguess guess)
    (define guess (refine rad guess)) # problem line
    (if (= oldguess guess)
    guess
    (sqrt-guess rad guess)))
    It seems that when refine is called in the problem line the second argument is not being 'received' as I would expect.
    #;1> (sqrt-guess 9 1)
    [9][#<unspecified>]
    Error: (/) bad argument type: #<unspecified>
    Call history:
    <syntax> (sqrt-guess 9 1)
    <eval> (sqrt-guess 9 1)
    <eval> [sqrt-guess] (refine r g)
    <eval> [refine] (print "[" r "][" g "]")
    <eval> [refine] (average (/ r g) g)
    <eval> [refine] (/ r g) <--
    I tried (define guess (refine rad oldguess)), same outcome. At this point, I figure it's some consequence of applicative-order processing that I don't understand. But things got more interesting when I added a standalone call to refine:
    (define (sqrt-guess rad guess)
    (define oldguess guess)
    (refine rad oldguess) # new line
    (define guess (refine rad oldguess)) # (define guess (refine rad guess)) also works
    (if (= oldguess guess)
    guess
    (sqrt-guess rad guess)))
    Now the code runs as expected and returns an answer. However, if I change "oldguess" to "guess" in the first refine line:
    (define (sqrt-guess rad guess)
    (define oldguess guess)
    (refine rad guess)
    (define guess (refine rad oldguess)) # (define guess (refine rad guess)) also fails
    (if (= oldguess guess)
    guess
    (sqrt-guess rad guess)))
    the original error re-occurrs. In every case the 'standalone' call to refine gets both arguments as expected; it's the one in "define guess" that has issues.
    I'm not looking for help fixing the code, but for an explanation/breakdown of what's going on. Thanks.
    Last edited by alphaniner (2013-06-20 13:20:34)

    I believe that redefining 'guess' is confusing the compiler.
    You're right. That was my first thought too, but I swear I tried something like (define foo (refine rad guess)) which didn't work either. I just tried it again and it works just fine.
    I haven't been introduced to let yet, and the way it's parenthesized I don't really understand how it works. I think of let in bash terms (ie. let x++) so maybe that's my problem. Anyway, I'll wait 'till I come across it in the text.
    Using your suggestions I got it to work using only stuff I know:
    (define (sqrt-guess rad guess)
    (define newguess (refine rad guess))
    (if (= newguess guess)
    guess
    (sqrt-guess rad newguess)))
    Definitely cleaner. Thanks!

  • 5213: Bad Oracle login error in OCISessionBegin() while running ttcacheuidp

    Hi,
    I am working on Oracle TimesTen Client: Oracle TimesTen 11.2.1.8.0
    I am following this step: http://download.oracle.com/otn_hosted_doc/timesten/1121/quickstart/html/admin/cache_grid_create.html
    I am in the step 4: 4. Associate the Oracle Cache Administration user with the Cache Database
    And I got this error:
    Command> connect "dsn=cachedsh_schema;uid=cacheadm;pwd=cacheadm;oraclepwd=oracle";
    Connection successful: DSN=cachedsh_schema;UID=cacheadm;DataStore=/u03/TimesTenCache/datastore/cachedsh_schema;DatabaseCharacterSet=AL32UTF8;ConnectionCharacterSet=US7ASCII;DRIVER=/u01/app/oracle/product/TimesTen/ttscofield/TimesTen/ttscofield/lib/libtten.so;PermSize=768;TempSize=256;TypeMode=0;OracleNetServiceName=SCOFIELD;
    (Default setting AutoCommit=1)
    Command> call ttcacheuidpwdset ('cacheadm','cacheadm');
    5213: Bad Oracle login error in OCISessionBegin(): ORA-01017: invalid username/password; logon denied rc = -1
    5935: Could not validate Oracle login: uid = CACHEADM, pwd = HIDDEN, OracleNetServiceName = SCOFIELD, TNS_ADMIN = "", ORACLE_HOME= "/u01/app/oracle/product/11.2/db_1"
    The command failed.
    What seems to be the issue?
    I referenced this link: http://download.oracle.com/otn_hosted_doc/timesten/1121/doc/timesten.1121/e13069/proced.htm#TTREF237
    And on the notes it says:
    Notes
    This procedure cannot be called from a Client/Server connection.
    This procedure is available only for IMDB Cache.
    The cache administration user ID and password cannot be set while either the cache agent or the replication agent are running.
    The cache administration user ID cannot be reset while there are ASYNCHRONOUS WRITETHROUGH cache groups or AUTOREFRESH cache groups (with a state that is not equal to OFF) on the database.
    What does: This procedure cannot be called from a Client/Server connection mean?
    Is this the root cause of the problem or I am missing a step?
    Thanks!

    I still get the same error. But I have figured out what is wrong. Just in case other users encounter the same errors, here's what I did:
    I created a tnsnames.ora file in my TIMESTEN_HOME/network/admin that has the connection info to testenv Oracle instance. +(i dont know if this is necessary)+. Then:
    [oracle@testenv ~]$ ttmodinstall -tns_admin option
    TNS_ADMIN for the instance 'testenv' is currently not set.
    Would you like to change TNS_ADMIN for this instance? [ yes ]
    Please enter a value for TNS_ADMIN (q=quit)? [ option ] /u01/app/oracle/product/TimesTen/testenv/TimesTen/testenv/network/admin
    Do you want to restart the daemon using the new configuration? [ yes ]
    Restarting the daemon ...
    TimesTen Daemon stopped.
    TimesTen Daemon startup OK.
    Instance testenv is now configured with TNS_ADMIN=/u01/app/oracle/product/TimesTen/testenv/TimesTen/testenv/network/admin
    [oracle@testenv ~]$ ttversion
    TimesTen Release 11.2.1.8.0 (64 bit Linux/x86_64) (testenv:53388) 2011-02-02T02:20:46Z
    Instance admin: oracle
    Instance home directory: /u01/app/oracle/product/TimesTen/testenv/TimesTen/testenv
    Group owner: oinstall
    Daemon home directory: /u01/app/oracle/product/TimesTen/testenv/TimesTen/testenv/info
    PL/SQL enabled.
    [oracle@testenv ~]$ ttisql "dsn=cachedsh_schema;uid=cacheadm;pwd=cacheadm;oraclepwd=cacheadm"
    Copyright (c) 1996-2011, Oracle. All rights reserved.
    Type ? or "help" for help, type "exit" to quit ttIsql.
    connect "dsn=cachedsh_schema;uid=cacheadm;pwd=cacheadm;oraclepwd=cacheadm";
    Connection successful: DSN=cachedsh_schema;UID=cacheadm;DataStore=/u03/TimesTenCache/datastore/cachedsh_schema;DatabaseCharacterSet=AL32UTF8;ConnectionCharacterSet=US7ASCII;DRIVER=/u01/app/oracle/product/TimesTen/testenv/TimesTen/testenv/lib/libtten.so;PermSize=768;TempSize=256;TypeMode=0;OracleNetServiceName=SCOFIELD;
    (Default setting AutoCommit=1)
    Command> call ttgridcreate ('cachedshgrid');
    Command> call ttgridinfo;
    < CACHEDSHGRID, CACHEADM, Linux x86-64, 64-bit, 11, 2, 1 >
    1 row found.
    Command> call ttgridnameset ('cachedshgrid');
    Command>
    Thanks!

  • FOTY0001: type error

    Hi,
    I have a case where I have to read a database table and in that table I have a field of long type (contains a xml payload). I have to parse the payload and assign it to another variable so that it updates in another table.
    I am using the parseEscapedXML() and getting the following error..
    <Faulthttp://schemas.xmlsoap.org/soap/envelope/>
    <faultcode>soapenv:Server.userException</faultcode>
    <faultstring>ORABPEL-09500 XPath expression failed to execute. Error while processing xpath expression, the expression is "ora:parseEscapedXML(bpws:getVariableData('Invoke_CERSelect_OutputVariable','CERCollection','/ns3:CERCollection/ns3:CER/ns3:payload'))", the reason is FOTY0001: type error. Please verify the xpath query. </faultstring>
    <detail>
    <hostnamehttp://xml.apache.org/axis/>DEVRA</hostname>
    </detail>
    </Fault>
    appreciate your help in this regard.
    Thanks,
    mamtha

    check for "&" character in your string and change to "and". we figured out this causes problem by elimination:)

  • Bad packet type

    I am running a JAVA applet which connects to Oracle. When I run the applet on my local machine with a local Oracle database everything runs fine. When I change the connect string and move it to the production server and then try to acces it through the browser on my machine I get the error "java.sql.SQLException: Io exception: Bad packet type". Any ideas would be appreciated. Thanks. Glenn...

    Hope you are making sure that the applet and HTML page is being served out from the same machine that has the Oracle Database. You may even run into a security error if one is referenced by IP and one by server name.

  • Error in Primavera Analytics 3.1 (staretl issuing long data type error)

    Hi,
    While running ETL for Primavera Analytics 3.1 I am facing long data type error.
    Detailed session log can be found on below URL.
    http://pastebin.com/Ez0VihGN
    I have following environment.
    Primavera Analytics on Win2k8 64bit with 11g R2 DB.
    Primavera EPPM DB on Sql Server
    Connectivity through Oracle Gateway. (tested)
    Please help.
    Naeem Akhtar
    Edited by: Naeem Akhtar Khan on Apr 9, 2013 3:58 AM

    Based on your post there is an error in you initdg4msl.ora file............ make sure you the database connection is correct and you add the two statement to the file
    for example
    Should be: HS_FDS_CONNECT_INFO=YOURSQLSERVER//YOUR DATABASE
    Make sure you to add the following to the same file (see page 92):
    HS_NLS_LENGTH_SEMANTICS=CHAR
    HS_FDS_CHARACTER_SEMANTICS = TRUE
    HS_KEEP_REMOTE_COLUMN_SIZE=ALL
    Rerun the ETL process

  • Bad pool caller error

    Sir i have windows 8 32-bit professional. when i open specific hard drive location i.e local disk E it restart saying BAD POOL CALLER error. here is alink of skydrive where are my dump file please analyze it and answer me.....
    https://skydrive.live.com/#cid=899F33253DF40A69&id=899F33253DF40A69%21111

    it looks like Avast (aswSP.SYS) is the cause:
    BAD_POOL_CALLER (c2)
    The current thread is making a bad pool request. Typically this is at a bad IRQL level or double freeing the same allocation, etc.
    Arguments:
    Arg1: 00000000, The caller is requesting a zero byte pool allocation.
    Arg2: 00000000, zero.
    Arg3: 00000001, the pool type being allocated.
    Arg4: 6e557641, the pool tag being used.
    Debugging Details:
    BUGCHECK_STR: 0xc2_0
    CUSTOMER_CRASH_COUNT: 1
    DEFAULT_BUCKET_ID: WIN8_DRIVER_FAULT
    PROCESS_NAME: explorer.exe
    CURRENT_IRQL: 0
    LAST_CONTROL_TRANSFER: from 81e4f05d to 81e25b98
    STACK_TEXT:
    nt!KeBugCheckEx
    nt!ExAllocatePoolWithTag
    WARNING: Stack unwind information not available. Following frames may be wrong.
    aswSP
    SYMBOL_NAME: aswSP+2caf3
    Image path: \SystemRoot\System32\Drivers\aswSP.SYS
    Image name: aswSP.SYS
    Timestamp: Tue Oct 30 23:43:45 2012
    So update Avast or uninstall it, if there is no Windows 8 compatible version.
    btw, why do you use the checked Build (Built by: 9200.16384.x86chk.win8_rtm.120725-1247)?
    "A programmer is just a tool which converts caffeine into code"

  • Unable to launch application from my machine:Bad MIME Type

    Hi,
    The following error message was printed when I tried to access the SwingSet2 demo from the Java Web Start site.
    An error occurred while launching/running the application.
    Title: SwingSet2
    Vendor: Sun Microsystems, Inc.
    Category: Download Error
    Bad MIME type returned from server when accessing resource: http://java.sun.com/products/javawebstart/apps/SwingSet2.jnlp - text/html
    Can you please suggest what is to be done to rectufy this problem?
    Regards,
    Satish

    Bad MIME type returned from server when accessing
    resource:
    http://java.sun.com/products/javawebstart/apps/SwingSet
    .jnlp - text/htmlit should return application/x-java-jnlp-file.
    My guess is that you use proxy which messes up headers.
    Otherwise try to reinstall Web Start, then enable the console and log output in Web Start's advanced preferences to get more clues what's going on.
    Regards,
    Marc

  • "Schema validation found non-data type errors" error when passing a string value to date field in infopath

    Hi,
    I have an infopath web brower enabled form. In the form i have a date field.
    I am passing the data from the database to that field using the C# code.
    But, as the field from database is coming as string, i am getting an error, and i am not able to assign the value.
    I get the date value from database as "3/25/2011 12:00:00 AM"
    I used the below code:
    [CODE]
    if (objInfopathFormcData.myRecievedDate != null)
      myRoot.SelectSingleNode("/my:myFields/my:field97", NamespaceManager).SetValue(objInfopathFormcData.myRecievedDate);
    [/CODE]
    I am getting the error as "Schema validation found non-data type errors".
    How to set the value for a date field in Infopath.
    Thank you

    HI,
    I fixed it:
    Below code is used to fix:
    [CODE]
    XPathNavigator xfield = null;
    DateTime dtmyRecievedDate;
    dtmyRecievedDate = Convert.ToDateTime(objInfopathFormcData.myRecievedDate);
    if (objFormcData.FcCompletionDate != null)
    xfield = myRoot.SelectSingleNode("/my:myFields/my:field97", NamespaceManager);
    DeleteNil(xfield);
    xfield.SetValue(dtmyRecievedDate.GetDateTimeFormats().GetValue(5).ToString());
    // method to delete xsi:nil
    private void DeleteNil(XPathNavigator nav1)
    if (nav1.MoveToAttribute("nil", "http://www.w3.org/2001/XMLSchema-instance"))
       nav1.DeleteSelf();
    [/CODE]
    Thank you

  • BAD Command Argument Error. 11 writing to Exchange 2007 - Help Please...

    Hi,
    I am writing an IMAP to IMAP mailbox converter. I am testing a UW mailbox that I have approx. 1200 messages in to a MS Exchange 2007 Server. I am performing a javax.mail.Folder destFolder.appendMessages(sourceFolder.getMessages()). I transfer almost half the messages this why when i get the following exception. I have googled and not found any reference to it, nor does the protocol trace look bazaar :
    javax.mail.MessagingException: A4 BAD Command Argument Error. 11;
    nested exception is:
    com.sun.mail.iap.BadCommandException: A4 BAD Command Argument Error. 11
    at com.sun.mail.imap.IMAPFolder.doCommand(IMAPFolder.java:2337)
    at com.sun.mail.imap.IMAPFolder.appendMessages(IMAPFolder.java:1289)
    at edu.yale.its.tp.email.conversion.IMAPConverter.copyMessages(IMAPConverter.java:83)
    at edu.yale.its.tp.email.conversion.IMAPConverter.copyFolder(IMAPConverter.java:75)
    at edu.yale.its.tp.email.conversion.IMAPConverter.convert(IMAPConverter.java:36)
    at edu.yale.its.tp.email.conversion.IMAPConverter.start(IMAPConverter.java:27)
    at edu.yale.its.tp.email.conversion.IMAPConverter.main(IMAPConverter.java:16)
    Caused by: com.sun.mail.iap.BadCommandException: A4 BAD Command Argument Error. 11
    at com.sun.mail.iap.Protocol.handleResult(Protocol.java:296)
    at com.sun.mail.imap.protocol.IMAPProtocol.appenduid(IMAPProtocol.java:881)
    at com.sun.mail.imap.protocol.IMAPProtocol.append(IMAPProtocol.java:835)
    at com.sun.mail.imap.IMAPFolder$10.doCommand(IMAPFolder.java:1292)
    at com.sun.mail.imap.IMAPFolder.doProtocolCommand(IMAPFolder.java:2377)
    at com.sun.mail.imap.IMAPFolder.doCommand(IMAPFolder.java:2332)
    ... 6 more
    Here is the protocol trace...
    0 [main] INFO - start Conversion
    DEBUG: JavaMail version 1.4ea
    DEBUG: java.io.FileNotFoundException: /usr/java/jdk1.5.0_11/jre/lib/javamail.providers (No such file or directory)
    DEBUG: URL jar:file:/usr/local/java-apis/javamail/javamail-1.4/lib/imap.jar!/META-INF/javamail.providers
    DEBUG: successfully loaded resource: jar:file:/usr/local/java-apis/javamail/javamail-1.4/lib/imap.jar!/META-INF/javamail.providers
    DEBUG: URL jar:file:/usr/local/java-apis/javamail/javamail-1.4/lib/pop3.jar!/META-INF/javamail.providers
    DEBUG: successfully loaded resource: jar:file:/usr/local/java-apis/javamail/javamail-1.4/lib/pop3.jar!/META-INF/javamail.providers
    DEBUG: URL jar:file:/usr/local/java-apis/javamail/javamail-1.4/lib/smtp.jar!/META-INF/javamail.providers
    DEBUG: successfully loaded resource: jar:file:/usr/local/java-apis/javamail/javamail-1.4/lib/smtp.jar!/META-INF/javamail.providers
    DEBUG: successfully loaded resource: /META-INF/javamail.default.providers
    DEBUG: Tables of loaded providers
    DEBUG: Providers Listed By Class Name: {com.sun.mail.smtp.SMTPSSLTransport=javax.mail.Provider[TRANSPORT,smtps,com.sun.mail.smtp.SMTPSSLTransport,Sun Microsystems, Inc], com.sun.mail.smtp.SMTPTransport=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun Microsystems, Inc], com.sun.mail.imap.IMAPSSLStore=javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Sun Microsystems, Inc], com.sun.mail.pop3.POP3SSLStore=javax.mail.Provider[STORE,pop3s,com.sun.mail.pop3.POP3SSLStore,Sun Microsystems, Inc], com.sun.mail.imap.IMAPStore=javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Sun Microsystems, Inc], com.sun.mail.pop3.POP3Store=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Sun Microsystems, Inc]}
    DEBUG: Providers Listed By Protocol: {imaps=javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Sun Microsystems, Inc], imap=javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Sun Microsystems, Inc], smtps=javax.mail.Provider[TRANSPORT,smtps,com.sun.mail.smtp.SMTPSSLTransport,Sun Microsystems, Inc], pop3=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Sun Microsy stems, Inc], smtp=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun Microsystems, Inc], pop3s=javax.mail.Provider[STORE,pop3s,com.sun.mail.pop3.POP3SSLStore,Sun Microsystems, Inc]}
    DEBUG: successfully loaded resource: /META-INF/javamail.default.address.map
    DEBUG: URL jar:file:/usr/local/java-apis/javamail/javamail-1.4/lib/smtp.jar!/META-INF/javamail.address.map
    DEBUG: successfully loaded resource: jar:file:/usr/local/java-apis/javamail/javamail-1.4/lib/smtp.jar!/META-INF/javamail.address.map
    DEBUG: java.io.FileNotFoundException: /usr/java/jdk1.5.0_11/jre/lib/javamail.address.map (No such file or directory)
    DEBUG: getProvider() returning javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Sun Microsystems, Inc]
    DEBUG: mail.imap.partialfetch: false
    * OK [CAPABILITY IMAP4REV1 LOGIN-REFERRALS AUTH=PLAIN AUTH=LOGIN] pantheon-po09.its.yale.edu IMAP4rev1 2002.336 at Fri, 21 Sep 2007 09:34:04 -0400 (EDT)
    IMAP DEBUG: AUTH: PLAIN
    IMAP DEBUG: AUTH: LOGIN
    A0 CAPABILITY
    * CAPABILITY IMAP4REV1 IDLE NAMESPACE MAILBOX-REFERRALS BINARY SCAN SORT THREAD=REFERENCES THREAD=ORDEREDSUBJECT MULTIAPPEND LOGIN-REFERRALS AUTH=PLAIN AUTH=LOGIN
    A0 OK CAPABILITY completed
    IMAP DEBUG: AUTH: PLAIN
    IMAP DEBUG: AUTH: LOGIN
    DEBUG: protocolConnect login, host=pantheon-po09.its.yale.edu, user=jjv6, password=<non-null>
    A1 AUTHENTICATE PLAIN
    +
    +*<----REMOVED---->*+
    A1 OK [CAPABILITY IMAP4REV1 IDLE NAMESPACE MAILBOX-REFERRALS BINARY SCAN SORT THREAD=REFERENCES THREAD=ORDEREDSUBJECT MULTIAPPEND] User jjv6 authenticated
    DEBUG: JavaMail version 1.4ea
    DEBUG: java.io.FileNotFoundException: /usr/java/jdk1.5.0_11/jre/lib/javamail.providers (No such file or directory)
    DEBUG: URL jar:file:/usr/local/java-apis/javamail/javamail-1.4/lib/imap.jar!/META-INF/javamail.providers
    DEBUG: successfully loaded resource: jar:file:/usr/local/java-apis/javamail/javamail-1.4/lib/imap.jar!/META-INF/javamail.providers
    DEBUG: URL jar:file:/usr/local/java-apis/javamail/javamail-1.4/lib/pop3.jar!/META-INF/javamail.providers
    DEBUG: successfully loaded resource: jar:file:/usr/local/java-apis/javamail/javamail-1.4/lib/pop3.jar!/META-INF/javamail.providers
    DEBUG: URL jar:file:/usr/local/java-apis/javamail/javamail-1.4/lib/smtp.jar!/META-INF/javamail.providers
    DEBUG: successfully loaded resource: jar:file:/usr/local/java-apis/javamail/javamail-1.4/lib/smtp.jar!/META-INF/javamail.providers
    DEBUG: successfully loaded resource: /META-INF/javamail.default.providers
    DEBUG: Tables of loaded providers
    DEBUG: Providers Listed By Class Name: {com.sun.mail.smtp.SMTPSSLTransport=javax.mail.Provider[TRANSPORT,smtps,com.sun.mail.smtp.SMTPSSLTransport,Sun Microsystems, Inc], com.sun.mail.smtp.SMTPTransport=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun Microsystems, Inc], com.sun.mail.imap.IMAPSSLStore=javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Sun Microsystems, Inc], com.sun.mail.pop3.POP3SSLStore=javax.mail.Provider[STORE,pop3s,com.sun.mail.pop3.POP3SSLStore,Sun Microsystems, Inc], com.sun.mail.imap.IMAPStore=javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Sun Microsystems, Inc], com.sun.mail.pop3.POP3Store=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Sun Microsystems, Inc]}
    DEBUG: Providers Listed By Protocol: {imaps=javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Sun Microsystems, Inc], imap=javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Sun Microsystems, Inc], smtps=javax.mail.Provider[TRANSPORT,smtps,com.sun.mail.smtp.SMTPSSLTransport,Sun Microsystems, Inc], pop3=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Sun Microsy stems, Inc], smtp=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun Microsystems, Inc], pop3s=javax.mail.Provider[STORE,pop3s,com.sun.mail.pop3.POP3SSLStore,Sun Microsystems, Inc]}
    DEBUG: successfully loaded resource: /META-INF/javamail.default.address.map
    DEBUG: URL jar:file:/usr/local/java-apis/javamail/javamail-1.4/lib/smtp.jar!/META-INF/javamail.address.map
    DEBUG: successfully loaded resource: jar:file:/usr/local/java-apis/javamail/javamail-1.4/lib/smtp.jar!/META-INF/javamail.address.map
    DEBUG: java.io.FileNotFoundException: /usr/java/jdk1.5.0_11/jre/lib/javamail.address.map (No such file or directory)
    DEBUG: getProvider() returning javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Sun Microsystems, Inc]
    DEBUG: mail.imap.partialfetch: false
    * OK Microsoft Exchange Server 2007 IMAP4 service ready
    A0 CAPABILITY
    * CAPABILITY IMAP4 IMAP4rev1 AUTH=NTLM AUTH=GSSAPI IDLE NAMESPACE LITERAL+
    A0 OK CAPABILITY completed.
    IMAP DEBUG: AUTH: NTLM
    IMAP DEBUG: AUTH: GSSAPI
    DEBUG: protocolConnect login, host=connect.yale.edu, user=jjv6, password=<non-null>
    A1 LOGIN +*<----Removed---->*+
    A1 OK LOGIN completed.
    A2 LIST "" "Sakai-Dev List"
    * LIST (\HasNoChildren) "/" "Sakai-Dev List"
    A2 OK LIST completed.
    DEBUG: connection available -- size: 1
    A2 EXAMINE "Sakai-Dev List"
    * 1206 EXISTS
    * 2 RECENT
    * OK [UIDVALIDITY 1151671867] UID validity status
    * OK [UIDNEXT 11497] Predicted next UID
    * FLAGS (Junk NonJunk $Label5 $Label1 $Label2 $Label3 $Label4 $MDNSent \Answered \Flagged \Deleted \Draft \Seen)
    * OK [PERMANENTFLAGS ()] Permanent flags
    * OK [UNSEEN 8] first unseen message in /imap/j/jjv6/Sakai-Dev List
    A2 OK [READ-ONLY] EXAMINE completed
    DEBUG: connection available -- size: 1
    A3 SELECT "Sakai-Dev List"
    * 524 EXISTS
    * 0 RECENT
    * FLAGS (\Seen \Answered \Flagged \Deleted \Draft $MDNSent)
    * OK [PERMANENTFLAGS (\Seen \Answered \Flagged \Deleted \Draft $MDNSent)] Permanent flags
    * OK [UIDVALIDITY 13758] UIDVALIDITY value
    * OK [UIDNEXT 525] The next unique identifier value
    A3 OK [READ-WRITE] SELECT completed.
    A3 LIST "" "Sakai-Dev List"
    * LIST (\NoInferiors \UnMarked) "/" "Sakai-Dev List"
    A3 OK LIST completed
    3080 [main] DEBUG - Source Messages : 1206
    3080 [main] DEBUG - Dest Messages : 524
    3080 [main] DEBUG - Copying 1206 Messages
    A4 FETCH 1 (ENVELOPE INTERNALDATE RFC822.SIZE)
    * 1 FETCH (ENVELOPE ("Tue, 21 Aug 2007 13:35:23 -0700 (PDT)" "Re: Sakai portlet problem in uPortal" (("Onur Sirin" NIL "onursirin" "sabanciuniv.edu")) (("Onur Sirin" NIL "onursirin" "sabanciuniv.edu")) (("Onur Sirin" NIL "onursirin" "sabanciuniv.edu")) ((NIL NIL "sakai-dev" "collab.sakaiproject.org")) NIL NIL "<[email protected]>" "<[email protected]>") INTERNALDATE "21-Aug-2007 16:37:20 -0400" RFC822.SIZE 7024)
    A4 OK FETCH completed
    A5 FETCH 1 (BODY[])
    * 1 FETCH (BODY[] {7024}
    Received: from mr4.its.yale.edu (mr4.its.yale.edu [130.132.50.10])
    by pantheon-po09.its.yale.edu (8.12.11.20060308/8.12.11) with ESMTP id l7LKbJRC006741
    (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT);
    Tue, 21 Aug 2007 16:37:19 -0400
    Received: from paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])
    by mr4.its.yale.edu (8.12.11.20060308/8.12.11) with ESMTP id l7LKbH3b030903;
    Tue, 21 Aug 2007 16:37:18 -0400
    Received: from paploo.uhi.ac.uk (localhost [127.0.0.1])
    by paploo.uhi.ac.uk (Postfix) with ESMTP id 7F70050E80;
    Tue, 21 Aug 2007 20:54:16 +0100 (BST)
    Message-ID: <[email protected]>
    Mime-Version: 1.0
    Content-Transfer-Encoding: 7bit
    Received: from prod.collab.uhi.ac.uk ([194.35.219.182])
    by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 665
    for <[email protected]>;
    Tue, 21 Aug 2007 20:53:07 +0100 (BST)
    Received: from kuber.nabble.com (kuber.nabble.com [216.139.236.158])
    by shmi.uhi.ac.uk (Postfix) with ESMTP id 347909F12
    for <[email protected]>; Tue, 21 Aug 2007 21:35:26 +0100 (BST)
    Received: from isper.nabble.com ([192.168.236.156])
    by kuber.nabble.com with esmtp (Exim 4.63)
    (envelope-from <[email protected]>)
    id 1INaRf-0004yq-5U
    for [email protected]; Tue, 21 Aug 2007 13:35:23 -0700
    Date: Tue, 21 Aug 2007 13:35:23 -0700 (PDT)
    From: Onur Sirin <[email protected]>
    To: [email protected]
    Subject: Re: Sakai portlet problem in uPortal
    In-Reply-To: <[email protected]>
    X-Content-Type-Outer-Envelope: text/plain; charset=us-ascii
    X-Nabble-From: [email protected]
    References: <[email protected]> <[email protected]>
    X-Content-Type-Message-Body: text/plain; charset=us-ascii
    Content-Type: text/plain; charset=us-ascii
    X-YaleITSMailFilter: Version 1.2c (attachment(s) not renamed)
    X-Yale-Not-Spam: For more info see: http://www.yale.edu/email/spam/content.html
    X-Yale-Spam-Score: (0)
    X-Yale-Filter-Score: 0
    X-Scanned-By: MIMEDefang 2.52 on 130.132.50.10
    Hi Charles,
    I used a portlet you created first but not in trunk. (as sakai-dash.war
    file) This might be older one.
    From catalina.out i get following logs.First, as always i get:
    WARN: Shared Segment file is missing
    /home/sakai/tomcat/sakai/sharedsegments/1187722277361.zip (2007-08-21
    23:02:38,279
    SearchBuilder_0_org.sakaiproject.search.index.impl.JDBCClusterIndexStore)
    ERROR: There has been a major poblem with the Search Index which has become
    corrupted (2007-08-21 23:02:38,285
    SearchBuilder_0_org.sakaiproject.search.index.impl.ClusterFSIndexStorage)
    java.io.IOException: No Index available to open
    at
    org.sakaiproject.search.index.impl.ClusterFSIndexStorage.getIndexReader(ClusterFSIndexStorage.java:211)
    at
    org.sakaiproject.search.index.impl.ClusterFSIndexStorage.getIndexSearcher(ClusterFSIndexStorage.java:288)
    at
    org.sakaiproject.search.index.impl.SearchIndexStorage.getIndexSearcher(SearchIndexStorage.java:97)
    at
    org.sakaiproject.search.component.service.impl.SearchServiceImpl.getIndexSearcher(SearchServiceImpl.java:554)
    at
    org.sakaiproject.search.component.service.impl.SearchServiceImpl.reload(SearchServiceImpl.java:451)
    at
    org.sakaiproject.search.component.service.impl.SearchIndexBuilderWorkerImpl.run(SearchIndexBuilderWorkerImpl.java:485)
    at java.lang.Thread.run(Thread.java:595)
    WARN: Shared Segment file is missing
    /home/sakai/tomcat/sakai/sharedsegments/1187722277361.zip (2007-08-21
    23:02:38,460
    SearchBuilder_1_org.sakaiproject.search.index.impl.JDBCClusterIndexStore)
    ERROR: There has been a major poblem with the Search Index which has become
    corrupted (2007-08-21 23:02:38,466
    SearchBuilder_1_org.sakaiproject.search.index.impl.ClusterFSIndexStorage)
    java.io.IOException: No Index available to open
    at
    org.sakaiproject.search.index.impl.ClusterFSIndexStorage.getIndexReader(ClusterFSIndexStorage.java:211)
    at
    org.sakaiproject.search.index.impl.ClusterFSIndexStorage.getIndexSearcher(ClusterFSIndexStorage.java:288)
    at
    org.sakaiproject.search.index.impl.SearchIndexStorage.getIndexSearcher(SearchIndexStorage.java:97)
    at
    org.sakaiproject.search.component.service.impl.SearchServiceImpl.getIndexSearcher(SearchServiceImpl.java:554)
    at
    org.sakaiproject.search.component.service.impl.SearchServiceImpl.reload(SearchServiceImpl.java:451)
    at
    org.sakaiproject.search.component.service.impl.SearchIndexBuilderWorkerImpl.run(SearchIndexBuilderWorkerImpl.java:485)
    at java.lang.Thread.run(Thread.java:595)
    I don't know what it is. !!!
    And then, when i logged into portal, i get the following message:
    SakaiPortalLogin.loginAndCreate id=onursirin pw=plugh-xyzzy sec=plugh-xyzzy
    fn=Onur ln=Sirin [email protected] ip=10.4.3.1
    Site exists...~onursirin
    That's all what i see in catalina.out.
    By the way, we are using Cisco CSS (Content Switch) for Load Balancing
    process.
    Behind CSS, there is apache server and application server installed on two
    servers which mentioned in this page
    http://confluence.sakaiproject.org/confluence/display/DOC/Sakai+2.4+Admin+Guide+-LoadBalancing+and+Scaling
    http://confluence.sakaiproject.org/confluence/display/DOC/Sakai+2.4+Admin+Guide+-LoadBalancing+and+Scaling
    as thin client .
    CSS DNS address = sucourse.sabanciuniv.edu
    App server DNS address = sakws1.sabanciuniv.edu and sakws2.sabanciuniv.edu
    It is enough to type sucourse.sabanciuniv.edu address in web browser.
    Their sakai.properties files are similar. However, there are following
    parameters that i didn't use in my sakai.properties file. May be i should
    use them. !!
    [email protected]
    [email protected]
    [email protected]
    Now, i have changed my connection type by connecting Campus VPN server with
    Checkpoint VPN client, i got my sakai course pages correctly via sakai
    portlet. However, in campus i had same problem today.
    So, like i said, the situation is changing due to unknown reason.
    From portlet, i clicked on any course, i get blank screen with followingaddress in web browser address bar.
    https://sucourse.sabanciuniv.edu/sakai-login-tool/container?sakai.session=02274ca6-fc19-413c-80d9-4332ae4e4499&ticket=ST-5342-bLIfR5lVs29HB1ZAeRrMA3bbmQtVWRJqQ6N-20
    That's all.
    Thank you for your response Charles !
    Regards
    Charles Severance wrote:
    View this message in context: http://www.nabble.com/Sakai-portlet-problem-in-uPortal-tf4304476.html#a12262587
    Sent from the Sakai - Development mailing list archive at Nabble.com.
    This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the DG: Development (a.k.a. sakai-dev) site.
    You can modify how you receive notifications at My Workspace > Preferences.
    A5 OK FETCH completed
    A6 FETCH 1 (FLAGS)
    * 1 FETCH (FLAGS (\Seen \Deleted NonJunk))
    A6 OK FETCH completed
    A4 APPEND "Sakai-Dev List" (\Deleted \Seen NonJunk) "21-Aug-2007 16:37:20 -0400" {7024+}
    A7 FETCH 1 (BODY[])
    * 1 FETCH (BODY[] {7024}
    Received: from mr4.its.yale.edu (mr4.its.yale.edu [130.132.50.10])
    by pantheon-po09.its.yale.edu (8.12.11.20060308/8.12.11) with ESMTP id l7LKbJRC006741
    (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT);
    Tue, 21 Aug 2007 16:37:19 -0400
    Received: from paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])
    by mr4.its.yale.edu (8.12.11.20060308/8.12.11) with ESMTP id l7LKbH3b030903;
    Tue, 21 Aug 2007 16:37:18 -0400
    Received: from paploo.uhi.ac.uk (localhost [127.0.0.1])
    by paploo.uhi.ac.uk (Postfix) with ESMTP id 7F70050E80;
    Tue, 21 Aug 2007 20:54:16 +0100 (BST)
    Message-ID: <[email protected]>
    Mime-Version: 1.0
    Content-Transfer-Encoding: 7bit
    Received: from prod.collab.uhi.ac.uk ([194.35.219.182])
    by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 665
    for <[email protected]>;
    Tue, 21 Aug 2007 20:53:07 +0100 (BST)
    Received: from kuber.nabble.com (kuber.nabble.com [216.139.236.158])
    by shmi.uhi.ac.uk (Postfix) with ESMTP id 347909F12
    for <[email protected]>; Tue, 21 Aug 2007 21:35:26 +0100 (BST)
    Received: from isper.nabble.com ([192.168.236.156])
    by kuber.nabble.com with esmtp (Exim 4.63)
    (envelope-from <[email protected]>)
    id 1INaRf-0004yq-5U
    for [email protected]; Tue, 21 Aug 2007 13:35:23 -0700
    Date: Tue, 21 Aug 2007 13:35:23 -0700 (PDT)
    From: Onur Sirin <[email protected]>
    To: [email protected]
    Subject: Re: Sakai portlet problem in uPortal
    In-Reply-To: <[email protected]>
    X-Content-Type-Outer-Envelope: text/plain; charset=us-ascii
    X-Nabble-From: [email protected]
    References: <[email protected]> <[email protected]>
    X-Content-Type-Message-Body: text/plain; charset=us-ascii
    Content-Type: text/plain; charset=us-ascii
    X-YaleITSMailFilter: Version 1.2c (attachment(s) not renamed)
    X-Yale-Not-Spam: For more info see: http://www.yale.edu/email/spam/content.html
    X-Yale-Spam-Score: (0)
    X-Yale-Filter-Score: 0
    X-Scanned-By: MIMEDefang 2.52 on 130.132.50.10
    Hi Charles,
    I used a portlet you created first but not in trunk. (as sakai-dash.war
    file) This might be older one.
    From catalina.out i get following logs.First, as always i get:
    WARN: Shared Segment file is missing
    /home/sakai/tomcat/sakai/sharedsegments/1187722277361.zip (2007-08-21
    23:02:38,279
    SearchBuilder_0_org.sakaiproject.search.index.impl.JDBCClusterIndexStore)
    ERROR: There has been a major poblem with the Search Index which has become
    corrupted (2007-08-21 23:02:38,285
    SearchBuilder_0_org.sakaiproject.search.index.impl.ClusterFSIndexStorage)
    java.io.IOException: No Index available to open
    at
    org.sakaiproject.search.index.impl.ClusterFSIndexStorage.getIndexReader(ClusterFSIndexStorage.java:211)
    at
    org.sakaiproject.search.index.impl.ClusterFSIndexStorage.getIndexSearcher(ClusterFSIndexStorage.java:288)
    at
    org.sakaiproject.search.index.impl.SearchIndexStorage.getIndexSearcher(SearchIndexStorage.java:97)
    at
    org.sakaiproject.search.component.service.impl.SearchServiceImpl.getIndexSearcher(SearchServiceImpl.java:554)
    at
    org.sakaiproject.search.component.service.impl.SearchServiceImpl.reload(SearchServiceImpl.java:451)
    at
    org.sakaiproject.search.component.service.impl.SearchIndexBuilderWorkerImpl.run(SearchIndexBuilderWorkerImpl.java:485)
    at java.lang.Thread.run(Thread.java:595)
    WARN: Shared Segment file is missing
    /home/sakai/tomcat/sakai/sharedsegments/1187722277361.zip (2007-08-21
    23:02:38,460
    SearchBuilder_1_org.sakaiproject.search.index.impl.JDBCClusterIndexStore)
    ERROR: There has been a major poblem with the Search Index which has become
    corrupted (2007-08-21 23:02:38,466
    SearchBuilder_1_org.sakaiproject.search.index.impl.ClusterFSIndexStorage)
    java.io.IOException: No Index available to open
    at
    org.sakaiproject.search.index.impl.ClusterFSIndexStorage.getIndexReader(ClusterFSIndexStorage.java:211)
    at
    org.sakaiproject.search.index.impl.ClusterFSIndexStorage.getIndexSearcher(ClusterFSIndexStorage.java:288)
    at
    org.sakaiproject.search.index.impl.SearchIndexStorage.getIndexSearcher(SearchIndexStorage.java:97)
    at
    org.sakaiproject.search.component.service.impl.SearchServiceImpl.getIndexSearcher(SearchServiceImpl.java:554)
    at
    org.sakaiproject.search.component.service.impl.SearchServiceImpl.reload(SearchServiceImpl.java:451)
    at
    org.sakaiproject.search.component.service.impl.SearchIndexBuilderWorkerImpl.run(SearchIndexBuilderWorkerImpl.java:485)
    at java.lang.Thread.run(Thread.java:595)
    I don't know what it is. !!!
    And then, when i logged into portal, i get the following message:
    SakaiPortalLogin.loginAndCreate id=onursirin pw=plugh-xyzzy sec=plugh-xyzzy
    fn=Onur ln=Sirin [email protected] ip=10.4.3.1
    Site exists...~onursirin
    That's all what i see in catalina.out.
    By the way, we are using Cisco CSS (Content Switch) for Load Balancing
    process.
    Behind CSS, there is apache server and application server installed on two
    servers which mentioned in this page
    http://confluence.sakaiproject.org/confluence/display/DOC/Sakai+2.4+Admin+Guide+-LoadBalancing+and+Scaling
    http://confluence.sakaiproject.org/confluence/display/DOC/Sakai+2.4+Admin+Guide+-LoadBalancing+and+Scaling
    as thin client .
    CSS DNS address = sucourse.sabanciuniv.edu
    App server DNS address = sakws1.sabanciuniv.edu and sakws2.sabanciuniv.edu
    It is enough to type sucourse.sabanciuniv.edu address in web browser.
    Their sakai.properties files are similar. However, there are following
    parameters that i didn't use in my sakai.properties file. May be i should
    use them. !!
    [email protected]
    [email protected]
    [email protected]
    Now, i have changed my connection type by connecting Campus VPN server with
    Checkpoint VPN client, i got my sakai course pages correctly via sakai
    portlet. However, in campus i had same problem today.
    So, like i said, the situation is changing due to unknown reason.
    From portlet, i clicked on any course, i get blank screen with followingaddress in web browser address bar.
    https://sucourse.sabanciuniv.edu/sakai-login-tool/container?sakai.session=02274ca6-fc19-413c-80d9-4332ae4e4499&ticket=ST-5342-bLIfR5lVs29HB1ZAeRrMA3bbmQtVWRJqQ6N-20
    That's all.
    Thank you for your response Charles !
    Regards
    Charles Severance wrote:
    View this message in context: http://www.nabble.com/Sakai-portlet-problem-in-uPortal-tf4304476.html#a12262587
    Sent from the Sakai - Development mailing list archive at Nabble.com.
    This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the DG: Development (a.k.a. sakai-dev) site.
    You can modify how you receive notifications at My Workspace > Preferences.
    A7 OK FETCH completed
    Received: from mr4.its.yale.edu (mr4.its.yale.edu [130.132.50.10])
    by pantheon-po09.its.yale.edu (8.12.11.20060308/8.12.11) with ESMTP id l7LKbJRC006741
    (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT);
    Tue, 21 Aug 2007 16:37:19 -0400
    Received: from paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])
    by mr4.its.yale.edu (8.12.11.20060308/8.12.11) with ESMTP id l7LKbH3b030903;
    Tue, 21 Aug 2007 16:37:18 -0400
    Received: from paploo.uhi.ac.uk (localhost [127.0.0.1])
    by paploo.uhi.ac.uk (Postfix) with ESMTP id 7F70050E80;
    Tue, 21 Aug 2007 20:54:16 +0100 (BST)
    Message-ID: <[email protected]>
    Mime-Version: 1.0
    Content-Transfer-Encoding: 7bit
    Received: from prod.collab.uhi.ac.uk ([194.35.219.182])
    by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 665
    for <[email protected]>;
    Tue, 21 Aug 2007 20:53:07 +0100 (BST)
    Received: from kuber.nabble.com (kuber.nabble.com [216.139.236.158])
    by shmi.uhi.ac.uk (Postfix) with ESMTP id 347909F12
    for <[email protected]>; Tue, 21 Aug 2007 21:35:26 +0100 (BST)
    Received: from isper.nabble.com ([192.168.236.156])
    by kuber.nabble.com with esmtp (Exim 4.63)
    (envelope-from <[email protected]>)
    id 1INaRf-0004yq-5U
    for [email protected]; Tue, 21 Aug 2007 13:35:23 -0700
    Date: Tue, 21 Aug 2007 13:35:23 -0700 (PDT)
    From: Onur Sirin <[email protected]>
    To: [email protected]
    Subject: Re: Sakai portlet problem in uPortal
    In-Reply-To: <[email protected]>
    X-Content-Type-Outer-Envelope: text/plain; charset=us-ascii
    X-Nabble-From: [email protected]
    References: <[email protected]> <[email protected]>
    X-Content-Type-Message-Body: text/plain; charset=us-ascii
    Content-Type: text/plain; charset=us-ascii
    X-YaleITSMailFilter: Version 1.2c (attachment(s) not renamed)
    X-Yale-Not-Spam: For more info see: http://www.yale.edu/email/spam/content.html
    X-Yale-Spam-Score: (0)
    X-Yale-Filter-Score: 0
    X-Scanned-By: MIMEDefang 2.52 on 130.132.50.10
    Hi Charles,
    I used a portlet you created first but not in trunk. (as sakai-dash.war
    file) This might be older one.
    From catalina.out i get following logs.First, as always i get:
    WARN: Shared Segment file is missing
    /home/sakai/tomcat/sakai/sharedsegments/1187722277361.zip (2007-08-21
    23:02:38,279
    SearchBuilder_0_org.sakaiproject.search.index.impl.JDBCClusterIndexStore)
    ERROR: There has been a major poblem with the Search Index which has become
    corrupted (2007-08-21 23:02:38,285
    SearchBuilder_0_org.sakaiproject.search.index.impl.ClusterFSIndexStorage)
    java.io.IOException: No Index available to open
    at
    org.sakaiproject.search.index.impl.ClusterFSIndexStorage.getIndexReader(ClusterFSIndexStorage.java:211)
    at
    org.sakaiproject.search.index.impl.ClusterFSIndexStorage.getIndexSearcher(ClusterFSIndexStorage.java:288)
    at
    org.sakaiproject.search.index.impl.SearchIndexStorage.getIndexSearcher(SearchIndexStorage.java:97)
    at
    org.sakaiproject.search.component.service.impl.SearchServiceImpl.getIndexSearcher(SearchServiceImpl.java:554)
    at
    org.sakaiproject.search.component.service.impl.SearchServiceImpl.reload(SearchServiceImpl.java:451)
    at
    org.sakaiproject.search.component.service.impl.SearchIndexBuilderWorkerImpl.run(SearchIndexBuilderWorkerImpl.java:485)
    at java.lang.Thread.run(Thread.java:595)
    WARN: Shared Segment file is missing
    /home/sakai/tomcat/sakai/sharedsegments/1187722277361.zip (2007-08-21
    23:02:38,460
    SearchBuilder_1_org.sakaiproject.search.index.impl.JDBCClusterIndexStore)
    ERROR: There has been a major poblem with the Search Index which has become
    corrupted (2007-08-21 23:02:38,466
    SearchBuilder_1_org.sakaiproject.search.index.impl.ClusterFSIndexStorage)
    java.io.IOException: No Index available to open
    at
    org.sakaiproject.search.index.impl.ClusterFSIndexStorage.getIndexReader(ClusterFSIndexStorage.java:211)
    at
    org.sakaiproject.search.index.impl.ClusterFSIndexStorage.getIndexSearcher(ClusterFSIndexStorage.java:288)
    at
    org.sakaiproject.search.index.impl.SearchIndexStorage.getIndexSearcher(SearchIndexStorage.java:97)
    at
    org.sakaiproject.search.component.service.impl.SearchServiceImpl.getIndexSearcher(SearchServiceImpl.java:554)
    at
    org.sakaiproject.search.component.service.impl.SearchServiceImpl.reload(SearchServiceImpl.java:451)
    at
    org.sakaiproject.search.component.service.impl.SearchIndexBuilderWorkerImpl.run(SearchIndexBuilderWorkerImpl.java:485)
    at java.lang.Thread.run(Thread.java:595)
    I don't know what it is. !!!
    And then, when i logged into portal, i get the following message:
    SakaiPortalLogin.loginAndCreate id=onursirin pw=plugh-xyzzy sec=plugh-xyzzy
    fn=Onur ln=Sirin [email protected] ip=10.4.3.1
    Site exists...~onursirin
    That's all what i see in catalina.out.
    By the way, we are using Cisco CSS (Content Switch) for Load Balancing
    process.
    Behind CSS, there is apache server and application server installed on two
    servers which mentioned in this page
    http://confluence.sakaiproject.org/confluence/display/DOC/Sakai+2.4+Admin+Guide+-LoadBalancing+and+Scaling
    http://confluence.sakaiproject.org/confluence/display/DOC/Sakai+2.4+Admin+Guide+-LoadBalancing+and+Scaling
    as thin client .
    CSS DNS address = sucourse.sabanciuniv.edu
    App server DNS address = sakws1.sabanciuniv.edu and sakws2.sabanciuniv.edu
    It is enough to type sucourse.sabanciuniv.edu address in web browser.
    Their sakai.properties files are similar. However, there are following
    parameters that i didn't use in my sakai.properties file. May be i should
    use them. !!
    [email protected]
    [email protected]
    [email protected]
    Now, i have changed my connection type by connecting Campus VPN server

    The command that seems to be causing problems for Exchange is this one:
    A4 APPEND "Sakai-Dev List" (\Deleted \Seen NonJunk) "21-Aug-2007 16:37:20 -0400" {7024+}
    As far as I can see, there's nothing wrong with the syntax of that command.
    My first guess is that Exchange is unhappy with the flags. Possibly
    it refuses to append a message with the \Deleted flag set. If you're
    willing to modify the flags in the source mailbox, I would try turning
    off the DELETED flag. Or, try not copying deleted messages.
    If that doesn't work, the next thing to try is to get rid of all of the
    flags. You might want to copy the message into a local copy
    in order to lose all the flags from the original.

Maybe you are looking for