Tabnine Logo
JISession.getGlobalSocketTimeout
Code IndexAdd Tabnine to your IDE (free)

How to use
getGlobalSocketTimeout
method
in
org.jinterop.dcom.core.JISession

Best Java code snippets using org.jinterop.dcom.core.JISession.getGlobalSocketTimeout (Showing top 19 results out of 315)

origin: org.jinterop/j-interop

/** Execute a Method on the COM Interface identified by the IID.
 * 
 * 
 * @exclude
 * @param obj
 * @param targetIID
 * @return
 * @throws JIException
 */ 
Object[] call(JICallBuilder obj,String targetIID) throws JIException
{
  return call(obj, targetIID, session.getGlobalSocketTimeout());
}
 
origin: org.kohsuke.jinterop/j-interop

/** Execute a Method on the COM Interface identified by the IID.
 *
 *
 * @exclude
 * @param obj
 * @param targetIID
 * @return
 * @throws JIException
 */
Object[] call(JICallBuilder obj,String targetIID) throws JIException
{
  return call(obj, targetIID, session.getGlobalSocketTimeout());
}
origin: org.openscada.jinterop/org.openscada.jinterop.core

/**
 * Execute a Method on the COM Interface identified by the IID.
 * 
 * @exclude
 * @param obj
 * @param targetIID
 * @return
 * @throws JIException
 */
Object[] call ( final JICallBuilder obj, final String targetIID ) throws JIException
{
  return call ( obj, targetIID, this.session.getGlobalSocketTimeout () );
}
origin: org.kohsuke.jinterop/j-interop

void addRef_ReleaseRef(JICallBuilder obj) throws JIException
{
  synchronized (mutex) {
    if (remunknownIPID == null)
    {
      return;
    }
    //now also set the Object ID for IRemUnknown call this will be the IPID of the returned JIRemActivation or IOxidResolver
    obj.setParentIpid(remunknownIPID);
    obj.attachSession(session);
    try {
      call(obj,JIRemUnknown.IID_IUnknown, session.getGlobalSocketTimeout());
    } catch (JIRuntimeException e1)
    {
      throw new JIException(e1);
    }
  }
}
origin: org.openscada.jinterop/org.openscada.jinterop.core

newsession.setGlobalSocketTimeout ( this.session.getGlobalSocketTimeout () );
newsession.useSessionSecurity ( this.session.isSessionSecurityEnabled () );
newsession.useNTLMv2 ( this.session.isNTLMv2Enabled () );
origin: org.openscada.jinterop/org.openscada.jinterop.core

void addRef_ReleaseRef ( final JICallBuilder obj ) throws JIException
{
  synchronized ( this.mutex )
  {
    if ( this.remunknownIPID == null )
    {
      return;
    }
    //now also set the Object ID for IRemUnknown call this will be the IPID of the returned JIRemActivation or IOxidResolver
    obj.setParentIpid ( this.remunknownIPID );
    obj.attachSession ( this.session );
    try
    {
      call ( obj, JIRemUnknown.IID_IUnknown, this.session.getGlobalSocketTimeout () );
    }
    catch ( final JIRuntimeException e1 )
    {
      throw new JIException ( e1 );
    }
  }
}
origin: org.jinterop/j-interop

newsession.setGlobalSocketTimeout(session.getGlobalSocketTimeout());
newsession.useSessionSecurity(session.isSessionSecurityEnabled());
JIComServer comServer = new JIComServer(newsession,comObjectImpl.internal_getInterfacePointer(),null);
origin: org.kohsuke.jinterop/j-interop

newsession.setGlobalSocketTimeout(session.getGlobalSocketTimeout());
newsession.useSessionSecurity(session.isSessionSecurityEnabled());
newsession.useNTLMv2(session.isNTLMv2Enabled());
origin: org.kohsuke.jinterop/j-interop

super.setTransportFactory(JIComTransportFactory.getSingleTon());
super.setProperties(new Properties(defaults));
super.getProperties().setProperty("rpc.socketTimeout", new Integer(session.getGlobalSocketTimeout()).toString());
origin: org.openscada.jinterop/org.openscada.jinterop.core

super.setTransportFactory ( JIComTransportFactory.getSingleTon () );
super.setProperties ( new Properties ( defaults ) );
super.getProperties ().setProperty ( "rpc.socketTimeout", new Integer ( session.getGlobalSocketTimeout () ).toString () );
origin: org.jinterop/j-interop

newsession.setGlobalSocketTimeout(session.getGlobalSocketTimeout());
newsession.useSessionSecurity(session.isSessionSecurityEnabled());
JIComServer comServer = new JIComServer(newsession,ptr,null);
origin: org.jinterop/j-interop

super.getProperties().setProperty("rpc.security.password", session.getPassword());
super.getProperties().setProperty("rpc.ntlm.domain", session.getDomain());
super.getProperties().setProperty("rpc.socketTimeout", new Integer(session.getGlobalSocketTimeout()).toString());
super.setAddress(address);
origin: org.openscada.jinterop/org.openscada.jinterop.core

super.getProperties ().setProperty ( "rpc.socketTimeout", new Integer ( session.getGlobalSocketTimeout () ).toString () );
super.setAddress ( address );
origin: org.jinterop/j-interop

super.getProperties().setProperty("rpc.security.password", session.getPassword());
super.getProperties().setProperty("rpc.ntlm.domain", session.getDomain());
super.getProperties().setProperty("rpc.socketTimeout", new Integer(session.getGlobalSocketTimeout()).toString());
origin: org.kohsuke.jinterop/j-interop

newsession.setGlobalSocketTimeout(session.getGlobalSocketTimeout());
newsession.useSessionSecurity(session.isSessionSecurityEnabled());
newsession.useNTLMv2(session.isNTLMv2Enabled());
origin: org.kohsuke.jinterop/j-interop

super.getProperties().setProperty("rpc.security.password", session.getPassword());
super.getProperties().setProperty("rpc.ntlm.domain", session.getDomain());
super.getProperties().setProperty("rpc.socketTimeout", new Integer(session.getGlobalSocketTimeout()).toString());
if (session.isNTLMv2Enabled())
origin: org.openscada.jinterop/org.openscada.jinterop.core

super.getProperties ().setProperty ( "rpc.security.password", session.getPassword () );
super.getProperties ().setProperty ( "rpc.ntlm.domain", session.getDomain () );
super.getProperties ().setProperty ( "rpc.socketTimeout", new Integer ( session.getGlobalSocketTimeout () ).toString () );
if ( session.isNTLMv2Enabled () )
origin: org.kohsuke.jinterop/j-interop

super.getProperties().setProperty("rpc.socketTimeout", new Integer(session.getGlobalSocketTimeout()).toString());
super.setAddress(address);
origin: org.openscada.jinterop/org.openscada.jinterop.core

newsession.setGlobalSocketTimeout ( session.getGlobalSocketTimeout () );
newsession.useSessionSecurity ( session.isSessionSecurityEnabled () );
newsession.useNTLMv2 ( session.isNTLMv2Enabled () );
org.jinterop.dcom.coreJISessiongetGlobalSocketTimeout

Javadoc

Returns the global timeout applied to all sockets opened from this session to COM Server.

Popular methods of JISession

  • createSession
    Creates a new session using credentials of the sessionparameter. The new session is not yet attached
  • setGlobalSocketTimeout
    Sets the timeout for all sockets opened to (not fro) the COM server for this session. Default value
  • destroySession
    Used to destroy the session, this release all references of the COM server and it's interfaces. It s
  • useSessionSecurity
    Sets the use of NTLM2 Session Security. Framework will use NTLM Packet Level Privacy and Sign\Seal
  • <init>
  • addToSession
  • debug_addIpids
  • debug_delIpids
  • equals
  • getDomain
    Gets the domain of the user associated with this session.
  • getLocalHost
  • getLocalhostAddressAsIPString
  • getLocalHost,
  • getLocalhostAddressAsIPString,
  • getLocalhostAddressAsIPbytes,
  • getLocalhostCanonicalAddressAsString,
  • getPassword,
  • getSessionIdentifier,
  • getStub,
  • getTargetServer,
  • getUnreferencedHandler

Popular in Java

  • Creating JSON documents from java classes using gson
  • getContentResolver (Context)
  • scheduleAtFixedRate (Timer)
  • getSupportFragmentManager (FragmentActivity)
  • HttpURLConnection (java.net)
    An URLConnection for HTTP (RFC 2616 [http://tools.ietf.org/html/rfc2616]) used to send and receive d
  • MessageFormat (java.text)
    Produces concatenated messages in language-neutral way. New code should probably use java.util.Forma
  • LinkedList (java.util)
    Doubly-linked list implementation of the List and Dequeinterfaces. Implements all optional list oper
  • Stream (java.util.stream)
    A sequence of elements supporting sequential and parallel aggregate operations. The following exampl
  • BoxLayout (javax.swing)
  • Logger (org.apache.log4j)
    This is the central class in the log4j package. Most logging operations, except configuration, are d
  • From CI to AI: The AI layer in your organization
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now