Simple EJB3/JAAS Example?

Hello. I'm trying to write a simple prototype using an EJB3 stateless session bean and JAAS, but running into some problems. Does anyone know of a complete example that explains how to create a security-enabled EJB and deploy it to WebLogic?
I have some stuff working, but seem to be stuck now. I am unsure how to assign identities to roles. So far, I wrote a custom LoginModule that will successfully login if the passed username/password is one of the hard-coded combinations. In the Subject, I am setting the PasswordCredential object, and putting a Principal whose name is the username. The EJB call fails with an error saying that the user doesn't have sufficient privileges because I have not associated the hard-coded username with any of the roles that I specify in the EJB using @RolesAllowed.
Any help or suggestions would be greatly appreciated.
Thanks,
Mike

Hello!
I get the exact same error.
Fortunately i have discovered a realm name mistake (im my case,
COMPANYNAME.LOCAL instead of COMPANYNAME.COM).

Similar Messages

  • Run JAAS Example with Tomcat 4

    Can someone explain me, how i can run the JAAS-Example from SUN with Tomcat.
    Please so that i can understand it, step by step.
    Thanks for your help and understand !!!

    Here you go:
    Environment Tomcat 4.1.10
    These steps will configure Tomcat Admin app so that it uses
    JAASRealm to authenticate.
    To keep things simple, I wrote a MyLoginModule that succeeds with username,password pair "jaas","jaas".
    Authentication information as well as role "admin" are hardcoded, so you do not have to worry about additional settings.
    So compile following files, and put them into e.q. tomcat/server/classes or jar them and put them to some place where
    tomcat finds them :
    --------my.MyLoginModule.java---------------
    package my;
    import java.util.Map;
    import java.security.Principal;
    import javax.security.auth.login.LoginContext;
    import javax.security.auth.Subject;
    import javax.security.auth.callback.*;
    import javax.security.auth.login.*;
    import javax.security.auth.spi.LoginModule;
    import java.io.IOException;
    public class MyLoginModule implements LoginModule {
        protected CallbackHandler callbackHandler = null;
        protected boolean committed = false;
        protected boolean debug = false;
        protected Map options = null;
        protected Principal principal = null;
        protected Map sharedState = null;
        protected Subject subject = null;
        protected void log(String message) {
            System.out.print("MyLoginModule: ");
            System.out.println(message);
        public boolean abort() throws LoginException {
            log("abort");  
            return (true);
        public boolean commit() throws LoginException {
            log("commit phase");
            // If authentication was not successful, just return false
            if (principal == null){
                log("no principal commit fails");
                return (false);
            if (!subject.getPrincipals().contains(principal))
                subject.getPrincipals().add(principal);
            // add role principals
            subject.getPrincipals().add(new MyRolePrincipal("admin"));
            committed = true;
            log("commit succesful");
            return (true);
        public void initialize(Subject subject, CallbackHandler callbackHandler,
                               Map sharedState, Map options) {
            // Save configuration values
            this.subject = subject;
            this.callbackHandler = callbackHandler;
            this.sharedState = sharedState;
            this.options = options;
       public boolean login() throws LoginException {
            log("login phase");
            // Set up our CallbackHandler requests
            if (callbackHandler == null)
                throw new LoginException("No CallbackHandler specified");
            Callback callbacks[] = new Callback[2];
            callbacks[0] = new NameCallback("Username: ");
            callbacks[1] = new PasswordCallback("Password: ", false);
            // Interact with the user to retrieve the username and password
            String username = null;
            String password = null;
            try {
                callbackHandler.handle(callbacks);
                username = ((NameCallback) callbacks[0]).getName();
                password =
                    new String(((PasswordCallback) callbacks[1]).getPassword());
            } catch (IOException e) {
                throw new LoginException(e.toString());
            } catch (UnsupportedCallbackException e) {
                throw new LoginException(e.toString());
            if (!authenticate(username,password))
                return false;
            principal  = new MyPrincipal(username);
            return true;
        public boolean logout() throws LoginException {
            subject.getPrincipals().remove(principal);
            committed = false;
            principal = null;
            return (true);
        boolean authenticate(String s,String p){
           return (s.compareTo("jaas") == 0) && (p.compareTo("jaas") == 0);  
        static public void main(String args[]) throws Exception{
            LoginContext ctx = new LoginContext("TomCatAdminApplication");
            ctx.login();
    ---------my/MyPrincipal.java-------------------
    package my;
    public class MyPrincipal implements java.security.Principal {
        String m_Name = new String("");
        public MyPrincipal(String name) {
            m_Name = name;
        public boolean equals(Object another) {
            try {
                MyPrincipal pm = (MyPrincipal)another;
                return pm.m_Name.equalsIgnoreCase(m_Name);
            } catch(Exception e){
                return false;  
        public String getName() {
            return m_Name;
        public int hashCode() {
            return m_Name.hashCode();
        public String toString() {
            return  m_Name;
    ------my/MyRolePrincipal.java-------------
    package my;
    public class MyRolePrincipal extends MyPrincipal {
        /** Creates a new instance of MyRolePrincipal */
        public MyRolePrincipal(String s) {
            super(s);
    1. Configure Tomcat Administration Application in server.xml
    <Context ..Tomcat Administration..>
         <Realm className="org.apache.catalina.realm.JAASRealm" debug="3" appName="TomCatAdminApplication" userClassNames="my.MyPrincipal" roleClassNames="my.MyRolePrincipal">
         </Realm>
    </Context>
    2. Configure the location of your JAAS configuration file in jre/lib/security/java.security
    like this:
    login.config.url.3=file:///d:/tomcats/tomcat410/auth.conf
    3. Configure JAAS - sequence for "TomCatAdminApplication" in file:///d:/tomcats/tomcat410/auth.conf
    like this:
    TomCatAdminApplication {
    my.MyLoginModule required;
    4. Thats it. Restart Tomcat, and go to admin-app with "jaas","jaas" ....debug and enjoy. After you
    got this working it is time to configure some more challenging login sequences....
    Kullervo

  • Error in Simple Input Form Example for CE 7.1?

    Hi @,
    I am trying to execute Simple Input form example in sdn for CE 7.1. But its not working as per the functionality.
    Can anyone suggest what is the issue ?
    Regards,

    hi,
    This particular example is given in the sdn and is for ce 7.1 but its not working .
    Regards

  • Simple Java DB example

    I am using Java 1.6 and Eclipse Galelio on Vista, Do I need to configure anything is there any story of setting path?
    How to check my Java DB is working or not or everything is fine or not?
    I found many totorial with simple Java DB example but they seem dealing with previous version of JDK, I guess SUN too on http://java.sun.com/developer/technicalArticles/J2SE/Desktop/javadb/ , kindly provide me the simplest example which uses Java DB.
    I am not able to figure out the whole thing of JAVA DB , how it works, in plain language I want to know is there any way of interacting with database from Command prompt? If so how?

    When I am running a simpleApp.java
    I am getting this error:
    Unable to load the JDBC driver org.apache.derby.jdbc.EmbeddedDriver
    Please check your CLASSPATH.
    java.lang.ClassNotFoundException: org.apache.derby.jdbc.EmbeddedDriver
         at java.net.URLClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Unknown Source)
         at SimpleApp.loadDriver(SimpleApp.java:414)
         at SimpleApp.go(SimpleApp.java:125)
         at SimpleApp.main(SimpleApp.java:93)
    ----- SQLException -----
    SQL State: 08001
    Error Code: 0
    Message: No suitable driver found for jdbc:derby:derbyDB;create=true
    SimpleApp starting in embedded mode
    SimpleApp finished

  • Simple XML DOM Example Needed.

    I need a simple XML DOM Example that reads in the XML and makes objects out of the elements. The tutorial from sun is very sketchy and seems to good far too quickly.
    Thanks,
    Dave.

    You can find some examples:
    http://java.sun.com/xml/jaxp/dist/1.0.1/examples/#building
    http://newinstance.com/writing/javaxml2/javaxml2_examples.html
    http://www.docuverse.com/domsdk/index.html#tutorial
    http://www.devx.com/sourcebank/search.asp

  • Run JAAS Example with Tomcat

    Can someone explain, how i can include the JAAS-Example in Tomcat 4. I am a newbie, therefore step
    by step, please !! Everyone speaks about JAAS in the
    web-enviroment, but nobody implements any example !!!
    Please !!!
    Thanks for your help and reply !!!

    Please help me ?????

  • Problem with JAAS example in WLS6.0sp1

    Hi,
    I tried to run the SampleClient from the JAAS example in WLS6.0sp1 and got an
    exception
    when a valid username/password combination is entered. Has anyone experienced
    that in WLS6.0sp1?
    Thanx
    Ralf
    SampleLoginModule.initialize(), debug enabled
    SampleLoginModule.initialize(), URL t3://localhost:7001
    SampleLoginModule.login(), username guest
    SampleLoginModule.login(), password guest
    Authentication Failed: Unexpected Exception, java.lang.NoSuchMethodError
         at weblogic.security.auth.Authenticate.authenticate(Authenticate.java:124)
         at examples.security.jaas.SampleLoginModule.login(SampleLoginModule.java:157)
         at java.lang.reflect.Method.invoke(Native Method)
         at javax.security.auth.login.LoginContext.invoke(LoginContext.java:595)
         at javax.security.auth.login.LoginContext.access$000(LoginContext.java:125)
         at javax.security.auth.login.LoginContext$3.run(LoginContext.java:531)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.login.LoginContext.invokeModule(LoginContext.java:528)
         at javax.security.auth.login.LoginContext.login(LoginContext.java:449)
         at examples.security.jaas.SampleClient.main(SampleClient.java:92)

    Weblogic comes with its own implementation of JAAS, unfortunately
    conflicting with Sun's. Contact customer support, they will tell you the
    exact differences and incompatibilities. Or reverse engineer the two
    versions, you'll find quite a few differences (apart from the BEA version
    not implementing JAAS authorization, which is documented).
    "Narinder Gaheer" <[email protected]> wrote in message
    news:[email protected]..
    I am happy someone came up with this problem. I also bent backwardssolving
    this problem
    in my application.
    I figured out that as soon as I remove the standard jaas.jar from my
    classpath , I can run the example successfully. Weblogic.jar does contain
    necessary jaas library , so don't need to include jaas.jar.
    I am not sure, but I get the feeling that there is a jaas library conflict
    here. May be weblogic
    guys are the best to put some light on this issue.
    "Ralf Fritsche" <[email protected]> wrote in message
    news:3b15188e$[email protected]..
    I found out, that the example runs with the JDK delivered by BEA,
    but not with a JDK I downloaded from SUN.
    Wheras with the first the provided way to set the user defined
    configuration class with the system property'weblogic.security.jaas.Configuration'
    works, this is not possible with another JDK. According to the
    JAAS standard, this class could only be defined in the properties
    file 'java.security' of the Java runtime.
    How is BEA doing this?
    Thanx
    Ralf

  • Simple Input Form Example

    Hi all,
    I am trying out this example.
    [Simple Input Form|https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/uuid/837d9290-0201-0010-1381-e633fe17cb14]
    In the method onActionSave(),
    //@@begin onActionSave(ServerEvent)
    this.checkMandatory(IPrivateForm.IContextElement.NAME);
    A Simple Input Form 25
    SAP Online Help
    this.checkDateInPast(IPrivateForm.IContextElement.BIRTHDAY);
    this.checkDesired(IPrivateForm.IContextElement.E_MAIL_ADDRESS);
    wdComponentAPI.getMessageManager().raisePendingException();
    wdComponentAPI.getMessageManager().reportSuccess(
    "The sample form data was successfully saved!");
    It states that if there is any error, raisePendingException() would stop the flow of the codes.
    However when i am running the application, the application still calls the reportSuccess method.
    What could be wrong here?

    Hi,
    The raisePendingException() method checks if any exceptions were reported to the exception manager and are still stored in the exceptions manager. If there is at least one exception still stored, this method does not return, but raises a framework internal exception instead to return to the framework error handler.
    So probably there are no exceptions reported to messagemanager in your functions checkmandatory() etc.
    Try writing foll code
    wdComponentAPI.getMessageManager().reportException("Some Message");
    just before the raisePendingException() statement and see if it works.
    Best Regards,
    Mayuresh

  • Simple SOAP+WSDL example needed

    I'm pretty much confused about SOAP and WSDL and can't find a good and simple example. I use Sun One Studio. How do I run some web service example.

    You can find some examples:
    http://java.sun.com/xml/jaxp/dist/1.0.1/examples/#building
    http://newinstance.com/writing/javaxml2/javaxml2_examples.html
    http://www.docuverse.com/domsdk/index.html#tutorial
    http://www.devx.com/sourcebank/search.asp

  • Please help ..... simple JAX-WS Example does not work

    I tried out the simple Calculator Example described at http://weblogs.java.net/blog/vivekp/archive/2006/12/webservices_in.html (Vivek Pandey's Blog).
    and got following error message typing apt ...:
    error: Could not get TypeDeclaration for: jaxws_calc.Calculator_Add in apt round
    : 2
    Problem encountered during annotation processing;
    .\jaxws_calc\jaxws\Add.java:11: incompatible types
    found : javax.xml.bind.annotation.XmlAccessType
    required: javax.xml.bind.annotation.AccessType
    @XmlAccessorType(XmlAccessType.FIELD)
    In the code of the Add.java and the AddResponse.java there are only XMLAccessTypes/XmlAccessorTypes.
    My system property java.endorsed.dirs is set to C:\Programme\Java\jre1.6.0\lib\endorsed
    I copied the folowing jars in this directory (as the Java Web Services Developer Pack 2.0 had described) and some additionally from the jwsdp 2.0:
    dom.jar
    jaxp-api.jar
    jaxb-api.jar
    jaxp-api.jar
    jaxws-api.jar
    sax.jar
    xalan.jar
    xercesImpl.jar
    Can you tell me what else I have to do to avoid this mistake?

    Can u give the step that u hav done? & the code plz..?
    I did the same example, & it worked well...

  • I need help some with simple ejb3 app - urgent

    I�m trying to write a small app using ejb3 and I have a big problem.
    1. I created a Session bean in ejb module
    package beans;
    import javax.ejb.*;
    @Stateless()
    public class testBean implements beans.testLocal {
        public String test(String name)
            return "hello "+name;
    package beans;
    public interface testLocal {
         String test(String name);  
    }2. In web module I created a servlet and as in the 'Ejb3 Persistence in netbeans tutorial" and then I called my session bean (http://www.netbeans.org/kb/55/ejb3-preview.html#Exercise_2)
    protected void processRequest(...)
      ...out.println("<body>");
         out.println(aTestBean.test("a Test"));   //bean method call
         out.println("</body>");
         out.println("</html>");        
         out.close();
        @EJB
        beans.testBean aTestBean;   //reference to the session beanI compiled and deployed it.
    And after I invoked the servlet I got that message :
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    javax.servlet.ServletException: Servlet.init() for servlet test threw exception
         com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:73)
         com.sun.enterprise.web.VirtualServerPipeline.invoke(VirtualServerPipeline.java:120)
         org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:223)
         com.sun.enterprise.web.connector.grizzly.ProcessorTask.invokeAdapter(ProcessorTask.java:664)
         com.sun.enterprise.web.connector.grizzly.ProcessorTask.processNonBlocked(ProcessorTask.java:571)
         com.sun.enterprise.web.connector.grizzly.ProcessorTask.process(ProcessorTask.java:846)
         com.sun.enterprise.web.connector.grizzly.ReadTask.executeProcessorTask(ReadTask.java:345)
         com.sun.enterprise.web.connector.grizzly.ReadTask.doTask(ReadTask.java:237)
         com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:240)
         com.sun.enterprise.web.connector.grizzly.WorkerThread.run(WorkerThread.java:75)
    root cause
    java.lang.RuntimeException: WEB5002: Exception in handleBeforeEvent.
         com.sun.web.server.J2EEInstanceListener.handleBeforeEvent(J2EEInstanceListener.java:205)
         com.sun.web.server.J2EEInstanceListener.instanceEvent(J2EEInstanceListener.java:90)
         org.apache.catalina.util.InstanceSupport.fireInstanceEvent(InstanceSupport.java:250)
         com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:73)
         com.sun.enterprise.web.VirtualServerPipeline.invoke(VirtualServerPipeline.java:120)
         org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:223)
         com.sun.enterprise.web.connector.grizzly.ProcessorTask.invokeAdapter(ProcessorTask.java:664)
         com.sun.enterprise.web.connector.grizzly.ProcessorTask.processNonBlocked(ProcessorTask.java:571)
         com.sun.enterprise.web.connector.grizzly.ProcessorTask.process(ProcessorTask.java:846)
         com.sun.enterprise.web.connector.grizzly.ReadTask.executeProcessorTask(ReadTask.java:345)
         com.sun.enterprise.web.connector.grizzly.ReadTask.doTask(ReadTask.java:237)
         com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:240)
         com.sun.enterprise.web.connector.grizzly.WorkerThread.run(WorkerThread.java:75)
    I also tried to do it like in the flash ejb3 presentation but I got the same result (http://j2ee.netbeans.org/NetBeans_EJB3.html)
        beans.testBean aTestBean;   //reference to the session bean
       @javax.ejb.EJB
        private void setTestBean(beans.testBean aTestBean)
            this.aTestBean = aTestBean;
        }How can I call methods from session beans.
    I'd like to do something like this.
    1.Create an EntityBean for my database.
    2 Create a session bean to manage those EntityBeans � like in the tutorial
    3.Create a web module and a servlet with method calls from that session bean
    4. Create a MIDP 2.0 app using "Mobile client to web app' wizard from the mobility pack, to generate stubs for servlet methods.
    All I need to create one simple method
    public String getDataFromDB(int ID)
    //and here the call to the session bean
    return sesionbeanReference.getData(ID);
    help me

    Hi
    I am Facing th same Problem ,But the solution you have give
    that use Local Interface intead of Bean
    In my case I am using Remote Interface and not the local its giving me the same problems as the Query Posted
    javax.servlet.ServletException: Servlet.init() for servlet NewServlet threw exception
         com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:73)
         com.sun.enterprise.web.VirtualServerPipeline.invoke(VirtualServerPipeline.java:120)
         org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:223)
         com.sun.enterprise.web.connector.grizzly.ProcessorTask.invokeAdapter(ProcessorTask.java:664)
         com.sun.enterprise.web.connector.grizzly.ProcessorTask.processNonBlocked(ProcessorTask.java:571)
         com.sun.enterprise.web.connector.grizzly.ProcessorTask.process(ProcessorTask.java:846)
         com.sun.enterprise.web.connector.grizzly.ReadTask.executeProcessorTask(ReadTask.java:345)
         com.sun.enterprise.web.connector.grizzly.ReadTask.doTask(ReadTask.java:237)
         com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:240)
         com.sun.enterprise.web.connector.grizzly.WorkerThread.run(WorkerThread.java:75)
    root cause
    java.lang.RuntimeException: WEB5002: Exception in handleBeforeEvent.
         com.sun.web.server.J2EEInstanceListener.handleBeforeEvent(J2EEInstanceListener.java:205)
         com.sun.web.server.J2EEInstanceListener.instanceEvent(J2EEInstanceListener.java:90)
         org.apache.catalina.util.InstanceSupport.fireInstanceEvent(InstanceSupport.java:250)
         com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:73)
         com.sun.enterprise.web.VirtualServerPipeline.invoke(VirtualServerPipeline.java:120)
         org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:223)
         com.sun.enterprise.web.connector.grizzly.ProcessorTask.invokeAdapter(ProcessorTask.java:664)
         com.sun.enterprise.web.connector.grizzly.ProcessorTask.processNonBlocked(ProcessorTask.java:571)
         com.sun.enterprise.web.connector.grizzly.ProcessorTask.process(ProcessorTask.java:846)
         com.sun.enterprise.web.connector.grizzly.ReadTask.executeProcessorTask(ReadTask.java:345)
         com.sun.enterprise.web.connector.grizzly.ReadTask.doTask(ReadTask.java:237)
         com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:240)
         com.sun.enterprise.web.connector.grizzly.WorkerThread.run(WorkerThread.java:75)
    note The full stack trace of the root cause is available in the Sun Java System Application Server Platform Edition 9.0 Beta logs.
    My EJB Refernce to rmote interface looks like this
    @EJB ProcessAdvertisementRemote oProcessAdvertisementRemote;
    I am caaling a method on that inferface ,so its giving these exceptions
    Can u plz help me out
    Geetanjalee

  • Simple multi thread example

    Hello I am still confused as to how to run parallel processes. I am looking for something very simple so that I can understand better. If possible I would like to see an example that basically starts a vi that writes to a file. For example the vi has a for loop that runs 10 times each time it generates a new instance of a program that writes the number associated with the for loop to the file 2 times. So basically after the program is run the file will read.1122334455667788991010...or have some numbers mixed up depending on how fast each thread ran. I guess the vi would have some controls on the front to adjust the number of times so that the user could get the idea of how the threads would end up writing of order...This is a common example similar to "hello world" of multi threading programs in most languages so I figured that there would be something like this somewhere...but I can't find it. If anyone can point me in the right direction I would appreciate it thanks.

    Hmmm. I cannot locate a good example for you, but I know it's possible.
    So I created my own example  (I THINK I saved it in 8.5 format)
    YOU NEED TO HANDLE ERRORS - this example doesn't.
    But it does do what you asked.
    It spawns any number of subVIs, all of which run independently. 
    Steve Bird
    Culverson Software - Elegant software that is a pleasure to use.
    Culverson.com
    Blog for (mostly LabVIEW) programmers: Tips And Tricks
    Attachments:
    Spawning.llb ‏39 KB

  • Simple JFormatted Feild example

    Hello every body
    i need a very simple JFormatted Feild exapmle which also check the that the data input is valid or not. ill be very thankful for the help.
    zerocool

    Have you read the API?
    Have you read the Swing tutorial?
    Have you searched the forum for examples?
    If you need further help then you need to create a "Short, Self Contained, Compilable and Executable, Example Program (SSCCE)",
    see http://homepage1.nifty.com/algafield/sscce.html,
    that demonstrates the incorrect behaviour, because I can't guess exactly what you are doing based on the information provided.
    Don't forget to use the "Code Formatting Tags",
    see http://forum.java.sun.com/help.jspa?sec=formatting,
    so the posted code retains its original formatting.

  • Simple DNS split example

    Hello,
    I'm using a Cisco 1841 over DSL for internet access and a personal web server. I have searched for a simple DNS split configuration onet the Internet, but none of the examples I have found had worked on my router.
    Does anyone have a simple example of DNS split to share with me? I'm newbie on Cisco routers.
    Regards,
    Marcio 

    Hello Peter!
    I'm not using the Split DNS on my router yet! Let me explain what's happening.
    I have a web server running on my private network on the machine 10.10.10.11 and I can access it using the mentioned address. This server have a FDQN and I can reach it from outside my network (Internet) without any issue.
    I would like to use the FDQN to access it from machines inside my private network, but I cannot due to some security feature on cisco router. I have read some articles stating we need to have a "Split DNS" to allow machines inside the private network can access the web server on the address 10.10.10.11 using the FDQN, as machines outside the private network do.
    I tryed to find a simple "Split DNS" to try here, but I didn't found any that could be used. All I have found are very complex examples. I'm using the following firmaware on the router:
    HomeNet#sh version
    Cisco IOS Software, 1841 Software (C1841-IPBASEK9-M), Version 12.4(24)T3, RELEASE SOFTWARE (fc2)
    Technical Support: http://www.cisco.com/techsupport
    Copyright (c) 1986-2010 by Cisco Systems, Inc.
    Compiled Tue 23-Mar-10 05:11 by prod_rel_team
    ROM: System Bootstrap, Version 12.4(13r)T5, RELEASE SOFTWARE (fc1)
    HomeNet uptime is 23 hours, 37 minutes
    System returned to ROM by power-on
    System image file is "flash:c1841-ipbasek9-mz.124-24.T3.bin"
    I'm not using Cisco Router as a DHCP server, since I have a Linux machine running ISC-DHCP-SERVER on my network. I have attached some pictures to ilustrate the issue, one accessing using FDQN and other using server IP address.
    Best Regards!
    Marcio

  • Simple bitmapdata animation example

    all this bitmapdata stuff blows my mind.
    I wonder if anyone has a really simple example I can look at to get to grips with it.
    I have 10 jellybeans that I want to gradually reduce in size. DOing this as a tween or actionscript results in poor performance on the iphone and iPad of course so I want to imporve this using the bitmapdata method,
    any help would be appreciated

    THANKS !!!
    Most Excellent !
    I downloaded the SDK and this is exactly what I was looking for...
    If you have time... would you take a look at my other posts... as I have a few customizations that I would like to implement.

Maybe you are looking for

  • Confirmation Posting Error

    Dear SRM Experts: system information: SRM 4.0, R/3 4.6c We have a situation were the confirmation is approved in SRM, but an error occurs when the system is creating a service entry sheet in R/3. The error from BBP_PD is "General error during accepta

  • Flash builder 4.7 iOS Debug Binary (IDB) component  is not installed.

    I get the error below consistantly. Is the IDB supposed to be part of the flex 4.6 sdk or part of an air sdk? (I've not seen it in either) Some components required to launch the application were not found. Please reinstall the AIR SDK and try again.

  • Grandfathered plan looking for a new phone with sim card

    I have a droid x2 which has no sim card. I want to get a new phone, or a used new phone, to not lose my grandfathered plan. All the phones I'm looking at have sim cards, which I've never had in the 15 years I've been with verizon. I want to make sure

  • How to change the Phone Frequency

    I bought the Lumia 800 that have the windows 7.8 outside the country i live in now (Brazil).  I was informed that the frequency that my phone uses is different that the one it should be. Because of that, my phone can hardly ever get good internet sig

  • Displaying non-legible fonts

    I assume that in the process of organizing font sets I somehow managed to affect Mail. Now the To, From, and Subject titles are using a numerical font set. I can change the message fonts within Preferences>Fonts & Colours, but none of these pref's al