Unable to connect to MSA 2000

Good morning all,
I need some expertise...  I am not too familiar with the MSA storages and have 2 of them in my office.  The previous IT guy did not show me how to connect to them and since his leaving the company had gone through some network changes...
So my problem is that they are currently given static IPs and given a static gateway.  So I am unable to connect to them via a CAT5.  Now one of them has a console cable going into one of my servers.  I tried using Putty to connect to the device through the serial port but when hitting the Enter key, I get giberrish...  
Can someone help me get connected to the CLI so I can put each device to DHCP?
The models are:
MSA2324sa
MSA2312sa
The Array Config Utility only shows the SAS controller installed in the server for the server's array of disks.
This question was solved.
View Solution.

I found the answer to this problem.  When using Putty, you need to change the baud rate...  Below are the settings:
Set the communications properties to 115200 , 8 , n , 1 , and no flow control
Also when in the CLI, you change the IP addressing information with the following command:
set network-parameters ip 1.2.3.4 netmask 255.255.0.0 gateway 1.2.3.1 controller a

Similar Messages

  • Unable to Connect to SQL 2000 Instance from Windows Server 2012 environment

    We have a windows server (TEST) 2012 environment , where our test SQL Server 2012 instance is hosted.
    We have a different (DEV) Server (windows 2000)  where a SQL Server 2000 instance is present.
    When I RDP to our Windows Server 2012 box, I cannot connect to the SQL 2000 server instance from SQL Management Studio. (whereas I can connect to
    the same server from my local machine which has windows 7 and SQL 2012 installed). 
    This is the error i see - 
    "A transport-level error has occurred when receiving results from the server. (provider: TCP Provider, error: 0 - The specified network name
    is no longer available.) (.Net SqlClient Data Provider)"
    When run from SQL Agent Service from TEST (A Job which tries to connect to that SQL 2000 instance to read some data using SSIS) , we get the following
    error - 
    An OLE DB record is available.  Source: "Microsoft OLE DB Provider for SQL Server"  Hresult: 0x80004005  Description: "[DBNETLIB][ConnectionRead
    (recv()).]General network error. Check your network documentation.".
    The same SSIS package runs successfully from my local machine.
    Please, could someone advice how to resolve this situation?

    Thanks Olaf.
    Its just that we have legacy systems here in our company, who, for some reason haven't upgraded their older infrastructure, whereas they have set up new Windows 2012/SQL 2012 environments for the newer sql instances where they want to transition to !
    Not sure what the solution is honestly. It is affecting our timelines now. The infrastructure team needs to take a decision now, as to what to do.
    I do have to add, we were able to connect to these "older" servers from our Windows 7 client machines which have SQL 2012 - both from SQL management studio & SSIS (using OLE-DB Provider for SQL Server).

  • Unable to Schedule Crystal reports 2008 based on MSAS 2000

    Hi,
       I created Crystal Report 2008 (XI R 3.1 SP3 FP 3.2) on Cube MSAS 2000 SP4. I do not see any option to configure database credentials. While creating report in the wizard I did not enter any User name and Password Info (I have admin credentials to Cube but when I give these credentials and try to create report, CR designer hangs, not sure why?). The idea is to pick cube level security for the user who is trying to view / refesh the report.
    Could you please help: 1. To configure Database info in CMC
                                           2. To implement cube level security to these crystal reports.
    Nanda Kishore.

    Hi Experts,
      Could you please help. My intention to capture Cube Level Security while refrshing Crystal Reports in Infoview.
      I am uanble to refresh report in Infoview.
    Nanda Kishore

  • Error calling report FRM-41213 unable to connect to Report Server

    Hi,
    I have installed Oracle Database 10g R2 and Oracle Developer 10gR2.
    I installed it in both Windows 2000 SP4 and Windows XP SP2.
    I would like to call a Report using a button inside Oracle Form.
    I create my own Report Server, using : rwserver server=repsrv
    A Java-based window appear OracleAS Reports Sevice, and showed that repsrv is ready.
    In Form (inside a button -> WHEN-BUTTON-PRESSED) :
    1. Using RUN_REPORT_OBJECT()
       rep_id := find_report_object('REPORT10');
         if not id_null(rep_id) then
           v_rep := run_report_object(rep_id);
         else
              message('Null');
       end if;
       a. If I did not specify the name of the Report Server in Reports node of Form's property object
    (I leave it blank)
    The following error appear :
    FRM-41211: Integration error, SSL failure running another product
    b. If I specify the name of the Report Server : repsrv
    The following error appear :
    FRM-41213: Unable to connect to Reports Server repsrv
    2. Using WEB.SHOW_DOCUMENT()
    a. If did not I specify the server name in the parameter
    WEB.SHOW_DOCUMENT('http://localhost:8889/reports/rwservlet/getjobid'|| SUBSTR(v_rep,INSTR(v_rep,'_',-1)+1)||'?'||,'_blank');Another web browser appear and the following error appear :
    REP-51002: Bind to Reports Server rep_<computer_name> failed
    b. If I specify the server name in the parameter --> server='repsrv'
    WEB.SHOW_DOCUMENT('http://localhost:8889/reports/rwservlet/getjobid'|| SUBSTR(v_rep,INSTR(v_rep,'_',-1)+1)||'?'||'server=repsrv','_blank');Another web browser appear and the following error appear :
    REP-51002: Bind to Reports Server repsrv failed
    In Report :
    If I try to navigate manually to :
    1. http://localhost:8889/reports/rwservlet using web browser.
    It showed OracleAS Report Services - Servlet Command Help page.
    2. http://localhost:8889/reports/rwservlet?userid=scott/tiger@orcl&report=D:\PRACTICE\FORM\MODULE1.JSP&destype=cache&desformat=html
    The following error occured
    REP-51002: Bind to Reports Server rep_<computer_name> failed
    3. Finally,
    http://localhost:8889/reports/rwservlet?server=REPSRV&userid=scott/tiger@orcl&report=C:\PRACTICE\FORM\MODULE1.JSP&destype=cache&desformat=html
    The following error occured
    REP-51002: Bind to Reports Server repsrv failed
    4. Any attempt to different command (i.e showenv, showjobs, etc) seems failed
    If I did not specify the server then REP-51002: Bind to Reports Server rep_<computer_name> failed
    If I specify the server - 'repsrv' then REP-51002: Bind to Reports Server repsrv failed
    5. I have tried to use rwrun in command line.
    rwrun report="D:\My Documents\form\module1.jsp" userid=scott/tiger@orcl destype=file desformat=pdf desname="D:\My Documents\form\module2.pdf"
    The PDF file created and it looks exactly as the web layout as in Oracle Report Builder (Run Web Layout CTRL-R)
    Question :
    1. What supposed to be done?
    The Report server is ready, but the web browser seems unable to connect to Report Server.
    2. Can we used or call or executed an executable command line from Form (using PL/SQL inside button)?
    Any help would be grateful.
    Many thanks,
    Buntoro

    Hi,
    Problem solved.
    I got the solution from another post.
    Re: REP-51002: Bind to Reports Server rep failed
    Here are the step I did.
    Note : Please make backup for the following file : rwnetwork.conf
    - In file rwnetwork.conf, remove or commented the following
    <multicast channel="228.5.6.7" port="14021" timeout="1000" retry="3"/>
    - And then uncommented
    <namingService name="Cos" host="%NAMING_HOST%" port="%NAMING_PORT%"/>
    - replace the
    %NAMING_HOST% with your computer name or specify an IP address
    %NAMING_PORT% with 14021
    It should look like this :
    <namingService name="Cos" host="blahblah" port="14021"/>
    - I did not change the : name="Cos", since I do not understand what does it for
    - Save you changes.
    - Start the OC4J.
    - Find the location of : namingservice.bat (on Windows platform)
    - execute in the command line : namingservice.bat 14021
    - finally start the report in the web browser
    Note:
    To shutdown the namingservice, use : namingservice.bat 14021 shutdown
    Regards.
    Buntoro

  • Unable to connect to report server - on Win 8.1 and SQL Server 2014

    unable to connect to report server on  Win 8.1 and SQL Server 2014 version
    Microsoft SQL Server 2014 - 12.0.2000.8 (Intel X86)
        Feb 20 2014 19:20:46
        Copyright (c) Microsoft Corporation
        Express Edition on Windows NT 6.3 <X64> (Build 9600: ) (WOW64)
     Thanks

    Hi,
    I suggest you check out the following article for the steps of installing
    Database Engine Services and SQL Server Reporting Service.
    http://msdn.microsoft.com/en-us/library/ms143711.aspx
    Best Regards,
    Tracy
    Tracy Cai
    TechNet Community Support

  • Unable to connect to local server

    Folks:
    When I tried to access an older Mac running Leopard (10.5.8) from my MacBook Pro running Mavericks (Finder: Go: Connect to Server: LocalServer), I was unable to connect and received a message,
    'There was a problem connecting to the server "LocalServer".  The server may not exist or is unavailable at this time.  Check the server name or IP address, check your network connection, and then try again."
    I tried deleting any keychain refrerence to local computer. 
    I tried deleting the list of recent servers from the Finder. 
    I tried restarting both my laptop and the local server.
    Nothing, 
    There is a local server icon under the "Shared" section of the sidebar of the Finder browsing window.  I can find no way to delete this listing. 
    I can access the the Mavericks MBP from the old Leopard server via remote login, but I was unable access the old Leopard server from the new Mavericks running MBP. 
    I finally achiveved access by
    1) Turning on SMB sharing for my account on the local server
              System Preferences: Sharing: File Sharing: Options: SMB Sharing: MyAccount then storing my password.
    2) On my MBP, connecting via smb.
              Finder: Go: Connect to Server: [Enter smb://Localserver.local]
    It finally worked, BUT … after successfully connecting to the local server, I now have TWO listings for Localserver in my Finder browser window, the live link and the old link which still says "Connecting." 
    I can't figure out how to get rid of the earlier afp link, OR how to make it work.  I would prefer to use AFP as the SMB notation from both computers indicates that the storage of my password is not as secure. 
    Restaring the computer doesn't help.
    I had a similiar problem when I upgraded to Mountain Lion, and I tried many of the same tricks to no avail.  That problem seems to have fixed itself. 
    Anybody have any bright ideas?
    Thanks much.

    I should have been more clear. This is on an 8-core Intel XServe.
    I was able to use Server Admin locally on the machine for weeks. Now I can't. Nothing has changed or been altered on the machine during that period.
    I can not connect to the server via Server Admin remotely or locally. I can connect via SSH, ARD, etc. and the system is still serving NFS just fine, so it's just the process that handles communication with Server Admin that is non responsive.
    Something interesting from the syslog:
    qt1 servermgrd[44258]: servermgr_accounts: noteDirectorySearchPolicyChanged (reopening nodes)
    qt1 servermgrd[44258]: -[AccountsRequestHandler(AccountsOpenDirectoryHelpers) openLocalLDAPNodeIfNeeded]: dsLocalLDAP = (null) , error = Error Domain=com.apple.OpenDirectory Code=2000 UserInfo=0x1066a16c0 "Unable to open Directory node with name /LDAPv3/127.0.0.1."
    qt1 DirectoryService[31]: DirectoryService has 42000 internal references open (due to clients), warning limit is 2000.
    These lines repeated apprx. every 30 secs until I bounced the servermgrd. Now, I see that entry whenever I try to connect to the local server via Server Admin.
    Now, this system is not a LDAP server, but I understand OSXS still uses LDAP for local directory info... I've tried restarting the related directory services as well, but still no joy.
    It looks like my only recourse is a reboot, which is really not a great option for a dedicated file server. Am I the only one who has ever encountered this issue of Server Admin eventually losing contact with a server?

  • Lync "unable to connect" to meetings on Mountain Lion

    Hi All,
    I've just upgraded to Mountain Lion and am facing an issue with Lync where it won't connect to meetings. It will eventually connect after I refresh the URL enough times, but most times I will get this message:
    "Unable to connect. Try connecting to the online meeting by using the Web browser that is currently open."
    I've enabled logging and get a huge amount of output from just one attempt to load a meeting. Here it is below. Any ideas that could help?
    Thanks in advance,
    Evan

    11/15/2012|14:46:19.899 DA0:AC0B7A28 INFO  :: ~In trxn corr-id (81D9F118)
    11/15/2012|14:46:22.149 DA0:AC0B7A28 INFO  :: ~In trxn corr-id (7B5E1038)
    11/15/2012|14:46:22.877 DA0:AC0B7A28 INFO  :: LoadXMLDOMNode: "XMLString size=481"
    11/15/2012|14:46:22.877 DA0:AC0B7A28 ERROR :: CreateNewSqmSession: "Error: hr = 80000008 - " "Sqm is not enabled"
    11/15/2012|14:46:22.878 DA0:AC0B7A28 ERROR :: - Log message too long!
    11/15/2012|14:46:22.878 DA0:AC0B7A28 ERROR :: GetSqmSession: "Error: returning hr = 80000003"
    11/15/2012|14:46:22.878 DA0:AC0B7A28 ERROR :: GetSqmSession: "Error: returning hr = 80000003"
    11/15/2012|14:46:22.878 DA0:AC0B7A28 ERROR :: GetSqmSession: "Error: returning hr = 80000003"
    11/15/2012|14:46:22.878 DA0:AC0B7A28 ERROR :: GetSqmSession: "Error: returning hr = 80000003"
    11/15/2012|14:46:22.878 DA0:AC0B7A28 ERROR :: GetSqmSession: "Error: returning hr = 80000003"
    11/15/2012|14:46:22.878 DA0:AC0B7A28 ERROR :: GetSqmSession: "Error: returning hr = 80000003"
    11/15/2012|14:46:22.878 DA0:AC0B7A28 ERROR :: GetSqmSession: "Error: returning hr = 80000003"
    11/15/2012|14:46:22.878 DA0:AC0B7A28 ERROR :: GetSqmSession: "Error: returning hr = 80000003"
    11/15/2012|14:46:22.878 DA0:AC0B7A28 ERROR :: GetSqmSession: "Error: returning hr = 80000003"
    11/15/2012|14:46:22.878 DA0:AC0B7A28 ERROR :: GetSqmSession: "Error: returning hr = 80000003"
    11/15/2012|14:46:22.878 DA0:AC0B7A28 ERROR :: GetSqmSession: "Error: returning hr = 80000003"
    11/15/2012|14:46:22.878 DA0:AC0B7A28 ERROR :: GetSqmSession: "Error: returning hr = 80000003"
    11/15/2012|14:46:22.878 DA0:AC0B7A28 ERROR :: GetSqmSession: "Error: returning hr = 80000003"
    11/15/2012|14:46:22.878 DA0:AC0B7A28 ERROR :: GetSqmSession: "Error: returning hr = 80000003"
    11/15/2012|14:46:22.878 DA0:AC0B7A28 ERROR :: GetSqmSession: "Error: returning hr = 80000003"
    11/15/2012|14:46:22.878 DA0:AC0B7A28 ERROR :: GetSqmSession: "Error: returning hr = 80000003"
    11/15/2012|14:46:22.878 DA0:AC0B7A28 ERROR :: GetSqmSession: "Error: returning hr = 80000003"
    11/15/2012|14:46:22.878 DA0:AC0B7A28 ERROR :: GetSqmSession: "Error: returning hr = 80000003"
    11/15/2012|14:46:22.878 DA0:AC0B7A28 ERROR :: GetSqmSession: "Error: returning hr = 80000003"
    11/15/2012|14:46:22.878 DA0:AC0B7A28 ERROR :: GetSqmSession: "Error: returning hr = 80000003"
    11/15/2012|14:46:22.878 DA0:AC0B7A28 ERROR :: GetSqmSession: "Error: returning hr = 80000003"
    11/15/2012|14:46:22.878 DA0:AC0B7A28 ERROR :: GetSqmSession: "Error: returning hr = 80000003"
    11/15/2012|14:46:22.878 DA0:AC0B7A28 ERROR :: GetSqmSession: "Error: returning hr = 80000003"
    11/15/2012|14:46:22.878 DA0:AC0B7A28 ERROR :: GetSqmSession: "Error: returning hr = 80000003"
    11/15/2012|14:46:22.878 DA0:AC0B7A28 ERROR :: GetSqmSession: "Error: returning hr = 80000003"
    11/15/2012|14:46:22.878 DA0:AC0B7A28 ERROR :: GetSqmSession: "Error: returning hr = 80000003"
    11/15/2012|14:46:22.878 DA0:AC0B7A28 ERROR :: GetSqmSession: "Error: returning hr = 80000003"
    11/15/2012|14:46:22.878 DA0:AC0B7A28 ERROR :: GetSqmSession: "Error: returning hr = 80000003"
    11/15/2012|14:46:22.878 DA0:AC0B7A28 ERROR :: GetSqmSession: "Error: returning hr = 80000003"
    11/15/2012|14:46:22.878 DA0:AC0B7A28 ERROR :: GetSqmSession: "Error: returning hr = 80000003"
    11/15/2012|14:46:22.878 DA0:AC0B7A28 ERROR :: GetSqmSession: "Error: returning hr = 80000003"
    11/15/2012|14:46:22.878 DA0:AC0B7A28 ERROR :: GetSqmSession: "Error: returning hr = 80000003"
    11/15/2012|14:46:22.878 DA0:AC0B7A28 ERROR :: GetSqmSession: "Error: returning hr = 80000003"
    11/15/2012|14:46:22.878 DA0:AC0B7A28 ERROR :: GetSqmSession: "Error: returning hr = 80000003"
    11/15/2012|14:46:22.879 DA0:AC0B7A28 ERROR :: GetSqmSession: "Error: returning hr = 80000003"
    11/15/2012|14:46:22.879 DA0:AC0B7A28 ERROR :: GetSqmSession: "Error: returning hr = 80000003"
    11/15/2012|14:46:22.879 DA0:AC0B7A28 ERROR :: GetSqmSession: "Error: returning hr = 80000003"
    11/15/2012|14:46:22.879 DA0:AC0B7A28 ERROR :: GetSqmSession: "Error: returning hr = 80000003"
    11/15/2012|14:46:22.879 DA0:AC0B7A28 ERROR :: GetSqmSession: "Error: returning hr = 80000003"
    11/15/2012|14:46:22.879 DA0:AC0B7A28 ERROR :: GetSqmSession: "Error: returning hr = 80000003"
    11/15/2012|14:46:22.879 DA0:AC0B7A28 ERROR :: GetSqmSession: "Error: returning hr = 80000003"
    11/15/2012|14:46:22.879 DA0:AC0B7A28 ERROR :: GetSqmSession: "Error: returning hr = 80000003"
    11/15/2012|14:46:22.879 DA0:AC0B7A28 ERROR :: GetSqmSession: "Error: returning hr = 80000003"
    11/15/2012|14:46:22.879 DA0:AC0B7A28 ERROR :: GetSqmSession: "Error: returning hr = 80000003"
    11/15/2012|14:46:22.879 DA0:AC0B7A28 INFO  :: AddListener: "Listener 'ConversationState' added to server link 'OCS-User-Services-Cluster'."
    11/15/2012|14:46:22.879 DA0:AC0B7A28 INFO  :: AddObserver: "Adding observer for local contact."
    11/15/2012|14:46:22.879 DA0:AC0B7A28 INFO  :: AddObserver: "subscrption type is NoSubscription"
    11/15/2012|14:46:22.879 DA0:AC0B7A28 INFO  :: FireParticipantAdded: "ParticipantAdded Event Queued. Conv-81D04678, Participant-81D044A8, Evan Leonard"
    11/15/2012|14:46:22.879 DA0:AC0B7A28 INFO  :: PropertyUpdateTrigger: "Can't update remote P2P recording policy because local or remote participant is empty."
    11/15/2012|14:46:22.879 DA0:AC0B7A28 ERROR :: GetSqmSession: "Error: returning hr = 80000003"
    11/15/2012|14:46:22.879 DA0:AC0B7A28 ERROR :: GetCapabilities: "ConversationProperty_CanStartContentSharing not set on conversation state 81D04684 or set with type 0"
    11/15/2012|14:46:22.879 DA0:AC0B7A28 INFO  :: ResourceMonitoringAddRef: "Adding 81D046B0 to m_resourceMonitoringClientArray"
    11/15/2012|14:46:22.879 DA0:AC0B7A28 INFO  :: CanSelectResourcesToShare: "sAllowedAppDesktopSharingLevel set to 0"
    11/15/2012|14:46:22.879 DA0:AC0B7A28 INFO  :: - Log message too long!
    11/15/2012|14:46:22.879 DA0:AC0B7A28 INFO  :: - Log message too long!
    11/15/2012|14:46:22.880 DA0:AC0B7A28 INFO  :: AddObserver: "Adding observer for local contact."
    11/15/2012|14:46:22.880 DA0:AC0B7A28 INFO  :: AddObserver: "subscrption type is NoSubscription"
    11/15/2012|14:46:22.880 DA0:AC0B7A28 INFO  :: CMfuConvLogObserver: "mfuGroupModel=82043618, convModel=81D04678"
    11/15/2012|14:46:22.880 DA0:AC0B7A28 INFO  :: InternalCreateConversation: "Created new conversation = 81D04678"
    11/15/2012|14:46:22.889 DA0:AC0B7A28 INFO  :: Set: "SetProperty this = 81886048, Property = 50331662"
    11/15/2012|14:46:22.889 DA0:AC0B7A28 INFO  :: Set: "SetProperty this = 81886048, Property = 16777223"
    11/15/2012|14:46:22.889 DA0:AC0B7A28 INFO  :: Set: "SetProperty this = 81886048, Property = 50331662"
    11/15/2012|14:46:23.155 DA0:AC0B7A28 ERROR :: GetContentManager: "Error: returning hr = 80F10001"
    11/15/2012|14:46:23.156 DA0:AC0B7A28 INFO  :: Set: "SetProperty this = 81886048, Property = 117440523"
    11/15/2012|14:46:23.156 DA0:AC0B7A28 INFO  :: Set: "SetProperty this = 81886048, Property = 16777273"
    11/15/2012|14:46:23.156 DA0:AC0B7A28 INFO  :: Start: "StartMode this = 81886048, mode = 16"
    11/15/2012|14:46:23.156 DA0:AC0B7A28 INFO  :: CAcceptCallEscalation: "CAcceptCallEscalation - starting, this = 7ABF1808, mode = 4"
    11/15/2012|14:46:23.156 DA0:AC0B7A28 ERROR :: GetSqmSession: "Error: hr = 80000008 - " "invalid session index 0."
    11/15/2012|14:46:23.156 DA0:AC0B7A28 INFO  :: Start: "Start - starting, this = 7ABF1808"
    11/15/2012|14:46:23.156 DA0:AC0B7A28 INFO  :: SetCurrentImplementation: "SetCurrentImplementation - current implementation now set to 3, this = 7ABC9208"
    11/15/2012|14:46:23.157 DA0:AC0B7A28 ERROR :: GetSqmSession: "Error: returning hr = 80000003"
    11/15/2012|14:46:23.157 DA0:AC0B7A28 INFO  :: FireParticipantStateChange: "ParticipantStateChange Event. Conv-81D04678, Participant-81D044A8, Voice - State - Outgoing - Cookie - 0x0000003e, hr=0"
    11/15/2012|14:46:23.157 DA0:AC0B7A28 INFO  :: DoWork: "DoWork - returning with hr = 0"
    11/15/2012|14:46:23.157 DA0:AC0B7A28 INFO  :: DoWork: "DoWork - starting, this = 7ABF192C"
    11/15/2012|14:46:23.157 DA0:AC0B7A28 ERROR :: GetSqmSession: "Error: returning hr = 80000003"
    11/15/2012|14:46:23.157 DA0:AC0B7A28 INFO  :: FireParticipantStateChange: "ParticipantStateChange Event. Conv-81D04678, Participant-81D044A8, LCSConf - State - Outgoing - Cookie - 0x0000003c, hr=0"
    11/15/2012|14:46:23.157 DA0:AC0B7A28 INFO  :: GetCapabilities: "State is not Ringing or >= InConversation : State = 2"
    11/15/2012|14:46:23.157 DA0:AC0B7A28 ERROR :: Connect: "Couldn't Add Lobby Capable Property hr - 0x0"
    11/15/2012|14:46:23.157 DA0:AC0B7A28 INFO  :: Connect: "Send recording status when join conf: 0"
    11/15/2012|14:46:23.157 DA0:AC0B7A28 ERROR :: Connect: "Couldn't Add UCCOCE_CLIENT_RECORDING Property hr - 0x0"
    11/15/2012|14:46:23.157 DA0:AC0B7A28 ERROR :: Connect: "Couldn't Add UCCOCEE_PARTICIPANT_LIMIT_MAX Property hr - 0x0"
    11/15/2012|14:46:23.157 DA0:AC0B7A28 INFO  :: MSP.SetMultipartySsnRole[818BDD58] 0->0
    11/15/2012|14:46:23.158 DA0:AC0B7A28 INFO  :: There is no Service-Route to copy
    11/15/2012|14:46:23.158 DA0:AC0B7A28 INFO  :: call.SetRemote[7ADBD208] sip:*******@progress.com;gruu;opaque=app:conf:focus:id:6E0QDRII:(null);(null),0,0
    11/15/2012|14:46:23.158 DA0:AC0B7A28 INFO  :: virtual HRESULT SIP_CALL::SetLocalAndRemoteForConnect(const CHAR*, SIZE_T, SIP_URL*, SIP_URL*, SIP_URL*, const CHAR*, SIZE_T, SIP_SECURITY_LEVEL, LONG, const SIP_HANDSHAKE_INFO*) - Call.Invite[7ADBD208]0:sip:******@progress.com==>sip:******@progress.com;gruu;opaque=app:conf:focus:id:6E0QDRII:, RM=(null)
    11/15/2012|14:46:23.158 DA0:AC0B7A28 INFO  :: HRESULT SIP_MSG_PROCESSOR::OnRequestConnectionConnectComplete(HRESULT) - Enter this: 7ADBD260, callid=(null), ErrorCode: 0x0
    11/15/2012|14:46:23.158 DA0:AC0B7A28 INFO  :: Outgoing 7ADBD260-<sip:******@progress.com;gruu;opaque=app:conf:focus:id:6E0QDRII>, local=sip:******@progress.com
    11/15/2012|14:46:23.158 DA0:AC0B7A28 INFO  :: call.SetRemote[7ADBD208] sip:e******@progress.com;gruu;opaque=app:conf:focus:id:6E0QDRII:(null);(null)
    11/15/2012|14:46:23.158 DA0:AC0B7A28 INFO  :: Out trxn corr-id (81D75FB8)
    11/15/2012|14:46:23.158 DA0:AC0B7A28 INFO  :: MSP.SetState[818BDD58] SIP_CALL_STATE_IDLE->SIP_CALL_STATE_CONNECTING, local=sip:******@progress.com
    11/15/2012|14:46:23.158 DA0:AC0B7A28 INFO  :: Trxn corr-id (81D75FB8), SIP msg corr-id (d3ca01ed)
    11/15/2012|14:46:23.159 DA0:AC0B7A28 INFO  :: Sending Packet - 131.239.30.144:5061 (From Local Address: 192.168.7.4:41970) 2048 bytes:
    11/15/2012|14:46:23.159 DA0:AC0B7A28 INFO  :: INVITE sip:******@progress.com;gruu;opaque=app:conf:focus:id:6E0QDRII SIP/2.0
    Via: SIP/2.0/TLS 192.168.7.4:41970
    Max-Forwards: 70
    From: <sip:******@progress.com>;tag=bf2aac529f;epid=4a70361eb5
    To: <sip:******@progress.com;gruu;opaque=app:conf:focus:id:6E0QDRII>
    Call-ID: ffc368f9e7b6b6468946d573c258cae2
    CSeq: 1 INVITE
    Contact: <sip:******@progress.com;opaque=user:epid:kNer5o-kUl2g5CL0QZKI0AAA;gruu>
    User-Agent: UCCAPI/4.0.7323.0 MC/14.0.0223.2 (Microsoft Lync for Mac 2011)
    Supported: ms-dialog-route-set-update
    Supported: timer
    Supported: histinfo
    Supported: ms-safe-transfer
    Supported: ms-sender
    Supported: ms-early-media
    ms-keep-alive: UAC;hop-hop=yes
    Allow: INVITE, BYE, ACK, CANCEL, INFO, UPDATE, REFER, NOTIFY, BENOTIFY, OPTIONS
    ms-subnet: 192.168.7.0
    Proxy-Authorization: TLS-DSK qop="auth", realm="SIP Communications Service", opaque="2E168D0E", targetname="NTMAUCSRV02.bedford.progress.com", crand="ec558eda", cnum="173", response="971830375043a006a8432dd7688e94bb4852a97e"
    Content-Type: application/cccp+xml
    Content-Length: 961
    <?xml version="1.0"?>
    <request xmlns="urn:ietf:params:xml:ns:cccp" xmlns:mscp="http://schemas.microsoft.com/rtc/2005/08/cccpextensions" C3PVersion="1" to="sip:******@progress.com;gruu;opaque=app:conf:focus:id:6E0QDRII" from="sip:[email protected]" requestId="0"><addUser><conferenceKeys confEntity="sip:******@progress.com;gruu;opaque=app:conf:focus:id:6E0QDRII"/><ci:user xmlns:ci="urn:ietf:params:xml:ns:conference-info" entity="sip:e******@progress.com"><ci:roles><ci:entry>attendee</ci:entry></ci:roles><ci:endpoint entity="{8709B4F1-0F5E-3844-A298-277B473F902F}" xmlns:msci="http://schemas.microsoft.com/rtc/2005/08/confinfoextensions"><msci:clientInfo><cis:separator xmlns:cis="urn:ietf:params:xml:ns:conference-info-separator"></cis:separator><m sci2:lobby-capable xmlns:msci2="http://schemas.microsoft.com/rtc/2008/12/confinfoextensions">true</msci2:lobby-capable></msci:clientInfo></ci:endpoint></ci:user></addUser> </request>
    11/15/2012|14:46:23.159 DA0:AC0B7A28 INFO  :: End of Sending Packet - 131.239.30.144:5061 (From Local Address: 192.168.7.4:41970) 2048 bytes
    11/15/2012|14:46:23.159 DA0:AC0B7A28 INFO  :: Enter - successfully sent INVITE
    11/15/2012|14:46:23.159 DA0:AC0B7A28 INFO  :: CEffectivePermissions: ""
    11/15/2012|14:46:23.159 DA0:AC0B7A28 INFO  :: CPermissionManager: ""
    11/15/2012|14:46:23.159 DA0:AC0B7A28 INFO  :: Initialize: ""
    11/15/2012|14:46:23.159 DA0:AC0B7A28 INFO  :: Recalculate: ""
    11/15/2012|14:46:23.159 DA0:AC0B7A28 WARN  :: GetPermission: "Platform permissions not yet received: permission=2, attendee " "permission name='AsynchronousBrowsingAllowedAttendee', presenter permission name='AsynchronousBrowsingAllowedPresenter'"
    11/15/2012|14:46:23.159 DA0:AC0B7A28 WARN  :: GetPolicy: "Platform policy not yet received: policy=2, policy name='EnableDataCollaboration'"
    11/15/2012|14:46:23.159 DA0:AC0B7A28 WARN  :: GetPolicy: "Platform policy not yet received: policy=2, policy name='EnableDataCollaboration'"
    11/15/2012|14:46:23.159 DA0:AC0B7A28 WARN  :: GetPolicy: "Platform policy not yet received: policy=2, policy name='EnableDataCollaboration'"
    11/15/2012|14:46:23.159 DA0:AC0B7A28 WARN  :: GetPolicy: "Platform policy not yet received: policy=2, policy name='EnableDataCollaboration'"
    11/15/2012|14:46:23.159 DA0:AC0B7A28 WARN  :: GetPolicy: "Platform policy not yet received: policy=2, policy name='EnableDataCollaboration'"
    11/15/2012|14:46:23.159 DA0:AC0B7A28 WARN  :: GetPolicy: "Platform policy not yet received: policy=3, policy name='AllowAnnotations'"
    11/15/2012|14:46:23.159 DA0:AC0B7A28 WARN  :: GetPolicy: "Platform policy not yet received: policy=3, policy name='AllowAnnotations'"
    11/15/2012|14:46:23.159 DA0:AC0B7A28 WARN  :: GetPolicy: "Platform policy not yet received: policy=5, policy name='AllowPolls'"
    11/15/2012|14:46:23.159 DA0:AC0B7A28 WARN  :: GetPolicy: "Platform policy not yet received: policy=1, policy name='AllowUserToScheduleMeetingsWithAppSharing'"
    11/15/2012|14:46:23.159 DA0:AC0B7A28 WARN  :: GetPolicy: "Platform policy not yet received: policy=7, policy name='AttendeesCanShare'"
    11/15/2012|14:46:23.159 DA0:AC0B7A28 INFO  :: Initialize: ""
    11/15/2012|14:46:23.160 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:1 with AppLayerMode:10, AppLayerAction:1D to Available :0"
    11/15/2012|14:46:23.160 DA0:AC0B7A28 ERROR :: enum_cast: "Unsupported conversation mode 16."
    11/15/2012|14:46:23.160 DA0:AC0B7A28 ERROR :: GetModality: "Error: returning hr = 80C80004"
    11/15/2012|14:46:23.160 DA0:AC0B7A28 ERROR :: OnCapabilityChange: "Failed to get the modality object. mode 16 and HR: 0x80c80004."
    11/15/2012|14:46:23.160 DA0:AC0B7A28 INFO  :: HandleCapabilityChange: "[Auto]The Action and the value are 29 and 0 for sip:******@progress.com"
    11/15/2012|14:46:23.160 DA0:AC0B7A28 INFO  :: HandleCapabilityChange: "The Action and the value are 29 and 0 for sip:******@progress.com"
    11/15/2012|14:46:23.160 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:1 with AppLayerMode:4, AppLayerAction:1D to Available :0"
    11/15/2012|14:46:23.160 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:1 with AppLayerMode:2, AppLayerAction:1D to Available :0"
    11/15/2012|14:46:23.160 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:1 with AppLayerMode:10, AppLayerAction:20 to Available :0"
    11/15/2012|14:46:23.160 DA0:AC0B7A28 ERROR :: enum_cast: "Unsupported conversation mode 16."
    11/15/2012|14:46:23.160 DA0:AC0B7A28 ERROR :: GetModality: "Error: returning hr = 80C80004"
    11/15/2012|14:46:23.160 DA0:AC0B7A28 ERROR :: OnCapabilityChange: "Failed to get the modality object. mode 16 and HR: 0x80c80004."
    11/15/2012|14:46:23.160 DA0:AC0B7A28 INFO  :: HandleCapabilityChange: "[Auto]The Action and the value are 32 and 0 for sip:******@progress.com"
    11/15/2012|14:46:23.160 DA0:AC0B7A28 INFO  :: HandleCapabilityChange: "The Action and the value are 32 and 0 for sip:*******@progress.com"
    11/15/2012|14:46:23.160 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:1 with AppLayerMode:10, AppLayerAction:22 to Available :0"
    11/15/2012|14:46:23.160 DA0:AC0B7A28 ERROR :: enum_cast: "Unsupported conversation mode 16."
    11/15/2012|14:46:23.160 DA0:AC0B7A28 ERROR :: GetModality: "Error: returning hr = 80C80004"
    11/15/2012|14:46:23.160 DA0:AC0B7A28 ERROR :: OnCapabilityChange: "Failed to get the modality object. mode 16 and HR: 0x80c80004."
    11/15/2012|14:46:23.161 DA0:AC0B7A28 INFO  :: HandleCapabilityChange: "[Auto]The Action and the value are 34 and 0 for sip:e*****@progress.com"
    11/15/2012|14:46:23.161 DA0:AC0B7A28 INFO  :: HandleCapabilityChange: "The Action and the value are 34 and 0 for sip:*******@progress.com"
    11/15/2012|14:46:23.161 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:1 with AppLayerMode:0, AppLayerAction:26 to Available :0"
    11/15/2012|14:46:23.161 DA0:AC0B7A28 ERROR :: enum_cast: "Unsupported conversation mode 0."
    11/15/2012|14:46:23.161 DA0:AC0B7A28 ERROR :: GetModality: "Error: returning hr = 80C80004"
    11/15/2012|14:46:23.161 DA0:AC0B7A28 ERROR :: OnCapabilityChange: "Failed to get the modality object. mode 0 and HR: 0x80c80004."
    11/15/2012|14:46:23.161 DA0:AC0B7A28 INFO  :: HandleCapabilityChange: "[Auto]The Action and the value are 38 and 0 for sip:******@progress.com"
    11/15/2012|14:46:23.161 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 33554436, pre: Property 33554436, value is empty, new Property 33554436, value 1"
    11/15/2012|14:46:23.161 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:0 with AppLayerMode:0, AppLayerAction:1C to Available :1"
    11/15/2012|14:46:23.161 DA0:AC0B7A28 ERROR :: enum_cast: "Unsupported conversation mode 0."
    11/15/2012|14:46:23.161 DA0:AC0B7A28 ERROR :: GetModality: "Error: returning hr = 80C80004"
    11/15/2012|14:46:23.161 DA0:AC0B7A28 ERROR :: OnCapabilityChange: "Failed to get the modality object. mode 0 and HR: 0x80c80004."
    11/15/2012|14:46:23.161 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:0 with AppLayerMode:0, AppLayerAction:A to Available :0"
    11/15/2012|14:46:23.161 DA0:AC0B7A28 ERROR :: enum_cast: "Unsupported conversation mode 0."
    11/15/2012|14:46:23.161 DA0:AC0B7A28 ERROR :: GetModality: "Error: returning hr = 80C80004"
    11/15/2012|14:46:23.161 DA0:AC0B7A28 ERROR :: OnCapabilityChange: "Failed to get the modality object. mode 0 and HR: 0x80c80004."
    11/15/2012|14:46:23.161 DA0:AC0B7A28 ERROR :: virtual HRESULT SIP_URL::ParseUrlParams(const CHAR*, SIZE_T, SIZE_T*, BOOL) invalid char L found when trying to parse params
    11/15/2012|14:46:23.161 DA0:AC0B7A28 ERROR :: virtual HRESULT SIP_URL::ParseUrlBase(const CHAR*, SIZE_T, SIZE_T*, BOOL, BOOL) ParseSipUrlParams failed 80000008
    11/15/2012|14:46:23.161 DA0:AC0B7A28 ERROR :: InternalInitialize ParseSipUrl(sip:Evan Leonard) failed 80ee0012
    11/15/2012|14:46:23.161 DA0:AC0B7A28 ERROR :: IsAnonymousUserUri: "Failed to parse uri: sip:Evan Leonard hr=80EE0012"
    11/15/2012|14:46:23.161 DA0:AC0B7A28 INFO  :: SetStates: "Updating States. Old states =0x0, New states =0x1"
    11/15/2012|14:46:23.161 DA0:AC0B7A28 INFO  :: ProcessSingleConversationStateChange: "trigger = 0x81d04678, oldStates = 0x00000000, newStates = 0x00000001, " "oldAggregatedStates = 0x00000000, newAggregatedStates = 0x00000001"
    11/15/2012|14:46:23.172 DA0:AC0B7A28 INFO  :: - Log message too long!
    11/15/2012|14:46:23.173 DA0:AC0B7A28 INFO  :: - Log message too long!
    11/15/2012|14:46:23.174 DA0:AC0B7A28 INFO  :: - Log message too long!
    11/15/2012|14:46:23.181 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 16777232, pre: Property 16777232, value is empty, new Property 16777232, value 1"
    11/15/2012|14:46:23.182 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 50331649, pre: Property 50331649, value is empty, new Property 50331649, value is empty"
    11/15/2012|14:46:23.182 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 33554435, pre: Property 33554435, value is empty, new Property 33554435, value is empty"
    11/15/2012|14:46:23.182 DA0:AC0B7A28 ERROR :: UpdateProperty: "Error: hr = 80000003 - " "Failed to convert from app layer property variant 805830658."
    11/15/2012|14:46:23.182 DA0:AC0B7A28 ERROR :: HandlePropertyChange: "Error: hr = 80000003 - " "Failed to update property for conversation."
    11/15/2012|14:46:23.182 DA0:AC0B7A28 ERROR :: OnPropertyChange: "Failed to handle conversation property change."
    11/15/2012|14:46:23.182 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 16777224, pre: Property 16777224, value is empty, new Property 16777224, value 1"
    11/15/2012|14:46:23.182 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 22, participant 81D044A8, pre: Property 22, value is empty, new Property 22, value 1"
    11/15/2012|14:46:23.182 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 23, participant 81D044A8, pre: Property 23, value is empty, new Property 23, value 1"
    11/15/2012|14:46:23.182 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 24, participant 81D044A8, pre: Property 24, value is empty, new Property 24, value 1"
    11/15/2012|14:46:23.182 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 25, participant 81D044A8, pre: Property 25, value is empty, new Property 25, value 1"
    11/15/2012|14:46:23.182 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:0 with AppLayerMode:0, AppLayerAction:B to Available :0"
    11/15/2012|14:46:23.182 DA0:AC0B7A28 ERROR :: enum_cast: "Unsupported conversation mode 0."
    11/15/2012|14:46:23.182 DA0:AC0B7A28 ERROR :: GetModality: "Error: returning hr = 80C80004"
    11/15/2012|14:46:23.182 DA0:AC0B7A28 ERROR :: OnCapabilityChange: "Failed to get the modality object. mode 0 and HR: 0x80c80004."
    11/15/2012|14:46:23.182 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 10, participant 81D044A8, pre: Property 10, value is empty, new Property 10, value 1"
    11/15/2012|14:46:23.182 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 50331653, pre: Property 50331653, value is empty, new Property 50331653, value "
    11/15/2012|14:46:23.183 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 50331654, pre: Property 50331654, value is empty, new Property 50331654, value "
    11/15/2012|14:46:23.183 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 50331662, pre: Property 50331662, value is empty, new Property 50331662, value 1"
    11/15/2012|14:46:23.183 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 50331649, pre: Property 50331649, value is empty, new Property 50331649, value "
    11/15/2012|14:46:23.183 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 33554435, pre: Property 33554435, value is empty, new Property 33554435, value 1"
    11/15/2012|14:46:23.183 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 16777223, pre: Property 16777223, value is empty, new Property 16777223, value 1"
    11/15/2012|14:46:23.183 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 16777231, pre: Property 16777231, value is empty, new Property 16777231, value 1"
    11/15/2012|14:46:23.183 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 16777243, pre: Property 16777243, value is empty, new Property 16777243, value 1"
    11/15/2012|14:46:23.183 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 50331676, pre: Property 50331676, value is empty, new Property 50331676, value "
    11/15/2012|14:46:23.183 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 33554462, pre: Property 33554462, value is empty, new Property 33554462, value 0"
    11/15/2012|14:46:23.183 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 33554463, pre: Property 33554463, value is empty, new Property 33554463, value 0"
    11/15/2012|14:46:23.184 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 33554481, pre: Property 33554481, value is empty, new Property 33554481, value 0"
    11/15/2012|14:46:23.184 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 33554464, pre: Property 33554464, value is empty, new Property 33554464, value 0"
    11/15/2012|14:46:23.184 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 33554465, pre: Property 33554465, value is empty, new Property 33554465, value 0"
    11/15/2012|14:46:23.184 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 16777255, pre: Property 16777255, value is empty, new Property 16777255, value 1"
    11/15/2012|14:46:23.184 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 16777256, pre: Property 16777256, value is empty, new Property 16777256, value 1"
    11/15/2012|14:46:23.184 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 33554479, pre: Property 33554479, value is empty, new Property 33554479, value 0"
    11/15/2012|14:46:23.184 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 16777273, pre: Property 16777273, value is empty, new Property 16777273, value 1"
    11/15/2012|14:46:23.184 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 16777281, pre: Property 16777281, value is empty, new Property 16777281, value 1"
    11/15/2012|14:46:23.184 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 50331715, pre: Property 50331715, value is empty, new Property 50331715, value "
    11/15/2012|14:46:23.184 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 117440521, pre: Property 117440521, value is empty, new Property 117440521, value 7"
    11/15/2012|14:46:23.184 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 117440523, pre: Property 117440523, value is empty, new Property 117440523, value 7"
    11/15/2012|14:46:23.184 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 134217764, pre: Property 134217764, value is empty, new Property 134217764, value 8"
    11/15/2012|14:46:23.185 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 369098814, pre: Property 369098814, value is empty, new Property 369098814, value 22"
    11/15/2012|14:46:23.185 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 33554482, pre: Property 33554482, value is empty, new Property 33554482, value 0"
    11/15/2012|14:46:23.185 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 33554483, pre: Property 33554483, value is empty, new Property 33554483, value 0"
    11/15/2012|14:46:23.185 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 33554484, pre: Property 33554484, value is empty, new Property 33554484, value 0"
    11/15/2012|14:46:23.185 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 33554485, pre: Property 33554485, value is empty, new Property 33554485, value 0"
    11/15/2012|14:46:23.185 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 33554486, pre: Property 33554486, value is empty, new Property 33554486, value 0"
    11/15/2012|14:46:23.185 DA0:AC0B7A28 INFO  :: - Log message too long!
    11/15/2012|14:46:23.185 DA0:AC0B7A28 INFO  :: - Log message too long!
    11/15/2012|14:46:23.186 DA0:AC0B7A28 INFO  :: - Log message too long!
    11/15/2012|14:46:23.186 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 33554487, pre: Property 33554487, value is empty, new Property 33554487, value 0"
    11/15/2012|14:46:23.186 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 16777280, pre: Property 16777280, value is empty, new Property 16777280, value 0"
    11/15/2012|14:46:23.186 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 134217741, pre: Property 134217741, value is empty, new Property 134217741, value 8"
    11/15/2012|14:46:23.186 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 16777223, pre: Property 16777223, value 1, new Property 16777223, value 1"
    11/15/2012|14:46:23.186 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 50331662, pre: Property 50331662, value 1, new Property 50331662, value 1"
    11/15/2012|14:46:23.186 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 33554463, pre: Property 33554463, value 0, new Property 33554463, value 1"
    11/15/2012|14:46:23.186 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 33554465, pre: Property 33554465, value 0, new Property 33554465, value is empty"
    11/15/2012|14:46:23.186 DA0:AC0B7A28 ERROR :: UpdateProperty: "Error: hr = 80000003 - " "Failed to convert from app layer property variant 805830668."
    11/15/2012|14:46:23.186 DA0:AC0B7A28 ERROR :: HandlePropertyChange: "Error: hr = 80000003 - " "Failed to update property for conversation."
    11/15/2012|14:46:23.186 DA0:AC0B7A28 ERROR :: OnPropertyChange: "Failed to handle conversation property change."
    11/15/2012|14:46:23.186 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 16777231, pre: Property 16777231, value 1, new Property 16777231, value 1"
    11/15/2012|14:46:23.187 DA0:AC0B7A28 INFO  :: - Log message too long!
    11/15/2012|14:46:23.187 DA0:AC0B7A28 INFO  :: - Log message too long!
    11/15/2012|14:46:23.187 DA0:AC0B7A28 INFO  :: - Log message too long!
    11/15/2012|14:46:23.187 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 16777232, pre: Property 16777232, value 1, new Property 16777232, value 1"
    11/15/2012|14:46:23.187 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:0 with AppLayerMode:2, AppLayerAction:1 to Available :1"
    11/15/2012|14:46:23.187 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:0 with AppLayerMode:2, AppLayerAction:1D to Available :1"
    11/15/2012|14:46:23.187 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:0 with AppLayerMode:2, AppLayerAction:13 to Available :1"
    11/15/2012|14:46:23.187 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:0 with AppLayerMode:4, AppLayerAction:1 to Available :1"
    11/15/2012|14:46:23.187 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:0 with AppLayerMode:4, AppLayerAction:1D to Available :1"
    11/15/2012|14:46:23.187 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:0 with AppLayerMode:4, AppLayerAction:2 to Available :0"
    11/15/2012|14:46:23.187 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:0 with AppLayerMode:8, AppLayerAction:1 to Available :1"
    11/15/2012|14:46:23.187 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:0 with AppLayerMode:8, AppLayerAction:1 to Available :1"
    11/15/2012|14:46:23.188 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:0 with AppLayerMode:8, AppLayerAction:1D to Available :1"
    11/15/2012|14:46:23.188 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:0 with AppLayerMode:8, AppLayerAction:1D to Available :1"
    11/15/2012|14:46:23.188 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:0 with AppLayerMode:8, AppLayerAction:2 to Available :0"
    11/15/2012|14:46:23.188 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:0 with AppLayerMode:8, AppLayerAction:2 to Available :0"
    11/15/2012|14:46:23.188 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:0 with AppLayerMode:200, AppLayerAction:1 to Available :1"
    11/15/2012|14:46:23.188 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:0 with AppLayerMode:200, AppLayerAction:2 to Available :0"
    11/15/2012|14:46:23.188 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:0 with AppLayerMode:200, AppLayerAction:1D to Available :1"
    11/15/2012|14:46:23.188 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:0 with AppLayerMode:200, AppLayerAction:1C to Available :1"
    11/15/2012|14:46:23.188 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:0 with AppLayerMode:200, AppLayerAction:29 to Available :0"
    11/15/2012|14:46:23.188 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:0 with AppLayerMode:200, AppLayerAction:2A to Available :0"
    11/15/2012|14:46:23.188 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:0 with AppLayerMode:200, AppLayerAction:2B to Available :0"
    11/15/2012|14:46:23.189 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:0 with AppLayerMode:200, AppLayerAction:2C to Available :0"
    11/15/2012|14:46:23.189 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:0 with AppLayerMode:200, AppLayerAction:2D to Available :0"
    11/15/2012|14:46:23.189 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:0 with AppLayerMode:200, AppLayerAction:2E to Available :0"
    11/15/2012|14:46:23.189 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:0 with AppLayerMode:200, AppLayerAction:18 to Available :0"
    11/15/2012|14:46:23.189 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:0 with AppLayerMode:200, AppLayerAction:3 to Available :0"
    11/15/2012|14:46:23.189 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:0 with AppLayerMode:200, AppLayerAction:10 to Available :0"
    11/15/2012|14:46:23.189 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:0 with AppLayerMode:200, AppLayerAction:11 to Available :0"
    11/15/2012|14:46:23.189 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:0 with AppLayerMode:200, AppLayerAction:C to Available :0"
    11/15/2012|14:46:23.189 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:0 with AppLayerMode:200, AppLayerAction:19 to Available :0"
    11/15/2012|14:46:23.189 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:0 with AppLayerMode:800, AppLayerAction:1 to Available :1"
    11/15/2012|14:46:23.190 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 50331658, pre: Property 50331658, value is empty, new Property 50331658, value sip:e*****@progress.com;gruu;opaque=app:conf:focus:id:6E0QDRII"
    11/15/2012|14:46:23.190 DA0:AC0B7A28 ERROR :: enum_cast: "Unsupported conversation mode 16."
    11/15/2012|14:46:23.190 DA0:AC0B7A28 ERROR :: GetModality: "Error: returning hr = 80C80004"
    11/15/2012|14:46:23.190 DA0:AC0B7A28 ERROR :: HandlePropertyChange: "Failed to get the modality object for mode: 0x10."
    11/15/2012|14:46:23.190 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:0 with AppLayerMode:4, AppLayerAction:1 to Available :1"
    11/15/2012|14:46:23.190 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:0 with AppLayerMode:4, AppLayerAction:2 to Available :0"
    11/15/2012|14:46:23.190 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:0 with AppLayerMode:4, AppLayerAction:3 to Available :0"
    11/15/2012|14:46:23.190 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:0 with AppLayerMode:4, AppLayerAction:4 to Available :0"
    11/15/2012|14:46:23.190 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:0 with AppLayerMode:4, AppLayerAction:5 to Available :0"
    11/15/2012|14:46:23.190 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:0 with AppLayerMode:4, AppLayerAction:7 to Available :0"
    11/15/2012|14:46:23.190 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:0 with AppLayerMode:4, AppLayerAction:8 to Available :0"
    11/15/2012|14:46:23.190 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:0 with AppLayerMode:4, AppLayerAction:9 to Available :0"
    11/15/2012|14:46:23.190 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:0 with AppLayerMode:4, AppLayerAction:14 to Available :0"
    11/15/2012|14:46:23.190 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:0 with AppLayerMode:4, AppLayerAction:11 to Available :0"
    11/15/2012|14:46:23.190 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:0 with AppLayerMode:4, AppLayerAction:10 to Available :0"
    11/15/2012|14:46:23.190 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:0 with AppLayerMode:4, AppLayerAction:12 to Available :0"
    11/15/2012|14:46:23.190 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:0 with AppLayerMode:4, AppLayerAction:6 to Available :0"
    11/15/2012|14:46:23.190 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:0 with AppLayerMode:4, AppLayerAction:1B to Available :0"
    11/15/2012|14:46:23.190 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:0 with AppLayerMode:4, AppLayerAction:1 to Available :0"
    11/15/2012|14:46:23.191 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 33554462, pre: Property 33554462, value 0, new Property 33554462, value 2"
    11/15/2012|14:46:23.191 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 33554481, pre: Property 33554481, value 0, new Property 33554481, value 4"
    11/15/2012|14:46:23.191 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 33554464, pre: Property 33554464, value 0, new Property 33554464, value 4"
    11/15/2012|14:46:23.191 DA0:AC0B7A28 ERROR :: OnParticipantStateChange: "Making outgoing call, no invited device detected."
    11/15/2012|14:46:23.191 DA0:AC0B7A28 WARN  :: ProcessSessionInvite: "failed to find remoteContactModel"
    11/15/2012|14:46:23.191 DA0:AC0B7A28 WARN  :: ProcessSessionDeflect: "failed to get remoteParticipant"
    11/15/2012|14:46:23.191 DA0:AC0B7A28 INFO  :: - Log message too long!
    11/15/2012|14:46:23.191 DA0:AC0B7A28 INFO  :: - Log message too long!
    11/15/2012|14:46:23.191 DA0:AC0B7A28 INFO  :: - Log message too long!
    11/15/2012|14:46:23.191 DA0:AC0B7A28 INFO  :: SetState: "SetState for url:sip:******@progress.com with mode:4, PrevAppLayerState:1 to PrevOCApiState:0, NewAppLayerState:2 to NewOCApiState:1"
    11/15/2012|14:46:23.192 DA0:AC0B7A28 INFO  :: FireMediaFlowChangedEventsAuto: "FireMediaFlowChannelEventsAuto for local: 1"
    11/15/2012|14:46:23.192 DA0:AC0B7A28 INFO  :: GetDataFromState: "direction from state for Mode: 4, SubMode: 0, UcModalityState: 0 DirFromState: 0 ChannelState: 0"
    11/15/2012|14:46:23.192 DA0:AC0B7A28 INFO  :: GetDataFromState: "direction from state for Mode: 4, SubMode: 0, UcModalityState: 1 DirFromState: 0 ChannelState: 1"
    11/15/2012|14:46:23.192 DA0:AC0B7A28 INFO  :: ApplyAndFireMediaFlow: "FireChannelState for  Mode : 4, ModeSubtype: 0, PrevChannelState:0 to NewChannelState:1, NewChannelDirection:3 "
    11/15/2012|14:46:23.192 DA0:AC0B7A28 INFO  :: FireChannelStateChangedEvent: "The channel oldState 0 newState 1."
    11/15/2012|14:46:23.192 DA0:AC0B7A28 INFO  :: FireStateChangedEvent: "The channel oldState 0 newState 1."
    11/15/2012|14:46:23.192 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:0 with AppLayerMode:0, AppLayerAction:1C to Available :0"
    11/15/2012|14:46:23.192 DA0:AC0B7A28 ERROR :: enum_cast: "Unsupported conversation mode 0."
    11/15/2012|14:46:23.192 DA0:AC0B7A28 ERROR :: GetModality: "Error: returning hr = 80C80004"
    11/15/2012|14:46:23.192 DA0:AC0B7A28 ERROR :: OnCapabilityChange: "Failed to get the modality object. mode 0 and HR: 0x80c80004."
    11/15/2012|14:46:23.192 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:0 with AppLayerMode:0, AppLayerAction:A to Available :0"
    11/15/2012|14:46:23.192 DA0:AC0B7A28 ERROR :: enum_cast: "Unsupported conversation mode 0."
    11/15/2012|14:46:23.192 DA0:AC0B7A28 ERROR :: GetModality: "Error: returning hr = 80C80004"
    11/15/2012|14:46:23.192 DA0:AC0B7A28 ERROR :: OnCapabilityChange: "Failed to get the modality object. mode 0 and HR: 0x80c80004."
    11/15/2012|14:46:23.192 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:0 with AppLayerMode:8, AppLayerAction:1 to Available :0"
    11/15/2012|14:46:23.192 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:0 with AppLayerMode:8, AppLayerAction:1 to Available :0"
    11/15/2012|14:46:23.192 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:0 with AppLayerMode:8, AppLayerAction:1D to Available :0"
    11/15/2012|14:46:23.192 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:0 with AppLayerMode:8, AppLayerAction:1D to Available :0"
    11/15/2012|14:46:23.192 DA0:AC0B7A28 ERROR :: enum_cast: "Unsupported conversation mode 16."
    11/15/2012|14:46:23.192 DA0:AC0B7A28 ERROR :: GetModality: "Error: returning hr = 80C80004"
    11/15/2012|14:46:23.192 DA0:AC0B7A28 ERROR :: HandlePropertyChange: "Failed to get the modality object for mode: 0x10."
    11/15/2012|14:46:23.192 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 33554450, pre: Property 33554450, value is empty, new Property 33554450, value 2"
    11/15/2012|14:46:23.192 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:0 with AppLayerMode:200, AppLayerAction:1 to Available :0"
    11/15/2012|14:46:23.193 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:0 with AppLayerMode:200, AppLayerAction:1D to Available :0"
    11/15/2012|14:46:23.193 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:0 with AppLayerMode:200, AppLayerAction:1C to Available :0"
    11/15/2012|14:46:23.193 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 33554481, pre: Property 33554481, value 4, new Property 33554481, value 20"
    11/15/2012|14:46:23.193 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 33554464, pre: Property 33554464, value 4, new Property 33554464, value 20"
    11/15/2012|14:46:23.193 DA0:AC0B7A28 WARN  :: ProcessSessionInvite: "failed to find remoteContactModel"
    11/15/2012|14:46:23.193 DA0:AC0B7A28 WARN  :: ProcessSessionDeflect: "failed to get remoteParticipant"
    11/15/2012|14:46:23.193 DA0:AC0B7A28 INFO  :: - Log message too long!
    11/15/2012|14:46:23.193 DA0:AC0B7A28 INFO  :: - Log message too long!
    11/15/2012|14:46:23.193 DA0:AC0B7A28 INFO  :: - Log message too long!
    11/15/2012|14:46:23.193 DA0:AC0B7A28 ERROR :: enum_cast: "Unsupported conversation mode 16."
    11/15/2012|14:46:23.193 DA0:AC0B7A28 ERROR :: GetModality: "Error: returning hr = 80C80004"
    11/15/2012|14:46:23.193 DA0:AC0B7A28 ERROR :: enum_cast: "Unsupported conversation mode 16."
    11/15/2012|14:46:23.194 DA0:AC0B7A28 ERROR :: GetModality: "Error: returning hr = 80C80004"
    11/15/2012|14:46:23.194 DA0:AC0B7A28 ERROR :: HandleParticipantStateChange: "Failed to get the modality object for mode: 0x10."
    11/15/2012|14:46:23.194 DA0:AC0B7A28 INFO  :: OnCapabilityChange: "OnCapabilityChange for local:0 with AppLayerMode:800, AppLayerAction:1 to Available :0"
    11/15/2012|14:46:23.194 DA0:AC0B7A28 ERROR :: enum_cast: "Unsupported conversation mode 16."
    11/15/2012|14:46:23.194 DA0:AC0B7A28 ERROR :: GetModality: "Error: returning hr = 80C80004"
    11/15/2012|14:46:23.194 DA0:AC0B7A28 ERROR :: HandlePropertyChange: "Failed to get the modality object for mode: 0x10."
    11/15/2012|14:46:23.194 DA0:AC0B7A28 ERROR :: enum_cast: "Unsupported conversation mode 16."
    11/15/2012|14:46:23.194 DA0:AC0B7A28 ERROR :: GetModality: "Error: returning hr = 80C80004"
    11/15/2012|14:46:23.194 DA0:AC0B7A28 ERROR :: HandlePropertyChange: "Failed to get the modality object for mode: 0x10."
    11/15/2012|14:46:23.194 DA0:AC0B7A28 ERROR :: enum_cast: "Unsupported conversation mode 16."
    11/15/2012|14:46:23.194 DA0:AC0B7A28 ERROR :: GetModality: "Error: returning hr = 80C80004"
    11/15/2012|14:46:23.194 DA0:AC0B7A28 ERROR :: HandlePropertyChange: "Failed to get the modality object for mode: 0x10."
    11/15/2012|14:46:23.194 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 27, participant 81D044A8, pre: Property 27, value is empty, new Property 27, value 8"
    11/15/2012|14:46:23.194 DA0:AC0B7A28 ERROR :: enum_cast: "Unsupported conversation mode 16."
    11/15/2012|14:46:23.194 DA0:AC0B7A28 ERROR :: GetModality: "Error: returning hr = 80C80004"
    11/15/2012|14:46:23.194 DA0:AC0B7A28 ERROR :: HandlePropertyChange: "Failed to get the modality object for mode: 0x10."
    11/15/2012|14:46:23.194 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 33554484, pre: Property 33554484, value 0, new Property 33554484, value -2131689324"
    11/15/2012|14:46:23.194 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 33554485, pre: Property 33554485, value 0, new Property 33554485, value -2131689324"
    11/15/2012|14:46:23.194 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 33554486, pre: Property 33554486, value 0, new Property 33554486, value -2131689324"
    11/15/2012|14:46:23.194 DA0:AC0B7A28 INFO  :: - Log message too long!
    11/15/2012|14:46:23.195 DA0:AC0B7A28 INFO  :: - Log message too long!
    11/15/2012|14:46:23.195 DA0:AC0B7A28 INFO  :: - Log message too long!
    11/15/2012|14:46:23.195 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 33554487, pre: Property 33554487, value 0, new Property 33554487, value -2131689324"
    11/15/2012|14:46:23.195 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 16777280, pre: Property 16777280, value 0, new Property 16777280, value -2131689324"
    11/15/2012|14:46:23.197 DA0:AC0B7A28 INFO  :: - Log message too long!
    11/15/2012|14:46:23.197 DA0:AC0B7A28 INFO  :: UpdateContentState: L"ContentState changed from [0] to [0]"
    11/15/2012|14:46:23.197 DA0:AC0B7A28 INFO  :: - Log message too long!
    11/15/2012|14:46:23.197 DA0:AC0B7A28 INFO  :: - Log message too long!
    11/15/2012|14:46:23.237 DA0:AC0B7A28 INFO  :: Data Received - 131.239.30.144:5061 (To Local Address: 192.168.7.4:41970) 1070 bytes:
    11/15/2012|14:46:23.238 DA0:AC0B7A28 INFO  :: SIP/2.0 183 Session Progress
    ms-user-logon-data: RemoteUser
    Record-Route: <sip:uc.progress.com:5061;transport=tls;ms-fe=NTMAUCSRV02.bedford.progress.com; opaque=state:T:F;lr;received=10.128.16.53;ms-received-cid=8DDEC603>
    Authentication-Info: TLS-DSK qop="auth", opaque="2E168D0E", srand="E6C46CDE", snum="173", rspauth="96eba8b6de28f4e517b789868b4c1c5786faa55a", targetname="NTMAUCSRV02.bedford.progress.com", realm="SIP Communications Service", version=4
    From: "Evan Leonard"<sip:******@progress.com>;tag=bf2aac529f;epid=4a70361eb5
    To: <sip:*******@progress.com;gruu;opaque=app:conf:focus:id:6E0QDRII>;tag=0E470080
    Call-ID: ffc368f9e7b6b6468946d573c258cae2
    CSeq: 1 INVITE
    Via: SIP/2.0/TLS 192.168.7.4:41970;received=174.51.37.149;ms-received-port=47594;ms-received-cid =8DFFBC00
    Contact: <sip:*******@progress.com;gruu;opaque=app:conf:focus:id:6E0QDRII>;isfocus
    Content-Length: 0
    Record-Route: <sip:ucedge.progress.com:5061;transport=tls;opaque=state:Ci.R8dffbc00;lr;ms-rou te-sig=hihOyq1Oji6srJg30rPDBhzaIkH7aNTWpoI9SnbnbKDJrRbWCtb99KjwAA>
    11/15/2012|14:46:23.238 DA0:AC0B7A28 INFO  :: End of Data Received - 131.239.30.144:5061 (To Local Address: 192.168.7.4:41970) 1070 bytes
    11/15/2012|14:46:23.238 DA0:AC0B7A28 INFO  :: Trxn corr-id (81D75FB8), SIP msg corr-id (d3ca01ed)
    11/15/2012|14:46:23.238 DA0:AC0B7A28 INFO  :: HRESULT SIP_MSG_PROCESSOR::OnRequestConnectionConnectComplete(HRESULT) - Enter this: 7CBBE008, callid=ffc368f9e7b6b6468946d573c258cae2, ErrorCode: 0x0
    11/15/2012|14:46:23.238 DA0:AC0B7A28 INFO  :: Function: GetRSeqHeader
    11/15/2012|14:46:23.238 DA0:AC0B7A28 ERROR :: HRESULT failed: 80ee0005 = hr . failed to get single header
    11/15/2012|14:46:23.238 DA0:AC0B7A28 INFO  :: MSP.SetState[818BDD58] SIP_CALL_STATE_CONNECTING->SIP_CALL_STATE_ALERTING, local=sip:*******@progress.com
    11/15/2012|14:46:23.434 DA0:AC0B7A28 INFO  :: Data Received - 131.239.30.144:5061 (To Local Address: 192.168.7.4:41970) 1739 bytes:
    11/15/2012|14:46:23.434 DA0:AC0B7A28 INFO  :: SIP/2.0 200 Invite dialog created
    ms-user-logon-data: RemoteUser
    Record-Route: <sip:uc.progress.com:5061;transport=tls;ms-fe=NTMAUCSRV02.bedford.progress.com; opaque=state:T:F;lr;received=10.128.16.53;ms-received-cid=8DDEC603>
    Authentication-Info: TLS-DSK qop="auth", opaque="2E168D0E", srand="6C83E373", snum="174", rspauth="3fa0ece7e066883023cb64451785a1f69c668b5d", targetname="NTMAUCSRV02.bedford.progress.com", realm="SIP Communications Service", version=4
    Content-Length: 509
    From: "Evan Leonard"<sip:******@progress.com>;tag=bf2aac529f;epid=4a70361eb5
    To: <sip:******@progress.com;gruu;opaque=app:conf:focus:id:6E0QDRII>;tag=0E470080
    Call-ID: ffc368f9e7b6b6468946d573c258cae2
    CSeq: 1 INVITE
    Via: SIP/2.0/TLS 192.168.7.4:41970;received=174.51.37.149;ms-received-port=47594;ms-received-cid =8DFFBC00
    Allow: INVITE, BYE, ACK, CANCEL, INFO, UPDATE
    Contact: <sip:e******@progress.com;gruu;opaque=app:conf:focus:id:6E0QDRII>;isfocus
    Content-Type: application/cccp+xml
    Session-Expires: 590;refresher=uac
    Require: timer
    Supported: timer
    Record-Route: <sip:ucedge.progress.com:5061;transport=tls;opaque=state:Ci.R8dffbc00;lr;ms-rou te-sig=hihOyq1Oji6srJg30rPDBhzaIkH7aNTWpoI9SnbnbKDJrRbWCtb99KjwAA>
    <response xmlns="urn:ietf:params:xml:ns:cccp" xmlns:ci="urn:ietf:params:xml:ns:conference-info" requestId="0" C3PVersion="1" from="sip:******@progress.com;gruu;opaque=app:conf:focus:id:6E0QDRII" to="sip:*******@progress.com" code="success">
    <addUser>
    <conferenceKeys confEntity="sip:******@progress.com;gruu;opaque=app:conf:focus:id:6E0QDRII"/>
    <ci:user entity="sip:******@progress.com">
    <ci:roles>
    <ci:entry>presenter</ci:entry>
    </ci:roles>
    </ci:user>
    </addUser>
    </response>
    11/15/2012|14:46:23.434 DA0:AC0B7A28 INFO  :: End of Data Received - 131.239.30.144:5061 (To Local Address: 192.168.7.4:41970) 1739 bytes
    11/15/2012|14:46:23.434 DA0:AC0B7A28 INFO  :: Trxn corr-id (81D75FB8), SIP msg corr-id (d3ca01ed)
    11/15/2012|14:46:23.434 DA0:AC0B7A28 ERROR :: virtual HRESULT OUTGOING_INVITE_TRANSACTION::ProcessFinalResponse(const SIP_MESSAGE*) SetRemoteContact failed failed (0x1)
    11/15/2012|14:46:23.435 DA0:AC0B7A28 INFO  :: Sending Packet - 131.239.30.144:5061 (From Local Address: 192.168.7.4:41970) 983 bytes:
    11/15/2012|14:46:23.435 DA0:AC0B7A28 INFO  :: ACK sip:*******@progress.com;gruu;opaque=app:conf:focus:id:6E0QDRII SIP/2.0
    Via: SIP/2.0/TLS 192.168.7.4:41970
    Max-Forwards: 70
    From: <sip:******@progress.com>;tag=bf2aac529f;epid=4a70361eb5
    To: <sip:******@progress.com;gruu;opaque=app:conf:focus:id:6E0QDRII>;tag=0E470080
    Call-ID: ffc368f9e7b6b6468946d573c258cae2
    CSeq: 1 ACK
    Route: <sip:ucedge.progress.com:5061;transport=tls;opaque=state:Ci.R8dffbc00;lr;ms-rou te-sig=hihOyq1Oji6srJg30rPDBhzaIkH7aNTWpoI9SnbnbKDJrRbWCtb99KjwAA>
    Route: <sip:uc.progress.com:5061;transport=tls;ms-fe=NTMAUCSRV02.bedford.progress.com; opaque=state:T:F;lr;received=10.128.16.53;ms-received-cid=8DDEC603>
    User-Agent: UCCAPI/4.0.7323.0 MC/14.0.0223.2 (Microsoft Lync for Mac 2011)
    Proxy-Authorization: TLS-DSK qop="auth", realm="SIP Communications Service", opaque="2E168D0E", targetname="NTMAUCSRV02.bedford.progress.com", crand="e64991d7", cnum="174", response="29f97a4e54f21fc97f12cb5f6e5f70ca499ea0c7"
    Content-Length: 0
    11/15/2012|14:46:23.435 DA0:AC0B7A28 INFO  :: End of Sending Packet - 131.239.30.144:5061 (From Local Address: 192.168.7.4:41970) 983 bytes
    11/15/2012|14:46:23.435 DA0:AC0B7A28 INFO  :: HRESULT CUccConfSession::SetSourceNetworkType(UCC_SOURCE_NETWORK_TYPE) - setting source network type to 2
    11/15/2012|14:46:23.435 DA0:AC0B7A28 INFO  :: MSP.SetState[818BDD58] SIP_CALL_STATE_ALERTING->SIP_CALL_STATE_CONNECTED, local=sip:******@progress.com
    11/15/2012|14:46:23.435 DA0:AC0B7A28 INFO  :: There is no Service-Route to copy
    11/15/2012|14:46:23.435 DA0:AC0B7A28 INFO  :: HRESULT SIP_MSG_PROCESSOR::OnRequestConnectionConnectComplete(HRESULT) - Enter this: 7BEE6A0C, callid=(null), ErrorCode: 0x0
    11/15/2012|14:46:23.435 DA0:AC0B7A28 INFO  :: Outgoing 7BEE6A0C-<sip:******@progress.com;gruu;opaque=app:conf:focus:id:6E0QDRII>, local=sip:******@progress.com
    11/15/2012|14:46:23.435 DA0:AC0B7A28 INFO  :: Out trxn corr-id (81AB7598)
    11/15/2012|14:46:23.435 DA0:AC0B7A28 INFO  :: Trxn corr-id (81AB7598), SIP msg corr-id (cead3805)
    11/15/2012|14:46:23.435 DA0:AC0B7A28 INFO  :: Sending Packet - 131.239.30.144:5061 (From Local Address: 192.168.7.4:41970) 988 bytes:
    11/15/2012|14:46:23.435 DA0:AC0B7A28 INFO  :: SUBSCRIBE sip:******@progress.com;gruu;opaque=app:conf:focus:id:6E0QDRII SIP/2.0
    Via: SIP/2.0/TLS 192.168.7.4:41970
    Max-Forwards: 70
    From: <sip:******@progress.com>;tag=524743fe62;epid=4a70361eb5
    To: <sip:[email protected];gruu;opaque=app:conf:focus:id:6E0QDRII>
    Call-ID: 4dc8fb64eea96f43b42d0983f6598c47
    CSeq: 1 SUBSCRIBE
    Contact: <sip:e*****@progress.com;opaque=user:epid:kNer5o-kUl2g5CL0QZKI0AAA;gruu>
    User-Agent: UCCAPI/4.0.7323.0 MC/14.0.0223.2 (Microsoft Lync for Mac 2011)
    Supported: ms-dialog-route-set-update
    Event: conference
    Accept: application/conference-info+xml
    Supported: com.microsoft.autoextend
    Supported: ms-benotify
    Proxy-Require: ms-benotify
    Supported: ms-piggyback-first-notify
    Proxy-Authorization: TLS-DSK qop="auth", realm="SIP Communications Service", opaque="2E168D0E", targetname="NTMAUCSRV02.bedford.progress.com", crand="e5a32fd9", cnum="175", response="7707fd6d84558fd6fad18fb4f241a41b17b24b2b"
    Content-Length: 0
    11/15/2012|14:46:23.435 DA0:AC0B7A28 INFO  :: End of Sending Packet - 131.239.30.144:5061 (From Local Address: 192.168.7.4:41970) 988 bytes
    11/15/2012|14:46:23.435 DA0:AC0B7A28 INFO  :: StartWatching - issuing operation 81BC1A08, context = 81D3B408, type = 2
    11/15/2012|14:46:23.436 DA0:AC0B7A28 INFO  :: HandlePropertyChange: "Property 16777240, pre: Property 16777240, value is empty, new Property 16777240, value 1"
    11/15/2012|14:46:23.947 DA0:AC0B7A28 INFO  :: Data Received - 131.239.30.144:5061 (To Local Address: 192.168.7.4:41970) 9963 bytes:
    11/15/2012|14:46:23.947 DA0:AC0B7A28 INFO  :: SIP/2.0 200 OK
    ms-user-logon-data: RemoteUser
    Record-Route: <sip:uc.progress.com:5061;transport=tls;ms-fe=NTMAUCSRV02.bedford.progress.com; opaque=state:T:F;lr;received=10.128.16.53;ms-received-cid=8DDEC603>
    Authentication-Info: TLS-DSK qop="auth", opaque="2E168D0E", srand="C1039F6C", snum="175", rspauth="123c44b0089869bd78858b64ed858f29131aa294", targetname="NTMAUCSRV02.bedford.progress.com", realm="SIP Communications Service", version=4
    Content-Length: 8719
    From: "Evan Leonard"<sip:******@progress.com>;tag=524743fe62;epid=4a70361eb5
    To: <sip:*****@progress.com;gruu;opaque=app:conf:focus:id:6E0QDRII>;tag=161F0080
    Call-ID: 4dc8fb64eea96f43b42d0983f6598c47
    CSeq: 1 SUBSCRIBE
    Via: SIP/2.0/TLS 192.168.7.4:41970;received=174.51.37.149;ms-received-port=47594;ms-received-cid =8DFFBC00
    Expires: 3725
    Content-Type: application/conference-info+xml
    Event: conference
    subscription-state: active;expires=3725
    ms-piggyback-cseq: 1
    Supported: ms-piggyback-first-notify
    Contact: <sip:*******@progress.com;gruu;opaque=app:conf:focus:id:6E0QDRII>;isfocus
    Record-Route: <sip:ucedge.progress.com:5061;transport=tls;opaque=state:Ci.R8dffbc00;lr;ms-rou te-sig=hinPljFVwwYwUE1xyp7X8k-kP1PE-eAVW46otiwO4fFnn-Hdmtb99KjwAA>
    <conference-info xmlns="urn:ietf:params:xml:ns:conference-info" xmlns:msas="http://schemas.microsoft.com/rtc/2005/08/asconfinfoextensions" xmlns:msav="http://schemas.microsoft.com/rtc/2005/08/avconfinfoextensions" xmlns:msci="

  • Upgrade SBO-COMMOM SQL -  unable to connect to database

    Dear Experts,
    I'm trying to upgarde from SAP 2007 A PL-42  to  PL-49.
    I have currently got SQL2000 (for legend system) running under the instance name SERVER and i have installed SQL2005 (SAP uses this) with the instance name SERVER\SQL2005, both running on the same machine called SERVER.
    When i try to upgrade the SBO-COMMON database, it installs the DI and reaches a point where it asks for:-
    Database Server:-              (I input SERVER\SQL2005)
    Database Name:-              (SBO-COMMON)
    User Name:-                     (sa)
    Password:-                      (password)
    When i click the NEXT button, i get the error "unable to connect to database; verify that database TCP/IP port serice is started."
    I have verified that the TCP/IP ie enabled,and running on port 1433.
    Addidtional Information:
    During installation, it tries to access c:\windows\system32\sqljdbc_auth.dll file, when i click the NEXT button, just before i get the TCP/IP error.
    Would highly appreciate the help.
    Regards,
    Asif

    Dear Asif,
    You may check these threads first:
    Re: Unable to connect after migrating from SQL Server 2000 to SQL Server 2005
    Re: Installing SBO 2007 Error Unable to connect to database
    Thanks,
    Gordon

  • Unable to connect to Forms and Reports

    Hi,
    I'm unable to connect to Forms and Reports. I have done the following installations.
    1) First I have installed oracle 9i database in C:\oracle. oracle schema is devlp
    I was able to connect to database at scott/tiger@devlp
    2) I have downloaded oracle forms and reports from oracle site and installed.
    When installing forms and reports, the directory "oracle" is already in use message popped. So changed the path to C:\oraforms and installed both forms and reports.
    3) After installation, i tried to connect to forms/reports but couldnot connect. Error TNS could not connect.
    4) When i checked the TNSNAMES.ORA, the DEVLP string is available.
    Where should i changed the tnsnames??????
    Please anybody let me know how to have correct tnsnames and where.
    Thanks in Advance
    Chettarjee

    Mr. Sybrand,
    Thanks for the reply and I understood your point. Can you please further guide me to get an appropriate Oracle Forms/Reports (Developer) version in order to make application using Oracle Database 10g. Please note that most of my experience is in D2K 2000 rel:6. and unfortunately I came into software development after a long gap that is why not much aware about latest version out there of Oracle Forms/Reports.
    But is there really no way to connect D2K rel:6 with DB 10g !!!
    Regards,
    Zia

  • Crystal Reports Server :Unable to connect: incorrect log on parameters

    Hi there, I am getting the following error in Crystal Reports Server  when i try to preview or schedule a Crystal Report on an Access 2000 database.
    Unable to connect: incorrect log on parameters
    The Access database does not have has not username or password and I have left these blank when publishing it, and the Database properties in the Central Management Console also show the username and password as blank.
    All other reports are fine is it just reports on the Access 2000 database that give me this errror.
    Anyone any ideas.
    Thanks

    Hi,
    ok now you have to make ure that the user used to run the BOBJ services on your BO server (if you hvae windows then this is the local system account), has access to your AccessDB. Normally local users do not have access to network locations so it is advisable to create a domain user, who is allowed to access the directory with your database and is melber of the local administrators group on the BOBJ server. All you have to do then is to  configure your BOBJ services (Use the Central Configuration Management utility to do this) to run under the credentials (Log-on-as) of user you created.
    Regards,
    Stratos

  • Unable to connect to LAN - Integrated 10/100BASE-T Ethernet LAN (RJ-45 connector)

    Unable to connect to LAN, downgraded laptop from Windows 8 to Windows 7 64-bit. Have tried using the HP device identifier, and installing all drivers under Network for the laptop on WIndows 7, though none of them showed as being for Local Area Network.I also tried following this thread: http://h30434.www3.hp.com/t5/Wireless-Internet-Home-Networking/Integrated-10-100BASE-T-Ethernet-LAN-RJ-45-connector/td-p/4040756Downloaded the suggested drivers there for the HP Envy 17t-j100I also tested downloading the drivers here for Windows 7: http://www.realtek.com.tw/downloads/downloadsView.aspx?Langid=1&PNid=14&PFid=7&Level=5&Conn=4&DownTypeID=3&GetDown=false Neither worked, I am still only able to connect via Wi-Fi, but not via LAN with actual cable attached.In case necessary, hardware ID for the Realtek PCIe FE Family Controller:
    PCI\VEN_10EC&DEV_8136&SUBSYS_1854103C&REV_05PCI\VEN_10EC&DEV_8136&SUBSYS_1854103CPCI\VEN_10EC&DEV_8136&CC_020000PCI\VEN_10EC&DEV_8136&CC_0200

    Hi: You can use all of the W7 x64 drivers and software from the HP 2000t-2a00 on your model except the BIOS and firmware files. Make sure you install the Intel chipset installation utility first and reboot before trying to install the Realtek LAN driver. http://h22207.www2.hp.com/us-en/drivers/selfservice/hp-2000-2a00-notebook-pc-series/5259212/model/5275371

  • Unable to connect r/3 to bw

    Hi eveybody,
    My problem is I want to connect r/3 to bw
    r/3 side : host name :erp, database : oracle, database name : erp, windows 2000 server
    bw side : host name : biw , database : sqlserver, database name : biw , windows 2003 server
    i can connect from r/3 to bw with remote login but unable to connect from bw to r/3 via remote login,
    if u need any clarification from me, then i will pass to you.
    pls help me in this regard,
    With Regards,
    salman

    Salman,
    If you can connect one way and not the other, then you'd need to check how you are attempting to connect from R.3 to the BW box. I am assuming that if you do a connection test from R3 to the BW system, it is successful - this will test the TCP/IP connectivity between the systems, making sure the systems can resolve an IP address and open a port (no firewall issues).
    Are you seeing a specific error? Possibly, it is as simple as making sure that the user ID you're using to logon to the R3 system is not allowed to logon (assign the S_RFC profile to the user ID). Alternativly, it could be an incorrect password, invalid client, etc.
    If none of these suggestions help, please send back the error message you see when this fails, check the R3 side for short dumps and system log messages, check the user ID you're using in the R3 system to make sure it is not locked and that it has proper authorizations. Also, what version(s) of SAP are you using? Is everything here based on WAS640? WAS700? Do you possibly have a mixed release environment? For instance, if the bw system is WAS640 and the R3 system is WAS700, then you could have an issue with capitalization mismatch.
    All kinds of stuff. Let me know how you do!
    -Tim

  • Unable to connect to  Analytic server 7.2

    Hi, I have been using Essbase 7.2.5.2 on windows 2000 which have been working fine so far. I had to install CDF in one of my essbase application. To make the required changes, I stopped the services & restarted the server.
    Now when I try to connect to analytic server thru essbase console it shows an error message “network error: 10061 : unable to connect to <analytic server name>”
    If I try to start the analytic services from command prompt by executing “essbase.exe from c:\hyperion\essabse\bin folder, it display following error “ Failed in GCInit()”
    I shall appreciate if someone can help me by providing solution to this problem.
    Thanks in advance.
    Regards,

    Hi John,
    yes I did. However later I changed it back.The current setting are as follows:-
    ARBORPATH = C:\Hyperion\essbase
    Classpath = C:\Hyperion\essbase,C:\Hyperion\essbase\bin,C:\Hyperion\essbase\java
    EASPATH=C:\Hyperion\AdminServices
    HYPERION_HOME = C:\Hyperion
    Path = C:\Hyperion\essbase\bin;C:\Hyperion\essbase\bin;C:\Hyperion\essbase\bin;%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;C:\Hyperion\SharedServices\7.2.5\openLDAP;%HYPERION_HOME%\common\CSS\7.2.5.2\bin;%HYPERION_HOME%\common\ODBC\Merant\5.1\Drivers;%HYPERION_HOME%\common\CSS\3.0.1\bin;%analyzer_install_root%\adm\bin\nt;%analyzer_install_root%\common;%hyperion_home%\common\adm\7.2.1\Essbase\7.2.1\bin;%hyperion_Home%\Common\CSS\2.7.0\bin;%Hyperion_Home%\common\ADM\7.2.1\ODBO\7.2.1;%Path%,C:\Hyperion\essbase\java
    Have I specified any thing wrong inthe settings?
    Regards,

  • Unable to connect to destination message installing of oracle 8.0.5

    Hi all,
    I have a hypervisor environment in which i am trying to install oracle 8 on Windows 2000 server. During the installation of pre-configured database (orcl), the installation stops giving error "Unable to connect to destination" and asks for password. Giving any password or simply entering, the installation completes but after that system gives the same error if i try to connect from sqlplus,enterprise manager or connect internal etc. The hardware is DELL T610 Servers.
    Regards,
    Iftikhar

    iftikhar ahmad wrote:
    Hi all,
    I have a hypervisor environment in which i am trying to install oracle 8 on Windows 2000 server. During the installation of pre-configured database (orcl), the installation stops giving error "Unable to connect to destination" and asks for password. Giving any password or simply entering, the installation completes but after that system gives the same error if i try to connect from sqlplus,enterprise manager or connect internal etc. The hardware is DELL T610 Servers.
    Regards,
    IftikharIf you try to install Oracle 8 on Windows 2000 via remote desktop you will get this kind of error. Try somehow to work on console of OS

  • Help to resolve Unable to connect to XL reporter user authentication

    I upgraded business one 2007 from PL 11 to PL42 on SQL Server 2000. I have 7 companies and only one of them has a problem loading XL reporter. I first get a sql script executor - execution result screen with what looks like errors in a script that has lines taht refer to OADM. then it gives a message when I X out of it'
    'Unable to connect to XL reporter
    Error! User authentication failed!
    Cause: ExitCode -1'
    then I get the sql script executor again, X out, and then it asks to start with out the add-on.
    What is weird is that the SQL script message will come up after a while once I turn on the laptop
    and am doing other things, but have not gone into Business One yet.
    Any ideas as I am stumped.
    thanks,
    laura nesteriak
    Edited by: Laura Nesteriak on Oct 2, 2008 8:28 PM
    Edited by: Laura Nesteriak on Oct 9, 2008 9:57 PM
    support helped me resolve. the table xrdbv had a incorrect value in the PartnerDBV field. We updated the field and XL reporter then worked.

    my issue was that the partnerdbv was a different version than the B-one software. I have values in dobjver (1.8), parver(22.02), partner (SBOOEM) , and partnerdbv (see below) . the others are NULL.
    the values are version specific to the version of Business One and my partnerdbv was 800176 when my buiness one version was 800177. Once we changed parnerdbv to 800177, it worked. I didn't change it-support did with a webex session. good luck.

Maybe you are looking for

  • IR Saved Report  - Download to CSV downloads Primary Report

    Hi there I'm using Apex 4.1, I login to my Apex application NOT using the developer interface (the developer buttons are not visable at the base of the page) as an end user would see. If I run an IR report and then create a filter on the Primary repo

  • How to create a  PDF document with page curls using Adobe  CS 4?

    My  goal is to create a  PDF document with page curls. I am using Adobe  CS 4. 1.      The document was created in Adobe InDesign  CS 4  where the page  turn (curl) transition  was applied. 2.      Then the document was exported to .swf. 3.     The .

  • CSS Propblem with table

    Can anyone please help with this issue I have with a table cell I want it to have a style of 5 I abply it but the cell does not shrink in height sizeIt shows it as shrunk in dreamweaver but as soon as you open it in ie it looks different, tried to cr

  • Elements 11 Serial Number

    Hi, I need to re-install the above disk, but the only number I can find is the s/n on the back of the box, is this what I need? Any help would be appreciated, JT

  • Hi.my ipad has erore when update 7.0.6.(unable chek for update) what i shoud do?

    hi.my ipad has erore when update 7.0.6.(unable chek for update) what i shoud do? my ipad is ipad3