Quantcast
Channel: Lync Server 2013 - Management, Planning, and Deployment forum
Viewing all 5984 articles
Browse latest View live

Error in Export-CSuserdata

$
0
0

Hi,

Im trying to take Backup / restortion of Lync contacts using Export-CSuserdata command.

While executing the blow command , im getting error.

Export-CsUserData -PoolFqdn "PoolName" -FileName "D:\ContactsBackup\LyncExportedUserData.zip"

Error message is

Export-CSuserData: Data is Null . This method of property cannot be called on Null Values.

Tried running the Shell in Run asAdministrator , but still the same error.

Can you please advise why this error message ?

Regards

K Gopi



Regards Gopi K


Reinstall Lync Performance Counters

$
0
0

I'm looking for a way to reinstall Lync's performance counters on a 2013 Front End server without having to rebuild the server.

Unfortunately we are unable to restore a previous backup of these counters as they were overwritten before a backup was made. Therefore LODCTR /R doesn't work (even when usinglodctr /r:PerfStringBackup.ini).

This has made it difficult to monitor the environment. We can't even get values when using Get-CsWindowsService. It just returns Unknown values for each service.

I have tried manually to reload some of the counters as with the following example

  • unlodctr JoinLauncherPerf
  • lodctr .\JoinLauncherPerf.ini

All looks ok. No errors, but after restarting the Performance service I end up with one if not all the following errors in the event log.

  • "Disabled Performance Counter X from the X service because the performance counter library for that service has generated one or more errors...."
  • "The configuration information on the performance library X for theX service does not match the trusted performance library information stored in the registry...."
  • "Unable to read the first counter index value from the registry"
  • "Windows cannot open the 64-bit extensible counter DLL X in a 32 bit environment....."

I've been searching high and low but can't find any definitive list or script to reinstall these.  Can anyone assist?

Running on WinSvr2012, Lync Server 2013 with October2013 CU. 2 node Enterprise Front End pool.

Deployoing two FE Servers in same Ent FE Pool across two datacenters

$
0
0

Couple of questions around Enterprise FE Pool, hope to get feedback.

1/Has any one had the experience of deploying two FE Servers in same Ent FE Pool across two datacenters?  Any experience you can share?

2/What is the network requirements among FE Servers in the same FE Pool?  Such as LAN subnet, network latency, jitter, ...

Thanks

Albert


Albert

Onvif IP camera remote configuration in C#

$
0
0

Hi there,


I couple of weeks ago we have installed a new security IP camera (EasyN 187V). In addition to the basic functionalities, it supports Onvif and it has some special features (PTZ, built-in microphone, night vision, motion detection, alarm notification, etc.). 

The long and short of it, this is a smart device, but we need some further functionalities, because my boss travels a lot and he wants more control over the surveillance system. I'm in charge of finding out a solution that enables remote configuration.

I've done some research and I came across a Codeproject guide (http://www.codeproject.com/Articles/825074/How-to-broadcast-live-IP-camera-stream-as-Flash-vi) that informed me that an Onvif-compliant camera SDK would be the most effective solution. (I'm not secure in my knowledge, so I need some confirmation.)

So the point is that I checked out the camera SDK that was recommended by the article, and I found a good Onvif C# example (http://www.camera-sdk.com/p_22-how-to-configure-your-onvif-camera-remotely-onvif.html) on how to configure the IP camera's network settings. 

I thought it's worth to share the code snippet related to this issue, because it can be useful for others as well, so if you'are also interested in the remote configuration, take a look at the code below:

using System;
using System.Collections.Generic;
using System.Drawing;
using System.Windows.Forms;
using Ozeki.Media.MediaHandlers;
using Ozeki.Media.MediaHandlers.IPCamera;
using Ozeki.Media.MediaHandlers.IPCamera.Types;
using Ozeki.Media.MediaHandlers.Video;
using Ozeki.Media.IPCamera;
using Ozeki.Media.IPCamera.Network;
using Ozeki.Media.Video;
using Ozeki.Media.Video.Controls;

namespace ConfigureOnvifCameraRemotely07
{
    public partial class Form1 : Form
    {
        private IIPCamera _camera;
        private DrawingImageProvider _imageProvider;
        private MediaConnector _connector;
        private VideoViewerWF _videoViewerWf;

        private List<int> _ports;

        public Form1()
        {
            InitializeComponent();
            _ports = new List<int>();
            _connector = new MediaConnector();
            _imageProvider = new DrawingImageProvider();
            _videoViewerWf = new VideoViewerWF();
            SetVideoViewer();
        }

        private void SetVideoViewer()
        {
            CameraBox.Controls.Add(_videoViewerWf);
            _videoViewerWf.Size = new Size(260, 180);
            _videoViewerWf.BackColor = Color.Black;
            _videoViewerWf.TabStop = false;
            _videoViewerWf.FlipMode = FlipMode.None;
            _videoViewerWf.Location = new Point(30, 30);
            _videoViewerWf.Name = "_videoViewerWf";
        }

        private void button_Connect_Click(object sender, EventArgs e)
        {
            _camera = IPCameraFactory.GetCamera("192.168.115.175:8080", "admin", "admin");

            _camera.CameraStateChanged += _camera_CameraStateChanged;

            _connector.Connect(_camera.VideoChannel, _imageProvider);
            _videoViewerWf.SetImageProvider(_imageProvider);
            _videoViewerWf.Start();

            _camera.Start();
        }

        private void _camera_CameraStateChanged(object sender, CameraStateEventArgs e)
        {
            if (e.State == IPCameraState.Streaming)
            {
                InvokeGuiThread(() => groupBox_Network.Enabled = true);
                ClearGUI();
                GetNetworkSettings();
                if (!_camera.NetworkManager.DefaultConfig.UseDHCP)
                    InvokeGuiThread(() => radioButton_Manual.Checked = true );
            }
        }

        private void ClearGUI()
        {
            InvokeGuiThread(() =>
            {
                textBox_IP.Text = String.Empty;
                textBox_Host.Text = String.Empty;
                textBox_Netmask.Text = String.Empty;
                textBox_Gateway.Text = String.Empty;
                textBox_DNS.Text = String.Empty;
                textBox_NTP_IP.Text = String.Empty;

                textBox_HTTP.Text = String.Empty;
                textBox_HTTPS.Text = String.Empty;
                textBox_RTSP.Text = String.Empty;
                comboBox_HTTP.Items.Clear();
                comboBox_HTTPS.Items.Clear();
                comboBox_RTSP.Items.Clear();
            });
        }

        private void GetNetworkSettings()
        {
            InvokeGuiThread(() =>
            {
                textBox_IP.Text = _camera.NetworkManager.DefaultConfig.IPAddress;
                textBox_Host.Text = _camera.NetworkManager.DefaultConfig.HostName;
                textBox_Netmask.Text = _camera.NetworkManager.DefaultConfig.Netmask;
                textBox_Gateway.Text = _camera.NetworkManager.DefaultConfig.DefaultGateway;
                textBox_DNS.Text = _camera.NetworkManager.DefaultConfig.DNS;
                textBox_NTP_IP.Text = _camera.NetworkManager.DefaultConfig.NTP.IPAddress;

                if (_camera.NetworkManager.HttpPort == null)
                    textBox_HTTP.Enabled = false;
                else
                {
                    foreach (var ports in _camera.NetworkManager.HttpPort.Port)
                    {
                        comboBox_HTTP.Items.Add(ports);
                    }
                }

                if (_camera.NetworkManager.HttpsPort == null)
                    textBox_HTTPS.Enabled = false;
                else
                {
                    foreach (var ports in _camera.NetworkManager.HttpsPort.Port)
                    {
                        comboBox_HTTPS.Items.Add(ports);
                    }
                }

                if (_camera.NetworkManager.RtspPort == null)
                    textBox_RTSP.Enabled = false;
                else
                {
                    foreach (var ports in _camera.NetworkManager.RtspPort.Port)
                    {
                        comboBox_RTSP.Items.Add(ports);
                    }
                }
            });
        }

        private void button_Apply_Click(object sender, EventArgs e)
        {
            if (radioButton_DHCP.Checked)
            {
                _camera.NetworkManager.DefaultConfig.UseDHCP = true;
            }

            if (radioButton_Manual.Checked)
            {
                _camera.NetworkManager.DefaultConfig.UseDHCP = false;

                _camera.NetworkManager.DefaultConfig.IPAddress = textBox_IP.Text;
                _camera.NetworkManager.DefaultConfig.HostName = textBox_Host.Text;
                _camera.NetworkManager.DefaultConfig.Netmask = textBox_Netmask.Text;
                _camera.NetworkManager.DefaultConfig.DefaultGateway = textBox_Gateway.Text;
                _camera.NetworkManager.DefaultConfig.DNS = textBox_DNS.Text;


                if (_camera.NetworkManager.HttpPort != null)
                {
                    _ports.Clear();
                    foreach (var item in comboBox_HTTP.Items)
                    {
                        var ports = Int32.Parse(item.ToString());
                        _ports.Add(ports);
                    }
                    _camera.NetworkManager.HttpPort = new CameraPort(CameraProtocolType.HTTP, true, _ports.ToArray());
                }

                if (_camera.NetworkManager.HttpsPort != null)
                {
                    _ports.Clear();
                    foreach (var item in comboBox_HTTPS.Items)
                    {
                        var ports = Int32.Parse(item.ToString());
                        _ports.Add(ports);
                    }
                    _camera.NetworkManager.HttpsPort = new CameraPort(CameraProtocolType.HTTPS, true, _ports.ToArray());
                }

                if (_camera.NetworkManager.RtspPort != null)
                {
                    _ports.Clear();
                    foreach (var item in comboBox_RTSP.Items)
                    {
                        var ports = Int32.Parse(item.ToString());
                        _ports.Add(ports);
                    }
                    _camera.NetworkManager.RtspPort = new CameraPort(CameraProtocolType.RTSP, true, _ports.ToArray());
                }
            }

            _camera.NetworkManager.ApplyConfig();
        }

        private void button_HTTP_Add_Click(object sender, EventArgs e)
        {
            if (!comboBox_HTTP.Items.Contains(textBox_HTTP.Text))
                comboBox_HTTP.Items.Add(textBox_HTTP.Text);
        }

        private void button_HTTPS_Add_Click(object sender, EventArgs e)
        {
            if (!comboBox_HTTPS.Items.Contains(textBox_HTTPS.Text))
                comboBox_HTTPS.Items.Add(textBox_HTTPS.Text);
        }

        private void button_RTSP_Add_Click(object sender, EventArgs e)
        {
            if (!comboBox_RTSP.Items.Contains(textBox_RTSP.Text))
                comboBox_RTSP.Items.Add(textBox_RTSP.Text);
        }

        private void button_HTTP_Delete_Click(object sender, EventArgs e)
        {
            for (int i = 0; i < comboBox_HTTP.Items.Count; i++)
            {
                if (comboBox_HTTP.Items[i].ToString() == textBox_HTTP.Text)
                    comboBox_HTTP.Items.Remove(comboBox_HTTP.Items[i]);
            }
        }

        private void button_HTTPS_Delete_Click(object sender, EventArgs e)
        {
            for (int i = 0; i < comboBox_HTTPS.Items.Count; i++)
            {
                if (comboBox_HTTPS.Items[i].ToString() == textBox_HTTPS.Text)
                    comboBox_HTTPS.Items.Remove(comboBox_HTTPS.Items[i]);
            }
        }

        private void button_RTSP_Delete_Click(object sender, EventArgs e)
        {
            for (int i = 0; i < comboBox_RTSP.Items.Count; i++)
            {
                if (comboBox_RTSP.Items[i].ToString() == textBox_RTSP.Text)
                    comboBox_RTSP.Items.Remove(comboBox_RTSP.Items[i]);
            }
        }

        private void radioButton_Manual_CheckedChanged(object sender, EventArgs e)
        {
            groupBox_Basic.Enabled = true;
            groupBox_Ports.Enabled = true;
        }

        private void radioButton_DHCP_CheckedChanged(object sender, EventArgs e)
        {
            groupBox_Basic.Enabled = false;
            groupBox_Ports.Enabled = false;
        }

        private void InvokeGuiThread(Action action)
        {
            BeginInvoke(action);
        }
    }
}

(Source: http://www.camera-sdk.com/p_22-how-to-configure-your-onvif-camera-remotely-onvif.html)


It works well, but unfortunately this SDK is not free. Now I use its free trial version, but it will expire soon. Can anybody recommend me an alternative SDK to this one? Or any other C#-based suggestion would be appreciated related to remote IP camera configuration.

I’m looking forward to your answers here or please send me an e-mail to curt.copeland@hotmail.com! Thank you so much in advance!

All the best,
Curt

Can't sign into Lync Store app from Surface 2 externally, but everything else is good

$
0
0

Hi,

I have a client who's Surface Pro 2 tablets can't sign into Lync using the Lync Windows Store app.  They don't have Office on those tablets so they don't have access to the regular Lync clients, so they are trying to use the Windows Store app.

When trying to sign in from outside the network, they don't get any errors but the process of signing in just spins and seems to hang.

They can sign into Lync from external using their Windows Phones, and all other ways of signing in seem to work.

Is there something different that has to be done using the Windows Store app when going external, on a full (non-RT) windows 8 device?  Should I push for having them install the full Lync client?  Would the Lync Basic client be a way to test as well?

Thanks for the help,

Brandon

LyncServer UpgradeReadinessState always Busy

$
0
0

Hallo,

we have a Lync2013 Enterprise Pool with 2 Frontendservers deployed (+1 Mediation Server + 1 EdgeServer). I want to update the Lync Environment to the latest Cu but it always (since 8 hours) returns busy when I run get-CsPoolUpgradeReadinessState.  All Servers are Active (see Output of the Commands below).

Another Post in this Forum suggests that a missing database update could cause this. But I checked the Databaseversions and all databases seems up-to-date.

Do you have any Ideas?

Regards

Thomas

PoolName             : hqpool.company.com
State                : Busy
TotalFrontends       : 2
TotalActiveFrontends : 2
UpgradeDomains       : {
                       UpgradeDomainName: UpgradeDomain1
                       IsReadyForUpgrade: False
                       Total FrontEnds: 1
                       Total Active FrontEnds: 1
                       Frontends: lyncfe01.company.com
                       ,
                       UpgradeDomainName: UpgradeDomain2
                       IsReadyForUpgrade: False
                       Total FrontEnds: 1
                       Total Active FrontEnds: 1
                       Frontends: lyncfe02.company.com
                       }

Checking...

        pool fqdn: hqpool.company.com
  front end fqdns: lyncfe01.company.com
                   lyncfe02.company.com
 primary sql fqdn: sql01.company.com

Local Databases: (lyncfe01.company.com)


DatabaseName ExpectedVersion InstalledVersion UpdateRequired
------------ --------------- ---------------- --------------
lyss         12.32.2         12.32.2          no
rtc          125.6.3         125.6.3          no
rtcdyn       125.6.3         0.0.0            no
xds                          10.13.2          no


Backend Databases:


DatabaseName ExpectedVersion InstalledVersion UpdateRequired
------------ --------------- ---------------- --------------
cpsdyn       1.1.2           1.1.2            no
LcsCDR       39.82.2         39.82.2          no
LcsLog       24.40.0         24.40.0          no
lis          3.1.1           3.1.1            no
QoEMetrics   62.90.1         62.90.1          no
rgsconfig    5.5.1           5.5.1            no
rgsdyn       2.2.1           2.2.1            no
rtcab        62.42.2         62.42.2          no
rtcshared    5.0.1           5.0.1            no
rtcxds       15.13.1         15.13.1          no
xds          10.13.2         10.13.2          no


Central Management Databases:


DatabaseName ExpectedVersion InstalledVersion UpdateRequired
------------ --------------- ---------------- --------------
lis          3.1.1           3.1.1            no
xds          10.13.2         10.13.2          no

Lync 2013 Front End SIP/2.0 500 Compression algorithm refused

$
0
0

I've deployed a brand new Lync 2013 environment hosted on Windows Server 2012 R2 that is currently in co-existence mode with my Lync 2010 environment. 
I have SCOM 2012 monitoring the environment and it recently started reporting that one or more of my front end servers
was in a critical state.  Diving into it revealed the following perf counter threshold was being tripped:

Time Sampled: 3/26/2014 2:33:30 PM
Object Name: LS:SIP - Responses
Counter Name: SIP - Local 500 Responses
Instance Name: 
First Value: 14287
Last Value: 14340
Delta Value: 53

Using OCSLOGGER.exe on the front end to capture logs, i trapped the following:

TL_INFO(TF_PROTOCOL) [11]9138.1C58::03/26/2014-19:12:39.098.0022c780 (SIPStack,SIPAdminLog::ProtocolRecord::Flush:ProtocolRecord.cpp(265))[120713120] $$begin_record
Trace-Correlation-Id: 120713120
Instance-Id: 7D80EB
Direction: outgoing;source="local"
Peer: poolA.contoso.com:63820
Message-Type: response
Start-Line: SIP/2.0 500 Compression algorithm refused
FROM: <sip:poolA.contoso.com>;ms-fe=FEserver1.contoso.com
To: <sip:poolA.contoso.com>;tag=F8B88CAB38613EB380773027C56D94AF
CALL-ID: 986f9f568c794ce39d33d7158376157b
CSEQ: 1 NEGOTIATE
Via: SIP/2.0/TLS 10.154.228.225:63820;ms-received-port=63820;ms-received-cid=C3D7C00
Content-Length: 0
ms-diagnostics: 2;reason="See response code and reason phrase";HRESULT="0xC3E93C0F(SIP_E_REACHED_CONFIGURED_LIMIT)";source="FEserver1.contoso.com"
Server: RTC/5.0
$$end_record

The only recent change made to the front end servers was making the registry change outlined in this article: http://support.microsoft.com/kb/2901554/en-us so i'm wondering if that has something to do with it.


Alert: [LYNC] The total number of 500 responses generated by the server.

$
0
0

I keep getting this below alert from our Front end servers.  We have CU5 installed on those. 

We have 2 Lync 2013 pools however alerts pops up on one of the pool and interesting fact is that alerts are triggered mostly off peak hours.  I don't see any impact however would want a solution for this alert.

Alert: [LYNC] The total number of 500 responses generated by the server.
Source: LS Registrar Component [Front end server FQDN]
Path: Front end server FQDN
Last modified by: System
Last modified time: 10/19/2014 10:26:22 PM
Alert description: Perf Object Name: 
Perf Counter Name: SIP - Local 500 Responses
Perf Counter Value: 106
Error Threshold: 50


Lync Server 2013 in a Remote Desktop Environment

$
0
0

Hello Community,

We have a client who is sold on Lync. He wants to install Lync server in a Terminal Server but his environment is RDHS 2008v2 and his end users have thin clients. According to MS official position It is not supported. Has anyone successfully implemented this ? If yes what are the pitfalls that lay ahead with regards to audio/video redirection, desktop sharing etc. He has traditional phones but really he wants to get rid of them and go Lync full blown.

Checklist to add additional frontend server in LYNC 2013 pool with Mediation server collocated on frontend server

$
0
0

Hi,

In LYNC 2013 "What is the checklist to add additional frontend server in pool where mediation server collocated on frontend server?"

We have 50 SIP domains

Thanks


jitender

Office Web Apps deploy certificate error

$
0
0

IIS Using Domain Certificate, when access "https://fqdn/hosting/discovery"  with certificate error. 

Office web apps using same CA with Front End Server.

new web farm with this new certificate name.

Any suggest?

Thanks.

Call park service start failed

$
0
0

Has anybody seen this before?It creates this event on the Lync Front Server and Application Server not starting because of call park service not.

An unhandled exception was encountered in Call Park Service.

Exception: System.TypeLoadException: Could not load type 'Microsoft.Rtc.Management.Core.OrbitType' from assembly 'Microsoft.Rtc.Management.Core, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.
   at Microsoft.Rtc.Applications.Cps.CpsConfigManager.ProcessOrbitsFromSquid(CallParkOrbits orbits, Boolean forceDeleteOrbits)
   at Microsoft.Rtc.Applications.Cps.CpsConfigManager.OnCallParkOrbitsChangedEvent(Object source, ConfigChangedEventArgs`1 eventArgs)
   at Microsoft.Rtc.Management.ServiceConsumer.ConfigReg`1.OnTypedXmlChanged(Object source, TypedXmlChangedEventArgs eventArgs)
   at Microsoft.Rtc.Management.ServiceConsumer.RegistrationContext.ProcessChange(TypedXmlReader typedXmlReader)
   at Microsoft.Rtc.Management.ServiceConsumer.RegistrationContext.ApplyLatestDataAndProcessChange(KeyedCollection`2 changes, TypedXmlReader typedXmlReader)
   at Microsoft.Rtc.Management.ServiceConsumer.CallbackManager.OnAnchoredXmlChanged(Object source, AnchoredXmlChangedEventArgs eventArgs)
   at Microsoft.Rtc.Management.ServiceConsumer.TypedXmlReader.OnAnchoredXmlChanged(Object source, AnchoredXmlChangedEventArgs eventArgs)
   at Microsoft.Rtc.Management.ServiceConsumer.CachedAnchoredXmlReader.OnAnchoredXmlChanged(Object source, AnchoredXmlChangedEventArgs eventArgs)
   at Microsoft.Rtc.Management.Store.Sql.SqlWatchedKeySet.PollTimerEvent(Object state)
   at Microsoft.Rtc.Management.Internal.Utilities.SingleshotTimer.InternalCallback(Object obj)
   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
   at System.Threading.TimerQueueTimer.CallCallback()
   at System.Threading.TimerQueueTimer.Fire()
   at System.Threading.TimerQueue.FireNextTimers()
Cause: Internal error in Call Park Service.
Resolution:
Restart the service.  If the problem persists contact product support.



Address book not working with migrated test user

$
0
0
I have a Lync 2010 side-by-side with a new Lync 2013 environment.  Lync 2010 users have an address book that is working, however, the address book for my Lync 2013 test user won't synchronize.  When I run update-csaddress book it's successful. The only thing I haven't done is transfer the internal dns "sip" to the new FE server.  Would I need to transfer this over first in order for the address book to synchronize successfully?

ST


lync 2013 Edge pool deployment with hardware load balancer

$
0
0

Dear All,

we are planning to deploy Lync 2013 Edgepool with hardware load balancer, I have a question with regards to the Ip address configuration of lync edge external interface.

we are planning to deploy edge servers behind the external firewall and configure  edge external interface with 172.16.18.0/24 network and internal network with 172.16.11.0/24 network. The edge pool will be load balanced external and internal interface with Kemp load master.

we are assigning 9 public ips for edge pool, 3 for edge1 , 3 for edge2 and 3 for HLB vip. All the ports will be nated to the corresponding private Ips for edge server ext private ips and HLB ip address.

All the external domain name will point to the HLB public ips.

please help me , this configuration is best practice or have to configure Public Ip directly on the edge servers ext interface and HLB.


what is the domain name(FQDN) and access edge server(FQDN) for microsoft.com

$
0
0

on of my client wanted to enable Lync federation with Microsoft.com, what must be the domain name and access edge server name?

Is the following is correct? 

domain name: Microsoft.com

Access edge server name: sip.microsoft.com 


Lync Mobility 2013 user issue

$
0
0

Hi All,

We have deployed lync 2013 mobility with citrix netscaler.

We are having issue with the some of the users are not able to sign in with lync mobile 2013 with android, If we try to access other user account with same device it is working fine.

I have verified lync certificate, DNS configuration and we have default policy for mobility enabled for all users.

I am getting unknown error with the user having issue.

Below is the client logs for review.

Please suggest what could be the cause for that user.

--------- beginning of /dev/log/system

05-13 13:30:26.378 14791 14791 E ActivityThread: Performing stop of activity that is not resumed: {com.microsoft.office.lync15/com.microsoft.office.lync.ui.login.SigninActivity}

05-13 13:30:26.378 14791 14791 E ActivityThread: java.lang.RuntimeException: Performing stop of activity that is not resumed: {com.microsoft.office.lync15/com.microsoft.office.lync.ui.login.SigninActivity}

05-13 13:30:26.378 14791 14791 E ActivityThread: at android.app.ActivityThread.performStopActivityInner(ActivityThread.java:3228)

05-13 13:30:26.378 14791 14791 E ActivityThread: at android.app.ActivityThread.handleStopActivity(ActivityThread.java:3315)

05-13 13:30:26.378 14791 14791 E ActivityThread: at android.app.ActivityThread.access$1100(ActivityThread.java:139)

05-13 13:30:26.378 14791 14791 E ActivityThread: at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1237)

05-13 13:30:26.378 14791 14791 E ActivityThread: at android.os.Handler.dispatchMessage(Handler.java:102)

05-13 13:30:26.378 14791 14791 E ActivityThread: at android.os.Looper.loop(Looper.java:136)

05-13 13:30:26.378 14791 14791 E ActivityThread: at android.app.ActivityThread.main(ActivityThread.java:5102)

05-13 13:30:26.378 14791 14791 E ActivityThread: at java.lang.reflect.Method.invokeNative(Native Method)

05-13 13:30:26.378 14791 14791 E ActivityThread: at java.lang.reflect.Method.invoke(Method.java:515)

05-13 13:30:26.378 14791 14791 E ActivityThread: at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:785)

05-13 13:30:26.378 14791 14791 E ActivityThread: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:601)

05-13 13:30:26.378 14791 14791 E ActivityThread: at dalvik.system.NativeStart.main(Native Method)

--------- beginning of /dev/log/main

05-13 13:35:13.974 14791 14889 W DefaultRequestDirector: Authentication error: Unable to respond to any of these challenges: {}

05-13 13:35:18.979 14791 14791 D e       : bool

05-13 13:35:18.982 14791 14791 D e       : bool


Device Information
BUILD VERSION : 4.4.2
HARDWARE : qcom
CPU MAX FREQ : 1190MHz
BACK FACING CAMERA SPEC
Supported Preview Size : 1280X720, 864X480, 800X480, 768X432, 720X480, 640X480, 576X432, 480X320, 384X288, 352X288, 320X240, 240X160, 176X144
Supported Picture Size : 2592X1944, 2592X1456, 2048X1536, 1920X1080, 1600X1200, 1280X960, 1280X768, 1280X720, 1024X768, 800X600, 800X480, 720X480, 640X480
Supported Video Size : 1280X720, 864X480, 800X480, 720X480, 640X480, 480X320, 352X288, 320X240, 176X144
FRONT FACING CAMERA SPEC
Supported Preview Size : 1280X720, 864X480, 800X480, 768X432, 720X480, 640X480, 576X432, 480X320, 384X288, 352X288, 320X240, 240X160, 176X144
Supported Picture Size : 1280X960, 1280X768, 1280X720, 1024X768, 800X600, 800X480, 720X480, 640X480
Supported Video Size : 1280X720, 864X480, 800X480, 720X480, 640X480, 480X320, 352X288, 320X240, 176X144
DISPLAY DENSITY : 320 dpi--------- beginning of /dev/log/main

05-13 13:35:33.692 14791 14791 D SigninActivity: onResume()

05-13 13:35:37.965 14791 14791 I LyncPerformance: PerfBegin|2-12:Signin - Started|1399968337965

05-13 13:35:37.984 14791 14791 I LYNC    : INFO APPLICATION .\capplication.cpp/1824:Initialized the sign in BRB logger

05-13 13:35:37.984 14791 14791 I LYNC    : INFO APPLICATION .\cucwaappsession.cpp/434:SignIn. signInAsUserState=2, actualState=0

05-13 13:35:37.985 14791 14791 I LYNC    : INFO APPLICATION .\cucwaappsession.cpp/1234:Updating URLs. For Ucwa: discoveredFqdn=https://lyncext.example.com, applicationsRelativeUrl=/ucwa/v1/applications, configuredInternal=https://lyncent.example.com, configuredExternal=https://lyncedge.example.com, loc=1, auto-discovery=1

05-13 13:35:37.985 14791 14791 I LYNC    : INFO APPLICATION .\cucwaappsession.cpp/975:CUcwaAppSession canceling all requests

05-13 13:35:37.985 14791 14791 I LYNC    : INFO APPLICATION .\cucwaappsession.cpp/718:CUcwaAppSession::sendCreateApplicationRequest called

05-13 13:35:37.985 14791 14791 I LYNC    : INFO TRANSPORT E:\LcsSource\icomo\main\src\dev\lyncmobile/ucmp/transport/ucwa/public/CUcwaSession.h/66:Updating app instance URL from  -> 

05-13 13:35:37.986 14791 14791 I LYNC    : INFO APPLICATION .\cucwaappsession.cpp/1234:Updating URLs. For Ucwa: discoveredFqdn=https://lyncext.example.com, applicationsRelativeUrl=/ucwa/v1/applications, configuredInternal=https://lyncent.example.com, configuredExternal=https://lyncedge.example.com, loc=1, auto-discovery=1

05-13 13:35:37.986 14791 14791 I LYNC    : INFO TRANSPORT .\cucwasession.cpp/373:App instance URL is empty(/ucwa/v1/applications)

05-13 13:35:37.986 14791 14791 I LYNC    : INFO TRANSPORT .\cmetadatamanager.cpp/403:Received a request to get the meta data of type 0 for url https://lyncext.example.com/ucwa/v1/applications

05-13 13:35:37.986 14791 14791 I LYNC    : INFO TRANSPORT .\cmetadatamanager.cpp/461:Sending Unauthenticated get to get the web-ticket url

05-13 13:35:37.986 14791 14791 V HttpConnection: get native 1652754976 httpCallback com.microsoft.office.lync.platform.HttpConnectionNativeCallback$1@428f4cc8

05-13 13:35:37.987 14791 14791 I LYNC    : INFO TRANSPORT .\ccredentialmanager.cpp/176:getSpecificCredential for serviceId(4) returning: credType (1) signInName () domain () username () password.empty() (1) certificate.isValid() (0) privateKey.empty() (1) compatibleServiceIds(4)

05-13 13:35:37.987 14791 14791 I HttpConnection: originalurl is https://lyncext.example.com/ucwa/v1/applications method Get

05-13 13:35:37.987 14791 14791 I HttpConnection: decodedurl is https://lyncext.example.com/ucwa/v1/applications

05-13 13:35:37.991 14791 14791 I LYNC    : INFO TRANSPORT .\transportutilityfunctions.cpp/634:<SentRequest>

05-13 13:35:37.991 14791 14791 I LYNC    : GET https://lyncext.example.com/ucwa/v1/applications

05-13 13:35:37.991 14791 14791 I LYNC    : Request Id: 0x61d8f248

05-13 13:35:37.991 14791 14791 I LYNC    : HttpHeader:Accept 

05-13 13:35:37.991 14791 14791 I LYNC    : HttpHeader:X-MS-WebTicket xxxxxxxxxx

05-13 13:35:37.991 14791 14791 I LYNC    : 

05-13 13:35:37.991 14791 14791 I LYNC    : 

05-13 13:35:37.991 14791 14791 I LYNC    : </SentRequest>

05-13 13:35:37.991 14791 14791 V HttpConnection: post request: https://lyncext.example.com/ucwa/v1/applications

05-13 13:35:37.991 14791 14791 I LYNC    : INFO TRANSPORT .\cauthenticationresolver.cpp/109:Waiting on Meta Data from https://lyncext.example.com/ucwa/v1/applications

05-13 13:35:37.992 14791 14791 I LYNC    : INFO APPLICATION .\ctransportrequestretrialqueue.cpp/385:Submitting new req. POST-Application(0x628b54a0); Timeout timer started

05-13 13:35:37.992 14791 14791 I LYNC    : INFO APPLICATION .\cucwaappsession.cpp/998:CUcwaAppSession::setNewActualState() state=2

05-13 13:35:37.992 14791 14888 V HttpConnection: send request: https://lyncext.example.com/ucwa/v1/applications

05-13 13:35:37.992 14791 14888 I HttpEngine: AutoRedirect true for https://lyncext.example.com/ucwa/v1/applications and setting it to FALSE for manual handling

05-13 13:35:37.992 14791 14888 V HttpEngine: Executing request with https://lyncext.example.com/ucwa/v1/applications Connection pool count is  3

05-13 13:35:37.994 14791 14791 I LYNC    : INFO APPLICATION .\capplication.cpp/1858:CUcwaAppSession::signIn() succeeded

05-13 13:35:38.017 14791 14791 I UcClientStateManager: New UI State: ActualState = IsSigningIn DesiredState = BeSignedIn  DataAvailable = false New state=class com.microsoft.office.lync.ui.login.SigningInActivity

05-13 13:35:38.028 14791 14791 V LyncActivity: finish being called for com.microsoft.office.lync.ui.login.SigninActivity

05-13 13:35:38.076 14791 14791 D SigninActivity: onPause()

05-13 13:35:38.085 14791 14791 D SigningInActivity: onCreate()

05-13 13:35:38.085 14791 14791 V ActivityMonitor: Activity Create: com.microsoft.office.lync.ui.login.SigningInActivity

05-13 13:35:38.088 14791 14791 W AccessibilityViewFactory: Failed to find class for view RelativeLayout

05-13 13:35:38.127 14791 14791 D SigningInActivity: onStart()

05-13 13:35:38.127 14791 14791 V ActivityMonitor: Activity Start: com.microsoft.office.lync.ui.login.SigningInActivity

05-13 13:35:38.127 14791 14791 D SigningInActivity: onResume()

05-13 13:35:38.402 14791 14888 W DefaultRequestDirector: Authentication error: Unable to respond to any of these challenges: {}

05-13 13:35:38.402 14791 14888 V HttpConnection: got Response: https://lyncext.example.com/ucwa/v1/applications callback com.microsoft.office.lync.platform.HttpConnectionNativeCallback$1@428f4cc8

05-13 13:35:38.402 14791 14888 V HttpConnection: got Response: https://lyncext.example.com/ucwa/v1/applications statusCode: 401 callback com.microsoft.office.lync.platform.HttpConnectionNativeCallback$1@428f4cc8

05-13 13:35:38.403 14791 14791 V HttpConnectionNativeCallback: exception none statusCode 401

05-13 13:35:38.403 14791 14791 I LYNC    : INFO TRANSPORT .\chttprequestprocessor.cpp/173:Received response of request() with status = 0x0

05-13 13:35:38.404 14791 14791 I LYNC    : INFO TRANSPORT .\transportutilityfunctions.cpp/928:<ReceivedResponse>

05-13 13:35:38.404 14791 14791 I LYNC    : GET https://lyncext.example.com/ucwa/v1/applications

05-13 13:35:38.404 14791 14791 I LYNC    : Request Id: 0x61d8f248

05-13 13:35:38.404 14791 14791 I LYNC    : HttpHeader:Content-Length 1293

05-13 13:35:38.404 14791 14791 I LYNC    : HttpHeader:Content-Type text/html

05-13 13:35:38.404 14791 14791 I LYNC    : HttpHeader:Date Tue, 13 May 2014 08:05:35 GMT

05-13 13:35:38.404 14791 14791 I LYNC    : HttpHeader:Server Microsoft-IIS/7.5

05-13 13:35:38.404 14791 14791 I LYNC    : HttpHeader:StatusCode 401

05-13 13:35:38.404 14791 14791 I LYNC    : HttpHeader:X-MS-Server-Fqdn SRV01LYNCFE002.example.com

05-13 13:35:38.404 14791 14791 I LYNC    : HttpHeader:X-MS-WebTicketSupported cwt,saml

05-13 13:35:38.404 14791 14791 I LYNC    : HttpHeader:X-MS-WebTicketURL https://lyncext.example.com/WebTicket/WebTicketService.svc

05-13 13:35:38.404 14791 14791 I LYNC    : HttpHeader:X-Powered-By ASP.NET

05-13 13:35:38.404 14791 14791 I LYNC    : 

05-13 13:35:38.404 14791 14791 I LYNC    : <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

05-13 13:35:38.404 14791 14791 I LYNC    : <html xmlns="http://www.w3.org/1999/xhtml">

05-13 13:35:38.404 14791 14791 I LYNC    : <head>

05-13 13:35:38.404 14791 14791 I LYNC    : <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>

05-13 13:35:38.404 14791 14791 I LYNC    : <title>401 - Unauthorized: Access is denied due to invalid credentials.</title>

05-13 13:35:38.404 14791 14791 I LYNC    : <style type="text/css">

05-13 13:35:38.404 14791 14791 I LYNC    : <!--

05-13 13:35:38.404 14791 14791 I LYNC    : body{margin:0;font-size:.7em;font-family:Verdana, Arial, Helvetica, sans-serif;background:#EEEEEE;}

05-13 13:35:38.404 14791 14791 I LYNC    : fieldset{padding:0 15px 10px 15px;} 

05-13 13:35:38.404 14791 14791 I LYNC    : h1{font-size:2.4em;margin:0;color:#FFF;}

05-13 13:35:38.404 14791 14791 I LYNC    : h2{font-size:1.7em;margin:0;color:#CC0000;} 

05-13 13:35:38.404 14791 14791 I LYNC    : h3{font-size:1.2em;margin:10px 0 0 0;color:#000000;} 

05-13 13:35:38.404 14791 14791 I LYNC    : #header{width:96%;margin:0 0 0 0;padding:6px 2% 6px 2%;font-family:"trebuchet MS", Verdana, sans-serif;color:#FFF;

05-13 13:35:38.404 14791 14791 I LYNC    : background-color:#555555;}

05-13 13:35:38.404 14791 14791 I LYNC    : #content{margin:0 0 0 2%;;}

05-13 13:35:38.404 14791 14791 I LYNC    : .content-container{background:#FFF;width:96%;margin-top:8px;padding:10px;;}

05-13 13:35:38.404 14791 14791 I LYNC    : -->

05-13 13:35:38.404 14791 14791 I LYNC    : </style>

05-13 13:35:38.404 14791 14791 I LYNC    : </head>

05-13 13:35:38.404 14791 14791 I LYNC    : <body>

05-13 13:35:38.404 14791 14791 I LYNC    : <div id="header"><h1>Server Error</h1></div>

05-13 13:35:38.404 14791 14791 I LYNC    : <div id="content">

05-13 13:35:38.404 14791 14791 I LYNC    :  <div class="content-container"><fieldset>

05-13 13:35:38.404 14791 14791 I LYNC    :   <h2>401 - Unauthorized: Access is denied due to invalid credentials.</h2>

05-13 13:35:38.404 14791 14791 I LYNC    :   <h3>You do not have permission to view this directory or page using the credentials that you supplied.</h3>

05-13 13:35:38.404 14791 14791 I LYNC    :  </fieldset></div>

05-13 13:35:38.404 14791 14791 I LYNC    : </div>

05-13 13:35:38.404 14791 14791 I LYNC    : </body>

05-13 13:35:38.404 14791 14791 I LYNC    : </html>

05-13 13:35:38.404 14791 14791 I LYNC    : 

05-13 13:35:38.404 14791 14791 I LYNC    : </ReceivedResponse>

05-13 13:35:38.404 14791 14791 I LYNC    : INFO TRANSPORT .\chttprequestprocessor.cpp/266:Sending event to main thread for request(0x61d8f248)

05-13 13:35:38.404 14791 14791 I LYNC    : INFO TRANSPORT .\cmetadatamanager.cpp/575:Received response for meta data request of type 60 with status 0

05-13 13:35:38.404 14791 14791 I LYNC    : INFO TRANSPORT .\cmetadatamanager.cpp/645:Base service url constructed from unauth-get-response is https://lyncext.example.com/ucwa/v1/applications

05-13 13:35:38.405 14791 14791 I LYNC    : INFO TRANSPORT .\cmetadatamanager.cpp/693:Added a binding based on the unauth-get response

05-13 13:35:38.405 14791 14791 I LYNC    : INFO TRANSPORT .\cauthenticationresolver.cpp/208:MetaData retrieval for url https://lyncext.example.com/ucwa/v1/applications completed with status 0

05-13 13:35:38.405 14791 14791 I LYNC    : INFO TRANSPORT .\cauthenticationresolver.cpp/238:Deleting 1 pended Meta data requests for url https://lyncext.example.com/ucwa/v1/applications

05-13 13:35:38.405 14791 14791 I LYNC    : INFO TRANSPORT .\cmetadatamanager.cpp/403:Received a request to get the meta data of type 0 for url https://lyncext.example.com/ucwa/v1/applications

05-13 13:35:38.405 14791 14791 I LYNC    : INFO TRANSPORT .\cauthenticationresolver.cpp/316:Executing request after meta data successfully retrieved

05-13 13:35:38.405 14791 14791 I LYNC    : INFO TRANSPORT .\cmetadatamanager.cpp/403:Received a request to get the meta data of type 0 for url https://lyncext.example.com/ucwa/v1/applications

05-13 13:35:38.405 14791 14791 I LYNC    : INFO TRANSPORT .\ccredentialmanager.cpp/176:getSpecificCredential for serviceId(1) returning: credType (1) signInName (abc@example.com) domain (example) username (abc) password.empty() (0) certificate.isValid() (0) privateKey.empty() (1) compatibleServiceIds(1)

05-13 13:35:38.406 14791 14791 I LYNC    : INFO TRANSPORT .\cwebticketsession.cpp/447:return the cached web-ticket token

05-13 13:35:38.406 14791 14791 I LYNC    : INFO TRANSPORT .\cbindingtransformationfactory.cpp/379:Using endpoint address https://lyncext.example.com/ucwa/v1/applications as the server address

05-13 13:35:38.406 14791 14791 V HttpConnection: get native 1652754976 httpCallback com.microsoft.office.lync.platform.HttpConnectionNativeCallback$1@42b4f7f0

05-13 13:35:38.406 14791 14791 I LYNC    : INFO TRANSPORT .\ccredentialmanager.cpp/176:getSpecificCredential for serviceId(4) returning: credType (1) signInName () domain () username () password.empty() (1) certificate.isValid() (0) privateKey.empty() (1) compatibleServiceIds(4)

05-13 13:35:38.410 14791 14791 I HttpConnection: originalurl is https://lyncext.example.com/ucwa/v1/applications method Post

05-13 13:35:38.410 14791 14791 I HttpConnection: decodedurl is https://lyncext.example.com/ucwa/v1/applications

05-13 13:35:38.423 14791 14791 I LYNC    : INFO TRANSPORT .\transportutilityfunctions.cpp/634:<SentRequest>

05-13 13:35:38.423 14791 14791 I LYNC    : POST https://lyncext.example.com/ucwa/v1/applications

05-13 13:35:38.423 14791 14791 I LYNC    : Request Id: 0x628b54a0

05-13 13:35:38.423 14791 14791 I LYNC    : HttpHeader:Accept application/vnd.microsoft.com.ucwa+xml

05-13 13:35:38.423 14791 14791 I LYNC    : HttpHeader:Content-Type application/vnd.microsoft.com.ucwa+xml

05-13 13:35:38.423 14791 14791 I LYNC    : HttpHeader:X-MS-Namespace internal

05-13 13:35:38.423 14791 14791 I LYNC    : HttpHeader:X-MS-WebTicket xxxxxxxxxx

05-13 13:35:38.423 14791 14791 I LYNC    : 

05-13 13:35:38.423 14791 14791 I LYNC    : <input xmlns="http://schemas.microsoft.com/rtc/2012/03/ucwa">

05-13 13:35:38.423 14791 14791 I LYNC    : <property name="culture">en-US</property>

05-13 13:35:38.423 14791 14791 I LYNC    : <property name="endpointId">Ucmp:9986d675-0000-0000-4134-e64ed61e028f;AndroidLync;8924d157-9ef2-455d-b83f-1cb40c4110ef</property>

05-13 13:35:38.423 14791 14791 I LYNC    : <property name="type">Phone</property>

05-13 13:35:38.423 14791 14791 I LYNC    : <property name="userAgent">AndroidLync/5.4.1106.0 (XT1033 Android 4.4.2)</property>

05-13 13:35:38.423 14791 14791 I LYNC    : </input>

05-13 13:35:38.423 14791 14791 I LYNC    : 

05-13 13:35:38.423 14791 14791 I LYNC    : </SentRequest>

05-13 13:35:38.423 14791 14791 V HttpConnection: set body- length=372

05-13 13:35:38.423 14791 14791 V HttpConnection: post request: https://lyncext.example.com/ucwa/v1/applications

05-13 13:35:38.423 14791 14889 V HttpConnection: send request: https://lyncext.example.com/ucwa/v1/applications

05-13 13:35:38.427 14791 14889 I HttpEngine: AutoRedirect true for https://lyncext.example.com/ucwa/v1/applications and setting it to FALSE for manual handling

05-13 13:35:38.427 14791 14889 V HttpEngine: Executing request with https://lyncext.example.com/ucwa/v1/applications Connection pool count is  3

05-13 13:35:38.543 14791 14791 D SigninActivity: onStop()

05-13 13:35:38.544 14791 14791 V ActivityMonitor: Activity Stop: com.microsoft.office.lync.ui.login.SigninActivity

05-13 13:35:38.544 14791 14791 D SigninActivity: onDestroy()

05-13 13:35:38.544 14791 14791 V ActivityMonitor: Activity Destroy: com.microsoft.office.lync.ui.login.SigninActivity

05-13 13:35:38.985 14791 14889 V HttpConnection: got Response: https://lyncext.example.com/ucwa/v1/applications callback com.microsoft.office.lync.platform.HttpConnectionNativeCallback$1@42b4f7f0

05-13 13:35:38.985 14791 14889 V HttpConnection: got Response: https://lyncext.example.com/ucwa/v1/applications statusCode: 404 callback com.microsoft.office.lync.platform.HttpConnectionNativeCallback$1@42b4f7f0

05-13 13:35:38.985 14791 14791 V HttpConnectionNativeCallback: exception none statusCode 404

05-13 13:35:38.986 14791 14791 I LYNC    : INFO TRANSPORT .\chttprequestprocessor.cpp/173:Received response of request() with status = 0x0

05-13 13:35:38.987 14791 14791 I LYNC    : INFO TRANSPORT .\transportutilityfunctions.cpp/928:<ReceivedResponse>

05-13 13:35:38.987 14791 14791 I LYNC    : POST https://lyncext.example.com/ucwa/v1/applications

05-13 13:35:38.987 14791 14791 I LYNC    : Request Id: 0x628b54a0

05-13 13:35:38.987 14791 14791 I LYNC    : HttpHeader:Cache-Control private

05-13 13:35:38.987 14791 14791 I LYNC    : HttpHeader:Content-Length 1245

05-13 13:35:38.987 14791 14791 I LYNC    : HttpHeader:Content-Type text/html

05-13 13:35:38.987 14791 14791 I LYNC    : HttpHeader:Date Tue, 13 May 2014 08:05:35 GMT

Change Network Interfaces For Lync Edge Servers

$
0
0
I'm trying to replicate an existing Lync server setup in a sandbox environment. There is also a Lync Edge server as part of that infrastructure. The problem is that when the Edge server is brought to the sandbox virtual environment, the network details are lost and two brand new network adapters are created. I'm assigning the same IPs used previously - but, when the Lync Edge server is initially provisioned, one must indicate which adapter is used for Internet and which is internal (one article here) - how do I go about changing the configuration now ?

Core Components Update Failed

$
0
0

 hello everyone anybody seen this before?

Restricting ports in Lync 2013

$
0
0

We have a new Aruba High density WI FI network and run Microsoft Lync 2013 as the phone system. How the wifi works is if your a company owned laptop you reside on the clean side of the network, should i come in with my Own laptop i can still work but sit on the dirty or guest side.

As present the full port needs for Lync are open through the DMZ, but as always security want to narrow down the ports lync communicates over.

what is the best way to do this, would restricting the firewall ports on the DMZ make Lync fall over or will the media stream just hunt down an open port ?  or is it best to restrict the ports on Lync itsself and then narrow the firewall down.

how fine can you go with port narrowing ?

We only need

Ip and enterprise Voice

File transfer and screen sharing

Video

3 way Conferencing

Any steer would be great


Lync 2010 to Lync 2013 Trusted application Migration

Viewing all 5984 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>