Is Determinations Server Stateless for the Interview Web Service?

OPA documentation states the following in "Run a clustered environment":
"The Determinations Server operates stateless transactions. When it processes an operation, that operation is completed, leaving the Determinations Server in the same state as when it started. Because there is no state held between Determinations Server operations, it makes no difference which server in a cluster of Determinations Servers a particular client request uses."
While this appears true for the Specific and Generic web services, the Interview web service starts with an "OpenSession" operation. Is the Interview web service truly stateless or are there tricks to make it stateless? Do we need to set our load-balancing routers to have sticky sessions because of this?

Yes sorry, you are correct - the Interview Service is stateful and will require sticky sessions. It is only the Specific and Generic Assess services that are stateless.
I'll have the documentation amended.
Edited by: Kristy Van Der Vlist on 19-Sep-2011 18:00

Similar Messages

  • Example code download for "The JavaTM Web Services Tutorial "

    Web page at http://java.sun.com/webservices/docs/1.0/tutorial/doc/Preface.html#63740 describes the follwoing way to get code example
    ==========================================
    If you are viewing this online, you need to download The Java Web Services Tutorial from:
    http://java.sun.com/webservices/downloads/webservicestutorial.html
    Once you have installed the tutorial bundle, the example source code is in the <JWSDP_HOME>/docs/tutorial/examples directory, with subdirectories for each of the technologies included in the pack.
    ==========================================
    However, following the link, I download file jwsdp-1_5_01-tutorial.zip. But this zip does not contain a docs/tutorial/.. directory.
    Any hint? Thanks in advance.

    Did you set up the database as described in
    http://java.sun.com/webservices/docs/1.0/tutorial/doc/WebApp13.html#69868

  • Missing applications for the SharePoint Web Services site in IIS

    We have SharePoint 2013 server farm and in one of the server missing service applications/virtual directories.
    Under IIS, “SharePoint Web Services" site including an Application Pool and SharePoint Web Services Root is available, but no applications for the SharePoint Service Applications, all applications (security token service, topology ..) virtual directories
    are missing/removed/deleted.
    Can we re-provision only service applications on local SharePoint server, local server only not in any other servers in the server farm?
    Thank You.
    -RK

    Hi RK,
    Please check if services has been started on this server via CA > System Settings 
    > Manager services on server > change server to the current one.
    Is there other application server in your farm? Please test the issue on other servers.
    Regards,
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected] .
    Rebecca Tu
    TechNet Community Support

  • No Web server maintained for the presentation of log. system

    Hi Banu/All,
    I got the following error message while executing jump target to R/3 Transaction ME2N.
    <i>Messages:
    No Web server maintained for the presentation of log. system DDVR3110
    Jump target cannot be executed
    An error occurred with the report to report interface during the jump</i>
    Banu, I have gone through the following link which u have given in the previous queries, but can u please tell me how to install ITS for the target system? or how to know/whom to ask regarding the ITS installation? is it BASIS People?
    http://help.sap.com/saphelp_nw04/helpdata/en/61/b8c63ce4b79679e10000000a114084/content.htm
    Apart from ITS, what other settings have to be done in this kind of scenarios?
    Can U please eloborate on this topic, please?
    Thanks & Regards...
    Ganesh
    Message was edited by:
            Ganesh

    Hello Ganesh,
    Did you have the chance to solve it?.
    I have the same issue.
    Thanks in advance.
    Facundo Romero.

  • Query jump: No Web server maintained for the presentation of log. system

    Hello,
    I have created a query jump in the RSBBS transaction to go in R/3 through a Bex Query. When i choose the jump in the query anayzer I have the error message:
    <b>No Web server maintained for the presentation of log. system.</b>
    Do you have ever had this message? what is the solution? why do my bex anayzer use a web interface to connect in R/3?
    Thanks a lot!
    Julien

    Hi Arun,
    Yes,  the AIE 300 SYSTEM is R/3 system.  If you think this could be a basis problem please let me know and if you can a step by step solution or something to bring to the basis. 
    Thanks,
    Diego

  • MDM Server Password Parameter in SRM Web Service for SRM MDM Catalog 2.0

    Hi Experts,
    We have password set on our MDM server. I am little confused about how to define MDM server password parameter in external Web service Call structure in SRM System for SRM MDM Catalog 2.0.
    Will Catalog webservice work, if we don;t define password for MDM server in webservice??if No, then please let me know how to define MDM server password in SRM websevice.
    Any help will be highly appreciated.
    Thanks,
    Shiv

    Hi Shiv,
       The MDM Server password is needed when you are changing Webdynpro UI Configuration.
      For catalogs, all you need is the repository userid/password parameters in the call structutre.
    SG

  • How to disable u201Csticky sessionu201D for the particular web application?

    Hi All,
    Is there a possibility to disable so called u201Csticky sessionu201D for the particular web application? We have deployed a WAR file with the Axis 1.4 based web service into SAP NW 7.1. The web service works fine but when the client makes SOAP request the server creates a so-called u201Cstickyu201D HTTP session with the default (30 minutes) timeout. Such u201Csessionsu201D are created on each SOAP request from the same client. The maximum number for Java Web Sessions (SAP Management Console) is 1000. After a while the clients start getting the u201C503 Service not availableu201D errors:
    503 Service not available.
    Error: -6
    Version: 7010
    Component: ICM Java
    Date/Time: Tue Mar 03 14:30:12 2009 
    Module: http_j2ee2.c
    Line: 1166
    Server: XXXXXXXXXXX
    Error Tag:
    Detail: server overload: no more sessions available
    The only way to improve the situation we found so far was to set session timeout to 1 minute. That u201Csticky sessionu201D will still be created, though.
    This is a testing environment and we do not use any hardware/software loadbalancer. 
    Any help/advice is appreciated. (Please let me know if you need more information.)
    Thanks,
    Dmitry Vasilenko

    The practical workaround we finally come up with for this problem was to create a servlet filter and map it to the AxisServlet. The servlet filter will invalidate the HTTP session and effectively destroy the sticky session created by the server on each SOAP request.
    Here is the fragment from the web.xml
    <filter>
      <filter-name>StickySessionFilter</filter-name>
      <filter-class>com.xxxxx.xxxxx.xxxx.services.StickySessionFilter</filter-class>
    </filter>
    <filter-mapping>
      <filter-name> StickySessionFilter </filter-name>
      <servlet-name>AxisServlet</servlet-name>
    </filter-mapping>
    <servlet>
      <servlet-name>AxisServlet</servlet-name>
      <servlet-class>org.apache.axis.transport.http.AxisServlet</servlet-class>
    </servlet>
    The doFilter() method looks like this:
    public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {
           try {
                  chain.doFilter(request, response);
           } finally {
                         javax.servlet.http.HttpServletRequest httpRequest = (javax.servlet.http.HttpServletRequest)request;
                         javax.servlet.http.HttpSession session = httpRequest.getSession();
                         session.invalidate();
    Thanks,
    Dmitry Vasilenko

  • Web server only accessing the default web folder.

    I have the web folder for my domain specified in the web folder on my server as: /Library/WebServer/Documents/whp/
    But when I enter the domain in a web browser, it goes to the home page in the /Library/WebServer/Documents/ instead.
    The IP address is set to any and the port is 80.
    Any idea what I am doing wrong?
    Mac Book Pro   Mac OS X (10.4.8)  

    The website name you're typing into your web browser must exactly match either the domain name you have entered in Server Admin for the site, or an alias (under "Aliases"). So, for example, "example.com" and "www.example.com" do not match.
    MacBook Pro   Mac OS X (10.4.8)  

  • Security exception while running the java client for a secured web service.

    hi,
    I created a proxy for a secured web service.
    When I run the client java program I am getting the following exception :
    java.io.IOException: could not load the default-keystore.jks file because The keystore file is tampered or password is incorrect.
    Its saying that password is invalid.
    Can you please help me on this thanks in advance.
    Regards,
    Chandra

    hi,
    I created a proxy for a secured web service.
    When I run the client java program I am getting the following exception :
    java.io.IOException: could not load the default-keystore.jks file because The keystore file is tampered or password is incorrect.
    Its saying that password is invalid.
    Can you please help me on this thanks in advance.
    Regards,
    Chandra

  • Parameter REPORT for the Report Web item in the Web template is empty or mi

    Hello,
    I tried to create a Web-Template (WAD). By executing the report, I get the selection screnn, but by confirming the selection I get the following message:
    Web Item Report Error
    Web template error in specifications for the Web item report
    Parameter REPORT for the Report Web item in the Web template is empty or missing
    Use the BEx Web Application Designer to add parameter REPORT to the report Web item in the Web template, and assign a report name to the parameter
    Contact your system administrator. This error was recorded
    What can I do to solve this error?
    Thanks!
    XmchX

    As DP_1 Type Query_view_Data_provider, I have assinged a Query Designer Query wich works fine, if I execute it as QDR.
    The entry Query_view_Data_provider makes sense for me, but what do I need to maintain for the type "Filter"?
    Thanks!
    XmchX

  • Invalid date format for 'Created' field in the getVersions web service Response.

    Hi all,
    I am trying to get all versions for selected document by calling getVersions method Versions.asmxweb service, but getting ‘Created’ date attribute value is in the format "29-05-2012 12:01"
    but I am expecting either one of the following date formats.
     1.      yyyy-MM-dd HH:mm:ss  or  yyyy-MM-ddTHH:mm:ssz
     2.      MM/dd/yyyy HH:mm a   (a means AM/PM)
     3.      MM/dd/yyyy
     4.      yyyyMMdd HH:mm:ss
    where do I need to change?
    what are all the formate will be support by SharePoint?
    please find attached response xml of getVersions call.
    <results xmlns="http://schemas.microsoft.com/sharepoint/soap/">
        <list id="{6A6F6CD1-2E9C-44CC-B1F5-56G7JB5C8778}"/>
        <versioning enabled="1"/>
        <settings url="http://hbngjfgj47s20/reg/_layouts/LstSetng.aspx?List={7S6F6CD1-2E9C-44CC-B1F5-KO9J8Y7Y6H78}"/>
        <result version="@0.3" url="http://vmesxsrv47s20/register/Shared Documents/Parent/child/my_doc" created="29-05-2012 12:01" createdRaw="2014-12-02T12:46:02Z" createdBy="my_dom\agi_sharepoint"
    createdByName="AGI_Sharepoint" size="288" comments=""/>
        <result version="0.1" url="http://hbngjfgj47s20/register/_vti_history/1/Shared Documents/Parent/child/my_doc" created="29-05-2012 10:01" createdRaw="2014-12-02T10:55:18Z" createdBy="my_dom\my_sharepoint"
    createdByName="my_sharepoint" size="288" comments=""/>
        <result version="0.2" url="http://hbngjfgj47s20/register/_vti_history/2/Shared Documents/Parent/child/my_doc.txt" created="29-05-2012 11:01" createdRaw="2014-12-02T10:59:25Z" createdBy="my_dom\my_sharepoint"
    createdByName="my_sharepoint" size="288" comments=""/>
    </results>
    Kindly help me on this.

    Hi,
    According to your post, my understanding is that you want to change date format for ‘Created’ field in the getVersions web service.
    Per my knowledge, you can get the date format for ‘Created’ field as “MM/dd/yyyy HH:mm a”.
    For more information, you can refer to:
    Versions.GetVersions Method (Versions)
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Can the GetEvents Web Service return a subset of events for a given record

    Page 173 of Siebel Web Services On Demand Guide Version 3.1 (CRM On Demand Release15) Rev. A, states the following:
    "You can return events for all record types, or a subset of record types, depending on how you prepare the WSDL files associated with the Integration Event service,"
    The IntegrationEventWS_GetEvents_Input type in the Integration Event WSDL that is availble only contains an "Event Count" parameter for the number of events to retrieve and appears to have no way to specify a record type in order to retrieve a subset of the events as stated above.
    Is there any way to retrieve a subset of the Intgeration Events by record type?
    Thanks
    John

    Customer care have replied to me and the line qouted above is a documentation error and there is no way to query the GetEvent Web Service to return a subset of events for a given record.

  • How to prepare for the interview

    hi gurus
          tommorow i have an interview can any body tell me the how to prepare for the interview?i.e.,which type of questions interviewer may ask regarding both subject and real time.?
    thanks&regards
    prasad

    Hi,
    Interview will be based on what you put in you resume.
    Refer to the following website for interview questions
    www.http://www.sap-img.com/ and http://www.sap-basis-abap.com/
    Please let me know if you need more information.
    Assign points if useful.
    Regards
    Sridhar M

  • Error: IP Address or Server Name for the Licences Server

    I am getting this error after installing SAP Server and after that the client. But the Error keep Comming back:
    IP Address or Server Name for the Licences Server.
    Regards,
    Faisal Baloch

    Hi faisal,
    Ca you please elaborate more on this like, which version & module you have installed the server on? like solution manager etc.
    Thanks
    M. Nizam

  • Non riesco a ricevere acquisti fatti su itunes, mi da questo errore :erreu : you have an error in your sql syntax; checkthe manual that corresponds to your mysql server version for the right syntax to use near from news order by id desc at line. cosa devo

    non riesco a ricevere acquisti fatti su itunes, mi da questo errore :erreu : you have an error in your sql syntax; checkthe manual that corresponds to your mysql server version for the right syntax to use near from news order by id desc at line. cosa devo fare?  grazie

    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]

Maybe you are looking for

  • When I open new tabs it is an AOL tab. I have Fire F as my homepage? How do I change this?

    I set my home page to mozilla or yahoo, but when I open new tabs it keeps bringing up AOL search engine. I don't want this b/c it is useless and always brings up irrelevant search results. How do I change what tabs open up after homepage is set?

  • Solaris 10 zone config for one application

    I have a Solaris 10 x86 server with 48GB of memory and 8 CPUs (although I believe hyperthreading is turned on because prsinfo shows 16 CPUs). The server is dedicated to one big application which spawns many processes/threads. Performance is extremely

  • Assignment field is not picking from GL

    Dear All, We are posting one real estate document with reference of the contract number. But when we see the FI document assignment field is not updating from GL which we maintained in sort key. In that FI document we have 4 line items but one line h

  • How to work with Preview in Lion (autosave, etc)

    Just installed Lion and am tweaking and adjusting.  Run headlong into Autosave/Versioning with Preview.  Was very used to using preview to quickly look at and play with adjustments to images (but used Photoshop for heavy lifting).  Most of the time,

  • Strange character (�) in my messages

    I recently started sending messages to friends about some upcoming events which required RSVP so I created a LINK through Dreamweaver and then viewed it in the browser...then from the FILE menu - chose "mail contents of this page" The idea was to mai