Connect Via RMI To A Remote Service?

Has anyone connected, via RMI, to a remote service within an application module? Currently this seems to wreak havoc upon all future and current ORMI communication to and from the application server in which a model is deployed (or at least within a container). Does anyone have any idea on how to do this correctly?
-Brian
When a connection is initiated I get the following stack trace:
oracle.jbo.JboException: JBO-29000: Unexpected exception caught: java.security.AccessControlException, msg=access denied (java.net.SocketPermission ifd01-d.syd.nighthawkrad.net resolve)
     at oracle.jbo.server.remote.AbstractRemoteApplicationModuleImpl.dispatchMethod(AbstractRemoteApplicationModuleImpl.java:6301)
     at oracle.jbo.server.remote.AbstractRemoteApplicationModuleImpl.executeMethod(AbstractRemoteApplicationModuleImpl.java:6503)
     at oracle.jbo.server.remote.AbstractRemoteApplicationModuleImpl.processSvcMsgRequest(AbstractRemoteApplicationModuleImpl.java:4744)
     at oracle.jbo.server.remote.AbstractRemoteApplicationModuleImpl.processSvcMsgEntries(AbstractRemoteApplicationModuleImpl.java:4995)
     at oracle.jbo.server.remote.AbstractRemoteApplicationModuleImpl.readServiceMessage(AbstractRemoteApplicationModuleImpl.java:4176)
     at oracle.jbo.server.remote.AbstractRemoteApplicationModuleImpl.processMessage(AbstractRemoteApplicationModuleImpl.java:2255)
     at oracle.jbo.server.ApplicationModuleImpl.doMessage(ApplicationModuleImpl.java:7509)
     at oracle.jbo.server.remote.AbstractRemoteApplicationModuleImpl.sync(AbstractRemoteApplicationModuleImpl.java:2221)
     at oracle.jbo.server.remote.ejb.ServerApplicationModuleImpl.doMessage(ServerApplicationModuleImpl.java:79)
     at oracle.jbo.server.ejb.SessionBeanImpl.doMessage(SessionBeanImpl.java:474)
     at sun.reflect.GeneratedMethodAccessor15.invoke(Unknown Source)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
     at java.lang.reflect.Method.invoke(Method.java:585)
     at com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJBJoinPointImpl.java:35)
     at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:69)
     at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
     at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:69)
     at com.evermind.server.ejb.interceptor.system.TxBeanManagedInterceptor.invoke(TxBeanManagedInterceptor.java:53)
     at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:69)
     at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
     at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:69)
     at com.evermind.server.ejb.StatefulSessionEJBObject.OC4J_invokeMethod(StatefulSessionEJBObject.java:840)
     at RemoteQCServicesAppModule_StatefulSessionBeanWrapper226.doMessage(RemoteQCServicesAppModule_StatefulSessionBeanWrapper226.java:1902)
     at sun.reflect.GeneratedMethodAccessor14.invoke(Unknown Source)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
     at java.lang.reflect.Method.invoke(Method.java:585)
     at com.evermind.server.rmi.RmiMethodCall.run(RmiMethodCall.java:53)
     at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
     at java.lang.Thread.run(Thread.java:595)
## Detail 0 ##
java.security.AccessControlException: access denied (java.net.SocketPermission ifd01-d.syd.nighthawkrad.net resolve)
     at java.security.AccessControlContext.checkPermission(AccessControlContext.java:264)
     at java.security.AccessController.checkPermission(AccessController.java:427)
     at java.lang.SecurityManager.checkPermission(SecurityManager.java:532)
     at java.lang.SecurityManager.checkConnect(SecurityManager.java:1031)
     at java.net.InetAddress.getAllByName0(InetAddress.java:1117)
     at java.net.InetAddress.getAllByName0(InetAddress.java:1098)
     at java.net.InetAddress.getAllByName(InetAddress.java:1061)
     at java.net.InetAddress.getByName(InetAddress.java:958)
     at java.net.InetSocketAddress.<init>(InetSocketAddress.java:124)
     at java.net.Socket.<init>(Socket.java:178)
     at sun.rmi.transport.proxy.RMIDirectSocketFactory.createSocket(RMIDirectSocketFactory.java:22)
     at sun.rmi.transport.proxy.RMIMasterSocketFactory.createSocket(RMIMasterSocketFactory.java:128)
     at sun.rmi.transport.tcp.TCPEndpoint.newSocket(TCPEndpoint.java:569)
     at sun.rmi.transport.tcp.TCPChannel.createConnection(TCPChannel.java:185)
     at sun.rmi.transport.tcp.TCPChannel.newConnection(TCPChannel.java:171)
     at sun.rmi.server.UnicastRef.newCall(UnicastRef.java:306)
     at sun.rmi.registry.RegistryImpl_Stub.lookup(Unknown Source)
     at net.nighthawk.ifd.client.communications.Communications.updateFaxViewerRMIServer(Communications.java:156)
     at net.nighthawk.talon.model.bc.autorad.QCServicesAppModuleImpl.sendReport(QCServicesAppModuleImpl.java:5560)
     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:585)
     at oracle.jbo.server.remote.AbstractRemoteApplicationModuleImpl.dispatchMethod(AbstractRemoteApplicationModuleImpl.java:6279)
     at oracle.jbo.server.remote.AbstractRemoteApplicationModuleImpl.executeMethod(AbstractRemoteApplicationModuleImpl.java:6503)
     at oracle.jbo.server.remote.AbstractRemoteApplicationModuleImpl.processSvcMsgRequest(AbstractRemoteApplicationModuleImpl.java:4744)
     at oracle.jbo.server.remote.AbstractRemoteApplicationModuleImpl.processSvcMsgEntries(AbstractRemoteApplicationModuleImpl.java:4995)
     at oracle.jbo.server.remote.AbstractRemoteApplicationModuleImpl.readServiceMessage(AbstractRemoteApplicationModuleImpl.java:4176)
     at oracle.jbo.server.remote.AbstractRemoteApplicationModuleImpl.processMessage(AbstractRemoteApplicationModuleImpl.java:2255)
     at oracle.jbo.server.ApplicationModuleImpl.doMessage(ApplicationModuleImpl.java:7509)
     at oracle.jbo.server.remote.AbstractRemoteApplicationModuleImpl.sync(AbstractRemoteApplicationModuleImpl.java:2221)
     at oracle.jbo.server.remote.ejb.ServerApplicationModuleImpl.doMessage(ServerApplicationModuleImpl.java:79)
     at oracle.jbo.server.ejb.SessionBeanImpl.doMessage(SessionBeanImpl.java:474)
     at sun.reflect.GeneratedMethodAccessor15.invoke(Unknown Source)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
     at java.lang.reflect.Method.invoke(Method.java:585)
     at com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJBJoinPointImpl.java:35)
     at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:69)
     at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
     at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:69)
     at com.evermind.server.ejb.interceptor.system.TxBeanManagedInterceptor.invoke(TxBeanManagedInterceptor.java:53)
     at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:69)
     at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
     at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:69)
     at com.evermind.server.ejb.StatefulSessionEJBObject.OC4J_invokeMethod(StatefulSessionEJBObject.java:840)
     at RemoteQCServicesAppModule_StatefulSessionBeanWrapper226.doMessage(RemoteQCServicesAppModule_StatefulSessionBeanWrapper226.java:1902)
     at sun.reflect.GeneratedMethodAccessor14.invoke(Unknown Source)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
     at java.lang.reflect.Method.invoke(Method.java:585)
     at com.evermind.server.rmi.RmiMethodCall.run(RmiMethodCall.java:53)
     at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
     at java.lang.Thread.run(Thread.java:595)

Has anyone connected, via RMI, to a remote service within an application module? Currently this seems to wreak havoc upon all future and current ORMI communication to and from the application server in which a model is deployed (or at least within a container). Does anyone have any idea on how to do this correctly?
-Brian
When a connection is initiated I get the following stack trace:
oracle.jbo.JboException: JBO-29000: Unexpected exception caught: java.security.AccessControlException, msg=access denied (java.net.SocketPermission ifd01-d.syd.nighthawkrad.net resolve)
     at oracle.jbo.server.remote.AbstractRemoteApplicationModuleImpl.dispatchMethod(AbstractRemoteApplicationModuleImpl.java:6301)
     at oracle.jbo.server.remote.AbstractRemoteApplicationModuleImpl.executeMethod(AbstractRemoteApplicationModuleImpl.java:6503)
     at oracle.jbo.server.remote.AbstractRemoteApplicationModuleImpl.processSvcMsgRequest(AbstractRemoteApplicationModuleImpl.java:4744)
     at oracle.jbo.server.remote.AbstractRemoteApplicationModuleImpl.processSvcMsgEntries(AbstractRemoteApplicationModuleImpl.java:4995)
     at oracle.jbo.server.remote.AbstractRemoteApplicationModuleImpl.readServiceMessage(AbstractRemoteApplicationModuleImpl.java:4176)
     at oracle.jbo.server.remote.AbstractRemoteApplicationModuleImpl.processMessage(AbstractRemoteApplicationModuleImpl.java:2255)
     at oracle.jbo.server.ApplicationModuleImpl.doMessage(ApplicationModuleImpl.java:7509)
     at oracle.jbo.server.remote.AbstractRemoteApplicationModuleImpl.sync(AbstractRemoteApplicationModuleImpl.java:2221)
     at oracle.jbo.server.remote.ejb.ServerApplicationModuleImpl.doMessage(ServerApplicationModuleImpl.java:79)
     at oracle.jbo.server.ejb.SessionBeanImpl.doMessage(SessionBeanImpl.java:474)
     at sun.reflect.GeneratedMethodAccessor15.invoke(Unknown Source)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
     at java.lang.reflect.Method.invoke(Method.java:585)
     at com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJBJoinPointImpl.java:35)
     at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:69)
     at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
     at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:69)
     at com.evermind.server.ejb.interceptor.system.TxBeanManagedInterceptor.invoke(TxBeanManagedInterceptor.java:53)
     at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:69)
     at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
     at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:69)
     at com.evermind.server.ejb.StatefulSessionEJBObject.OC4J_invokeMethod(StatefulSessionEJBObject.java:840)
     at RemoteQCServicesAppModule_StatefulSessionBeanWrapper226.doMessage(RemoteQCServicesAppModule_StatefulSessionBeanWrapper226.java:1902)
     at sun.reflect.GeneratedMethodAccessor14.invoke(Unknown Source)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
     at java.lang.reflect.Method.invoke(Method.java:585)
     at com.evermind.server.rmi.RmiMethodCall.run(RmiMethodCall.java:53)
     at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
     at java.lang.Thread.run(Thread.java:595)
## Detail 0 ##
java.security.AccessControlException: access denied (java.net.SocketPermission ifd01-d.syd.nighthawkrad.net resolve)
     at java.security.AccessControlContext.checkPermission(AccessControlContext.java:264)
     at java.security.AccessController.checkPermission(AccessController.java:427)
     at java.lang.SecurityManager.checkPermission(SecurityManager.java:532)
     at java.lang.SecurityManager.checkConnect(SecurityManager.java:1031)
     at java.net.InetAddress.getAllByName0(InetAddress.java:1117)
     at java.net.InetAddress.getAllByName0(InetAddress.java:1098)
     at java.net.InetAddress.getAllByName(InetAddress.java:1061)
     at java.net.InetAddress.getByName(InetAddress.java:958)
     at java.net.InetSocketAddress.<init>(InetSocketAddress.java:124)
     at java.net.Socket.<init>(Socket.java:178)
     at sun.rmi.transport.proxy.RMIDirectSocketFactory.createSocket(RMIDirectSocketFactory.java:22)
     at sun.rmi.transport.proxy.RMIMasterSocketFactory.createSocket(RMIMasterSocketFactory.java:128)
     at sun.rmi.transport.tcp.TCPEndpoint.newSocket(TCPEndpoint.java:569)
     at sun.rmi.transport.tcp.TCPChannel.createConnection(TCPChannel.java:185)
     at sun.rmi.transport.tcp.TCPChannel.newConnection(TCPChannel.java:171)
     at sun.rmi.server.UnicastRef.newCall(UnicastRef.java:306)
     at sun.rmi.registry.RegistryImpl_Stub.lookup(Unknown Source)
     at net.nighthawk.ifd.client.communications.Communications.updateFaxViewerRMIServer(Communications.java:156)
     at net.nighthawk.talon.model.bc.autorad.QCServicesAppModuleImpl.sendReport(QCServicesAppModuleImpl.java:5560)
     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:585)
     at oracle.jbo.server.remote.AbstractRemoteApplicationModuleImpl.dispatchMethod(AbstractRemoteApplicationModuleImpl.java:6279)
     at oracle.jbo.server.remote.AbstractRemoteApplicationModuleImpl.executeMethod(AbstractRemoteApplicationModuleImpl.java:6503)
     at oracle.jbo.server.remote.AbstractRemoteApplicationModuleImpl.processSvcMsgRequest(AbstractRemoteApplicationModuleImpl.java:4744)
     at oracle.jbo.server.remote.AbstractRemoteApplicationModuleImpl.processSvcMsgEntries(AbstractRemoteApplicationModuleImpl.java:4995)
     at oracle.jbo.server.remote.AbstractRemoteApplicationModuleImpl.readServiceMessage(AbstractRemoteApplicationModuleImpl.java:4176)
     at oracle.jbo.server.remote.AbstractRemoteApplicationModuleImpl.processMessage(AbstractRemoteApplicationModuleImpl.java:2255)
     at oracle.jbo.server.ApplicationModuleImpl.doMessage(ApplicationModuleImpl.java:7509)
     at oracle.jbo.server.remote.AbstractRemoteApplicationModuleImpl.sync(AbstractRemoteApplicationModuleImpl.java:2221)
     at oracle.jbo.server.remote.ejb.ServerApplicationModuleImpl.doMessage(ServerApplicationModuleImpl.java:79)
     at oracle.jbo.server.ejb.SessionBeanImpl.doMessage(SessionBeanImpl.java:474)
     at sun.reflect.GeneratedMethodAccessor15.invoke(Unknown Source)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
     at java.lang.reflect.Method.invoke(Method.java:585)
     at com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJBJoinPointImpl.java:35)
     at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:69)
     at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
     at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:69)
     at com.evermind.server.ejb.interceptor.system.TxBeanManagedInterceptor.invoke(TxBeanManagedInterceptor.java:53)
     at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:69)
     at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
     at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:69)
     at com.evermind.server.ejb.StatefulSessionEJBObject.OC4J_invokeMethod(StatefulSessionEJBObject.java:840)
     at RemoteQCServicesAppModule_StatefulSessionBeanWrapper226.doMessage(RemoteQCServicesAppModule_StatefulSessionBeanWrapper226.java:1902)
     at sun.reflect.GeneratedMethodAccessor14.invoke(Unknown Source)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
     at java.lang.reflect.Method.invoke(Method.java:585)
     at com.evermind.server.rmi.RmiMethodCall.run(RmiMethodCall.java:53)
     at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
     at java.lang.Thread.run(Thread.java:595)

Similar Messages

  • This OC4J is configured to make JMX connections via RMIS...error!

    Hello,
    I have just installed OBIEE and when I try to log into Oracle Enterprise Manager 10g and got the following error:
    This OC4J is configured to make JMX connections via RMIS and fall back to RMI if the RMIS port is not configured. The RMIS connection on the OC4J local instance is configured but a connection could not be established. The JMX protocol is specified by the oracle.oc4j.jmx.internal.connection.protocol property in opmn.xml
    I have tried to reinstall OBIEE a couple of times but still get this error. Please let me know what I need to do to get this up and running.
    Thanks!
    Linda

    This may be because of the host name. You might have any special characters in host name, remove any under scores in host name, restart computer and check it.
    if not let me know what URL you are using.
    - Madan

  • HT204378 2 iOS8.1.1 devices can't connect via BT "Using Keynote Remote with Bluetooth" - HT6112

    I'm unable to get to iOS devices to connect via Bluetooth for Keynote control.  It's described above under the heading "Using Keynote Remote with Bluetooth".  Am I missing something?  I see the article mentions iOS8 so I know it's been updated recently.   I also see that this hasn't worked in the past.  Curious that the articles suggests it can be done now.
    I have 3 iOS devices all 8.1.1.
    iPhone 5
    iPhone 5s
    iPad 3rd Gen
    Thanks,
    Russell

    Just talked to Bose and learned the solution.
    Reset the speaker ....hold down the bluetooth button until you hear a tone. Delete the Bose in the Bluetooth Device directory on the iPad. When it is automatically rediscovered it will connect.
    Worked for me .....

  • Connecting via RMI/IIOP from Websphere 4

    Hi,
    I was wondering if anybody has connected to EJBs running on Sun ONE from a Websphere 4 application running on Solaris. We have been able to connect from Websphere running on Windows. The error on Solaris is java.rmi.MarshalException: CORBA BAD_PARAM 1330446359.
    It would even be helpful if someone could point me to some documentation that states it is not supported.
    thanks
    Steve

    it still not interoperable on 1.4. I try hello world example, with client use Java IDL ORB and server use JacORB and its name service. when client goes to
    orb.resolve_initial_references( "NameService" )
    it hangup and server side throws garbage like
    org.jacorb.poa.except.POAInternalError: error extracting oid from object_key: INIT
    Anyone has succeeded with Sun's IDL client and other server?

  • Unable to connect via BCP on a remote machine

    Hi, Hoping for some help - probably really basic question!
    I've been using BCP for a while now to import data to a table, where the script is on the same machine as the database.
    What I'm trying to do now is load data into a table on the same DB, but trigger the BCP command from a different machine.
    BCP TeamSandBox.dbo.Adhoc_List in D:\Import\Adhoc_List.txt -t, -f D:\Import\FormatFileAdhoc_list.fmt -T
    This is my main BCP command, and works fine from the local machine, bit when triggered from a remote machine, I get this...
    SQLState = 28000, NativeError = 18456
    Error = [Microsoft][SQL Native Client][SQL Server]Login failed for user 'Domain\UID'.
    SQLState = 42000, NativeError = 4060
    Error = [Microsoft][SQL Native Client][SQL Server]Cannot open database "TeamSandBox" requested by the login. The login failed.
    The domain\account I'm using has full sysadmin access to the server, and db_owner to the database. Equally, running SQLCMD commands from the same remote machine also works just fine - including inserting into the same table.
    Is there an access priviledge I'm missing out here?
    Thanks

    You have missed the -S parameter to enter your servername/instancename and -d for database name. -d is not mandatory but is good to avoid confusion and to make sure you hit the correct database.
    BCP Utility -
    http://msdn.microsoft.com/en-GB/library/ms162802.aspx
    Regards, Ashwin Menon My Blog - http:\\sqllearnings.com

  • SCCM 2012: remotely connect via powershelll: no psdrive

    Hi,
    I'd like to connect via powershell to a remote sccm-server.
    What I did:
    Run powershell x86
    enter-PSSession -ComputerName sccm2012 -ConfigurationName Microsoft.PowerShell32
    Set execution policy to unrestricted
    Import-Module ‘c:\Program Files (x86)\Microsoft Configuration Manager\AdminConsole\bin\ConfigurationManager.psd1’
    Get-psdrive to see connections (in order to change to sitecode via cd  sitecode)
    but the site does not appear (connected remotely also via sccm 2012 console and launched "connect via powershell").
    Please advise.
    J.
    Jan Hoedt

    You need some reg keys for this to work. Those reg keys are normally created by the console when you start it.
    $CMSiteCode = "P01" #Your site code
    $CMSiteServerFQDN = "sccm2012.domain.tld" #FQDN to your site server
    New-Item -Path HKCU:\Software\Microsoft\ConfigMgr10\AdminUI\MRU\1 -Force
    New-ItemProperty -Path HKCU:\Software\Microsoft\ConfigMgr10\AdminUI\MRU\1 -Name DomainName -Value "" -PropertyType String -Force
    New-ItemProperty -Path HKCU:\Software\Microsoft\ConfigMgr10\AdminUI\MRU\1 -Name ServerName -Value $CMSiteServerFQDN -PropertyType String -Force
    New-ItemProperty -Path HKCU:\Software\Microsoft\ConfigMgr10\AdminUI\MRU\1 -Name SiteCode -Value $CMSiteCode -PropertyType String -Force
    New-ItemProperty -Path HKCU:\Software\Microsoft\ConfigMgr10\AdminUI\MRU\1 -Name SiteName -Value "Primary Site $($CMSiteCode)" -PropertyType String -Force
    Use the script above before you import the CM-PoSh-Module, I've used it for some of my customers.
    Tim Nilimaa | Blog: http://infoworks.tv | Twitter: @timnilimaa

  • Windows 2008 connected via UNC Session to a isilon

    Hello,
    following "Problem".
    Isilon is a NAS System which provied NAS Space via SMB or NFS. In our solution the Windows Server 2008 connect the Fileshare via UNC Path witch works good.
    The Isilon also provides the possiblity to distribute all incoming connections via a Round Robin DNS Service directly on the the Isilon across all front end NICs.
    The problem now is when we connect to the ISILON with UNS the Server makes a DNS Lookup for the right IP-Adresse. But when the Server starts another session via UNC to the same "target" but to a other file while the
    first session is also opened the Server don´t  make a new DNS query. The TTL of the first DNS lookup was 0 so there is nothing in the DNS Cache. So what is the Problem? Where is the UNC Information stored on the Server. I need the possiblity
    that the Server starts a dns query for all UNC Sessions.
    Can anybody help?

    Hi,
    Thanks for your posting.
    I am trying to involve someone familiar with this topic to further look at this issue. There might be some time delay. Appreciate your patience.
    Thank you for your understanding and support. 
    Best Regards,
    Mandy
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Could not connect to remote service [rmi://localhost:1099/

    I have a large deployment with two filr appliances and one database and one search index.
    I am running zen load balancer in front of the appliance which works great.
    There are no config changes to the filr appliances in terms of port redirection.
    I had an issue upgrading from 1.0.1 to 1.1 so I blew it away and started fresh.
    After I installed and configured the appliances there were no issues . Now the :9443 configuration section will not work I get
    (this is just the top lines)
    HTTP ERROR 500
    Problem accessing /. Reason:
    Could not connect to remote service [rmi://localhost:1099/GangliaService]; nested exception is java.rmi.NoSuchObjectException: no such object in table
    Caused by:
    org.springframework.remoting.RemoteConnectFailureE xception: Could not connect to remote service [rmi://localhost:1099/GangliaService]; nested exception is java.rmi.NoSuchObjectException: no such object in table
    at org.springframework.remoting.rmi.RmiClientIntercep torUtils.convertRmiAccessException(RmiClientInterc eptorUtils.java:190)
    at org.springframework.remoting.rmi.RmiClientIntercep tor.doInvoke(RmiClientInterceptor.java:347)
    This is on all appliances (search,data,filr1,filr2)
    I restarted filr2 and the admin section 9443 comes back for a short time. Maybe 10 minutes then I get the same error. But now after the restart I get and authentication box asking for credentials on 8443. when I put in the admin or other creds it directs me to a page that says
    HTTP Status 500 - Filter execution threw an exception
    type Exception report
    message Filter execution threw an exception
    description The server encountered an internal error that prevented it from fulfilling this request.
    exception
    javax.servlet.ServletException: Filter execution threw an exception
    org.kablink.teaming.webdav.servlet.filter.Resource DispatchFilter.doFilter(ResourceDispatchFilter.jav a:87)
    root cause
    java.lang.ExceptionInInitializerError
    java.lang.J9VMInternals.initialize(J9VMInternals.j ava:259)
    org.kablink.teaming.asmodule.spring.security.userd etails.DecryptedPasswordUserDetailsService.loadUse rByUsername(DecryptedPasswordUserDetailsService.ja va:51)
    org.springframework.security.web.authentication.http://www.DigestAuthenticationFilte...lter.java:144)
    org.springframework.security.web.FilterChainProxy$ VirtualFilterChain.doFilter(FilterChainProxy.java: 323)
    org.springframework.security.web.context.SecurityC ontextPersistenceFilter.doFilter(SecurityContextPe rsistenceFilter.java:87)
    org.springframework.security.web.FilterChainProxy$ VirtualFilterChain.doFilter(FilterChainProxy.java: 323)
    org.springframework.security.web.FilterChainProxy. doFilter(FilterChainProxy.java:173)
    org.springframework.web.filter.DelegatingFilterPro xy.invokeDelegate(DelegatingFilterProxy.java:346)
    org.springframework.web.filter.DelegatingFilterPro xy.doFilter(DelegatingFilterProxy.java:259)
    org.kablink.teaming.webdav.servlet.filter.Resource DispatchFilter.doFilter(ResourceDispatchFilter.jav a:87)
    I have rebooted to no avail. If I restart the jetty service I do get the appliance login for 9443 but if I try to login I get the same message about [rmi://localhost:1099/
    again if I reboot then 9443 works for 10 mins but 8443 gets hosed. Everything worked fine until I rebooted the appliance.
    I am afraid to even reboot these appliances now in fear that the will cease to work.
    I should also note that this was part of the upgrade issue I had after I rebooted all of the appliances.
    Thanks in advance.

    Originally Posted by bschilliger
    The same issue here:
    HTTP Status 500 - Filter execution threw an exception
    type Exception report
    message Filter execution threw an exception
    description The server encountered an internal error that prevented it from fulfilling this request.
    exception
    javax.servlet.ServletException: Filter execution threw an exception
    org.kablink.teaming.webdav.servlet.filter.Resource DispatchFilter.doFilter(ResourceDispatchFilter.jav a:87)
    The password in the FILR appliance configuration 'Outbound E-Mail' was too complex (with special characaters). After changing the special characters with letters and/or numbers, the server starts without any troubles!
    Regards from Switzerland,
    Beat

  • Error OCCURRED: Failed to connect to LiveCycle server via RMI. Make sure that the server is running

    I have installed LifeCycle trial version .
    and trying to convert pdf to rtf
    using following initialization
    Properties connectionProps = new Properties();
    connectionProps.setProperty(ServiceClientFactoryProperties.DSC_DEFAULT_EJB_ENDPOINT, "jnp://localhost:1099");
    connectionProps.setProperty(ServiceClientFactoryProperties.DSC_TRANSPORT_PROTOCOL,Service ClientFactoryProperties.DSC_EJB_PROTOCOL);
    connectionProps.setProperty(ServiceClientFactoryProperties.DSC_SERVER_TYPE, "JBoss");
    connectionProps.setProperty(ServiceClientFactoryProperties.DSC_CREDENTIAL_USERNAME, "administrator");
    connectionProps.setProperty(ServiceClientFactoryProperties.DSC_CREDENTIAL_PASSWORD, "password");
    //Create a ServiceClientFactory instance
    ServiceClientFactory factory = ServiceClientFactory.createInstance(connectionProps);
    but i am getting error like following though i have started jboss which is inside lifecycle folder by run.bat
    ERROR IS:Error OCCURRED: Failed to connect to LiveCycle server via RMI. Make sure that the server is running and accessible to this client.

    May be you could use "netstat" or other tools like "ActivePorts" to ensure that ports established are correct.
    Also try if jnp://127.0.0.1:1099 works or not, if ports are correct.

  • Could not connect to remote service - java.lang.NullPointerException

    Hi,
    I'm struggling to get RMI to work on two servers. Locally my client and server work fine together although when I deploy I get a null pointer exception the first time I try and invoke a remote method. I've tried stopping the server app to see if it is actually connecting at I get a connection refused exception when its stopped so I'm assuming it must be connecting.
    Could not connect to remote service  - java.lang.NullPointerException
    com.jws.remoteServices.RemoteUpdateServer.addNewReport(RemoteUpdateServer.java:61)
    sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    java.lang.reflect.Method.invoke(Method.java:616)
    sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:322)
    sun.rmi.transport.Transport$1.run(Transport.java:177)
    java.security.AccessController.doPrivileged(Native Method)
    sun.rmi.transport.Transport.serviceCall(Transport.java:173)
    sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:553)
    sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:808)
    sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:667)
    java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110)
    java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603)
    java.lang.Thread.run(Thread.java:636)
    sun.rmi.transport.StreamRemoteCall.exceptionReceivedFromServer(StreamRemoteCall.java:273)
    sun.rmi.transport.StreamRemoteCall.executeCall(StreamRemoteCall.java:251)
    sun.rmi.server.UnicastRef.invoke(UnicastRef.java:160)
    java.rmi.server.RemoteObjectInvocationHandler.invokeRemoteMethod(RemoteObjectInvocationHandler.java:195)
    java.rmi.server.RemoteObjectInvocationHandler.invoke(RemoteObjectInvocationHandler.java:149)
    $Proxy0.addNewReport(Unknown Source)
    jasperserver.ReportHandler.run(ReportHandler.java:81)Any help would be greatly appreciated,
    Regards,
    Dan
    Edited by: danblackhust on Jul 18, 2010 3:54 AM

    Show us the code that threw and caught this exception.

  • Customizing single user connection via Windows remote desktop

    Hi, 
    I would like to know if its possible to configure Windows Remote Desktop in a way that if a user is already logged on to a particular computer and another user tries logging in, an error message appears on the screen saying that a user is already
    logged on. 
    I can limit the number of connections to 1 via:
    Local Group Policy Editor > Admin Templates > Remote Desktop Services > Remote Desktop Session Host > Connections 
    However, with this option, the error message that comes up on the screen is the following:
    'This computer cant connect to the remote computer, try again or contact the network administrator'.
    Is it possible to configure this in a way to let users know why they cant login so they don't think its an IT fault? 
    We are using Windows 7 on both the clients and the host. 
    Any advice would be much appreciated..
    Thanks,
    Seema 

    Hi Milos,
    No its not a server operating system.
    The PC that we are connecting to is running Windows 7.
    We are connecting to it using Windows Remote Desktop.
    Thanks,
    Seema
    Hi Seema,
    As Licensing agreement said, for Windows 7, you can only has one connection on this PC via RDP.
    If another user wants to connect this PC via RDP, he will be notified you another user who has already logged in.
    Kate Li
    TechNet Community Support

  • Users can only connect to RD farm website and cannot remote into terminal server , when connected via VPN

    Hello,
    I have a RD farm using 3 Win 2012 servers (1 broker and 2 session host), for internal use only, have not
    configured gateway for internet access.
    Users are able to connect to RD farm website and remote into terminal server, within office
    but can only connect to RD farm website and cannot remote into terminal server , when connected via VPN
    Its takes long time at securing connection and fails.
    Thanks

    Hi,
    Thank you for your posting in Windows Server Forum.
    First of all I would suggest you to configure RD gateway role on your server and pass all the connection through it because it’s a best practice to use RD Gateway in RDS Farm. 
    Apart from this, if you are not using RD Gateway then you must check that you have successfully forwarded port 3389 for RDS to access via VPN. Also check that you have made configuration under IIS Manager to enable Forms Authentication. Please check
    this link.
    In addition, please refer beneath article for additional details.
    1. How to Access Windows Remote Desktop Over the Internet
    2. Remote Desktop Services in Windows 2008 R2 – Part 3 – RD Web Access & RemoteApp
    (For reference)
    Hope it helps! 
    Thanks,
    Dharmesh

  • The iTune Remote App has stopped finding my iTunes library when connected to wifi from my main router, but works fine when connected via second wifi router on the same network (different SSID)

    I'm running iTunes Remote App from a couple of iPhone 5's and a first generation iPod Touch. iTunes is running on a PC - Windows 7. My home network runs two Wifi Routers, each with a different SSID. I've had no problems with the Remote app running this set up for the last 8 months but recently the App can only find my iTunes library when the iPhone/iPod is connected via one specific router, when connected to the network via the other router, no iTunes library is found. I'm also running an Apple TV and it's the same as the iTunes Library, only visible via the one SSID.
    Everything else seems to work fine when connected via either router, eg Internet on the iPhones (definitely via wifi)
    I've tried renewing the lease on the iPhone wifi connection, restarting everything.....several times.....
    It used to work fine, this only seems to have been a problem in recent weeks
    Any help or advice would be much appreciated
    Thanks
    Ian

    It turned out to be the firewall settings on our router. Her machine was sending traffic that our router interpreted as a DoS attack and blacklisted her Airport's MAC address. That's why it would work fine if she switched to Ethernet.

  • SQL Service Broker 2012: the connection was closed by the remote end, or an error occurred while receiving data: '64(The specified network name is no longer available.)'

    Anyone can help with the below issue please? Much appreciated.
    We have about 2k+ messages in sys.transmission_queue
    Telnet to the ports 4022 is working fine.
    Network connectivity has been ruled out.
    The firewalls are OFF.
    We also explicitly provided the permissions to the service account on Server A and Server B to the Service broker end points.
    GRANT
    CONNECT ON
    ENDPOINT <broker> <domain\serviceaccount>
    Currently for troubleshooting purposes, the DR node is also out of the Availability Group, which means that we right now have only one replica the server is now a traditional cluster.
    Important thing to note is when a SQL Server service is restarted, all the messages in the sys.transmission queue is cleared immediately. After about 30-40 minutes, the errors are continued to be seen with the below
    The
    connection was
    closed by the
    remote end,
    or an
    error occurred while
    receiving data:
    '64(The specified network name is no longer available.)'

    We were able to narrow down the issue to an irrelevant IP coming into play during the data transfer. We tried ssbdiagnose runtime and found this error:
    Microsoft Windows [Version 6.1.7601]
    Copyright (c) 2009 Microsoft Corporation.  All rights reserved.
    C:\Windows\system32>SSBDIAGNOSE -E RUNTIME -ID 54F03D35-1A94-48D2-8144-5A9D24B24520 Connect to -S <SourceServer> -d <SourceDB> Connect To -S <DestinationServer> -d <DestinationDB>
    Microsoft SQL Server 11.0.2100.60
    Service Broker Diagnostic Utility
    An internal exception occurred: Timeout expired.  The timeout period elapsed prior to completion of the operation or the server is not responding.
    P  29830                                 Could not find the connection to the SQL Server that
    corresponds to the routing address tcp://XX.XXX.XXX.199:4022. Ensure the tool is connected to this server to allow investigation of runtime events
    The IP that corresponds to routing address is no where configured within the SSB. We are yet unsure why this IP is being referred despite not being configured anywhere. We identified that this IP belongs to one of nodes other SQL Server cluster, which has
    no direct relation to the source server. We failed over that irrelevant SQL Server cluster and made another node active and to our surprise, the data from sys.transmission_queue started flowing. Even today we are able to reproduce the issue, if we bring
    back this node [XX.XXX.XXX.199] as active. Since, its a high business activity period, we are not investigating further until we get an approved downtime to find the root cause of it.
    When we get a approved downtime, we will bring the node [XX.XXX.XXX.199] as active and we will be running Network Monitor, Process Monitor and the SSB Diagnose all in parallel to capture the process/program that is accessing the irrelevant IP.
    Once, we are able to nail down the root cause, I will share more information.

  • TS2756 I can no longer connect via USB/service missing

    ..& my iPhone does not show up on the list anymore.  I can still use Wi-Fi, though.  I would like to be able to use the USB connection again.  Resetting the network settings doesn't help.  BTW, I'm using it with my MacBook Pro running 10.7.5 and my iPhone has the latest iOS update as well.
    When I first got the phone, I always used my internet connection via USB, but then it started giving me trouble.  I tried all kinds of suggestions that I found here and it was a real crap shoot -- sometimes it worked, and sometimes not.  Now it just won't work at all.  I recently deleted my iPhone from the list of services thinking that the next time I plugged it in, it would recreated the service.  It did not.  So, I'm still using it as before: just connecting over Wi-Fi (the network is still available, it just doesn't show up in my list of services on the left-hand column under "network").
    Anyone have any suggestions that they know will fix this? 

    Hi DaveX83 and welcome to the discussions.
    A few things to try.
    Press the reset button once on the back of your Extreme and let it restart. Check for proper operation.
    If no help there, keep the ethernet cable connected, and open Airport Utility. Click on Manual Setup near the bottom of the pane. On the next screen click the Airport icon at the upper left of the pane, then click Wireless in the line just below that reads Summary - Time Capsule - Wireless - Access.
    Check to see that your wireless is set up, security set up, passwords, etc. You may need to reconfigure your wireless settings again and update the Extreme to store them and restart.
    Hope this helps.

Maybe you are looking for

  • Standalone Gateway in MSCS not working correctly

    Dear Experts, I have installed a standalone gateway according to note 657999 in a BW cluster system. I already installed 2 standalone gateways in 2 other systems and they are working fine. I am checking this using sm49 and running a zdir external pro

  • Replace leading Zero's

    Hi , one of my field var = 0000501 I want to display it like var =  ****501 I want to replace all leading  zero's with ' * ' . Replace statement replaces all zeros with  ' * ' & display var = ***51. I want my output = ****501. Plz help Thanks in Adva

  • Persistence/Transactions inside Service Bus

    Does anything different have to be done for a proxy service to recognize persistence and transactions from JMS messages being sent to a Weblogic queue? I have a message flow designed and need to make sure AquaLogic is recognizing/acknowledging persis

  • Where can I find a download of itunes 8.0?

    itunes 8.1 obviously gets the "not ready for primetime" award. Its causing serious problems with my iphone. And i haven't had the nerve to hook my ipod up to it. Is there a place i can download an earlier version? preferably the one right before I in

  • Windows Media Center Online Spotlight

    I don't know if this is the right place for this question, but here goes... I have PC with WIndows XP Media Center edition and just discovered in Media Center an "Online Spotlight" option which contains videos, games, etc. Regardless of the choice I