Timeout value for remote service

We are running Tuxedo 6.5 on a Unix Sun Solaris system. We are also
using the SNA eLink Facility to access
CICS Transactions on a OS/390 Host System. We have Remote Domain
Service Definitions
(DM_REMOTE_SERVICES) for each CICS Transaction.
In the UBBCONFIG file we did define a application-wide timeout
value of 90 seconds (BLOCKTIME). But
a few transactions can run up to 4 Minutes. I don't really want
to increase the Blocktime value.
Does anybody know, if there is a way to specify a timeout value
for specific remote services.

Hi Richard,
Thanks for your answer.
I did some testing with the TRANTIME parameter, but
our application is still acting the same way.
I think the TRANTIME parameter only works with AUTOTRAN
set to Y.
Any other ideas ?
"Richard C. Harrelson, Jr." <[email protected]> wrote:
Jurgen,
I believe the TRANTIME parameter for the remote service
in the DMCONFIG (DM_REMOTE_SERVICES) sets the timeout
value. An example from mine:
GY550_SE AUTOTRAN=N
CONV=N
LDOM=VTM4R22
LOAD=50
PRIO=66
RDOM=FRITZ22R31
RNAME="ASERIESOLTP"
TRANTIME=30
API=ATMI
FUNCTION=APPC
"Jürgen Voss" wrote:
We are running Tuxedo 6.5 on a Unix Sun Solaris system.We are also
using the SNA eLink Facility to access
CICS Transactions on a OS/390 Host System. We have RemoteDomain
Service Definitions
(DM_REMOTE_SERVICES) for each CICS Transaction.
In the UBBCONFIG file we did define a application-widetimeout
value of 90 seconds (BLOCKTIME). But
a few transactions can run up to 4 Minutes. I don'treally want
to increase the Blocktime value.
Does anybody know, if there is a way to specify a timeoutvalue
for specific remote services.

Similar Messages

  • How do I get a new value for the service name field and update it in Connection Properties?

    I am running Windows Vista. I just upgraded to Firefox 4. When I try to log on to the internet, it tells me the proxy server is refusing connections. A diagnostic reported Error 815 and said the remote server is not responding because there is an invalid value for the "Service Name" field. It said to get a new value and update it in Connection Properties. How do I do this?

    When you create a new film script, the first page you see is a title page.
    The page after this title page is the one where you generally type in your scenes.
    It looks like you are facing some issue and not able to delete any text.
    Can you please send me this script so that I can have a better look at your issue?
    You can save this script to disk by using option 'File -> Save to disk'. This will create a '.stdoc' file on your system.
    Just mail this '.stdoc' file to me at 'roverma <at> adobe <dot> com'
    Thanks

  • 1405975 - Minimum Authorization Profile for Remote Service Delivery

    In the document described in the header SAP Customers are asked to provide a logon user for SAP Remote Service Delivery.
    Due to security concerns, customers wish to grant restricted authorizations only.
    The minimal autorizations required have been described by SAP in a Z_BASIC_SERVICE_V1.zip file.
    Its there that I noticed the requirement for the SE93 transactioncode.
    With SE93 you can assign transactioncodes to your account and create new ones.
    I realy can't match this requirement with 'restricted autorizations only'.
    Am I missing something?

    Hi,
    If you think SE93 authorization should be restricted, then you can remove this from the role. As far I know, SE93 authorization is not necessary for remote service delivery. It is one of the 'good-to-have' authorization not the compulsory one.
    Regards,
    Vivek

  • Increase timeout value for webservice

    Hello,
    I have a stateless session bean webservice that times out when running long queries.
    Caught exception while handling request: oracle.oc4j.rmi.OracleRemoteException: An exception occurred during transaction completion: ; nested exception is:
         javax.transaction.RollbackException: Timed out
    How can I increase the timeout value for this webservice?
    Thanks!

    at the oc4j directory you can find in j2ee\home\config the file transaction-manager.xml where you can change the value of transaction-timeout
    cumps
    DnlCY

  • What is the default timeout value for the SPQuery object?

    What is the default timeout value for the SharePoint SPQuery object? I've tried searching online but can't find anything with the actual timeout value.
    Someone suggested it might use the timeout property in the database? Anyone know if that's how it works?

    Hi,
    Do you want to avoid timeout when you query list items?
    If so, we can use the following C# code to set timeout.
    HttpContext.Current.Server.ScriptTimeout = 600; // 10 minutes
    More information is here:
    http://200oksolutions.blogspot.com/2013/03/sharepoint-2010-set-timeout-only-to.html
    The SPQuery object doesn’t provide any property to set timeout. We can also set timeout in web.config, or SQL Connections or IIS.
    Thanks,
    Dennis Guo
    TechNet Community Support
    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]
    Dennis Guo
    TechNet Community Support

  • Can I specify a timeout value for an RMI call?

    Is it possible to specify a timeout value when a client makes a remote
    RMI call to a WL
    EJB? If the server method hangs does the client call hang forever with it?
    - Rick Holland OO/Distributed Systems Consultant
    - ObjectAge Inc.
    - [email protected]
    "Logic is a wreath of pretty flowers, that smell bad"

    That's what I did to try this. weblogic.ejbc knows how to pass -dispatchPolicy to
    the weblogic.rmic, so in the RMI descriptor it creates:
    <method
    name="*"
    dispatch-policy="queueName"
    >
    </method>
    so, maybe there is a command-line option for the timeout as well. Anyway, extracting
    xxxRTD.xml and adding
    <method
    name="*"
    timeout="xxx"
    >
    </method>
    works just fine.
    Rick Holland <[email protected]> wrote:
    So all I have to do is build my EJB jar, extract the *RTD.xml file, hack
    it, stuff it back into the jar and deploy (all within my Ant script).
    Sounds fairly straight forward.
    Thanks again
    [email protected] wrote:
    It gets there from the server. If you look inside ejbc'ed ejb-jar you'll find
    RMI descriptors there (they are named like xxx.RTD.xml)
    Rick Holland <[email protected]> wrote:
    Thank you Dimitri, but I have one more dumb question, since I need these
    timeouts
    on the client side where does an RMI descriptor go? I have never used
    one of these.
    Thanks
    [email protected] wrote:
    AFAIK, you can specify it in the RMI descriptor :
    <rmi Name=".....">
    <cluster
         clusterable="true"
    </cluster>
    <method
         name="methodname"
         timeout="timeoutinmilliseconds"
    </method>
    </rmi>
    And, if there is timeout, method invocation will fail with exception like this:
    weblogic.rmi.extensions.RequestTimeoutException: RJVM response timed out after: '1000' milliseconds.
    at weblogic.rmi.internal.BasicOutboundRequest.sendReceive(BasicOutboundRequest.java:85)
    at weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java:262)
    at weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java:229)
    at weblogic.rmi.internal.ProxyStub.invoke(ProxyStub.java:35)
    at $Proxy2.testTimeout(Unknown Source)
    Rick Holland <[email protected]> wrote:
    Is it possible to specify a timeout value when a client makes a remote
    RMI call to a WL
    EJB? If the server method hangs does the client call hang forever with it?
    - Rick Holland OO/Distributed Systems Consultant
    - ObjectAge Inc.
    - [email protected]
    "Logic is a wreath of pretty flowers, that smell bad"
    - Rick Holland OO/Distributed Systems Consultant
    - ObjectAge Inc.
    - [email protected]
    "Logic is a wreath of pretty flowers, that smell bad"
    - Rick Holland OO/Distributed Systems Consultant
    - ObjectAge Inc.
    - [email protected]
    "Logic is a wreath of pretty flowers, that smell bad"
    Dimitri

  • OWB_REMOTE_ADMIN value for remote control centre service?

    We're upgrading from OWB 10.2 to 11gR2, and it's failing with a message saying that the 'owb\UnifiedRepos\remote_owb_install.sql' script needs to be run to set the OWB_REMOTE_HOME to the OWB home on the database server.
    However, as with our version 10 architecture, we don't want to install OWB on the database server, we want to have the Control Centre Service running on a separate application server. OWB11 has been installed on the apps server but when we run remote_owb_install.sql and then try to run OMBSEED the same error is coming up saying to run the script again. I've tried setting the OWB_REMOTE_HOME's value implicitly and explicitly, but neither works.
    Any ideas or pointers gratefully received!

    to add to the above information......
    since I am using my own tablespace and schema as described above .....
    I created a new control center through the design center user interface.......
    for the new control center ...i provided the details of the above new user ...new workspace etc....
    the ran the below ORACLE provided script(show_service script).....
    set serveroutput on;
    set role OWB_USER;
    declare
    l_available number(22);
    begin
    l_available := owbsys.wb_rt_script_util.show_service();
    if l_available <> 0
    then
    dbms_output.put_line('Available');
    else
    dbms_output.put_line('Not Available');
    end if;
    end;
    output is 'AVAILABLE'
    but when I deploy my first mapping ..... I get the below error message
    Error
    RPE-01012: Cannot deploy PL/SQL maps to this target schema.
    The target schema must be in the same instance as the Control Center and have the OWB_USER role granted
    I have only one instance of oracle database .....also I have granted the OWB_USER role to my targer schema
    how do i check what the Control Center is trying

  • StatusCode values for web service call?

    I am trying to check the status of a long-lived service using a web service call from a .NET application. I therefore don't have access to the java libraries where the StatusCode constants (enumerations?) are defined. Can someone either tell me a .NET library I can reference in order to use the constant values, or at least tell me what the integer values are, and I can make my own constants.
    In case it wasn't cIear, I am using webservice_invokeStatus( jobId ).
    Thanks,
    Mike Gates

    Hi Mike,
    Good news!!! I figured out what's happening.
    The codes that I posted were related to the Process. They are process status codes.
    What you are looking for is related to the Job. So here are the job status codes.
    JOB_STATUS_UNKNOWN = 0 (default)
    JOB_STATUS_QUEUED = 1
    JOB_STATUS_RUNNING=2
    JOB_STATUS_COMPLETED=3
    JOB_STATUS_FAILED=4
    JOB_STATUS_TERMINATED=5
    JOB_STATUS_SUSPENDED=6
    JOB_STATUS_COMPLETE_REQUESTED=7
    JOB_STATUS_TERMINATE_REQUESTED=8
    JOB_STATUS_SUSPEND_REQUESTED=9
    JOB_STATUS_RESUME_REQUESTED=10
    cheers,
    Parth

  • Direct Access is working but how do I configure it for remote services, client management software, etc..

    Good morning/afternoon/evening TechNet,
    I've finally gotten a DA client connected to the corporate network utilizing an external network. I'm having a couple issues, one, not being able to ping the server from a computer that's on the same domain(I'm able to ping the DA client from the DA server).
    I'm not sure if there is a firewall setting that needs to be open on the client for incoming echo requests? Second, we use a client management system called BMC and I would like the direct access server to be able to utilize the BMC server so that I can manage
    the DA client whenever its on the network. I noticed on the DA server that "Step 3" offers an area where it allows you to add servers that will be used for direct access client management. Would I just need to populate the server in here and then
    open appropriate firewall rules so that the DA server has access to them? Lastly, Trying to "mstsc" into the DA client what would I need to open up on both sides so that I'm able to do this?
    Sorry about the horrible grammar but I've been up 24+ hours getting this awesome but pain in the butt Direct Access feature working.
    Thank you as always!
    -Liqsh0t

    I'm afraid it's a bit more complicated than adding a server into the list in Step 3 :)
    When a DirectAccess client is connecting into a corporate network that is IPv4 (I assume yours is, most are), it can reach into your IPv4 servers because the DA server is doing NAT64/DNS64 translations, turning all of your DirectAccess IPv6 packets into
    IPv4 packets before they head inside the network. But even though this happens in the background without you really knowing about it, the key thing there is that all DirectAccess traffic is IPv6. This means the clients can only be contacted via IPv6. If you
    have IPv6 inside your network, then you can route outbound fairly easily to your DA client computers. If you are all IPv4 inside as most companies are, then you have to either roll IPv6 out inside your network, at least partially, or you have to utilize ISATAP
    inside your network in order to create a sort of "virtual IPv6 cloud" that runs on top of your IPv4 internal network. This enables your internal management systems (like the BMC servers and helpdesk computers for RDP access outbound) to have a connection
    into the IPv6 world, which then enables them some routing capability to get out to the IPv6-connected DA clients. In addition to this IPv6 or ISATAP setup, you also need to configure WFAS rules on the DA clients so that they will allow this traffic.
    There is some info on setting up ISATAP here: http://blogs.technet.com/b/jasonjones/archive/2013/04/19/limiting-isatap-services-to-directaccess-manage-out-clients.aspx
    Otherwise one of the chapters in this book is also dedicated to the setup of a selective ISATAP environment, to be used for the purposes of DirectAccess outward management: https://www.packtpub.com/virtualization-and-cloud/microsoft-directaccess-best-practices-and-troubleshooting

  • Solution Manager prepared for the Remote Service Delivery?

    In preparation of GoingLive Session, we received a mail with some questions. Among them the following:
    Is your Solution Manager prepared for the Remote Service Delivery? Yes/No  
    Is the solution transferred to SAP?: Yes/No  
    What does the first question mean? what should be done to prepare the Solman for session delivery?
    How do I check if the solution is transferred to SAP?
    Thanks a lot,
        Dino

    Hello Dino,
    The SAP Solution Manager is a platform for the delivery of services for the following areas:
    ●     Risk minimization
    ●     Optimization of SAP solutions
    ●     Knowledge transfer
    Services in the SAP Solution Manager are services which help you to monitor and optimize the performance and availibility of your system landscapes and minimize your system operation risks.
    You can have the support services performed by SAP or perform them yourself:
    ●     Remote Services
    SAP experts deliver this service type via a remote connection (SAP Safeguarding Services, e.g. SAP GoingLive Check).
    For checking whether solution manager is prepared for remote service delivery u need to check the following.
    Prerequisites
    You have:
    ●     created a solution.
    ●     set-up a connection to the SAP Service Marketplace (Explorer).
    Procedure
           1.      Choose the transaction SOLUTION_MANAGER.
           2.      Choose Delivery of SAP Services ® Service Plan, in Operations.
           3.      Choose Order Service from SAP.
    You go to the Service Catalog.
           4.      Choose the link to the service.
    The system goes to the catalog entry of the service, in the SAP Service Marketplace.
           5.      Follow the procedure described in the SAP Service Marketplace.
    =============================================
    Solution transfered to SAP means that the u have done the configuration, testing and validation of the SAP system components and then transfered this to the satellite systems connected to Solman. Please note that solman is the central point of access for supporting implementation activities and the satellite systems are SAP systems comnected to solman in the landscape.
    Hope this helps. Please assign points and let me know if u need anything specific.
    Rgds
    Manish

  • How to set the EJB timeout value??

    I made a Swing application connecting with EJB to provide some service. If I set the correct J2EE server IP, everything works fine. However, it will throw an Exception after some time, if I set an incorrect IP. I would like to ask if there is any means to set a timeout value for the Swing application that it throws an exception while it cannot connect to the server after the timeout value.

    Hi,
    Amount of time required to call an EJB on a remote server depends on, I would guess, multiple factors, like server performance, network speed, link quality, etc. I'm not sure if there is a direct way of telling the client-side code to wait for results for a limited amount of time, but in general blocking on the client side until the server results are available is not a good idea (at least not from the GUI perspective, since you would be locking the display). Either way, you could make all your EJB calls from a separate thread, and timeout that. This way your client code would have complete control of responsiveness of the server side.
    Just a thought.
    Mark

  • Setting connect timeout and read timeout on a Web service Client

    How can I set timeout values for a SOAP Web service client?
    I don't want to set timeout values for the complete JVM, but on a call-by-call basis. I was looking for something like:
      SOAPConnection c = ....
      c.setTimeout(...);Anyone?

    Thanks again fsato4, but i still can not resolve my problem. I must use the java 1.2.2 and i think the package java.nio.charset is not supported. I have read documentation about the use of encodings but i can not understand clearly what is happening in my application. Let me explain what i am thinking and ask you some things.
    I send a message from the client in VB using soap toolkit, obviously in UTF-8 format. When the message is received in my Java Web service, Do i need to do something in order to my Java string understands the message?.
    What i am doing is to obtain the byte array with the following line:
    byte[] utf8Bytes = strXmlFile.getBytes("UTF8");
    And then i use the constructor of the string as follows:
    String ostr = new String (utf8Bytes,"UTF8"); I think that in this point i have my string in a valid representation for my server (Sun solaris) Rigth?. And finally i use my new string to pass that value to my function which expects a java.lang.String, but the result is that all the special characters are replaced.
    Just after of the new String line, i write my string to an Buffered Writer pointed to a FileOutputStream (just for Doublecheck) using the "ISO8859_1" encoding and for my surprise i can read very well that xml in my browser and the special characters are displayed in a correct way. Could you please explain me why?
    Thanks for your help.

  • Setting timeout option for GIT in TFS 2013 update 4

    Hi all,
    I want to increase the timeout option for GIT but I do not know how to set it.
    Please help with how can I set the timeout value for GIT. I am getting "Timeout Error" whenever I am trying to run the 'git pull' command. The repository size is in GB and its taking time to complete the action and during this process 'Timeout'
    occurs.
    Please help me.
    Thanks,

    Hi Vaibhav,
    I do not believe there is a straightforward way to achieve this since stakeholder is replacing limited access. I think you may have to raise User Voice here https://visualstudio.uservoice.com/forums/121579-visual-studio/category/30925-team-foundation-server 
    Cheers!
    Chaminda

  • Possible to configure per connection timeout values?

    hi,
    please, does anybody know how (or whether or not it is even possible) to configure a "PER CONNECTION" timeout on the connections - created by jndi - to an ldap server?
    my understanding is that setting the "com.sun.jndi.ldap.connect.timeout" property on the javax.naming.directory.InitialDirContext sets a _global_ timeout value for _all_ connections created/managed by that InitialDirContext (that is, with a "PER CONTEXT" scope).
    however, what i would like to do instead, is somehow configure a different timeout value for each individual connection that a InitialDirContext might know about.
    the first solution that will probably pop in your head is "connection pool". however, the app sets "java.naming.ldap.factory.socket" property to a custom socket factory class. according to the following paragraph from the jndi tutorial, that disqualifies the app from using connection pools:
    "There are a couple of environment properties that automatically disqualify a Context instance from using a pooled connection. A Context instance cannot use a pooled connection if it has its "java.naming.ldap.factory.socket" property set to a custom socket factory class, or its "java.naming.security.sasl.callback" property set to a custom callback handler class, or its "com.sun.jndi.ldap.trace.ber" property set to enable protocol tracing."
    http://java.sun.com/products/jndi/tutorial/ldap/connect/config.html
    even if we could use connection pools, we still wouldn't be able to set "per connection" timeout values. would we?
    one proposed solution is to completely rip out jndi from the app and replace it with the netscape directory sdk for java. to me, that seems like too drastic a measure though - given the project's time-constraints (the way the app was originally designed does not lend itself to a straight-forward "pop-out/drop-in" type replacement). i was hoping there would be a simpler alternative (a jndi-based configuration type solution, for example).
    any suggestions would be gratefully appreciated. thanks in advance for your replies.

    Enable the Default Host option in the AirPort Admin Utility, use the IP address you have assigned to your server.

  • Setting TCP Read timeout value?

    How do I choose a timeout value for a TCP read function?
    I'm receiving data from a server at a rate which varies between 40 and 140 Hz (normally 120 Hz), there is no handshaking and at any set transmission rate it appears that the network load causes the rate to fluctuate slightly.
    All I have been able to do so far is plot a frame number that is received in my data and fiddle with the buffer mode and timeout until I get the least dropouts. At 120Hz 5ms works best with a standard buffer, surprisingly 8ms is poorer.
    I am using a producer consumer loop with a queue and some interpolation to make up for the loss of data. 
    This is very hit and miss so I'm sure there's a proper / better way to do this!

    If you are using standard mode, then the read function should return any partial data, but will report an error out.
    You may want to look at the functions that you call after the TCP read. I think that the enqueue function will NOT enqueue data if there is an error in.
    There is a function you can use to clear TCP timeout errors. You could use this to allow you to enqueue partial data to your consumer loop.
    vi.lib\addons\internet\utils\tcputil.llb\No Time Out Error.vi
    Note that it will be up to your consumer code to identify your 'frames' for proper decoding.
    Now is the right time to use %^<%Y-%m-%dT%H:%M:%S%3uZ>T
    If you don't hate time zones, you're not a real programmer.
    "You are what you don't automate"
    Inplaceness is synonymous with insidiousness

Maybe you are looking for

  • DMS Display Original Document download in Temp

    Hi, I have the requirement in SAP DMS (GUI), whenever i display the document from CV03N tcode, the original file is download in to my Temp folder in the background in EAI viewer as well as separate WSapplication options. Whether it is possible to con

  • Cannot insert a page to a pdf form because it is in xml format.  do not want to embed as an attachment. Is there a way to resolve?

    I have a pdf fillable form I have created, but when I wanted to add a cover page I received a message that could not add to a xml form.  Suggestion was to attach (embed).  Is there any other option?

  • Plant vs Profit center

    Dear expert, How to check plant and profit center in transaction MM01, so when user input profit center which belong to other plant, error message occurs. thxs and sorry for my english. Rgds, Ely

  • Problem in embedding Multiple Images

    Dear members, I am composing a mail in java mail. In the body i am trying to embed (Note: Not attach) three images files. But, only the first image is getting embedded. Other 2 images are only getting attached, not coming as embedded images.I tried v

  • [solved] Spamd won't start after perl upgrade

    Starting spamd via the initscript doesn't work anymore. If I try to run spamd via console I get the following error: /usr/bin/perl: symbol lookup error: /usr/lib/perl5/site_perl/auto/Crypt/OpenSSL/RSA/RSA.so: undefined symbol: Perl_Gthr_key_ptr Any i