Lync 2013 Whiteboard attach picture with proxy server

Hi all,
After solving the issue with WAC server, I able to present PowerPoint slide. Attaching picture in Whiteboard still a issue remained (Blank after attach pic).
After few troubleshooting problem exist at IE proxy. If I remove the proxy, I can see the image attached .
I had try to put the WAC server IP and name in the proxy exception list but problem still remained.
Any suggestion?
Thanks and Regards,
Low
http://social.technet.microsoft.com/Forums/en-US/d52cea5b-7370-4293-9a7c-a3b4f5b32185/lync-2013-whiteboard-attach-picture-and-power-point-issue?forum=lyncconferencing

Publish WAC Server on your proxy server, you can refer below link
http://blogs.technet.com/b/dodeitte/archive/2013/11/10/issue-with-office-web-apps-server-2013-published-externally-using-tmg-2010.aspx
Please remember, if you see a post that helped you please click "Vote As Helpful" and if it answered your question, please click "Mark As Answer"
Mai Ali | My blog: Technical

Similar Messages

  • JAX-WS client - WebLogic - SSL with proxy server

    Good night!
    I'm having trouble communicating with webservices using certificate authentication (weblogic.wsee.jaxws.sslclient.PersistentSSLInfo) through and going through a proxy server (weblogic.wsee.jaxws.proxy.ClientProxyFeature) .
    If communication with the webservice is done directly (no proxy server) everything happens perfectly, but to set the proxy server I get the exception "BAD_CERTIFICATE." it is as if the certificate was not attached in the request.
    The webservice client was generated by JDeveloper.
    Has anyone experienced this problem?
    Sorry for my bad english
    Exception
    javax.xml.ws.WebServiceException: javax.net.ssl.SSLKeyException: FATAL Alert:BAD_CERTIFICATE - A corrupt or unuseable certificate was received.
         at com.sun.xml.ws.transport.http.client.HttpClientTransport.readResponseCodeAndMessage(HttpClientTransport.java:218)
         at com.sun.xml.ws.transport.http.client.HttpTransportPipe.process(HttpTransportPipe.java:204)
         at com.sun.xml.ws.transport.http.client.HttpTransportPipe.processRequest(HttpTransportPipe.java:124)
         at com.sun.xml.ws.transport.DeferredTransportPipe.processRequest(DeferredTransportPipe.java:121)
         at com.sun.xml.ws.api.pipe.Fiber.__doRun(Fiber.java:866)
         at com.sun.xml.ws.api.pipe.Fiber._doRun(Fiber.java:815)
         at com.sun.xml.ws.api.pipe.Fiber.doRun(Fiber.java:778)
         at com.sun.xml.ws.api.pipe.Fiber.runSync(Fiber.java:680)
         at com.sun.xml.ws.client.Stub.process(Stub.java:272)
         at com.sun.xml.ws.client.sei.SEIStub.doProcess(SEIStub.java:153)
         at com.sun.xml.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:115)
         at com.sun.xml.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:95)
         at com.sun.xml.ws.client.sei.SEIStub.invoke(SEIStub.java:136)
         at $Proxy30.cleCadastroLote(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at weblogic.wsee.jaxws.spi.ClientInstanceInvocationHandler.invoke(ClientInstanceInvocationHandler.java:84)
         at $Proxy31.cleCadastroLote(Unknown Source)
         at br.com.tbl.ws.CleCadastroPortClient.main(CleCadastroPortClient.java:51)
    Webservice client with proxy server (error)
    import weblogic.wsee.jaxws.sslclient.PersistentSSLInfo;
    import javax.xml.ws.BindingProvider;
    import weblogic.wsee.jaxws.JAXWSProperties;
    import weblogic.wsee.jaxws.proxy.ClientProxyFeature;
    import weblogic.wsee.jaxws.sslclient.SSLClientUtil;
    public class CleCadastroPortClient
    public static void main(String [] args)
    try{
    CleCadastro_Service cleCadastro_Service = new CleCadastro_Service();
    CleCadastro cleCadastro = cleCadastro_Service.getCleCadastroPort();
    String clientKeyStore = "C:\\certificados.jks";
    String clientKeyStorePasswd = "xxxxx";
    String clientKeyAlias = "xxxxx";
    String clientKeyPass = "xxxxx";
    String trustKeystore = "C:\\keystore_completo.jks";
    String trustKeystorePasswd = "xxxxx";
    PersistentSSLInfo sslInfo = new PersistentSSLInfo();
    sslInfo.setKeystore(clientKeyStore);
    sslInfo.setKeystorePassword(clientKeyStorePasswd);
    sslInfo.setKeyAlias(clientKeyAlias);
    sslInfo.setKeyPassword(clientKeyPass);
    sslInfo.setTrustKeystore(trustKeystore);
    sslInfo.setTrustKeystorePassword(trustKeystorePasswd);
    ClientProxyFeature clientProxy = new ClientProxyFeature();
    clientProxy.setProxyHost("proxy.com");
    clientProxy.setProxyPort(Integer.parseInt("3128") );
    clientProxy.setProxyUserName("user");
    clientProxy.setProxyPassword("pass");
    clientProxy.attachsPort(cleCadastro);
    ((BindingProvider) cleCadastro).getRequestContext().put(JAXWSProperties.CLIENT_PERSISTENT_SSL_INFO, sslInfo);
    ((BindingProvider) cleCadastro).getRequestContext().put(JAXWSProperties.SSL_SOCKET_FACTORY, SSLClientUtil.getSSLSocketFactory(sslInfo));
    ((BindingProvider) cleCadastro).getRequestContext().put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY, "https:/xxxx/ws");
    String retorno = cleCadastro.cleCadastroLote("xml", "xml");
    }catch(Exception ex){
    ex.printStackTrace();
    Webservice client without proxy server (OK)
    import weblogic.wsee.jaxws.sslclient.PersistentSSLInfo;
    import javax.xml.ws.BindingProvider;
    import weblogic.wsee.jaxws.JAXWSProperties;
    import weblogic.wsee.jaxws.proxy.ClientProxyFeature;
    import weblogic.wsee.jaxws.sslclient.SSLClientUtil;
    public class CleCadastroPortClient
    public static void main(String [] args)
    try{
    CleCadastro_Service cleCadastro_Service = new CleCadastro_Service();
    CleCadastro cleCadastro = cleCadastro_Service.getCleCadastroPort();
    String clientKeyStore = "C:\\certificados.jks";
    String clientKeyStorePasswd = "xxxxx";
    String clientKeyAlias = "xxxxx";
    String clientKeyPass = "xxxxx";
    String trustKeystore = "C:\\keystore_completo.jks";
    String trustKeystorePasswd = "xxxxx";
    PersistentSSLInfo sslInfo = new PersistentSSLInfo();
    sslInfo.setKeystore(clientKeyStore);
    sslInfo.setKeystorePassword(clientKeyStorePasswd);
    sslInfo.setKeyAlias(clientKeyAlias);
    sslInfo.setKeyPassword(clientKeyPass);
    sslInfo.setTrustKeystore(trustKeystore);
    sslInfo.setTrustKeystorePassword(trustKeystorePasswd);
    ((BindingProvider) cleCadastro).getRequestContext().put(JAXWSProperties.CLIENT_PERSISTENT_SSL_INFO, sslInfo);
    ((BindingProvider) cleCadastro).getRequestContext().put(JAXWSProperties.SSL_SOCKET_FACTORY, SSLClientUtil.getSSLSocketFactory(sslInfo));
    ((BindingProvider) cleCadastro).getRequestContext().put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY, "https:/xxxx/ws");
    String retorno = cleCadastro.cleCadastroLote("xml", "xml");
    }catch(Exception ex){
    ex.printStackTrace();
    }

    Hi,
    I tried to use the option "-DUseSunHttpHandler=true" and enabled "JSSE SSL", but it did not work, now showing the exception "General SSLEngine problem".
    <05/09/2012 15h36min55s GMT-03:00> <Notice> <StdErr> <BEA-000000> <javax.xml.ws.WebServiceException: javax.net.ssl.SSLHandshakeException: General SSLEngine problem>
    <05/09/2012 15h36min55s GMT-03:00> <Notice> <StdErr> <BEA-000000> <at com.sun.xml.ws.transport.http.client.HttpClientTransport.readResponseCodeAndMessage(HttpClientTransport.java:218)>
    <05/09/2012 15h36min55s GMT-03:00> <Notice> <StdErr> <BEA-000000> <at com.sun.xml.ws.transport.http.client.HttpTransportPipe.process(HttpTransportPipe.java:204)>
    <05/09/2012 15h36min55s GMT-03:00> <Notice> <StdErr> <BEA-000000> <at com.sun.xml.ws.transport.http.client.HttpTransportPipe.processRequest(HttpTransportPipe.java:124)>
    <05/09/2012 15h36min55s GMT-03:00> <Notice> <StdErr> <BEA-000000> <at com.sun.xml.ws.api.pipe.Fiber.__doRun(Fiber.java:866)>
    <05/09/2012 15h36min55s GMT-03:00> <Notice> <StdErr> <BEA-000000> <at com.sun.xml.ws.transport.DeferredTransportPipe.processRequest(DeferredTransportPipe.java:121)>
    <05/09/2012 15h36min55s GMT-03:00> <Notice> <StdErr> <BEA-000000> <at com.sun.xml.ws.api.pipe.Fiber._doRun(Fiber.java:815)>
    <05/09/2012 15h36min55s GMT-03:00> <Notice> <StdErr> <BEA-000000> <at com.sun.xml.ws.api.pipe.Fiber.doRun(Fiber.java:778)>
    <05/09/2012 15h36min55s GMT-03:00> <Notice> <StdErr> <BEA-000000> <at com.sun.xml.ws.api.pipe.Fiber.runSync(Fiber.java:680)>
    <05/09/2012 15h36min55s GMT-03:00> <Notice> <StdErr> <BEA-000000> <at $Proxy308.cleCadastroLote(Unknown Source)>
    <05/09/2012 15h36min55s GMT-03:00> <Notice> <StdErr> <BEA-000000> <at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)>
    <05/09/2012 15h36min55s GMT-03:00> <Notice> <StdErr> <BEA-000000> <at com.sun.xml.ws.client.sei.SEIStub.invoke(SEIStub.java:136)>
    <05/09/2012 15h36min55s GMT-03:00> <Notice> <StdErr> <BEA-000000> <at com.sun.xml.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:95)>
    <05/09/2012 15h36min55s GMT-03:00> <Notice> <StdErr> <BEA-000000> <at com.sun.xml.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:115)>
    <05/09/2012 15h36min55s GMT-03:00> <Notice> <StdErr> <BEA-000000> <at com.sun.xml.ws.client.sei.SEIStub.doProcess(SEIStub.java:153)>
    <05/09/2012 15h36min55s GMT-03:00> <Notice> <StdErr> <BEA-000000> <at com.sun.xml.ws.client.Stub.process(Stub.java:272)>

  • CRM 2013 - How to set a Proxy server for plugins to run with?

    We have several plugins that need to query web services on the Internet, and I need them to go through a specific proxy server.  How do I set this without hard coding the proxy into the plugins?  I've tried adding the proxy to the machine.config,
    I've updated the web.config in the CRMWeb folder, I've even added the proxy to IE under the users used by the App Pool Identity then used netsh winhttp to make this a system proxy.  None of these have allowed my registered plugins to access the internet.
    Any thoughts?  Thanks.

    The way I'd do it is to not rely on .config files, but instead set it programmatically in the plugin, and either store the proxy configuration data in the configuration string for the plugin registration step, or store it in some custom configuration entity
    in CRM
    Microsoft CRM MVP - http://mscrmuk.blogspot.com/ http://www.excitation.co.uk

  • Lync 2013 client doesn't read proxy.pac file Lync exclusions

    Hi all,
    I have a very annoying issue where by the Lync 2013 client ignores the proxy.pac file exclusions set below:
    (host == "lync.test.domain") || (host == "lyncdiscoverinternal.test.domain") ||
    (host == "lyncwacdca.test.domain") ||
    (host == "lyncwacdcb.test.domain") ||
    (host == "lyncwebintdca.test.domain") ||
    (host == "lyncwebintdcb.test.domain")
    IE is set to use automatic configuration script of
    http://proxy.test.domain:8083/proxy.pac This file can be reached through and IE browser, downloaded and it's syntax read.
    If I set my proxy server and exclusions manually within IE9 then they are adhered to. That is Lync 2013 is able to read.
    My thinking: that some application may be iterferring with Lync 2013 getting to
    http://proxy.test.domain:8083/proxy.pac or reading in the exclusions set within the file.
    If I enter https://lync.test.domain into the browser URL search field I can see that it is being sent straight out to the proxy as opposed to bypassing it.
    Does anyone have an example of their proxy.pac exclusion set for Lync 2013 just in case my syntax is not looking the best.
    Cheers

    Update to this issue - solution was to move the proxy exclusions to the top of the proxy.pac
    Outcome resulted in Windows WinHTTP processing the the Lync proxy exclusions prior to the Lync.exe firing during logon. I don't believe you would see this in a typical infrastructure. Since initially looking into this issue I  have been
    able to show through packet traces, large periods of latency in delivery of desktop profile items due to backend profile storage issues.
    In eddition this moving the exclusions to the top of the pac file I made use of substrings. I don't believe the use of substrings is any better or worst, but just easier for others to understand what the exclusion allows specifically.
    Example of pac exclusion now:
    if (url.substring(0,39) == "http://lyncdiscoverinternal.testdomain.") { return "DIRECT"; } //matches 31 characters including last . or period
    I entered similar entries for all required exclusions. The result was Lync signing in within 6 seconds as opposed to the 40 second (through the user of legacy SRV records).

  • I am getting "Error in accessing iTunes store. Please try again later." Error 0x80092013. I have just downloaded and installed current version of iTunes, and have the 2013 Norton IS. My proxy server is letting me got to iTunes, but cannot login.

    I have a proxy server and the server is allowing me to go to iTunes. But I get a message "Error in accessing iTunes store. Please try again later." Error code ox80092013. I cannot find that code in the troubleshooting section. I have just installed a new PC HP5750, with Norton IS 2013. I installed the current version of iTunes directly from the iTunes site. My proxy server is American Family Online web browsing filter. I contacted them and they said there should not be a problem with their server. I have had an account previously, but has been inactive for several months. I even tried to create a new account, but still got the same error code.
    Someone please help with this. I have accompaniment tracks on iTunes that I need for music ministry.

    Hi Lcoffin8,
    Thanks for visiting Apple Support Communities.
    See this article for additional information and steps that can help:
    Can't connect to the iTunes Store
    http://support.apple.com/kb/ts1368
    Regards,
    Jeremy

  • Lync 2013 On Premises integration with Exchange Online Unified Messaging

    I am working on deploying Lync 2013 Server on premises and integrating it with Exchange Online. We do not use Exchange on premises.
    My question is how to integrate with Unified Messaging specifically. Other functions like Calendar, call logs seem to be working fine.
    There are many guides online on how to do this, and I have read many and attempted to follow with no luck. All seem to assume that UM has already been deployed on prem which I don't have. Is this possible to integrate Lync with Exchange Online without having
    and Exchange deployment on premises first.
    Another source of confusion is the Office Voice Access number and how Lync clients dial voicemail. Where does this go if somebody dials internally (from Lync) and externally (from PSTN)? Exchange online or Lync on prem? And if Lync, then my guess would be
    Lync forwards on to Exchange Online UM somehow. Do I have to purchase a number from somewhere because of it being on 365 or can I use a spare DID?
    From my tests so far, when I call voicemail as any user, it seems to dial that same user and then the call fails.
    Hopefully someone can shed some light on this for me.

    You can integrate Exchange UM with Lync Server 2013.
    Please check the deployment process at http://technet.microsoft.com/en-us/library/gg398968.aspx
    Lisa Zheng
    TechNet Community Support

  • Lync 2013 Mobility in coexistense with Lync 2010

    Hi
    I am facing Issue when connecting my internal mobile client with Lync Server 2013. The Mobile Client doesn't sign in to Lync Server 2013.
    Currently we are in co-existence phase with Lync 2010.
    There was no mobility service configured or installed in Lync 2010 environment before when we deployed Lync Server 2013 Enterprise pool with only one front end server.
    The SRV record _sipinternalts is currently pointing to Lync server 2010 pool and the lyncdiscoverinternal.domain.com is point to the IP of Lync Front End Server.
    Is it necessary to configure and deploy mobility service on Lync 2010 front end server in order to allow Lync Server 2013 users to connect using mobile client??

    Hi Abdullah Salam,
    For WP8 root certificates need to have HTTP URLs in the CRL (Certificate Revocation List). If root certs doesn’t contain these CRL attributes than the certificate won’t be accepted by WP8
    and sign-in would fail.
    Same cases for your reference.
    https://social.technet.microsoft.com/Forums/en-US/cd6c1558-02e4-4ad8-86af-c6aee82a4ff0/passive-authentication-redirection-fails-for-wp81?forum=lyncint
    https://social.technet.microsoft.com/Forums/en-US/70932e7d-4df5-4f48-8f33-b0e19e2a02f9/unable-to-sign-with-windows-phone-lumia-925-windows-81-to-lync-2013?forum=lyncprofile
    Best regards,
    Eric<o:p></o:p>

  • Lync 2013 not Updating folder with Outlook

    Lync error that not update all folder as well as user having "hanging Status: not connected" but on workgroup machine status shows OK.
    Connection Status:
    DG URL Internal;https://VM106.domain.com.pk:443/groupexpansion/service.svc;--;
    DG URL External;https://im.domain.com.pk:443/groupexpansion/service.svc;--;
    Quality Metrics URI;sip:VM106.domain.com.pkdomain.com.pk;gruu;opaque=srvr:HomeServer:s34Ggo9qtFKMrBibQIzj0gAA;--;
    ABS Server Internal URL;https://VM106.domain.com.pk:443/abs/handler;--;
    ABS Server External URL;https://im.domain.com.pk:443/abs/handler;--;
    Voice mail URI;;--;
    Exum URL;;--;
    MRAS Server;sip:VM122.domain.com.pkdomain.com.pk;gruu;opaque=srvr:MRAS:UzOAyE46oVSXugR2hrjPgAAA;Enabled;
    GAL Status;https://VM106.domain.com.pk:443/abs/handler;--;
    Focus Factory;sip:talha.malikdomain.com.pk;gruu;opaque=app:conf:focusfactory;--;
    Line;;--;
    Location Profile;DefaultProfile;--;
    Call Park Server URI;sip:VM106.domain.com.pkdomain.com.pk;gruu;opaque=srvr:Microsoft.Rtc.Applications.Cps:HYueIR7pGFOx9hNeY2W6kAAA;--;
    Server Address Internal;vm106.domain.com.pk;--;
    Server Address External;im.domain.com.pk;--;
    Server SIP URI;malikdomain.com.pk;--;
    Exum Enabled;TRUE;--;
    Controlled Phones;TRUE;--;
    GAL or Server Based Search;GAL search;--;
    PC to PC AV Encryption;AV Encryption Enforced;--;
    Telephony Mode;Telephony Mode Disabled;--;
    Line Configured From;Auto Line Configuration;--;
    Configuration Mode;Auto Configuration;--;
    EWS Internal URL;
    EWS External URL;
    SharePoint Search Center URL;;--;
    Skill Search URL;;--;
    Connected Lync Server;sip.domain.com.pk;--;
    Local Log Folder;D:\Users\Administrator\AppData\Local\Microsoft\Office\15.0\Lync\Tracing;--;
    Inside User Status;FALSE;--;
    Contact List Provider;Lync Server;--;
    Pairing State;Lync cannot connect to your desk phone because the USB cable is not plugged in. Make sure that you connect the cable.;Enabled;
    UCS Connectivity State;Exchange connection Down;--;
    MAPI Information;UCMAPI is connected to Outlook, but one or more folders are not updating.;MAPI unavailable;
    EWS Information;;EWS not deployed;
    License State;Lync Basic;--;
    Hanging Notification Status;;disconnect;
    pChat Room Mgmt Int URL;https://VM106.domain.com.pk:443/PersistentChat/RM;--;
    pChat Room Mgmt Ext URL;https://im.domain.com.pk:443/PersistentChat/RM;--;
    pChat URIs;sip:GC-1-PersistentChatService-4domain.com.pk;--;
    pChat Default URI;sip:GC-1-PersistentChatService-4domain.com.pk;--;
    pChat Enabled?;TRUE;--;
    and user connected lync and outlook from workgroup machine having subjected status.
    DG URL Internal;https://VM106.domain.com.pk:443/groupexpansion/service.svc;--;
    DG URL External;https://im.domain.com.pk:443/groupexpansion/service.svc;--;
    Quality Metrics URI;sip:VM106.domain.com.pkdomain.com.pk;gruu;opaque=srvr:HomeServer:s34Ggo9qtFKMrBibQIzj0gAA;--;
    ABS Server Internal URL;https://VM106.domain.com.pk:443/abs/handler;--;
    ABS Server External URL;https://im.domain.com.pk:443/abs/handler;--;
    Voice mail URI;;--;
    Exum URL;;--;
    MRAS Server;sip:VM122.domain.com.pkdomain.com.pk;gruu;opaque=srvr:MRAS:UzOAyE46oVSXugR2hrjPgAAA;Enabled;
    GAL Status;https://VM106.domain.com.pk:443/abs/handler;--;
    Focus Factory;sip:talha.malikdomain.com.pk;gruu;opaque=app:conf:focusfactory;--;
    Line;;--;
    Location Profile;DefaultProfile;--;
    Call Park Server URI;sip:VM106.domain.com.pkdomain.com.pk;gruu;opaque=srvr:Microsoft.Rtc.Applications.Cps:HYueIR7pGFOx9hNeY2W6kAAA;--;
    Server Address Internal;vm106.domain.com.pk;--;
    Server Address External;im.domain.com.pk;--;
    Server SIP URI;talha.malikdomain.com.pk;--;
    Exum Enabled;TRUE;--;
    Controlled Phones;TRUE;--;
    GAL or Server Based Search;GAL search;--;
    PC to PC AV Encryption;AV Encryption Enforced;--;
    Telephony Mode;Telephony Mode Disabled;--;
    Line Configured From;Auto Line Configuration;--;
    Configuration Mode;Auto Configuration;--;
    EWS Internal URL;https://email.domain.com.pk/EWS/Exchange.asmx;--;
    EWS External URL;https://email.domain.com.pk/ews/exchange.asmx;--;
    SharePoint Search Center URL;;--;
    Skill Search URL;;--;
    Connected Lync Server;sip.domain.com.pk;--;
    Local Log Folder;D:\Users\Administrator\AppData\Local\Microsoft\Office\15.0\Lync\Tracing;--;
    Inside User Status;FALSE;--;
    Contact List Provider;Lync Server;--;
    Pairing State;Lync cannot connect to your desk phone because the USB cable is not plugged in. Make sure that you connect the cable.;Enabled;
    UCS Connectivity State;Exchange connection Down;--;
    MAPI Information;UCMAPI is connected to Outlook, but one or more folders are not updating.;MAPI unavailable;
    EWS Information;;EWS Status OK;
    License State;Lync Basic;--;
    Hanging Notification Status;;Connected;
    pChat Room Mgmt Int URL;https://VM106.domain.com.pk:443/PersistentChat/RM;--;
    pChat Room Mgmt Ext URL;https://im.domain.com.pk:443/PersistentChat/RM;--;
    pChat URIs;sip:GC-1-PersistentChatService-4domain.com.pk;--;
    pChat Default URI;sip:GC-1-PersistentChatService-4domain.com.pk;--;
    pChat Enabled?;TRUE;--;
    Facing error on all users profile as i have two SMTP address @domainX.com.pk and @domainY.com.pk and i have change default smtp but error still same.
    Apart from this when i check my outlook conversion folder is up to date and updated.
    Talha Faraz Malik

    Hi,
    If you change the SMTP account same with SIP account, please try to delete Lync user profile and restart Lync, Outlook client to test again.
    If you want to use different SMTP account with Lync account, you can also try to change Lync client policy, change the parameter DisableEmailComparisionCheck to True.
    More details:
    http://www.lync.geek.nz/2014/04/lync-2013-exchange-integration.html
    Note: Microsoft is providing this information as a convenience to you. The sites are not controlled by Microsoft. Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there.
    Please make sure that you completely understand the risk before retrieving any suggestions from the above link.
    Best Regards,
    Eason Huang
    Eason Huang
    TechNet Community Support

  • Lync 2013 - Easy way to insert internal server name onto client

    A little background.  Currently only the IT dept is using Lync 2010 or Lync 2013.  We are not using Exchange(happening soon though).  Our Lync Server is only internal(again working on building an edge server).  Our Lync
    clients used to connect automatically with their AD name when restarting or logging into Lync. 
    Last week we noticed that Lync 2013 has upgraged to Skype for Business. This made us not log into Lync until we figured out why.  We finally figured out that if we put the FQDN in the Internal Server name Lync 2013 will work again(was left blank
    before).  We stopped the updates from going out but a few still got it. We manually went around and fixed those Lync 2013 clients.  My question for you all is there an easy way to push the FQDN to the internal server name under Tools-->Personal-->advanced..? Looking
    for a script that I can have them click or some other way.   

    Hi Hurley081182,
    Agree with others, it’s recommend to use Lync 2013.admx Administrative Template, which contain the registry-based policy settings that you configure for Group Policy objects in the domain.
    For more details, please check out the following article.
    Configuring client bootstrapping policies in Lync Server 2013
    https://technet.microsoft.com/en-us/library/gg425941%28v=ocs.15%29.aspx
    Best regards,
    Eric
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Communication problem with proxy server

    We have establish the configuration of an iPad to access the enterprise net, but when trying to access any webpage we get the next message: Safari can not open the page. Error:"There is a communication problem with proxy web server (HTTP)"
    The access has no problems with other movile devices.
    Ahy help?

    Hi,
    I am not sure whether you have already solved the problem or not....
    Do the following to deploy MobileBIService.war file on tomcat
    1.Stop Tomcat Web application server.
    2.Copy the file, MobileBIService.war from [Install directory]\Mobile 14\Client to the Tomcat's "Webapps" directory.
    In my case, I copied the MobileBIService.war from C:\Program Files (x86)\SAP BusinessObjects\Mobile14\Client to C:\Program Files (x86)\SAP BusinessObjects\Tomcat6\webapps. ( I used BO 4.0 SP02)
    3.     Start Tomcat.
    Restarting Tomcat would automatically deploy war file as a Web App
    One folder u201CMobileBiServiceu201D will appear in webapps folder when MobileBIService.war is deployed successfully.
    Hope it helps.
    Regards,
    Ankur

  • Outlook 2011 Connection Issue with Proxy Server after 10.8 Upgrade

    Hello,
    After upgrading my MBA to 10.8, my MS Outlook (Outlook Mac 2011) mail connection does not work for an exchange based mail account where a VPN/proxy server combination is involved. This was not an issue at all under 10.7. What's interesting is that it's not an issue with MS Outlook 2010 on my Parallels VM either under 10.8. There are no internet connectivity issues, I am able to connect to the internet using Safari and other browsers. Any help would be appreciated.
    Thanks,
    Manish

    I was having a similar problem using Outlook 2011 running under Mountain Lion (10.8.2) on an MacBook Pro. When at work, behind our proxy server, I could not get Outlook to connect to a client's public Exchange server, but this worked fine without changing any settings when I was connected to our DMZ network or at home (no proxy server in these cases). My MacBook was configured to use "Auto Proxy Configuration", and Safari worked fine in all three locations (as did Apple mail)
    Today, the Microsoft Office auto-updater downloaded an update, and since it was installed, the problem has been fixed and I've been able to connect to our client's external Exchange server event when behind our local proxy server (Outlook now reports that the latest installed update is 14.2.5)
    Steve

  • Help with Proxy Server

    Hi!All
    I have developed a Chat Application which has to be put up at the Clients
    place over the intranet,i have developed it using the Avalon FrameWork for the server side and applet on the Client side.Everything works perfectly,the application also runs perfectly,im using the port 4000 for communication,now the problem is that since at the Clients place we have a Proxy Server which only allows port 80 and bards all other port so my appliaction will not perform there at all,i was wondering is there any other way out of this problem if anyone has ever been through this problem please let me know at theearliest.Help needed urgently.Awaiting reply.
    Thanx.

    Try routing the communication from your end from port 4000 to port 80 using some sort of Proxy DLL if u are using IIS as the web server, it comes handy with such a thing.
    Using BEA Weblogic 6.1, i have been able to do so. My web server is IIS and the app server being Weblogic, both run on different ports.
    The user access the website from port 80 which is handled by IIS and then the request is funneled to Weblogic via the Proxy DLL on a specified port where my weblogic is running.
    This works fine with me. Try using that am something should work.

  • Migration to Lync 2013 - Unable to remove 2010 Edge Server

    Hi
    We did a migration from Lync 2010 to Lync 2013. Everything worked without any problems. But now we are unable to remove the Lync 2010 Edge Pool. Everything has been done according to
    https://technet.microsoft.com/en-us/library/jj205369.aspx “Migration from Lync Server 2010 to Lync Server 2013”.
    I am able to remove the 2010 Edge pool, but by trying to publish the topology, I receive the following error: “Error: An error occurred: "System.InvalidOperationException" "Cannot publish topology changes. Call orbit still
    exists on one or more deleted application servers."
    How can I resolve this error?
    Regards
    Peter

    Hi Peter,
    You have to change the Call Park Destination FQDN to the Lync 2013 Pool.
    Please check out the following article.
    Migrate Call Park application settings
    Best regards,
    Eric
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • IMessage/Siri with Proxy-Server

    Hello,
    Our company used as an AP-Company Data Access (cda.vodafone.de) and in this way brings the IOS devices via a proxy server is online. All applications work fine so far, only Siri and iMessage can not detect internet connection. If we work to configure the device with the standard AP-Vodafone (web.vodafone.de) both services flawlessly. Apparently not support both services set the proxy server. Can someone tell the same experience and there is a solution for this?
    regards
    Volker

    Hallo Volker,
    auch wir leiten unsere iPhones auf cda.vodafone.de um und haben leider den gleichen Effekt, dass Siri nicht funktioniert. Habt ihr zu dem Problem eine Lösung gefunden?
    Viele Grüße,
    Andreas

  • Java mail with proxy server

    Hi I am a novice, working on a mail sender though proxy. I read Java mail FAQ in http://java.sun.com/products/javamail/FAQ.html#proxy.
    And also I found a snippet in below therad.
    http://forums.sun.com/thread.jspa?threadID=615715&start=0&tstart=0
    <QUOTE>here is the solution that you can send mail through a proxy server
    Properties p = System.getProperties();
             p.setProperty("proxySet","true");
             p.setProperty("socksProxyHost","192.168.155.1");
             p.setProperty("socksProxyPort","1080");</QUOTE>
    I installed CCProxy in my machine and gave my own IP address ( 1. LAN IP and 2. IP from whatismyip.com; both works ) and port number. It works. But I gave IP addrss of my friend ( 1. LAN IP and 2. IP from whatismyip.com; both NONE work ) who got CCProxy and in his machine. But doesnt work ( throws Below exception).
    Exception in thread "main" javax.mail.MessagingException: Could not connect to SMTP host: smtp.gmail.com, port: 465;
      nested exception is:
            java.net.SocketException: Can't connect to SOCKS proxy:Connection timedout: connect
            at com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:1391)
            at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:412)
            at javax.mail.Service.connect(Service.java:310)
    His IP address is found with whatismyip.com. I guess its a problem with IP address. What am I doing wrong here ?? Could some one help me out please ?
    Edited by: baskark on Mar 8, 2009 6:26 PM
    Edited by: baskark on Mar 8, 2009 6:44 PM

    I believe we can give some other socks proxy ip address too, other than CCproxy machine ip address If I am correct. Is there any specific way to use the socks server ip address ( such as provided in many websites, used for open relay) ? I tried some of them, which I am able to ping. But still I get the same exception like connection request timed out.

Maybe you are looking for

  • C701- Total dissatisfaction of device– immediate w...

    Dear sir / madam Sub : Nokia model C701- Total &Horrible dissatisfaction of device when compared to Nokia  E51- Do not put this model into sale – immediate withdraw of this model from the sale shops – Reasons are explained below – For kind considerat

  • Error Reading Soap Response

    Hi, We are having a problem reading Soap Response: Scenario: From XI/PI we are calling a webservice with Synchronous message with WS-Security including Authentication, Signature, TimeStamp and Encryption using SOAP Receiver Adapter. We are able to se

  • Custom renderer on standard component

    I try to implement a custom renderer to a standard component (<h:outputText>), but my Tomcat failed to start the webcontainer. here are my files: faces-config.xml <render-kit> <renderer> <renderer-type>MyRenderer</renderer-type> <renderer-class>rende

  • Question on using tab navigation

    Hi all -- We have a very large (500+ pages) reporting application which is currently using a list (DHTML Menu with Sublist template) as the navigation means. The problem is that there is so much out there the navigation menus have become very large a

  • The feature move or copy is not working in my software. I am unable to move people

    The move feature on Elements 11 will not highlight for me to use this feature to move or copy.  I have tried to move or copy people from to another picture.