How to setup remote web/client login to my BO XI 4.0 server in Bangalore?

I have setup BO XI 4.0 server with Win 2008 R2 in Bangalore. But I'm not able to configure remote login to this server.
For example, To connect Interactive Analysis - Desktop from a remote system to my server installed in different machine.
Any thoughts what needs to be done? I tried wdeploy with no impact on result.
Thanks,
Madhu

This maybe a firewall issue. I would recommend to check the XI 4.0 installation guide on how to configure your server and enable access over a firewall.
Talking to your network team as proposed by the previous poster is the first step.
Regards,
Stratos

Similar Messages

  • How to use remote desktop client in mountain lion

    How to use remote desktop client in mountain lion.
    I want to connect my other system(ubuntu) using mac remote desktop client, But i could not locate remote desktop client in moutain lion.

    In Ubuntu 12.xx use Dash to find "Desktop Sharing" and set the preferences, including requiring a password.
    Then in Ubu use System Settings > Network to determine your Ubu machine's IP address, such as 192.168.1.13.
    On the Mountain Lion Mac do Finder > Go > Connect to Server   and enter:  vnc://192.168.1.13  or whatever your IP is.  Enter the password that you used in the Ubu Desktop Sharing setup, when asked.
    On the Ubu machine answer the question that pops up asking for permission to connect.  Your Ubu screen will now show up on the Mac, and you can remote control it.   Here I am running "Octave" (a math program) on the Ubu machine, remotely.
    Works great!  BTW, you can do this from an iPad too, using a VNC client such as Mocha VNC Lite.  You can even run both remotes simultaneously.
    Good luck.

  • How to setup remote access with E4200?

    Hi,
    I am new to this and I need help from you all on how to setup the E4200 so that I can access the media server when I am in office?  Is there a guide or step by step procedure on this?  I was browsing on the Cisco website and unable to find it. 

    The purpose of using DDNS is it substitutes the public/WAN ip address provided by your ISP.We all know that the ip address provided by our ISP(if we are not subscribe to a premium static ip address) is basically public and will always change from time to time.So it will be difficult for us to know what's the ip address our ISP has provided us and this will lead us problems accessing our router or ftp server remotely. Thus by using DDNS' it will now allow us to access the router remotely without knowing what's the WAN ip address.

  • How To Stop Lookout Web Client Crashing IE Web Browser

    Hi,
    I am using Web Client with Lookout. My problem is I can only load a panel within Internet Explorer once. If I reload the URL within the same session then Internet Explorer crashes.
    Can anyone offer me advice to fix this problem please?
    Software is as follows:
    - Lookout V 6.0 (build 5)
    - Browser: Internet Explorer 6.0.28
    - Web Server: Tomcat 5.5.7
    The steps I took are as follows:
    1. Created Process
    2. Set up File-> Web Server Options->Export Directory to:
    c:\telemetrysms\webapps\root\user\fishfarmlive\
    (where “c:\telemetrysms\webapps” is Tomcat webapps folder)
    Set up server URL to:
    http://HOSTNAME/user/fishfarmlive/
    (where “HOSTNAME” is the server name)
    3. Export Web Server Files
    4. Start IE and open web page. My panel displays correctly (with live data), although the only alarm Lookout displays is “The remote position source is not writable”.
    5. HOWEVER, when I reload the page in IE the browser will always go blank for several seconds and then crash (with no error message).
    Furthermore…
    As a test I created a simple test process with nothing but one panel containing a single line of static text. This simple project also crashes.
    This computer also has Lookout 5.1 installed. And projects created in 5.1 only crash the browser very occasionally.
    Any suggestions (about the crashes or the missing alarms) would be greatly appreciated?
    Thanks.
    Regards Brett Sheeran

    Brett,
    I have some info for you regarding the web client. I am including links to two documents that have information that will help you with your problem. The first document is good info about developing a web client application and the second has information directly pertaining to the IE crash that is occurring. It also has other troubleshooting information. I would also recommend checking the firewall on the computer. It windows security settings also have to be set to low in order for web client to communicate correctly.
    Deploying a Lookout Application
    Lookout Web Client Troubleshooting
    Regards,
    Danny G
    Applications Engineer
    National Instruments

  • How to get remote ejb client working with Weblogic 8.1?

    I have Weblogic 8.1 running on a WinXP box behind my firewall. Port 7001 is open to WL and remote browsers can access the console.
    I have a client machine running WinXP on a different network that is remote to the WL server. It can ping the WL server machine.
    I use JVM 1.4.2_08 on all machines.
    If I put my client machine on the LAN with the WL server, then my EJB test client works fine. If I put the client machine on the remote network then the test client fails with a ClassCastException when trying to do a PortableRemoteObject.narrow on the bean home.
    I had this running fine on JBoss 3.22 using RMI over HTTP. I added an HTTP invoker service to my jboss.xml file. I don't know if something similar is needed on the Weblogic side - any ideas on that? All I've done on the WL side is turn on Tunneling - which obviously works because the remote client gets a correct home object when doing a lookup on the bean - based on the IOR string of the home obj.
    Below I include my client code, exception, ejb-jar.xml and my weblogic-ejb-jar.xml.
    Any ideas on what else needs to be done so that a remote client can do a PortableRemoteObject.narrow? My client.jar has all of the EJB classes, and runs fine when run from LAN.
    Thanks,
    --BobC
    Client Code
    Properties p = new Properties();
    p.put("java.naming.factory.initial", "weblogic.jndi.WLInitialContextFactory");
    p.put("java.naming.provider.url", "http://66.114.140.213:7001");
    InitialContext ic = new InitialContext(p);
    // Test register bean
    Object homeObj = ic.lookup("tacplanner/register");
    RegisterHome home = (RegisterHome) PortableRemoteObject.narrow(homeObj, RegisterHome.class); // <<< ClassCastException here
    Exception
    java.lang.ClassCastException
    at com.sun.corba.se.internal.javax.rmi.PortableRemoteObject.narrow(PortableRemoteObject.java:293)
    at javax.rmi.PortableRemoteObject.narrow(PortableRemoteObject.java:134)
    at com.nimblus.tacplanner.test.TestUtils.<init>(TestUtils.java:60)
    at com.nimblus.tacplanner.test.TestUtils.main(TestUtils.java:196)
    ejb-jar.xml
    <?xml version="1.0"?>
    <!DOCTYPE ejb-jar PUBLIC '-//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 1.1//EN' 'http://java.sun.com/j2ee/dtds/ejb-jar_1_1.dtd'>
    <ejb-jar>
    <enterprise-beans>
    <session>
    <ejb-name>register</ejb-name>
    <home> com.nimblus.tacplanner.server.ejb.stateless.RegisterHome</home>
    <remote> com.nimblus.tacplanner.server.ejb.stateless.Register</remote>
    <ejb-class>com.nimblus.tacplanner.server.ejb.stateless.RegisterSession</ejb-class>
    <session-type>Stateless</session-type>
    <transaction-type>Container</transaction-type>
    <resource-ref>
    <description>The Oracle Datasource</description>
    <res-ref-name>java:/OracleDS</res-ref-name>
    <res-type>javax.sql.DataSource</res-type>
    <res-auth>Container</res-auth>
    </resource-ref>
    </session>
    </enterprise-beans>
    <assembly-descriptor>
    <container-transaction>
    <method>
    <ejb-name>register</ejb-name>
    <method-name>*</method-name>
    </method>
    <trans-attribute>Required</trans-attribute>
    </container-transaction>
    </ejb-jar>
    weblogic-ejb-jar.xml
    <?xml version="1.0"?>
    <!DOCTYPE weblogic-ejb-jar PUBLIC
    '-//BEA Systems, Inc.//DTD WebLogic 8.1.0 EJB//EN'
    'http://www.bea.com/servers/wls810/dtd/weblogic-ejb-jar.dtd'>
    <weblogic-ejb-jar>
    <weblogic-enterprise-bean>
    <ejb-name>register</ejb-name>
    <stateless-session-descriptor>
    <pool>
    <max-beans-in-free-pool>100</max-beans-in-free-pool>
    </pool>
    </stateless-session-descriptor>
    <reference-descriptor>
    <resource-description>
    <res-ref-name>jdbc/OracleDS</res-ref-name>
    <jndi-name>OracleDS</jndi-name>
    </resource-description>
    </reference-descriptor>
    <enable-call-by-reference>True</enable-call-by-reference>
    <jndi-name>tacplanner/register</jndi-name>
    </weblogic-enterprise-bean>
    </weblogic-ejb-jar>
    --------------------

    Problem solved.
    For remote clients you need to generate and use the stub classes for EJB interfaces using Weblogic's appc utility.
    See: "http://e-docs.bea.com/wls/docs81/ejb/appc_ejbc.html#1151900"
    --BobC                                                                                                                                                                                                                                                                                                                                                                                                                               

  • How  to Find the Web client in SAP MDM server

    HI
    MDME4J_Ver5.5.15.00 ,MDMD COM This Two fileare there  in Server, used for Installing Webclient...
        Can Any body give more information on this, I am very new to this ...
    Thanks In Advance..
    Regards
    Guruva

    Hi Guruva,
    As explained in previous posts, there is no readymade web client available in MDM 5.5.
    If you use MDME4J_Ver5.5.15.00, then you should build your own application using the MDME4J.jar file. This jar file consists of library classes and methods which can be used for connecting, retrieving and updating records etc to/from MDM repository. It is a java programmer's responsibility to use this jar file and build a custom web Client.
    If you use MDM COM, it is a VB programmer's job to explore this COM API and build a custom web Client.
    You can use any of the above APIs to build your web client based on your skillset.
    Hope this information is useful !
    Regards,
    Rajani Kumar

  • How can I create a client console and work together with the Cache Server?

    How can I edit the following Cache-Server.cmd file to create a client console and work together with the Cache Server?
    The following is the cache server file: contacts-cache-server.cmd
    @echo off
    setlocal
    if (%COHERENCE_HOME%)==() (
    set COHERENCE_HOME=c:\coherence
    set CONFIG=C:\home\oracle\coherence\Contacts
    set COH_OPTS=%COH_OPTS% -server -cp %COHERENCE_HOME%\lib\coherence.jar;C:\home\oracle\
    coherence\Contacts;C:\home\oracle\coherence\Contacts\classes;
    set COH_OPTS=%COH_OPTS% -Dtangosol.coherence.cacheconfig=%CONFIG%\contacts-cache-config.xml
    java %COH_OPTS% -Xms1g -Xmx1g -Xloggc: com.tangosol.net.DefaultCacheServer %2 %3 %4 %5 %6 %7
    :exitEdited by: junez on 23-Oct-2009 09:20

    Hi
    To run the console, change DefaultCacheServer to CacheFactory
    Paul

  • How to setup remote login for sap netwever 7.01 abap trial version

    hi to all
    i dont know this is correct place to post this question plz let me know
    i have installed sap netweaver 7.01 abap trial version successfuly now i want to allow one of my friend to login this server but i dont have exact idea how to do this so plz any suggesstion ??
    and  http://localhost:8000/sap/bc/gui/sap/its/webgui?sap-client=000  this is link provided with trial version  i am able to login  from my computer but i dont know how to use tihs one from other computer plz help me                                                                               
    thanks in advance

    if he will connect inside the same local area network http://your-local-ip-address:8000/sap/bc/gui/sap/its/webgui?sap-client=000
    if he will access thru internet he needs to type your wan ip address ([http://www.whatismyip.com/|http://www.whatismyip.com/]) but before that you have to adjust your router port forwarding settings, redirect port 8000 to your local ip. You may check your router's configuration documents for more detail information.

  • How to setup using WEB-INF/lib in weblogic 10.3.1

    Hello everybody:
    I check weblogic 10.3.1 in %WLS_PAHT%/modules find com.bea.core.apache.commons.lang_2.1.0.jar.
    But I want using org.apache.commons.lang.time.DateUtils.addDays(java.util.Date date, int amount).
    In server version,no this method
    So I download commons-lang 2.4 from apache,and put it in WEB-INF/lib.
    and I aslo setting this :
    <?xml version="1.0" encoding="UTF-8"?>
    <wls:weblogic-application xmlns:wls="http://xmlns.oracle.com/weblogic/weblogic-application" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/javaee_5.xsd http://xmlns.oracle.com/weblogic/weblogic-application http://xmlns.oracle.com/weblogic/weblogic-application/1.0/weblogic-application.xsd">
    <!--weblogic-version:10.3.1-->
    <wls:application-param>
    <wls:param-name>webapp.encoding.default</wls:param-name>
    <wls:param-value>UTF-8</wls:param-value>
    </wls:application-param>
    <wls:prefer-application-packages>
    <wls:package-name>org.apache.commons.lang.time.*</wls:package-name>
    </wls:prefer-application-packages>
    </wls:weblogic-application>
    but when I run
    <body>
    <%=DateFormatUtils.format(DateUtils.addDays(new Date(),2),"yyyyMMdd HHmm")%>
    </body>
    this result :
    The method addDays(Date, int) is undefined for the type DateUtils
    <%=DateFormatUtils.format(DateUtils.addDays(new Date(),2),"yyyyMMdd HHmm")%>
    ^----^
         at weblogic.servlet.jsp.JavelinxJSPStub.reportCompilationErrorIfNeccessary(JavelinxJSPStub.java:221)
         at weblogic.servlet.jsp.JavelinxJSPStub.compilePage(JavelinxJSPStub.java:157)
         at weblogic.servlet.jsp.JspStub.prepareServlet(JspStub.java:246)
         at weblogic.servlet.jsp.JspStub.prepareServlet(JspStub.java:191)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:235)
         Truncated. see log file for complete stacktrace
    >
    anyboby can tell me,how to setting this.

    Try to set &lt;prefer-web-inf-classes>true&lt;/prefer-web-inf-classes>
    --olaf
    Edited by: Olaf Heimburger on Oct 30, 2009 6:06 PM

  • How to setup the web inspector to open in the same window not in a new window?

    Hello!
    I update my mac os to Lion now when i use the web inspetor it's open in a new window ,... I want to open web inspetor in the same window at the bottom...
    Somebody help me please!!!
    How i do this?
    Thank you

    See:
    *http://kb.mozillazine.org/browser.link.open_newwindow
    *1: current tab; 2:new window; 3:new tab;
    For links opened via JavaScript you can look at this pref:
    *http://kb.mozillazine.org/browser.link.open_newwindow.restriction
    You can open the <b>about:config</b> page via the location/address bar.
    You can accept the warning and click "I'll be careful" to continue.
    *http://kb.mozillazine.org/about:config

  • Oracle IPM Web Client Login Error

    I have installed the Oracle Oracle Imaging and Process Management suite and When I try to login to the webclient, it gives the following error,
    "Communications Error Error Code: -1 Mode: Connect ServerAddress: Connected: No Description: Unknown Error: -1 class ATL::CComObject::Refresh "
    Any clues????!!!

    Hi there,
    I'm having the same error. The Oracle Imaging and Process Management Web Server was installed on my machine. When I open the URL (http://<machine_name>/IBPMWeb), I'm getting "Communications Error Error Code: -1 Mode: Connect ServerAddress: Connected: No Description: Unknown Error: -1 class ATL::CComObject::Refresh. "
    Was there a solution to this?

  • 2012 R2 Remote Access: how to fix remote disconnected clients

    We have RA on 2012 R2 running for well over a year now and we love it, however, this issue is one that I desperately need to resolve. We have recently added a second and third office thus is now more important then ever to get a handle on this. We built
    and tested a new PC here at our corporate HQ. This PC was fully functional as an RA Client (Win7Ux64). The PC was boxed up and shipped to our remote office. Do to weather, shipping out of the country and construction at our new office it was seriously
    delayed in being connect to the remote office network. Almost a month delay. This PC cannot now connect to the RA service. I am assuming that it's credentials have timed out. NOTE: in that same office (and network) I have two other PC's that are
    connected to RA and have no issues.
    What steps can I take to get this PC connected to my RA service, without having it shipped all the way back to our corp. HQ?

    Hi,
    I guess the PC has lots its trust with the domain as you say.
    You may find you can use this
    http://technet.microsoft.com/en-us/library/offline-domain-join-djoin-step-by-step(v=WS.10).aspx
    But I've not tested in this type of scenario so not sure if it will help. Worth a go maybe?
    Otherwise do you have any other remote access to your network so your client can talk back to a DC?
    Thanks
    Regards,
    Denis Cooper
    MCITP EA - MCT
    Help keep the forums tidy, if this has helped please mark it as an answer
    Blog: http://www.windows-support.co.uk 
    Twitter:   LinkedIn:

  • How to access remote web service?

    I try the demo in get start document(chapter 18).but I can
    not get any data.
    Do I have to change settings?Do I have to use FDS?
    Thanks
    Mark

    You are in the wrong forum - web services are not available with Sun webserver. Speaking of examples to check out, I would recommend you to install Sun appserver 8.1 or 8.2 and check examples that come with it, specifically in "samples/webservices" and "samples/xml" directories.

  • How to create a WEB client in EJB module in NB 4.1 ?

    hi
    I am using SUN AS and NB 4.1
    I want to invoke a WS from an EJB. For some reason NB 4.1 doesn't allow me to create a WS client. Why ?

    netbeans forum may prove to be more useful because
    this seems to be a netbeans specific problem; an EJB
    can be a WS client and this works as is evident with
    the Adventure Builder sample app from blueprintsI generated WS stub manually without NB 4.1.

  • How to setup excite email client on iphone 4s

    My brother bought my mother a Boost iphone 4s and I cannot seem to get excite email to work on it.

    The research I did also says you cant even open the emails on phone browser. We can log in ands see new mail but that is it. It must be a dieing email client. I jsut set her up a gmail acct and told her to switch over as they dont even forward either.

Maybe you are looking for

  • ¿Which memory should I buy?

    I just seeking for a new memory RAM for my MACBOOK 13" Late model-2009 Processor:  2.26 GHz Intel Core 2 Duo Actual memory: 2 GB 1067 MHz DDR3 I found one on ebay with this especifications Apple MacBook Pro Laptop Memory (2 X 2GB) 4GB RAM PC3-8500S D

  • Play DVD on iMac and watch it on TV

    I don't have a DVD player with my television. If I want to watch DVD movies on my TV screen, can I do this by connecting my iMac -- which plays DVDs -- to my television? Is this where I would need the Apple Video Adapter? According to the iMac manual

  • Subscription to Israel doesn't work.

    Hi, I am trying to call a landline in Israel using my monthly subscription, but when I dial the number from my PC, I am prompted to buy credit. Beforehand, I have received a message that my subscription and payement is delivered. Please help me as so

  • Make a PDF/A File

    How can i make a PDF/A File from a "normal" PDF File with Acobat XI Standart ?

  • How to add songs to iphone

    iTunes 11 64bit is really inconvenient. cant find where to add remove songs to iphone manually. cant add remove files to iphone manaully.