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)>

Similar Messages

  • 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.

  • 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

  • Finding real Client IP Address under PROXY Server

    Hi friends,
    I have a requirement to find out the Client IP Address that is under a Proxy Server.( Actually I used the getRemoteAddr but this always returns me the Prox-Server IP Address and not the real Client IP Address)
    Can some one guide me how I can do this with JAVA JSPs / Servlets..
    Thanks a lot!!

    Most proxies can be configured to forward the client's ip address in a request
    header to the origin server - check the headers sent to the server and you should
    be able to identify it.

  • Register Client Java Proxies to Proxy Server

    Hi All,
    Is it required to register the client java proxies with the proxy server?
    Thanks in advance

    lol Some people dont know how to give the correct links as well.
    Next wiki --> how to give correct links for questions asked on SDN.. will be a huge hit I guess

  • Connection timeout when using iPlanet web-server uses Weblogic 6.1 proxy server to proxy requests to an HTTP server

    Hi all,
    My configuration is as follows: I have an iPlanet web-server that uses a WebLogic
    6.1 (sp1) server to proxy requests to another HTTP server. The HTTP request runs
    for 120 seconds. This causes Weblogic to timeout after a while. The error I get
    is as follows:
    <Aug 25, 2003 3:37:09 PM GMT+00:00> <Warning> <HttpClient> <Couldn't open connection
    java.net.ConnectException: Connection timed out
    at java.net.PlainSocketImpl.socketConnect(Native Method)
    at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:320)
    at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:133)
    at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:120)
    at java.net.Socket.<init>(Socket.java:273)
    at java.net.Socket.<init>(Socket.java:127)
    at weblogic.net.http.HttpClient.openServer(HttpClient.java:194)
    at weblogic.net.http.HttpClient.openServer(HttpClient.java:254)
    at weblogic.net.http.HttpClient.<init>(HttpClient.java:117)
    at weblogic.net.http.HttpClient.New(HttpClient.java:149)
    at weblogic.net.http.HttpURLConnection.connect(HttpURLConnection.java:109)
    at com.db.gmr.dcm.DebtIssueServlet.getVectorFromConnection(DebtIssueServle
    t.java:285)
    at com.db.gmr.dcm.IssuesUSThread.run(IssuesUSThread.java:29)
    >
    I get the same error when I added the following plug-in configuration parameters
    (in obj.conf):
    ConnectTimeoutSecs="170" ConnectRetrySecs="170".
    What do I need to do to extend this timeout? Any help you can provide will be
    greatly appreciated..
    Thanks
    Manish

    Hi all,
    My configuration is as follows: I have an iPlanet web-server that uses a WebLogic
    6.1 (sp1) server to proxy requests to another HTTP server. The HTTP request runs
    for 120 seconds. This causes Weblogic to timeout after a while. The error I get
    is as follows:
    <Aug 25, 2003 3:37:09 PM GMT+00:00> <Warning> <HttpClient> <Couldn't open connection
    java.net.ConnectException: Connection timed out
    at java.net.PlainSocketImpl.socketConnect(Native Method)
    at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:320)
    at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:133)
    at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:120)
    at java.net.Socket.<init>(Socket.java:273)
    at java.net.Socket.<init>(Socket.java:127)
    at weblogic.net.http.HttpClient.openServer(HttpClient.java:194)
    at weblogic.net.http.HttpClient.openServer(HttpClient.java:254)
    at weblogic.net.http.HttpClient.<init>(HttpClient.java:117)
    at weblogic.net.http.HttpClient.New(HttpClient.java:149)
    at weblogic.net.http.HttpURLConnection.connect(HttpURLConnection.java:109)
    at com.db.gmr.dcm.DebtIssueServlet.getVectorFromConnection(DebtIssueServle
    t.java:285)
    at com.db.gmr.dcm.IssuesUSThread.run(IssuesUSThread.java:29)
    >
    I get the same error when I added the following plug-in configuration parameters
    (in obj.conf):
    ConnectTimeoutSecs="170" ConnectRetrySecs="170".
    What do I need to do to extend this timeout? Any help you can provide will be
    greatly appreciated..
    Thanks
    Manish

  • Creating Weblogic domain with Admin Server and managed servers on different

    I am trying to create Weblogic domain where Admin Server and managed servers on different machines. However I am unable to find any steps which would allow me to do so. The config.sh script always creates an Admin Server. Please help.

    Whilst the method that Lawrence gives can result in a domain that is perfectly functional, it is a method that can result in errors as you are having to enter the same information twice. Also you will create two admin servers, as the second domain creation will have the console added to it on the renamed admin server and this will give issues.
    The best method to create a domain spamming multiple physical machines, is to create the domain with all the components on the first machine. This means planning the domain and making sure all components are added once; so having the information about the domain written out is wise. Ensure that the WLS software is installed in the same path on each machine before starting.
    Then copy the domain that you have created from one machine to the other, keeping the same paths. You can simply copy (I've used this method multiple times without issue) but the supported way would be to use the WLST PACK and UNPACK methods. These create and extract domains from templates. Some more information on these is given here -> http://docs.oracle.com/cd/E13179_01/common/docs100/pack/intro.html#wp1069056

  • I cannot contact of a mail client in Windows with mail server

    when forming does the client in Windows say not to be able to contact with my server, is necessary to modify something but in Windows so that they are ?
    I believe that the problem this related to smtp, goes log in critical there.
    Apr 17 16:34:01 diogenes postfix/qmgr[2110]: fatal: scandirpush: open directory deferred/1: Permission denied
    Apr 17 16:35:01 diogenes postfix/postsuper[2133]: fatal: scandirpush: open directory defer/1: Permission denied
    Apr 17 16:35:01 diogenes postfix/qmgr[2134]: fatal: scandirpush: open directory deferred/1: Permission denied
    Apr 17 16:36:01 diogenes postfix/postsuper[2164]: fatal: scandirpush: open directory defer/1: Permission denied
    Apr 17 16:36:01 diogenes postfix/qmgr[2165]: fatal: scandirpush: open directory deferred/1: Permission denied
    Apr 17 16:37:01 diogenes postfix/postsuper[2182]: fatal: scandirpush: open directory defer/1: Permission denied
    Apr 17 16:37:01 diogenes postfix/qmgr[2183]: fatal: scandirpush: open directory deferred/1: Permission denied
    Apr 17 16:38:01 diogenes postfix/postsuper[2198]: fatal: scandirpush: open directory defer/1: Permission denied
    Apr 17 16:38:01 diogenes postfix/qmgr[2199]: fatal: scandirpush: open directory deferred/1: Permission denied
    Apr 17 16:38:02 diogenes postfix/cleanup[2206]: fatal: defer: remove 608989EF4AE log: Permission denied
    Apr 17 16:38:03 diogenes postfix/smtpd[2202]: fatal: unable to connect to the public cleanup service
    Apr 17 16:39:01 diogenes postfix/postsuper[2230]: fatal: scandirpush: open directory defer/1: Permission denied
    Apr 17 16:39:01 diogenes postfix/qmgr[2231]: fatal: scandirpush: open directory deferred/1: Permission denied
    Apr 17 16:39:04 diogenes postfix/cleanup[2237]: fatal: defer: remove E7B7D9EF540 log: Permission denied
    Apr 17 16:39:05 diogenes postfix/smtpd[2234]: fatal: unable to connect to the public cleanup service

    A bit of an update with some more information for anyone who comes across this thread.
    Connecting to my server (Windows Server 2012) from my Mavericks MacBook Air using smb://servername/sharename results in symbolic links on the share listing as empty. Direct folders within the share list correctly.
    -- filestore
           |- directory1 (symbolic link)
           |- direcory 2 (directory)
           |- directory3 (symbolic link)
           |- direcory 4 (directory)
    In this structue smb://servername/filestore/directory1 and smb://servername/filestore/directory3 will list as empty (when they are not) and smb://servername/filestore/directory2 and smb://servername/filestore/directory4 will list correctly, as they are true folders below filestore and not symbolic links.
    Workaround
    I've found a workaround which lets me still access the server correctly, but also suggests that the problem lies almost certainly with the implementation of SMB2 in Mavericks.
    By connecting to the server via cifs://servername/filestore then everything works correctly, with symbolic links being honoured. Using smb://servername/filestore from the same client to the same server exhibits the faulty empty directory behaviour.
    At least I'm operational for the time being, but hardly the best.

  • 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.

  • 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

  • Using Lightroom 4 with Proxy Server

    I live in a university dorm which requires a proxy server to connect to the internet. Everything else (browser, torrents, skype) all seem to work fine through this connection however I get various error messages when trying to publish, or check or an update in Lightroom.
    I'm almost certain it has something to do with the connection because I don't get any of these problems when using another internet source. There don't seem to be any proxy or internet connection settings in Lightroom so any ideas on what I can try?

    I need help with this same issue. Need a way to tell Lightroom to use a proxy for Email.
    Anyone have any advice?

  • Interesting! C client socket communicating with java server sockets after..

    Hi,
    I have a client(in C) open a socket and server(in java; jvm 1.2) listening on the same port(e.g. 4444) accepts the request and establishes a socket conn. Now the sockets are kept open indefinitely. If I kill the server process and bring it backup, the client(in C) cannot communicate with the server(in java).
    Why would this be happening? Aren't the server socket garbage collected?
    How do I make sure that the next time I bring up the server again, the client communicates with it.
    Any inputs is really appreciated.
    thanks
    atul.

    Check the client is closing the connection before it stops.
    I've had similar problems with JDBC before where if you don't explicitly close the connection it remains bound to the port, hence if your client only ever tries to connect to that port it will fail.
    I think.
    MrChris

  • PDF printing with proxy server

    Hello,
    I installed Apex 3.0.1 and configured it for pdf printing using OC4J and Apache FOP. The OC4J process is running on the same server as the database. I used localhost as hostname and 8888 as port.
    Everything works fine, however, when I specify a proxy server in the Application Definition, the pdf printing stops working ... I suppose this is because the print server is now located through the proxy server and this doesn't work ... But, I need to configure the proxy server because I want to use an external web service ...
    Anyone else that has this problem and knows of a possible workaround ?
    Thanks
    Matthias

    Well, in my case this is not an option, since I used a demo host and domain name which can't be resolved through the proxy server ... If only there was an option to skip the proxy server for localhost settings (like there is in Internet Explorer).
    Matthias

Maybe you are looking for

  • We need to revert to pre-iCloud status....

    We live in an area where no iPhone carrier can provide a signal, so we use Android and sync our iMacs with 3rd party software. (Missing Sync). Recently, my wife upgraded her machine from ME to Cloud - now she cannot sync anything.  Eventually we'll g

  • Workflow for creating Flex components in Flash CS5 needs work

    Am I missing something? I thought things were supposed to be easier. I'm creating an AIR application for a client with heavy embedded video. I have chewed up days on trying to get stuff to work, mostly creating a graphics heavy component that I can u

  • Why do some movies show and some others don't?

    For some strange reasons different episode of the same series, with exactly the same encoding as the others, don't show on the Apple TV when streaming from iTunes: the files are identical in encoding, yet part of them just won't show. I was wondering

  • Hi Anji I Want to Talk With u

    Hi Angi ,                 i want to talk With u pls Send Me u r Ph Num & Mail Id to This eid :               [email protected]

  • SetModal on JDialog is reflecting on new instance of API.

    In java application we have facilitated user to open a "New Instance". While working with copy i.e. on new instance if user has been opened a dialog box onto we have set Modal "True" then on another instance of application, user would not perform any