How to extract Weblogic Listen Address and port.

Hi All,
I want to extract Weblogic Admin server's Listen address and port via Java to perform some admin actions.
Can someone please help on this.
Thanks,
GJ

Hi,
Try this code.
import java.io.IOException;
import java.net.MalformedURLException;
import java.util.Hashtable;
import javax.management.MBeanServerConnection;
import javax.management.MalformedObjectNameException;
import javax.management.ObjectName;
import javax.management.remote.JMXConnector;
import javax.management.remote.JMXConnectorFactory;
import javax.management.remote.JMXServiceURL;
import javax.naming.Context;
import java.lang.*;
public class ServerDetails
private static MBeanServerConnection connection;
private static JMXConnector connector;
private static final ObjectName service;
static
try {
service=new ObjectName("com.bea:Name=DomainRuntimeService,Type=weblogic.management.mbeanservers.domainruntime.DomainRuntimeServiceMBean");
catch (MalformedObjectNameException e)
throw new AssertionError(e.getMessage());
public static void initConnection(String hostname, String portString,String username, String password) throws IOException,MalformedURLException
System.out.println("ServerDetails---Started in initConnection");
String protocol="t3";
Integer portInteger=Integer.valueOf(portString);
int port=portInteger.intValue();
String jndiroot="/jndi/";
String mserver="weblogic.management.mbeanservers.domainruntime";
JMXServiceURL serviceURL=new JMXServiceURL(protocol, hostname,port, jndiroot + mserver);
Hashtable h=new Hashtable();
h.put(Context.SECURITY_PRINCIPAL, username);
h.put(Context.SECURITY_CREDENTIALS, password);
h.put(JMXConnectorFactory.PROTOCOL_PROVIDER_PACKAGES,"weblogic.management.remote");
connector=JMXConnectorFactory.connect(serviceURL, h);
connection=connector.getMBeanServerConnection();
public static ObjectName[] getServerRuntimes() throws Exception
return (ObjectName[]) connection.getAttribute(service,"ServerRuntimes");
public void printServerDetails() throws Exception
ObjectName[] serverRT=getServerRuntimes();
for (int i=0;i < serverRT.length;i++)
String name=(String)connection.getAttribute(serverRT,"Name");
String listenAddress=(String)connection.getAttribute(serverRT[i],"ListenAddress");
Integer listenPort=(Integer)connection.getAttribute(serverRT[i],"ListenPort");
System.out.println("Server Name : " + name +"\t Address: "+listenAddress+"\t Port: "+listenPort);
public static void main(String[] args) throws Exception
System.out.println("ServerDetails---Started");
String hostname=args[0];
String portString=args[1];
String username=args[2];
String password=args[3];
System.out.println("Hostname : " + hostname);
System.out.println("PortString : " + portString);
System.out.println("Username : " + username);
System.out.println("Password : " + password);
ServerDetails sd=new ServerDetails();
initConnection(hostname, portString, username, password);
sd.printServerDetails();
connector.close();
Regards,
Kal

Similar Messages

  • How to determine which IP address and port is used to make DNS queries?

    I am using JNDI/DNS API to query a Enum server (Tel URI resolution in VOIP world) what is a DNS server.
    But I have many network interfaces, in a VLAN environment, and I must to specify from which interface (and port)
    all the requests are sent.
    When I read the code of JNDI/DNS API (in JDK 1.5) and specially the DNSClient class, I can see that the
    DatagramSocket is created without parameters... : udpSocket = new DatagramSocket();
    How can I specify the IP address and port to use for my client???
    Thanks for your help.

    I must to specify from which interface (and port) all the requests are sent. You don't have to specify the interface unless your static unicast routing tables are incorrect, and you never have to specify the port unless some lunatic is in control of your firewall.

  • How Change my weblogic listen address without using console.

    Hi All,
    I am unable start my weblogic server because i changed with name my listen address so how can set IP address in listen address from files.
    How many files need to change and please give file paths.
    Maroof

    Hi Timo,
    I have installed WLS 10.3.5 Stand alone weblogic. when i was configuring that time i putted application3.myhost.com in listen address  but
    system32\drivres\etc\host file have application2.myhost.com with my machine ip. Since application3.myhost.com i set from console.
    now when i am starting my server then below error getting.
    java.net.UnknownHostException: applications3.almullagroup.com
            at java.net.Inet6AddressImpl.lookupAllHostAddr(Native Method)
            at java.net.InetAddress$1.lookupAllHostAddr(InetAddress.java:850)
            at java.net.InetAddress.getAddressFromNameService(InetAddress.java:1201)
            at java.net.InetAddress.getAllByName0(InetAddress.java:1154)
            at java.net.InetAddress.getAllByName(InetAddress.java:1084)
            at java.net.InetAddress.getAllByName(InetAddress.java:1020)
            at java.net.InetAddress.getByName(InetAddress.java:970)
            at weblogic.rjvm.JVMID.setLocalID(JVMID.java:238)
            at weblogic.rjvm.RJVMService.setJVMID(RJVMService.java:48)
            at weblogic.rjvm.RJVMService.start(RJVMService.java:30)
            at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
            at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
            at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    but any how i want to change listen address from application3.myhost.com to application2.myhost.com since i am unable to start my so i can change my listen address from console.
    From file can i change ?if yes then from which file and location.
    JDeveloper 11.1.1.7
    Maroof

  • Coherence::net::messaging::ConnectionException: could not establish a connection to one of the following addresses: {10.242.152.242/10.242.152.242:8088}; make sure the "remote-addresses" configuration element contains an address and port of a running TcpA

    Hi
    I have installed coheI have installed coherence server "fmw_12.1.3.0.0_coherence_Disk1_1of1.zip" along with Examples on windows machine and C++ client coherence-cpp-12.1.3.0.0b51709-windows-x86-vs2012.zip on the same machine.
    I have built the "contacts" C++ Example successfully and while I execute this "contacts" using run I am facing TcpAcceptor error.
    On my coherence server the TcpAcceptor is listening on port 8088, so I have modified the extend-cache-config.xml file with values "ip address of my windows machine" and port as "8088".
    All the time I am getting below error,
    coherence::net::messaging::ConnectionException: could not establish a connection to one of the following addresses: {10.242.152.242/10.242.152.242:8088}; make sure the "remote-addresses" configuration element contains an address and port of a running TcpAcceptor
        at class coherence::lang::TypedHandle<class coherence::component::net::extend::PofConnection> __thiscall coherence::component::util::TcpInitiator::openConne
    ction(void)(TcpInitiator.cpp:307)
        at coherence::component::util::TcpInitiator::openConnection
        at coherence::component::util::Initiator::ensureConnection
        at coherence::component::net::extend::RemoteCacheService::openChannel
        at coherence::component::net::extend::RemoteService::doStart
        at coherence::component::net::extend::RemoteService::start
        at coherence::component::util::SafeService::startService
        at coherence::component::util::SafeService::restartService
        at coherence::component::util::SafeService::ensureRunningServiceInternal
        at coherence::component::util::SafeService::start
        at coherence::net::DefaultConfigurableCacheFactory::configureService
        at coherence::net::DefaultConfigurableCacheFactory::ensureService
        at coherence::net::DefaultConfigurableCacheFactory::ensureRemoteCache
        at coherence::net::DefaultConfigurableCacheFactory::configureCache
        at coherence::net::DefaultConfigurableCacheFactory::ensureCache
        at coherence::net::CacheFactory::getCache
        at unsigned __int64 coherence::lang::class_spec<class coherence::lang::Managed<class ContactId>,class coherence::lang::extends<class coherence::lang::Object,class coherence::lang::Void<class coherence::lang::Object> >,class coherence::lang::implements<void,void,void,void,void,void,void,void,void,void,void,void,void,void,void,void> >::sizeOf(bool)
        at _onexit
        at class coherence::util::Hashtable * coherence::lang::factory<class coherence::util::Hashtable>::create(void)
        at class coherence::util::Hashtable * coherence::lang::factory<class coherence::util::Hashtable>::create(void)
        at BaseThreadInitThunk
        at RtlInitializeExceptionChain
        at RtlInitializeExceptionChain
        on thread "main"
    Caused by: coherence::net::messaging::ConnectionException: coherence::component::util::TcpInitiator::TcpConnection@029EAD78{Id=NULL, Open=1, LocalAddress=NULL,
    RemoteAddress=10.242.152.242/10.242.152.242:8088}: socket disconnect
        at class coherence::lang::TypedHandle<class coherence::net::messaging::Response> __thiscall coherence::component::net::extend::AbstractPofRequest::Status::g
    etResponse(void)(AbstractPofRequest.cpp:203)
        at coherence::component::net::extend::AbstractPofRequest::Status::getResponse
        at coherence::component::net::extend::AbstractPofRequest::Status::waitForResponse
        at coherence::component::util::Initiator::openConnection
        at coherence::component::net::extend::PofConnection::open
        at coherence::component::util::TcpInitiator::openConnection
        at coherence::component::util::Initiator::ensureConnection
        at coherence::component::net::extend::RemoteCacheService::openChannel
        at coherence::component::net::extend::RemoteService::doStart
        at coherence::component::net::extend::RemoteService::start
        at coherence::component::util::SafeService::startService
        at coherence::component::util::SafeService::restartService
        at coherence::component::util::SafeService::ensureRunningServiceInternal
        at coherence::component::util::SafeService::start
        at coherence::net::DefaultConfigurableCacheFactory::configureService
        at coherence::net::DefaultConfigurableCacheFactory::ensureService
        at coherence::net::DefaultConfigurableCacheFactory::ensureRemoteCache
        at coherence::net::DefaultConfigurableCacheFactory::configureCache
        at coherence::net::DefaultConfigurableCacheFactory::ensureCache
        at coherence::net::CacheFactory::getCache
        at unsigned __int64 coherence::lang::class_spec<class coherence::lang::Managed<class ContactId>,class coherence::lang::extends<class coherence::lang::Object
    ,class coherence::lang::Void<class coherence::lang::Object> >,class coherence::lang::implements<void,void,void,void,void,void,void,void,void,void,void,void,void
    ,void,void,void> >::sizeOf(bool)
        at _onexit
        at class coherence::util::Hashtable * coherence::lang::factory<class coherence::util::Hashtable>::create(void)
        at class coherence::util::Hashtable * coherence::lang::factory<class coherence::util::Hashtable>::create(void)
        at BaseThreadInitThunk
        at RtlInitializeExceptionChain
        at RtlInitializeExceptionChain
        on thread "main"
    Caused by: coherence::io::IOException: socket disconnect
        at unsigned int __thiscall coherence::net::Socket::readInternal(unsigned char *,unsigned int)(Socket.cpp:333)
        at coherence::net::Socket::readInternal
        at coherence::net::Socket::SocketInput::read
        at coherence::io::BufferedInputStream::fillBuffer
        at coherence::io::BufferedInputStream::read
        at coherence::component::util::TcpInitiator::readMessageLength
        at coherence::component::util::TcpInitiator::TcpConnection::TcpReader::onNotify
        at coherence::component::util::Daemon::run
        at coherence::lang::Thread::run
        on thread "ExtendTcpCacheService:coherence::component::util::TcpInitiator:coherence::component::util::TcpInitiator::TcpConnection::TcpReader"

    We are facing same issue.    Could you please provide us any working .Net sample code for the version 12.1.2.0.
    <ssl>
                  <protocol>Tls</protocol>
                  <local-certificates>
                    <certificate>
                      <url>c:\Cert\</url>
                      <password>password</password>
                      <flags>DefaultKeySet</flags>
                    </certificate>
                  </local-certificates>
                </ssl>
    thanks
    Bala

  • Essbase1113 IP Address and Port Questions

    hello,
    everyone, i'm puzzled on a question about essbase.
    it'll be so kind if you give me some suggestions.
    in our project, we install EMP System 1113 on Win Server2003, but it's in local network. there is no problem when we connect it using client tools in local network environment.
    however, we wanna connect the Essbase Server through Internet, we map the server address (such as 10.163.163.163) as an Internet address (such as 111.111.111.111).
    we didn't use VPN such tools, and, the address is just a mapping, if we don't map the port, we couldn't connect the essbase server.
    here comes the question, how do we map the essbase address and port ? i mean which port should we use, so that we could connect it through Internet ?
    thank you so much.
    wish to reply.
    hawk.

    The ports that essbase use are outlined at :- http://download.oracle.com/docs/cd/E12825_01/epm.111/epm_install_start_here/ch06s05s01.html
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Changing the multicast Address and Port giving error

    I am using Coherence 3.3.1 jar files (Coherence.jar and tangosol.jar) in my local application. But when I try to change the multicast Address and Port in tangosole-coherence.xml(in Coherence.jar) then it is giving this error -
    "This member could not join the cluster because of an incompatibility between the cluster protocol used by this member and the one being used by the rest of the cluster. This is most likely caused by a Coherence version mismatch, or by mismatched protocol filters (e.g. compression, or encryption)"
    If i am using unique IP and Port then how can it be in a Cluster as this error stating. Please reply ASAP.

    Hi,
    There is a good chance that there is already the IP and port is being used by another cluster (which uses different versions of jars or configurations) and hence, when you are starting your cluster, throwing the error.
    Can you double check if another cluster is already using it or not ?
    Thanks,
    Amit

  • WLS9: address and port of a starting member?

    Hi
              I have a cluster running on different solaris 10 machines.
              Each machine has different virtual interfaces:
              myHostName1en1,myHostName1en2, myHostName2en1, etc... where myHostName#en0 is the standard network interface.
              Cluster's members are always binded on an interface different from the standard one.
              We restrict access to the admin server via connection filter so that only the addresses and ports of the members can access it. The problem is that a starting member (like every java process) makes its outgoing call from the standard interface(myHostName#en0).
              Is there a way to tell the members that they should open the outgoing connection on a specifical interface and port via system properties?
              Thank you in advance for your answer
              Best Regards

    Carlo de Rossi <> writes:
              This is supported in WLS 9. Once bootstrapped the default listen
              address should be used for outbound calls (or admin channel address if
              configured). In order to route bootstrap calls over this address you
              need to set the property -Dweblogic.admin.ListenAddress=<address> on
              the command line of the booting server, where <address> is the address
              you want to bind to outbound and should correspond to the regular
              listen address when booted. You may also need to enable the admin port
              / admin channel for this to work.
              andy
              > Hi
              > I have a cluster running on different solaris 10 machines.
              > Each machine has different virtual interfaces:
              > myHostName1en1,myHostName1en2, myHostName2en1, etc... where myHostName#en0 is the standard network interface.
              > Cluster's members are always binded on an interface different from the standard one.
              > We restrict access to the admin server via connection filter so that only the addresses and ports of the members can access it. The problem is that a starting member (like every java process) makes its outgoing call from the standard interface(myHostName#en0).
              > Is there a way to tell the members that they should open the outgoing connection on a specifical interface and port via system properties?
              > Thank you in advance for your answer
              > Best Regards

  • HT4915 How do you stop syncing address and calendar to iCloud? I only want to sync  from my computer to iPhone.

    How do you stop syncing address and calendar to iCloud? I only want to sync  from my computer to iPhone.  This is because I cannont upgrade to Lion and I do not want to get duplicate contacts when I sync from the computer 10.6.8 to my iPhone iOS5.  You should not upgrade to Lion upless you have 4GB of ram. Lion does not support rosita so all your old programs will not funtion and you have to repurchase all old software the is working fine.

    Welcome to the Apple Community.
    Settings > iCloud, turn off contact and calendar syncing.

  • To know IP address and port no using DB Link

    Hi -
    Is it possiable to know the IP address and port no of other oracle database that are connected with DB link. i.e for example
    we have 2 oracle databases(For example A and B and it's schemas are A_A and B_B) on two different IP address and DB link is created on B database i.e using B_B user to access A database i.e A_A user. Now By using A database i.e A_A user can we know the IP and PORT NO of database B?

    user4587979 wrote:
    Hi -
    Is it possiable to know the IP address and port no of other oracle database that are connected with DB link. i.e for example
    we have 2 oracle databases(For example A and B and it's schemas are A_A and B_B) on two different IP address and DB link is created on B database i.e using B_B user to access A database i.e A_A user. Now By using A database i.e A_A user can we know the IP and PORT NO of database B?you can also know the ip address and port number by tnsping command.
    $tnsping B
    eg:-
    C:\Documents and Settings\rajesh-kg>tnsping TESTDB
    TNS Ping Utility for 32-bit Windows: Version 10.2.0.1.0 - Production on 07-JUN-2
    011 18:44:48
    Copyright (c) 1997, 2005, Oracle.  All rights reserved.
    Used parameter files:
    D:\oracle\product\10.2.0\db_2\network\admin\sqlnet.ora
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = xxxxxxxxxx)(PORT = 1521)) (CONNECT_DATA = (SERVER = DEDICATED) (SER
    VICE_NAME = testdb)))
    OK (50 msec)

  • How to Extract the URLs,Tittles and Snippets only

    Hi,
    My HTML file looks like the fallowing.
    [ URL = "http://www.apple.com/" Title = "Apple" Snippet = "Official site of Apple Computer, Inc." Directory Category = {SE="", FVN=""} Directory Title = "" Summary = "" Cached Size = "33k" Related information present = true Host Name = "www.apple.com" ],
    [ URL = "http://www.apple.com/quicktime/" Title = "Apple - QuickTime" Snippet = "Apple's free media player supporting innumerable audio and video formats. The proversion includes an abundance of media authoring capabilities." Directory Category = {SE="", FVN=""} Directory Title = "" Summary = "" Cached Size = "7k" Related information present = true Host Name = "www.apple.com" ],
    thus it contains set of URL's,tittles and Snippets.Now my task is how to extract only URL,title and snippet part only.Can you please suggest me suitable method.
    thanking you inadvance.

    Regex is an option, here's a small start:import java.util.regex.Matcher;
    import java.util.regex.Pattern;
    public class Main {
        public static void main(String[] args) {
            String htmlText = "[ URL = \"http://www.apple.com/\" Title = \"Apple\" Snippet = "+
                            "\"Official site of Apple Computer, Inc.\" Directory Category = "+
                            "{SE=\"\", FVN=\"\"} Directory Title = \"\" Summary = \"\" Cached "+
                            "Size = \"33k\" Related information present = true Host Name = "+
                            "\"www.apple.com\" ], [ URL = \"http://www.apple.com/quicktime/\" "+
                            "Title = \"Apple - QuickTime\" Snippet = \"Apple's free media player "+
                            "supporting innumerable audio and video formats. The proversion "+
                            "includes an abundance of media authoring capabilities.\" Directory "+
                            "Category = {SE=\"\", FVN=\"\"} Directory Title = \"\" Summary = \"\" "+
                            "Cached Size = \"7k\" Related information present = true Host Name = "+
                            "\"www.apple.com\" ],";
            String regex = "[a-zA-Z]+.*?\\s+=\\s+\"(.*?)\"";
            Pattern pattern = Pattern.compile(regex);
            Matcher matcher = pattern.matcher(htmlText);
            while(matcher.find()) {
                String s = matcher.group();
                System.out.println(s);
    }Details: http://java.sun.com/docs/books/tutorial/essential/regex/

  • Changing IP Address and ports in Directory Server 5.1 SP 4 and 5.2 SP4

    I have installed multiple instance of Sun Directory Server 5.1 and 5.2 on ports 389 and 390,now I want to change the IP Address and ports, I am able to change the directory server port from 389 by editing the dse.ldif file, now I want to change the port 390 and the IP address same as directory server, can someone expert from the forum guide me.
    Thanks in Advance.
    Mukesh Kumar

    1) I don't know what you've typed in when installing... but I've never seen that message. Are you using any language specific characters ?
    Do you get the error after this screen ?
    <b>
    The suffix is the root of your directory tree. You may have more than
    one suffix.
    Suffix [dc=sun,dc=com]:
    </b>
    If yes, then this means that the value you typed in is not a valid DN... and you must enter a valid one.
    2)The Directory Server is installed under /usr/iplanet but the database is under /var/iplanet/ds5 and configuration is under /etc/iplanet/ds5 ...
    You can use symbolic links if you want to move things around.
    3) You mean you downloaded the tar.gx file of iDS 5.1 and install it on Solaris 9... No problem, I do this every day. As long as you have right to create directories and files, you should be able to install as anyone. If not, you should install as root and then let the server run as a special user.
    4) Solaris 9 comes with iDS5.1 packages already installed. But the server is not configured at all.
    Running directoryserver setup allows you to configure it and create the database, accounts...
    Running directoryserver uninstall remove the instance of the installed database... It doesn't remove the packages. You can start again a setup...
    By the way, I think that iDS 5.1 on Solaris 9 comes with the full documentation... May be you should start by reading it.
    Regards,
    Ludovic.

  • Passing data to IP address and PORT???

    Hi,
    I am trying to do a scenario, where in I need to make a synchronous call to a IP address and Port.
    The scenarion is
    SAP--> XI --> IP address/Port.
    Has anyone done this scenario, wherin you pass the string of data to a IP address and port?
    Regards

    The scenario is RFC --> SAP XI --> IP address/port.
    We have to give the bank related data to an IP address and a port for which we have to do a socket level programming.
    Its a synchronous call.
    We are thinking of using JAVA proxies for the same. But the receiver side JAVA proxies have to sit on XI server?
    Can we have receiver side proxies on SAP XI server and make a call to IP address and Port?
    Can the .ear file be deployed on the XI server??
    Thanks

  • Agentry Transmit Configuration - address and port

    Hi experts,
    I'm trying to setup a new Transmit configuration in the Agentry SDK for SMP 3.0 and I have a question - why the "Server Address Settings"  for Address and Port are grayed out and set to Default?
    Am I missing something in the configuration or there is a new logic? What if I have to go through a firewall and reverse proxy with a specific address and port?
    Regards,
    Denis

    Hi Steve,
    Thanks for the reply! So, from now on, the address and port will be only configurable on the Agentry client? I guess it will be enough just to configure it once in the beginning for each user and then only login in the client will be sufficient?
    Regards,
    Denis

  • How to extract data via webservices and configure webservices in BI 7

    Hi to all,
    Can any body tell me How to extract data via webservices and configure webservices in BI 7.
    i have created a remote functionmodule which extract data from R/3 , now i want to upload data to BI 7 using that remote function module.
    i have use webservice (push) as adapter mode, as i want to connect function module with SOAP , via web services.
    please can any body tell how to do that.
    also how to configure the webserive , what is it .
    I SHALL BE THANKFULL TO YOU FOR THAT
    Regards
    Pavneet rana

    Hi,
    1. Using the function library (transaction SE37), call the Web service creation wizard.
    To do this, select the desired function module in the function library and choose Utilities ®Generate Web Service ® From the Function Module.
    2. Go through the following steps, shown in the wizard:
    a. Create a virtual interface.
    The virtual interface represents the interface between the Web Service and the outside.
    b. Choose the end point.
    The name of the function module that is to be offered as Web service is already entered here.
    c. Create the Web service definition.
    The Web service definition helps with assigning the Web service features, such as how security can be guaranteed in data transfer.
    d. Release the Web service.
    The wizard generates the object virtual interface and Web service definition in the object navigator.
    The function group that was generated when the XML DataSource was created is not transportable and is thus assigned to a local package. To prevent errors due to transports, make sure that the objects that were generated in the Web service creation wizard are assigned to a local non-transportable package.
    The Web service is released for the SOAP runtime.
    3. In the virtual interface for the import parameter DATASOURCE, define the name of the XML DataSource as the fixed value.
    A separate function group is generated for each XML DataSource. It makes sense to pre-assign the parameter DATASOURCE with the name of the XML DataSource in the virtual interface of the Web service for which the function group was generated.
    If you do not pre-assign the parameter, it will be necessary to transfer the data sent with the appropriate filled DataSource element, for example, by setting the value in the application that implements the Web service.
    a. In the object navigator, choose the name of the package in which the Web service was created and choose Enterprise Services ® Web Service Library ® Virtual Interfaces.
    b. Choose Change in the context menu for the virtual interface.
    c. For the virtual interface, remove the flags exposed and initial and enter the name of the XML DataSource in apostrophes, for example u20196ADATASOURCENAMEu2019.
    d. Activate the virtual interface.
    Regards,
    Marasa.

  • I want to enter the password for a secure WIFI network on several iphones.  If I do this, can the end users somehow extract the ip address and password for the wifi network from the iphone and use it from a pc (at home, for example)?

    I want to enter the password for a secured wifi network on several iphones.  If I do this, is it possible for the end users to somehow extract the ip address and password information and use it from a pc/laptop/other mobile device.  For security reasons, I don't want them to be able to to this.
    Please advise,
    Thanks.

    If you look at the top left of your screen you will either see a 3G (or 4G if you have AT&T) or you will see the wi-fi symbol.  If you don't see the wi-fi symbol you are connecting to Gmail through your cellular data plan, not via wi-fi.
    To answer your question, it doesn't happen often but when it does the steps I mentioned above will normally resolve it.  Hopefully you won't have any further problem with this.

Maybe you are looking for

  • URL to content server from BI WAD not working

    Hello, I'm facing a problem using BI WAD in the portal ( Portal 7.0). When trying to jump from a BI WAD to display a scanned document hold in the content server( using signed URL generated by the function 'SCMS_URL_GENERATE'), a new window opens but

  • Best way to create multiple windows

    Just for a learning experience i am trying to make an application that starts out as a window with a button.When you click the button it creates another window of the same size but with the no decorations. What would the best way to go about this be?

  • Verizon messaging+

    I am using verizon messages, here's the problem.  Although I clear my "frequent" calls/contacted in my call log, they are still in my messaging app.  I tried clearing messaging cache, still there.  How do I delete "frequent" contacted numbers in mess

  • Hi,Can a WAR file be deployed as EAR file and vice versa.

    Hi,Can a WAR file be deployed as EAR file and vice versa.If so what are the changes we need to do.

  • We've lost all our photos

    I was having a clean up and re-organisation of files on the pc day (raining outside) - clearing photos that were doubled up - I had thousands of photos for artists work and other.  Was over trolling through these thousands of pics to find the one I w