Problem : App works with Sun App server 8.0 but fails with 8.1

Hi All
     I am experiencing some strange problem with executing my JSF application with Sun App Server.
     I have an EAR deployed on Sun Application Server 8.0 and 8.1.
     Strangely it works quite fine with 8.0 but fails with 8.1.
     In my JSP page ..I have a dummy component whose getter method is used as a "FormLoad" event of the page.
     <h:form id="imageForm" enctype="multipart/form-data">
     <h:messages showDetail="true" />
     <table width="980" border="1" cellpadding="0" cellspacing="0" bordercolor="#A9B8C2">
          <tr>
<td>     
               <h:inputHidden value="#{Screen1.initializeService}"/>
          <h:selectOneListbox styleClass="style2" id="cmbMiddleArea" immediate="true" value="#{Screen1.selectedMiddleArea}">
          <f:selectItems value="#{Screen1.middleAreaList}" />
     </h:selectOneListbox>
     In my backing bean i have ..
     public String getInitializeService() {
          ..... Retrieve all the data from DB to initialize all the components on the JSP page
          .......setMiddleAreaList......
          .......setSelectedMiddleArea.....
          ........set the values of the individal component...
     I am retrieving all the data from DB in this getter method and intializing the components on the JSP page.
     I have also checked the code generated for JSP by both the servers.I am posting the code here for reference although
     i did not find any significant difference between the two...
     For Server 8.0
     private boolean jspxmeth_h_inputHidden_0(javax.servlet.jsp.tagext.JspTag jspxth_h_form_0, PageContext jspxpage_context)
     throws Throwable {
     JspWriter out = jspxpage_context.getOut();
     // h:inputHidden
     com.sun.faces.taglib.html_basic.InputHiddenTag jspxth_h_inputHidden_0 = (com.sun.faces.taglib.html_basic.InputHiddenTag) jspxtagPool_h_inputHidden_value.get(com.sun.faces.taglib.html_basic.InputHiddenTag.class);
     jspxth_h_inputHidden_0.setPageContext(_jspx_page_context);
     jspxth_h_inputHidden_0.setParent((javax.servlet.jsp.tagext.Tag) jspxth_h_form_0);
     jspxth_h_inputHidden_0.setValue("#{searchBean.initializeService}");
     int jspxeval_h_inputHidden_0 = jspxth_h_inputHidden_0.doStartTag();
     if (_jspx_th_h_inputHidden_0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE)
     return true;
     jspxtagPool_h_inputHidden_value.reuse(_jspx_th_h_inputHidden_0);
     return false;
     For Server 8.1
     private boolean jspxmeth_h_inputHidden_0(javax.servlet.jsp.tagext.JspTag jspxth_h_form_0, PageContext jspxpage_context)
     throws Throwable {
     PageContext pageContext = jspxpage_context;
     JspWriter out = jspxpage_context.getOut();
     // h:inputHidden
     com.sun.faces.taglib.html_basic.InputHiddenTag jspxth_h_inputHidden_0 = (com.sun.faces.taglib.html_basic.InputHiddenTag) jspxtagPool_h_inputHidden_value_nobody.get(com.sun.faces.taglib.html_basic.InputHiddenTag.class);
     jspxth_h_inputHidden_0.setPageContext(_jspx_page_context);
     jspxth_h_inputHidden_0.setParent((javax.servlet.jsp.tagext.Tag) jspxth_h_form_0);
     jspxth_h_inputHidden_0.setValue("#{searchBean.initializeService}");
     int jspxeval_h_inputHidden_0 = jspxth_h_inputHidden_0.doStartTag();
     if (_jspx_th_h_inputHidden_0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE)
     return true;
     jspxtagPool_h_inputHidden_value_nobody.reuse(_jspx_th_h_inputHidden_0);
     return false;
     Now the actual problem is "getInitializeService" method never gets called when i deploy and run the application on Sun App Server8.1
     However with Sun App Server 8.0 it woeks perfectly fine.
     Can anybody help me in resolving these issues ?
     

Actually generated JSP code can be referred as ...
For Server 8.0
     private boolean jspxmeth_h_inputHidden_0(javax.servlet.jsp.tagext.JspTag jspxth_h_form_0, PageContext jspxpage_context)
     throws Throwable {
     JspWriter out = jspxpage_context.getOut();
     // h:inputHidden
     com.sun.faces.taglib.html_basic.InputHiddenTag jspxth_h_inputHidden_0 = (com.sun.faces.taglib.html_basic.InputHiddenTag) jspxtagPool_h_inputHidden_value.get(com.sun.faces.taglib.html_basic.InputHiddenTag.class);
     jspxth_h_inputHidden_0.setPageContext(_jspx_page_context);
     jspxth_h_inputHidden_0.setParent((javax.servlet.jsp.tagext.Tag) jspxth_h_form_0);
     jspxth_h_inputHidden_0.setValue("#{Screen1.initializeService}");
     int jspxeval_h_inputHidden_0 = jspxth_h_inputHidden_0.doStartTag();
     if (_jspx_th_h_inputHidden_0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE)
     return true;
     jspxtagPool_h_inputHidden_value.reuse(_jspx_th_h_inputHidden_0);
     return false;
     For Server 8.1
     private boolean jspxmeth_h_inputHidden_0(javax.servlet.jsp.tagext.JspTag jspxth_h_form_0, PageContext jspxpage_context)
     throws Throwable {
     PageContext pageContext = jspxpage_context;
     JspWriter out = jspxpage_context.getOut();
     // h:inputHidden
     com.sun.faces.taglib.html_basic.InputHiddenTag jspxth_h_inputHidden_0 = (com.sun.faces.taglib.html_basic.InputHiddenTag) jspxtagPool_h_inputHidden_value_nobody.get(com.sun.faces.taglib.html_basic.InputHiddenTag.class);
     jspxth_h_inputHidden_0.setPageContext(_jspx_page_context);
     jspxth_h_inputHidden_0.setParent((javax.servlet.jsp.tagext.Tag) jspxth_h_form_0);
     jspxth_h_inputHidden_0.setValue("#{Screen1.initializeService}");
     int jspxeval_h_inputHidden_0 = jspxth_h_inputHidden_0.doStartTag();
     if (_jspx_th_h_inputHidden_0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE)
     return true;
     jspxtagPool_h_inputHidden_value_nobody.reuse(_jspx_th_h_inputHidden_0);
     return false;
     }

Similar Messages

  • Problem with sun app server startup

    hi,
    i am getting problem with sun app server default start.the error is::
    [#|2006-03-01T13:54:35.121+0530|WARNING|sun-appserver-pe8.2|javax.enterprise.tools.launcher|_ThreadID=10;|LAUNCHER005:Spaces in your PATH have been detected. The PATH must be consistently formated (e.g. C:\Program Files\Java\jdk1.5.0\bin; ) or the Appserver may not be able to start and/or stop.  Mixed quoted spaces in your PATH can cause problems, so the launcher will remove all double quotes before invoking the process. The most reliable solution would be to remove all spaces from your path before starting the Appservers components.  |#]
    now i am useing Win Xp operating system,
    show me a solution.
    Regs..
    Narasimha

    You haven;t specified the exceptions you r getting ........while starting your default server.
    if u r getting exception about InetClass then connect your system with LAN/Internet then your problem will be solved becoz i m using same location address as you specified, space doesn't matter at all - i think so, it is running fine........

  • JMS problem with Sun Application Server 8.2

    Hi!
    I've just started trying JMS and found a problem.
    I set a connection factory called "QueueConnectionFactory" in the Sun Application Server Admin Consol.
    After this I test this code:
    import javax.jms.*;
    import javax.naming.*;
    public class Sun_JNDI
    public static void main(String args[]) throws Exception
    Context jndiContext = null;
    System.setProperty("java.naming.factory.initial","com.sun.enterprise.naming.SerialInitContextFactory" );
    System.setProperty("java.naming.factory.url.pkgs","=com.sun.enterprise.naming");
    System.setProperty("java.naming.provider.url","localhost:1024");
    jndiContext = new InitialContext();
    Object O = jndiContext.lookup("QueueConnectionFactory");
    System.out.println(jndiContext);
    in result I got this long Exception message:
    2006.02.12. 10:52:59 com.sun.corba.ee.spi.logging.LogWrapperBase doLog
    INFO: "IOP00710299: (INTERNAL) Successfully created IIOP listener on the specified host/port: all interfaces/1356"
    2006.02.12. 10:53:00 com.sun.enterprise.connectors.ActiveRAFactory createActiveResourceAdapter
    SEVERE: RAR6001 : Class Not found : com.sun.messaging.jms.ra.ResourceAdapter
    2006.02.12. 10:53:00 com.sun.enterprise.connectors.ActiveRAFactory createActiveResourceAdapter
    SEVERE:
    com.sun.enterprise.connectors.ConnectorRuntimeException: Error in creating active RAR
    at com.sun.enterprise.connectors.ActiveRAFactory.createActiveResourceAdapter(ActiveRAFactory.java:76)
    at com.sun.enterprise.connectors.ResourceAdapterAdminServiceImpl.createActiveResourceAdapter(ResourceAdapterAdminServiceImpl.java:267)
    at com.sun.enterprise.connectors.ConnectorRuntime.createActiveResourceAdapter(ConnectorRuntime.java:189)
    at com.sun.enterprise.naming.factory.ConnectorObjectFactory.getObjectInstance(ConnectorObjectFactory.java:71)
    at javax.naming.spi.NamingManager.getObjectInstance(NamingManager.java:304)
    at com.sun.enterprise.naming.SerialContext.lookup(SerialContext.java:293)
    at javax.naming.InitialContext.lookup(InitialContext.java:351)
    at Sun_JNDI.main(Sun_JNDI.java:40)
    Caused by: java.lang.ClassNotFoundException: com.sun.messaging.jms.ra.ResourceAdapter
    at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:268)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:164)
    at com.sun.enterprise.connectors.ActiveRAFactory.createActiveResourceAdapter(ActiveRAFactory.java:50)
    ... 7 more
    2006.02.12. 10:53:00 com.sun.enterprise.naming.SerialContext lookup
    SEVERE: NAM0004: Exception during name lookup : {0}
    com.sun.enterprise.connectors.ConnectorRuntimeException: Error in creating active RAR
    at com.sun.enterprise.connectors.ActiveRAFactory.createActiveResourceAdapter(ActiveRAFactory.java:76)
    at com.sun.enterprise.connectors.ResourceAdapterAdminServiceImpl.createActiveResourceAdapter(ResourceAdapterAdminServiceImpl.java:267)
    at com.sun.enterprise.connectors.ConnectorRuntime.createActiveResourceAdapter(ConnectorRuntime.java:189)
    at com.sun.enterprise.naming.factory.ConnectorObjectFactory.getObjectInstance(ConnectorObjectFactory.java:71)
    at javax.naming.spi.NamingManager.getObjectInstance(NamingManager.java:304)
    at com.sun.enterprise.naming.SerialContext.lookup(SerialContext.java:293)
    at javax.naming.InitialContext.lookup(InitialContext.java:351)
    at Sun_JNDI.main(Sun_JNDI.java:40)
    Caused by: java.lang.ClassNotFoundException: com.sun.messaging.jms.ra.ResourceAdapter
    at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:268)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:164)
    at com.sun.enterprise.connectors.ActiveRAFactory.createActiveResourceAdapter(ActiveRAFactory.java:50)
    ... 7 more
    Exception in thread "main" javax.naming.CommunicationException: serial context communication ex [Root exception is com.sun.enterprise.connectors.ConnectorRuntimeException: Error in creating active RAR]
    at com.sun.enterprise.naming.SerialContext.lookup(SerialContext.java:317)
    at javax.naming.InitialContext.lookup(InitialContext.java:351)
    at Sun_JNDI.main(Sun_JNDI.java:40)
    Caused by: com.sun.enterprise.connectors.ConnectorRuntimeException: Error in creating active RAR
    at com.sun.enterprise.connectors.ActiveRAFactory.createActiveResourceAdapter(ActiveRAFactory.java:76)
    at com.sun.enterprise.connectors.ResourceAdapterAdminServiceImpl.createActiveResourceAdapter(ResourceAdapterAdminServiceImpl.java:267)
    at com.sun.enterprise.connectors.ConnectorRuntime.createActiveResourceAdapter(ConnectorRuntime.java:189)
    at com.sun.enterprise.naming.factory.ConnectorObjectFactory.getObjectInstance(ConnectorObjectFactory.java:71)
    at javax.naming.spi.NamingManager.getObjectInstance(NamingManager.java:304)
    at com.sun.enterprise.naming.SerialContext.lookup(SerialContext.java:293)
    ... 2 more
    Caused by: java.lang.ClassNotFoundException: com.sun.messaging.jms.ra.ResourceAdapter
    at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:268)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:164)
    at com.sun.enterprise.connectors.ActiveRAFactory.createActiveResourceAdapter(ActiveRAFactory.java:50)
    ... 7 more
    So I tested this code under Netbeans5 and I don't where to find jar file contains the class: com.sun.messaging.jms.ra.ResourceAdapter
    Other time I tryied to lookup this URL: "java:comp/env/jms/QueueConnectionFactory"
    The result was: javax.naming.NameNotFoundException
    I know it is a small code example but if I'm not able to solve this problem I can't go on with JMS.
    I would be glad by any help.
    Regards:
    Sandor

    Hello
    In my code it looks like that:
    1: System.setProperty("com.sun.jndi.ldap.LdapCtxFactory", "iiop://localhost:3700");
    2: Context ctx = new InitialContext();
    3: TopicConnectionFactory factory = (TopicConnectionFactory)ctx.lookup("jms/DailyDestinationFactory");
    4: TopicConnection connection = factory.createTopicConnection();
    5: TopicSession session = connection.createTopicSession(false, Session.AUTO_ACKNOWLEDGE);
    6: Topic topic = (Topic)ctx.lookup("jms/DailyBean");
    7: TopicPublisher pub = session.createPublisher(topic);
    8: TextMessage msg = session.createTextMessage();
    9: msg.setText("NewMessage");
    10: pub.send(msg);
    and it work with Sun App Server 8.2.

  • Problem with Sun Directory Server 6.0 Console

    Hi,
    I posted same onto wrong forum earlier hope I am in correct place :).
    I have installed Sun Directory server on my Sparc box and now I am unable to start the management console. I followed some instruction on net and it say we have to refister the product using folowing command from dscc6/bin folder for installation
    System SnapShot_
    # ./dsccsetup initialize
    DSCC Application is already registered
    DSCC Agent is already registered
    Choose password for Directory Service Manager:
    Confirm password for Directory Service Manager:
    Creating DSCC registry...
    DSCC Registry has been created successfully
    *and it suppose to be started on https://Ip_address:6789 but its not. Can any one please tell me how to start the admn console to manage my directory server effectively.
    Note: I have already started the instance I have created during the installation using slapd-start script and its running successfully.
    Thanks,
    Sheeraz

    NOOOOO :( ..... Now i can see the login page.,.. Thanks mate.... Now when I am trying to log in using the UserName and Password I have supplied during the installation process (Sun Directory Server) it says Authentication failed.????
    This looks like a general webconsole... do I need to provide an specific URL for diretory server page ?????

  • Can somebody explain to me how JSP, servlets, ASP work within Sun's server

    Ok, I'm only beginning to get a grip of how all this works. And I have a lot of questions and confusion.
    1.) The server that comes with J2EE, what is that server? Is it an app server that runs only servlets and JSP, with some Web server stuff so it can output some info? Is it a stripped down version of TomCat? I am having a lot of trouble with the J2EE server (the one that comes with the SDK), and that is why I'm asking, maybe I don't need it. But I really want to learn JSP's, JScripts, and Beans. How else can I go about doing that, other than all out Tomcat.
    2.) Also can I run Servlets on Microsft's IIS on a Windows 2000 machine? Do I need a special API to run servlets, or JSPs?
    So how I see it, and again, I am a newbie at this. Machines that host a website, above all needs a web server. let's say most people use Apache, and they want to run it in Linux, becuase they want to be hackers. So then do they also run Tomcat, or IIS, or Coldfusion, or a million other servers in tandem on the same machine, so that they can handle ASP, JSPs, servlets, .cmf, etc.? or do they separate the app server from the webserver and then do some sort of linking? if somebody can direct me to how all this stuff works, I would greatly greatly appreciate it.

    Sounds like you need to read the J2EE spec as well as
    the servlet and JSP specs. It helps to glance through
    sections you are interested in.
    Ok, I'm only beginning to get a grip of how all this
    works. And I have a lot of questions and confusion.
    I think for a newbie, deploying your jsp's and servlets
    to a J2EE compliant app server can be quite a headache.
    You might want to concentrate on tomcat, which does servlet
    and jsp.
    Some app servers provide a http connector for most common web servers.
    I think tomcat has a IIS connector. In this case IIS would serve static html as well as its own stuff, other things like servlets and jsp go to tomcat. I am unsure about this as I mostly use tomcat in standalone mode. You can run tomcat on windows, as it is written in java.
    >
    2.) Also can I run Servlets on Microsft's IIS on a
    Windows 2000 machine? Do I need a special API to run
    servlets, or JSPs?

  • User provisioning with Sun Directory Server

    I'm migrating from the internal user data store to external with Sun Directory Server as the LDAP backend and I'm unable to provision new users. I use unidssearch to list the unprovisioned accounts and it lists the user I'd like to provision. I then execute 'uniuser -user -add "DID=uid=testy,ou=People,dc=domain,dc=com" -n 10' which returns an Insufficient access right error. When I look at das.log I see the following entry...
    DATE = Thu May 10 10:25:09 2007
    PID = 440; TID = 1095888896
    LOG TYPE -> DEBUG
    FUNCTION NAME -> ctldap_CalUserUpdateByDirectoryId
    dn: uid=testy,ou=People,dc=domain,dc=com
    changetype: add
    ctCalXItemId: 00010:00500
    o: Domain Corporation
    objectClass: ctCalUser
    This entry tells me that uniuser is try to do an LDAP_ADD on an existing object in the directory when it should do a LDAP_MODIFY.
    Does anyone know why this is?

    the unidsacisetup(8) command can be used to add the ACI for Sun Directory server. The ACI it sets is a little to loose for my liking so I modified it slightly.
    Original:
    (target="ldap:///dc=domain,dc=com") (targetattr = "*") (version 3.0; acl "Calendar Administrators Group"; allow(all) groupdn = "ldap:///cn=OracleCalendarAdminGroup,ou=OracleCalendar,dc=domain,dc=com";)
    Modified:
    (target="ldap:///dc=domain,dc=com") (targetattr = "*") (version 3.0; acl "Calendar Administrators Group"; allow(read,write,compare) groupdn = "ldap:///cn=OracleCalendarAdminGroup,ou=OracleCalendar,dc=domain,dc=com";)

  • HT3669 Hi I have a Konica Minolta PagePro 1300W printer. This works with my Windows-based Toshiba laptop but not with my i-Mac. Can someone please advise me how I get the printer to work with my i-Mac? I have installed it but documents don't print. Thanks

    Hi I have a Konica Minolta PagePro 1300W printer. This works with my Windows-based Toshiba laptop but not with my i-Mac. I have the latest (Mountain Lion 10.8.2) OS-X software.
    I have installed the printer using 'System Preferences' on my i-Mac and it appears on the list of available printers but documents that I create just don't print.
    Can someone please advise me how I get the Konica Minolta PagePro 1300W printer to work with my i-Mac?
    Thanks, John Lee

    Looking at the Konica web site for the PagePro 1300W, I saw the following note.
    Please note: This printer is designed to be used in computer operating systems running MS Windows only. Operating systems such as UNIX, Macintosh, or Linux are not supported nor do we have workaround drivers available. Older MS Windows versions, such as Windows 3.1/95/98[pre-SE] and NT 3.51/4.0, are not supported.
    So KM are not going to help you. But the LinuxFoundation does provide a workaround that should allow you to print. Have a look at this web page. You will need to install all three packages as per the instructions from that page.

  • I have unlocked iphone 5.i tried to use it with tmobile.it shows full network but fails to activate and shows sim invalid.how to make it work?

    i have unlocked iphone 5.i tried to use it with tmobile.it shows full network but fails to activate and shows sim invalid.how to make it work?

    Who was your original carrier; did you call them to ask them to unlock your phone, and are you aware of what their unlock policy is (THey may only unlock for international sims and not US sims

  • I tried to restore my iphone 3GS with the OS 5.1.1 but failed and itunes show an unknow error (29), what can i do? my phone is usless now

    i tried to restore my iphone 3GS with the OS 5.1.1 but failed and itunes show an unknow error (29), what can i do? my phone is usless now
    Somebody help!

    What happened when you connected your iPhone to your computer while running iTunes on your computer? You should be prompted through the restore process. If it doesn't work try getting your iPhone into Recovery Mode.
    If you can't update or restore your iPhone, iPad, or iPod touch - Apple Support

  • Test pgm compiles w/ gcc293, but fails with v6 update 2

    I am trying to get this to compile with Suns CC v6 update 2, but there's a const issue somewhere, I've tried several different const declarations to no avail. I've been trying to get our admins to upgrade to 7.0, but they claim the patches needed for this version break purify...
    #include <iostream>
    #include <map>
    #include <string>
    using namespace std;
    int main()
    multimap<double, char> gMap;
    map<string, multimap<double, char> > testMap;
    gMap.insert(1.0, 'X');
    gMap.insert(1.0, 'X');
    gMap.insert(2.0, 'X');
    testMap.insert(make_pair(string("TEST0"), gMap));
    gMap.clear();
    gMap.insert(1.0, 'Y');
    gMap.insert(1.0, 'Y');
    gMap.insert(2.0, 'Y');
    testMap.insert(make_pair(string("TEST1"), gMap));
    gMap.clear();
    gMap.insert(1.0, 'Z');
    gMap.insert(1.0, 'Z');
    gMap.insert(2.0, 'Z');
    testMap.insert(make_pair(string("TEST2"), gMap));
    gMap.clear();
    gMap.insert(1.0, 'A');
    gMap.insert(1.0, 'A');
    gMap.insert(2.0, 'A');
    testMap.insert(make_pair(string("TEST3"), gMap));
    gMap.clear();
    gMap.insert(1.0, 'B');
    gMap.insert(1.0, 'B');
    gMap.insert(2.0, 'B');
    testMap.insert(make_pair(string("TEST4"), gMap));
    typedef map<string, multimap<double, char> >::iterator I;
    for (I i = testMap.begin(); i != testMap.end(); i++) {
    cout << (i)->first << endl;
    typedef multimap<double, char>::iterator J;
    for (J j = (i->second).begin(); j != (i->second).end(); j++)
    cout << (j)->first << " " << (j)->second << endl;
    "gtest5.C", line 13: Error: Could not find a match for
    std::multimap<double, char, std::less<double>,
    std::allocator<std::pair<const double, char>>>::insert(double, char).
    "gtest5.C", line 14: Error: Could not find a match for
    std::multimap<double, char, std::less<double>,
    std::allocator<std::pair<const double, char>>>::insert(double, char).
    "gtest5.C", line 15: Error: Could not find a match for
    std::multimap<double, char, std::less<double>,
    std::allocator<std::pair<const double, char>>>::insert(double, char).

    To get this to compile with v6 update 2,
    change make_pair(1.0, 'X') to
    make_pair<const double, char> (1.0, 'X')
    glenn

  • I'm unable to completely download the latest iphone software verison 5.0.1 with itunes 10.5.2.11, downloading fails with 100kb left (err = -3259).

    Hello,
    I'm unable to completely download the latest iphone software verison 5.0.1 with itunes 10.5.2.11, downloading fails with 100kb left (err = -3259). Any suggestion on how to resolve this? I manually cleaned the DNS cached as well as directly connecting my pc to the cable modem instead of the router.

    Thank you for your response.  But unfortunately there's no Apple Genius Bar here in Malaysia.  Only resellers, which I feel that they are charging way too much in the first place.

  • Process q001 started up but failed with error = 20

    Dear All,
    I am facing the following error in my alert log file. I am using oracle database 10.1.
    Process q001 started up but failed with error = 20
    Process q002 started up but failed with error = 20
    Tue May 18 12:11:53 2010
    Process q001 started up but failed with error = 20
    Process q001 started up but failed with error = 20
    Process q001 started up but failed with error = 20
    Process q001 started up but failed with error = 20
    Process q001 started up but failed with error = 20
    Process q001 started up but failed with error = 20
    users unable to connect to database.....
    Regards

    This may be due to AQ_TM_PROCESSES parameter.
    what is value of AQ_TM_PROCESSES parameter..
    Also paste value of processes parameter.
    Also login as sysdba and give output of :
    select * from v$resource_limit;
    Regards
    Rajesh
    Edited by: Rajesh Lathwal on May 18, 2010 12:48 PM

  • Process m000 started up but failed with error = 20

    Hi,
    Could anybody tell me what does this mean ?
    Process m000 started up but failed with error = 20
    Thu Aug 1 15:22:34 2007
    Process q000 started up but failed with error = 20
    Process q000 started up but failed with error = 20
    Process q000 started up but failed with error = 20
    Thanks,
    P.

    Check metalink note 334704.1
    https://metalink.oracle.com/metalink/plsql/f?p=130:14:4536502596857368347::::p14_database_id,p14_docid,p14_show_header,p14_show_help,p14_black_frame,p14_font:NOT,334704.1,1,1,1,helvetica

  • "Message Driven Bean" doesn't work with Sun App Server

    Hello all,
    i have a little bit problems, running a simple "Message Driven Bean" under the Sun App Server. The deployment of it works fine, but after starting the SUN App Server i get the following error message:
    An error occurred during the message-driven beancontainer initialization at runtime. The most common cause for this is that the physical resource(e.g. Queue) from which the message-driven bean is consuming either does not exist or has been configured incorrectly. Another common error is that the message-driven bean implementation class does not correctly implement the required javax.ejb.MessageBean or MessageListener interfaces.
    Has anybody a workaround for this problem?
    The queue seems to be correctly installed. A simple client programm from the Sun Tutorial (Consumer & Producer) works fine without any Errors or Exceptions.
    I am a little bit confused, because the queue seems to work with the client programms but not with a MDB running on the SUN App Server.
    Thanks for you help!
    Greetings
    Manuel

    Hello Mr Manuel!
    could you plz help me with the steps for creating a message driven bean using netbeans ver 5.0(with Sun Java� System Application Server Platform Edition 8.2 )
    I just know how to work with Session beans & Entity Bean, and am try to learn to work on Message Driven Beans too. there are no proper tutorials where i can find steps for creating these..
    I need the steps from the scratch.,like creating QueueConnection Factory & Destination etc..
    It will be gr8 if you can help me with this at the earliest .
    Thank you
    Bye

  • Access Manger with sun app server 8.1 configuration problem

    Hi,
    I have installed Access Manger on web Server 6 through JES 5 with configure later option, its working fine.
    Now I am trying to install with same options on Sun Application Server 8, AM deployed properly on App server, but when I am trying to launch the access manager console it giving error...
    exception
    javax.servlet.ServletException
         org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:300)
         org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:165)
    root cause
    java.lang.NoClassDefFoundError
         com.sun.identity.authentication.UI.LoginServlet.initializeRequestContext(LoginServlet.java:112)
         com.iplanet.jato.ApplicationServletBase.processRequest(ApplicationServletBase.java:578)
         com.iplanet.jato.ApplicationServletBase.doGet(ApplicationServletBase.java:459)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:747)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:860)
         sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         java.lang.reflect.Method.invoke(Method.java:585)
         org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:249)
         java.security.AccessController.doPrivileged(Native Method)
         javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
         org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:282)
         org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:165)
    Please any body tell me the solution.

    DENGO PROBLEMA CON EL JAVA DE PAJINA INTERNET

Maybe you are looking for

  • Change email address in icloud

    I have an email that was hacked.  I have my iphone and ipad set up using that particular email.  I was able to change my email and all of my Apple related emails go to my new email address. However, when I went to my settings on my phone it is still

  • Analog Fedback for position control

    Hi all, Its been a long time since I have written into this discussion forum. I have a question. Till now I have been using encoder as a feedback device for position control in PCI 7342 motion controller. Now I want to know about position control usi

  • Need Help in a Oracle Issue

    Hi need some valuable suggestion. I have a table myemp with columns empno, ename, hiredate. I altered the table and added a new column as create_dt. The requirement is that wherenver i update or insert a new row into myemp table, the column create_dt

  • Firefox won't browse! v30 on vista

    Just got firefox v30 on my vista sp2 system. have been using firefox for years. It will NOT go to other web sites. Have to type in websites in the query window and then select them from query results.

  • Network Stalling

    We're looking at the usual "why is my internet so slow?" problem here. Speed tests show good (+7000kbps down/+800kbps up) and other computers on the LAN don't have any problems. My specifics seem to be an initial stall while connecting to a website.