HTTP Session caching possible using WL7 JAX-RPC ?

We're using WL7, and using the JAX-RPC API to access external webservices.
Basically, we create the appropriate 'stubs' from the target WSDL using
clientgen. Then we invoke the target method. Code looks something like this:
Client_Impl client = new Client_Impl; // implementation of target
ClientPort_Stub stub = client.getClientPort();
stub._setProperty(javax.xml.rpc.Stub.ENDPOINT_ADDRESS_PROPERTY, url)
stub.invoke(args);
Now, when is the actual endpoint URL being created ? Is it when the invoke()
method is called ?
It cannot be during the constructor since I pass the target URL after that ...
My problem is that I have to call the 'invoke' method quite frequently, and hence
would like the HTTP session to be reused, rather than recreated each time. Right
now,
I construct the stub each time I have to call the target method, and I'm wondering
if
I just cache the stub and keep calling the target method each time, will the underlying
HTTP session be reused ? Any ideas ?
Currently, if I do netstat on my Sun Solaris box (where this runs), I see the
TCP
connection being recreated during each invocation ...
-john

Hi John,
You can do multiple invokes on the same stub. There is no
need to create a new one for each invoke.
WLS 7.0 use HTTP 1.0 with keep alive. If the server respects
HTTP keep alive, then WLS will not create a new connection.
HTHs,
-manoj
"john" <[email protected]> wrote in message news:[email protected]..
>
We're using WL7, and using the JAX-RPC API to access external webservices.
Basically, we create the appropriate 'stubs' from the target WSDL using
clientgen. Then we invoke the target method. Code looks something likethis:
>
Client_Impl client = new Client_Impl; // implementation of target
ClientPort_Stub stub = client.getClientPort();
stub._setProperty(javax.xml.rpc.Stub.ENDPOINT_ADDRESS_PROPERTY, url)
stub.invoke(args);
Now, when is the actual endpoint URL being created ? Is it when theinvoke()
method is called ?
It cannot be during the constructor since I pass the target URL after that...
My problem is that I have to call the 'invoke' method quite frequently,and hence
would like the HTTP session to be reused, rather than recreated each time.Right
now,
I construct the stub each time I have to call the target method, and I'mwondering
if
I just cache the stub and keep calling the target method each time, willthe underlying
HTTP session be reused ? Any ideas ?
Currently, if I do netstat on my Sun Solaris box (where this runs), I seethe
TCP
connection being recreated during each invocation ...
-john

Similar Messages

  • How can I monitor the Session Cache when using HTTP Session-Replication?

    I want to see the session cache content

    To see the list of session IDs in the cache you can iterate over the keys of the cache returned from the following code:
    NamedCache cacheCatalog = CacheFactory.getReplicatedCacheService("$FilterService$").ensureCache("CoherenceSession.CATALOG", getClass().getClassLoader());Then to see the contents of a session you can take a look a the cache returned from the following code:
    String sId = // keys from cacheCatalog
    NamedCache cacheDetails = cacheCatalog.getCacheService().ensureCache(sId, getClass().getClassLoader());Hope this helps.
    We have received your request for a development license and we hould have ti out to you today.
    Later,
    Rob Misek
    Tangosol, Inc.
    Coherence: Cluster your Work. Work your Cluster.

  • Use of JAX RPC Weblogic Callback Capability

    Just walking through the Callback example in the bea documentation at:
    http://edocs.bea.com/wls/docs100/webserv_adv/callback.html#wp259721
    But I can't seem to get the example to build properly, anyone else have troubles with this?
    Anyone else using callbacks at all?
    Code trying to build:
    = = = = = = = = = = = = = = = = = =
    package jsip.jaxrpc.services;
    import weblogic.jws.WLHttpTransport;
    import weblogic.jws.*;
    import weblogic.wsee.jws.CallbackInterface;
    import javax.jws.WebMethod;
    import javax.jws.WebService;
    @WebService(name="CallbackPortType",
    serviceName="WhereIsWaldo",
    targetNamespace="http://examples.org/")
    @WLHttpTransport(contextPath="callback",
    serviceUri="WhereIsWaldo",
    portName="WhereIsWaldo")
    public class JaxrpcAsyncReqRes
    @Callback
    CallbackInterface callback;
    @WebMethod
    public void callbackOperation (String message)
    callback.callbackOperation (message);
    Error produced:
    = = = = = = = = = = == = =
    [jwsc] [ERROR] - weblogic.jws.CallbackService Annotation must be present on weblogic.wsee.jws.CallbackInterface.
    [jwsc] [ERROR] - The annotation weblogic.jws.Exclude is not allowed on callback interface weblogic.wsee.jws.CallbackInterface.
    Error message when building:

    Hi Akhil,
    This JAX-RPC 1.0 implementation, is in the WLS 7.0 product itself. Refer to the
    following link for details:
    http://edocs.bea.com/wls/docs70/webserv/index.html
    Regards,
    Mike Wooten
    "Akhil Nagpal" <[email protected]> wrote:
    >
    HI,
    where i can find weblogic implementation of jax-rpc...please help.
    Thanks in advance
    Akhil Nagpal

  • How can I set Response Queue for standalone client using JMS Jax-RPC ?

    Hi,
    I am developing a standalone client for a web service running on a Weblogic 10.3 server using JMS transport. The response seems to be placed in JMSServer!JMSServer.TemporaryQueue0 when I try to test the application.
    The request xml created:
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <content>
        <entry type="1">
            <textMessage fromQueue="true" JMSTimestamp="1285343150328" JMSReplyToDomain="1" JMSReplyTo="JMSServer!JMSServer.TemporaryQueue1" JMSRedelivered="false" JMSPriority="4" JMSMessageID="ID:&lt;520181.1285343150328.0&gt;" JMSExpiration="0" JMSDestination="SystemModule!demoQueue" JMSDeliveryMode="2">
                <headerProperty type="java.lang.String" value="text/xml; charset=utf-8" name="_wls_mimehdrContent_Type"/>
                <headerProperty type="java.lang.String" value="&quot;http://oracle/communications/platform/demo/webservices/rpc/secure/gen/getPhoneList&quot;" name="_wls_mimehdrSOAPAction"/>
                <headerProperty type="java.lang.String" value="/DemoWebServices/DemoWebServicesJMS" name="URI"/>
                <text>&lt;env:Envelope xmlns:env=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot;&gt;&lt;env:Header/&gt;&lt;env:Body&gt;&lt;gen:lastName xmlns:gen=&quot;http://oracle/communications/platform/demo/webservices/rpc/gen&quot;&gt;8&lt;/gen:lastName&gt;&lt;/env:Body&gt;&lt;/env:Envelope&gt;</text>
            </textMessage>
        </entry>
    </content>On the application server I have configured a Response Queue that I would like my application to use. The client stubs where generated using the ant Task: weblogic.wsee.tools.anttasks.ClientGenTask.
    Standalone client code snippet:
          DemoWebServices_Impl service = null;
          try {
              service = new DemoWebServices_Impl(wsdl);
          } catch (ServiceException e) {
              e.printStackTrace();
          DemoWebServicesPortType port = null;
          //create credential provider and set it to the Stub
          try {
              port = service.getDemoWebServicesJMSPort();
          } catch (ServiceException e) {
            e.printStackTrace();
          PhoneList response = null;
          try {
              response = port.getPhoneList("8");
          } catch (RemoteException e) {
              e.printStackTrace();
          if(response != null) {
            for(Phone aPhone : response.getPhone()) {
                System.out.println("aReturned Phone number is:  " + aPhone.getPhoneNumber());
          }Would you please help me with modifying the client code to define which Queue the web service response should be placed in? setQueue() of the JMSTransportInfo class did not do the trick. Please help....
    Thanks,
    Sajitha
    Edited by: Sajitha on Sep 24, 2010 12:29 PM
    Edited by: Sajitha on Sep 27, 2010 8:44 AM

    Hi,
    I am developing a standalone client for a web service running on a Weblogic 10.3 server using JMS transport. The response seems to be placed in JMSServer!JMSServer.TemporaryQueue0 when I try to test the application.
    The request xml created:
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <content>
        <entry type="1">
            <textMessage fromQueue="true" JMSTimestamp="1285343150328" JMSReplyToDomain="1" JMSReplyTo="JMSServer!JMSServer.TemporaryQueue1" JMSRedelivered="false" JMSPriority="4" JMSMessageID="ID:&lt;520181.1285343150328.0&gt;" JMSExpiration="0" JMSDestination="SystemModule!demoQueue" JMSDeliveryMode="2">
                <headerProperty type="java.lang.String" value="text/xml; charset=utf-8" name="_wls_mimehdrContent_Type"/>
                <headerProperty type="java.lang.String" value="&quot;http://oracle/communications/platform/demo/webservices/rpc/secure/gen/getPhoneList&quot;" name="_wls_mimehdrSOAPAction"/>
                <headerProperty type="java.lang.String" value="/DemoWebServices/DemoWebServicesJMS" name="URI"/>
                <text>&lt;env:Envelope xmlns:env=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot;&gt;&lt;env:Header/&gt;&lt;env:Body&gt;&lt;gen:lastName xmlns:gen=&quot;http://oracle/communications/platform/demo/webservices/rpc/gen&quot;&gt;8&lt;/gen:lastName&gt;&lt;/env:Body&gt;&lt;/env:Envelope&gt;</text>
            </textMessage>
        </entry>
    </content>On the application server I have configured a Response Queue that I would like my application to use. The client stubs where generated using the ant Task: weblogic.wsee.tools.anttasks.ClientGenTask.
    Standalone client code snippet:
          DemoWebServices_Impl service = null;
          try {
              service = new DemoWebServices_Impl(wsdl);
          } catch (ServiceException e) {
              e.printStackTrace();
          DemoWebServicesPortType port = null;
          //create credential provider and set it to the Stub
          try {
              port = service.getDemoWebServicesJMSPort();
          } catch (ServiceException e) {
            e.printStackTrace();
          PhoneList response = null;
          try {
              response = port.getPhoneList("8");
          } catch (RemoteException e) {
              e.printStackTrace();
          if(response != null) {
            for(Phone aPhone : response.getPhone()) {
                System.out.println("aReturned Phone number is:  " + aPhone.getPhoneNumber());
          }Would you please help me with modifying the client code to define which Queue the web service response should be placed in? setQueue() of the JMSTransportInfo class did not do the trick. Please help....
    Thanks,
    Sajitha
    Edited by: Sajitha on Sep 24, 2010 12:29 PM
    Edited by: Sajitha on Sep 27, 2010 8:44 AM

  • Jax-RPC Client side: How to use multiple X509 client certs ?

    hi, (excuse me for my english)
    i'm looking for an answer to this question:
    I'm using the JAX-RPC libraries (JWSDP 2.0) for a web services client application in my app server (tomcat 4 under 1.4 Sun JVM) with HTTPS connection. All works fine when i'm using system.Setproperties for keystore and trustore.
    Buk now, I want to use different client SSL keys for the same app to consume the web service (one SSL client key for a group of users).
    Is it possible ?
    i've tried using custom SSLSocketFactory and custom KeyManager but it won't works: when the SSL connection is well established once, i can connect to the app with an invalide client cert ! (it seems SSL connection is in cache and i dont't know how to disable this cache).
    I have read some threads on this problem without answers ! (http://forum.java.sun.com/thread.jspa?forumID=331&threadID=333010 and http://forum.java.sun.com/thread.jspa?forumID=331&threadID=600372)
    Thanks
    Edited by: Buck007 on May 26, 2008 9:14 AM

    I have the same problem. If you find the solution please post it here :)
    thanks

  • Jax-rpc and https and multiple keystores - a limitation?

    hi,
    When using the JAX-RPC libraries for a web services client application in my app server I want to make use of a different keystore then the one set by using the default system properties.
    reason being I have multiple ssl enabled apps runing in the app server and I want to use different client keys in the apps (I use client certificate authentication)
    from what I see now I expect this to be not possible - since creating the http(s) connection is completely hidden from a development point of view.
    any ideas on the possibilities/impossibilities?
    regards Joost ([email protected])

    Can you not use command line switches to specify the truststore, e.g.
    -Djavax.net.ssl.trustStorePassword=changeit -Djavax.net.ssl.trustStore=truststore_1-4

  • Plugin non-HTTP transports in JAX-RPC

    Is it possible to plugin a non-HTTP transports in JAX-RPC?
    I know that Apache SOAP provides a way of plugin non-HTTP transports for it,
    Is there any document that can teach me to write a non-HTTP transport and plug it into JAX-RPC?

    You cannot plug in non-HTTP transports into the JAX-RPC reference implementation.

  • Problems with types using JAX-RPC

    Hi,
    I have to convert an RMI application into a JAX-RPC application. I thought it was easy but I have some problems with the parameter types and the return types of the remote methods.
    For example, how can I pass a java Object as a parameter or as a return type, supposing this object could be anything during runtime? Is there any way to do it because the only types one could use with JAX-RPC are not enough for my application.
    Regards,
    Vincent

    Thanks, that was my mistake.
    Instead of using wscompile, you must generate the stub classes with the WTK. Then, you set a reference to the j2me-ws.jar (JSR-172). No additional libraries from the Web Service Development Kit are required.

  • Deploying related JAX-RPC endpoints

    Hi,
    I've got some JAX-RPC endpoints that are basically two interfaces to a whole heap of behind the scenes classes that they both share. It seems it's not possible to deploy two endpoints in the same WAR. What would be the recommended way to deploy these so that I only need deploy these classes once, and there will only be one instance of them in the servlet that both interface implementations reference?
    On a similar note, is there a similar practice that could be applied to JSP's, as I have 3 jsp "web sites" that need to be fairly distinct in their deployment, but they share some common jsp's as static includes and some classes. What's the best way to deploy the shared includes and java classes so that they are deployed to the tomcat server once and used by all 3 jsp sites?
    I'm using jwsdp 1.0.01
    Thanks for any help

    I saw this discussion and had come to the same conclusion. However there is more to it.
    If you deploy a service as HTTP secure, then how do you tell the client to get the WSDL? Because the wscompile for the client does not support authentication.
    I tried to put the WSDL on a separate (non-secure) end-point, but it does not seem to work. Even when I define the two endpoints separately in the jaxrpc-ri.xml e.g.
    <webServices
         xmlns="http://java.sun.com/xml/ns/jax-rpc/ri/dd"
         version="1.0"
         targetNamespaceBase="urn:IMEIWS"
         typeNamespaceBase="urn:IMEIWS"
         urlPatternBase="/ws">
         <endpoint
              name="IMEIWebService"
              displayName="IMEI Web Service from Wilabs"
              description="A web service."
    interface="com.wilabs.imeiws.server.IMEIWebServiceInterface"
         implementation="com.wilabs.imeiws.server.IMEIWebServiceImpl"
              port="{urn:IMEIWS}IMEIWebServiceInterfacePort"
              model="/WEB-INF/model.gz"/>
         <endpoint
              name="IMEIWebServiceWSDL"
              displayName="IMEI Web Service WSDL"
              description="A web service to obtain the WSDL."
              interface="com.wilabs.imeiws.wsdl.IMEIWebServiceInterface"
              implementation="com.wilabs.imeiws.wsdl.IMEIWebServiceImpl"
              port="{urn:IMEIWS}IMEIWebServiceWSDLPort"
              model="/WEB-INF/model.gz"/>
         <endpointMapping
              endpointName="IMEIWebService"
              urlPattern="/imeiws"/>
         <endpointMapping
              endpointName="IMEIWebServiceWSDL"
              urlPattern="/wsdl"/>
    </webServices>
    I get only one in the jaxrpc-ri-runtime.xml i.e.:
    name='IMEIWebService'
    interface='com.wilabs.imeiws.server.IMEIWebServiceInterface'
    implementation='com.wilabs.imeiws.server.IMEIWebServiceImpl'
    tie='com.wilabs.imeiws.server.IMEIWebServiceInterface_Tie'
    model='/WEB-INF/model.gz'
    wsdl='/WEB-INF/IMEIWebService.wsdl'
    service='{urn:IMEIWS}IMEIWebService'
    port='{urn:IMEIWS}IMEIWebServiceInterfacePort'
    urlpattern='/imeiws'/>

  • Getting SOAPExceptionImpl while invoking JAX-RPC Service

    Hi,
    I am using Static Stub to invoke a service . Both the Client and and Service are deployed on same Tomcat. Service is quite simple that display the Greeting message but when I am calling a service it throws the following exception..
    java.rmi.RemoteException : HTTP Transport Error: com.sun.xml.messaging.saaj.SOAPExceptionImpl;
    Invalid Content-Type "text/html"
    Any idea how to fix this issue ?
    Thanks
    Abdul

    I used tha JAX-RPC runtime jars that come with JSWDP and was able to sucessfully run the client on JDK1.3 environment. Is there a solution for JDK1.2 client?

  • JAX-RPC documentliteral with -model option problems in JWSDP 2.0

    Hello,
    I am trying to deploy a service generated with JAX-RPC. Howeverr when I write URL (http://localhost:8080/webservicedeployable/webservice001) in a browser I am getting message: 404 Not Found: Invalid request. Appending ?WSDL shows propers wsdl code, so endpoint URL is allright.. There is my config file delow:
    <?xml version="1.0" encoding="utf-8"?>
    <configuration xmlns="http://java.sun.com/xml/ns/jax-rpc/ri/config">
      <service name="webservice001"
               targetNamespace="http://scdjws/webservices/wsdl"
               typeNamespace="http://scdjws/webservices/types"
               packageName="com.service001">
        <interface name="service.MyServicePort" servantName="service.MyServiceImpl"/>     
      </service> 
    </configuration>I am using command:
    wscompile -gen:server -f:documentliteral -s "C:\Documents and Settings\Michal\jbproject\mojservice\src\" -classpath WEB-INF/classes -d build -model webservice001.xml.gz config.xml -keepmy jaxrpc-ri.xml is:
    <?xml version="1.0" encoding="utf-8"?>
    <webServices xmlns="http://java.sun.com/xml/ns/jax-rpc/ri/dd"
                 version="1.0"
                 targetNamespaceBase="http://java.sun.com/xml/ns/jax-rpc/wsi/wsdl"
                 typeNamespaceBase="http://java.sun.com/xml/ns/jax-rpc/wsi/types"
                 urlPatternBase="/ws">
      <endpoint name="service001"
                displayName="Service 001"
                description="This is service001"
                interface="service.MyServicePort"
                implementation="service.MyServiceImpl"
                model="/webservice001.xml.gz"/>
      <endpointMapping endpointName="service001"
                       urlPattern="/webservice001"/>
    </webServices>I am using Tomcat 5.5.16 and JWSDP 2.0.
    Making a call to the service throws exception:
    java.io.IOException: Server returned HTTP response code: 500 for URL: http://localhost:8080/webservicedeployable/webservice001
         at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:791)
    Thank you in advance for all suggestion.
    Michal

    Hi,
    I reselved the problem by just copying the FastInfoset to the jaxrpc\lib directory (I am sure this should work in a different way).
    Well, the next problem I am getting is that the "XMLStreamWriter" class cannot be found. This class is contained in jsr173_api.jar.
    I guess my main question is the following:
    Which projects are necessary to get this simple helloWorld example to work?
    I did set the JWSDP_HOME varible. Is there another setting I have to make to have all necessary jar-files available and to be able to run the samples?
    Could anybody point me to a tutorial that does not only show a few lines of code (as the HelloWorld sample in the JWSDP-Tutorial) but that would instead lead me through a step-by-step sample application that I write by myself and actually runs at the end? The example in the JWSDP-Tutorial uses all kinds of existing config files which are not explained.
    Thanks for your help.

  • Question related to the  JAX-RPC.

    Hi ,
    I have a question related to the JAX-RPC API.
    Please clear me following points whether I am right or not?
    1. If my two end points are in Java then and only we use the JAX-RPC API. Is it right?
    2. If my two end points are in .Net then we use the some other API in .NET. Is it right?
    Please give me links or associate info. regarding this.
    Thanks,
    Rahul

    With JAX-RPC API, you are writing or consuming web services. If you are building web services, then that web service should be interoperable to .NET as well as Java. You do not have to use JAX-RPC, because, JAX-WS can serve the same purpose but is much easier to program. More about web services may be found at [http://soalib.com|http://soalib.com]

  • Invoking JAX-RPC service deployed in SunONE7.0 by jdk1.2/1.3 client

    Hi,
    Is it possible to invoke a JAX-RPC service deployed in SunONE7.0 by jdk1.2/1.3 client?. If possible what jars should the client have in order to do this?.
    warm regards,
    Vijay

    I used tha JAX-RPC runtime jars that come with JSWDP and was able to sucessfully run the client on JDK1.3 environment. Is there a solution for JDK1.2 client?

  • Weblogic 8, no jax-rpc context info available error

    i've developed some web services using the jwsdp 1.3. they deploy and run fine in jwsdp 1.3 and also in jboss 3.2. i deployed the same web services in weblogic 8.1 with no problems. when i access the web service and the wsdl, i get the following error:
    Web Services
    No JAX-RPC context information available.
    my jaxrpc-ri.xml is:
    <?xml version="1.0" encoding="UTF-8"?>
    <webServices
        xmlns="http://java.sun.com/xml/ns/jax-rpc/ri/dd"
        version="1.0"
        targetNamespaceBase="urn:Foo"
        typeNamespaceBase="urn:Foo"
        urlPatternBase="/ws">
        <endpoint
            name="JobService"
            displayName="WorkPoint Job Service"
            description="WorkPoint Job Service for API calls"
            interface="com.workpoint.webservices.JobServiceIF"
            wsdl="/WEB-INF/JobService.wsdl"
            model="/WEB-INF/JobService.xml.gz"
            implementation="com.workpoint.webservices.JobServiceImpl"/>
        <endpoint
            name="ServerConfigService"
            displayName="WorkPoint ServerConfig Service"
            description="WorkPoint ServerConfig Service for API calls"
            interface="com.workpoint.webservices.ServerConfigServiceIF"
            wsdl="/WEB-INF/ServerConfigService.wsdl"
            model="/WEB-INF/ServerConfigService.xml.gz"
            implementation="com.workpoint.webservices.ServerConfigServiceImpl"/>
        <endpoint
            name="WorkItemService"
            displayName="WorkPoint Job Service"
            description="WorkPoint Job Service for API calls"
            interface="com.workpoint.webservices.WorkItemServiceIF"
            wsdl="/WEB-INF/WorkItemService.wsdl"
            model="/WEB-INF/WorkItemService.xml.gz"
            implementation="com.workpoint.webservices.WorkItemServiceImpl"/>
        <endpointMapping
            endpointName="JobService"
            urlPattern="/JobService"/>
        <endpointMapping
            endpointName="ServerConfigService"
            urlPattern="/ServerConfigService"/>
        <endpointMapping
            endpointName="WorkItemService"
            urlPattern="/WorkItemService"/>
    </webServices>any ideas on what is going on? also, what is the urlPatternBase used for?

    I had this problem when I created custom web services : some classes where not generated in the right folder (ie package name).
    Check the content of the generated war to see if all the necessary classes and files are in it and in the right place.

  • OC4j and JAX-RPC Web service.

    Hello every one,
    this is actually coming from :
    OC4j 9.0.3 CMP/CMR and MVCSoft.
    Is it possible to develope JAX-RPC webservice using sun jdk with OC4J ?
    How can I do it ?
    Thanks.
    Giuseppe.

    Hi,
    I should have said that:
    I'm stuck with 9.0.3 as the 10.0.3 is a preview
    and the final release is not available until
    next summer.
    I guess 10.0.3 should be better as it is compliant with J2EE 1.4 which should include JAXRPC support.
    The problem with 9.0.3 is that being compliant with J2EE 1.3 it does not directly support JAX-RPC.
    So I was wondering How to develop Jax-RPC web service using OC4J 9.0.3.
    Sorry for to having specified the version.
    Thanks.
    Giuseppe.

Maybe you are looking for

  • Changing the Document Mode to IE9

    I exported my Captivate project for HTML5, and the project works on my MAC and PC, but when testing it on another co-workers computer using IE9, she was unable to play the project, index.html. When she opened index.html, this is the response she rece

  • Virus protection for MacBook Pro

    Forum, When I was using FCE there where many posts about using virus protection applications,such as Norton causing problems with video editing. My MBC does not have a virus protection application but there seems to be an increasing threat to Apple c

  • Can photos with mix extension be used on Mac Pro?

    I have many photos which I saved on disks from my windows computer.  I have a mac and now cannot open any of these photos.  Many have mix as the extensions.  Any solutions?

  • Capturing SAML attribute in OSB proxy

    Hi, We have a requirement of extracting one of the SAML attributes sent to our proxy service and send it to the business service as one of the SOAP body elements. I have done the following things: - Created the business service based on particular WS

  • MacBook slow wakeup, black screen, Mavericks, took to Genius bar, worked OK for about a week and now the same.

    MacBook slow wakeup, black screen, Mavericks, took to Genius bar, worked OK for about a week and now the same. Screen actually seems a very dark navy blue almost black. sometimes can see cursor in white Only happens sometimes