Weblogs related to Widgets

This thread is dedicated to publishing new weblogs. Do not append any comments onto this thread! Only if you have written a weblog, then append a small description with the link here.
For everyone else that is interested, press the "Watch this Topic" option at the start of the thread. Next click "Watch Options", check "Email Updates", and "Update Watches". Then, whenever a new append is made to this thread, SDN will send an email to all watchers. This is effectively a very cheap "heads up" on new (Widget) related weblogs.
WARNING: Do NOT append anything else on this thread, as any new append will trigger a flood of emails to all three (thousand?) people on the watch list!

Basic Widget Tutorials :
<a href="/people/abesh.bhattacharjee/blog/2007/01/24/create-your-first-yahoo-widget">Create your First Yahoo! Widget Widget!</a>

Similar Messages

  • Weblogs related to Ruby and SAP

    This thread is dedicated to publishing new weblogs. Do not append any comments onto this thread! Only if you have written a weblog, then append a small description with the link here.
    For everyone else that are interested, press the "Watch this Topic" option at the start of the thread. Next click "Watch Options", check "Email Updates", and "Update Watches". Then, whenever a new append is made to this thread, SDN will send an email to all watchers. This is effectively a very cheap "heads up" on new (Ruby) related weblogs.
    WARNING: Do NOT append anything else on this thread, as any new append will trigger a flood of emails to all three (thousand?) people on the watch list!

    Totally forgot about this post...Updating -:)
    [Tasting the mix of Ruby and SAP - Volume 4|/people/alvaro.tejadagalindo/blog/2007/05/29/tasting-the-mix-of-ruby-and-sap--volume-4] --> ST22 with WxRuby
    [Blag's Flex 3 Compiler|/people/alvaro.tejadagalindo/blog/2008/04/07/blags-flex-3-compiler] --> Flex 3 Compiler
    [Tasting the mix of Ruby, Camping and SAP|/people/alvaro.tejadagalindo/blog/2008/11/25/tasting-the-mix-of-ruby-camping-and-sap] --> SE16
    Greetings,
    Blag.

  • :) Weblogs related to RFID

    This thread is dedicated to referencing the published and new RFID weblogs. Do not append any comments to this thread please! Only if you have written a weblog about RFID and released it, you may append a small description with the link here.
    For everyone else interested in tracking RFID weblogs, press the "Watch this Topic" option at the start of the thread. Next click "Watch Options", check "Email Updates", and "Update Watches". Then, whenever a new append is made to this thread, SDN will send an email to all watchers. This is effectively a very simple "heads up" on new (RFID) related weblogs.
    WARNING: Do NOT append anything else on this thread, as any new append will trigger a flood of emails to all the people on the watch list!

    Here we go with the very first blog:
    Commissioning RFID Tags from SAP, Part I of III
    /people/john.carlson2/blog/2005/07/12/commissioning-rfid-tags-from-sap-part-i-of-iii
    A pioneer in SAP RFID, John Carlson, has jumped in, lit the way and invited others to share, communicate, and give feedback with his welcomed and welcoming blog.
    I echo Michal, in that it is fabulous to have experienced RFIDers willing to give others opportunities to learn and also teach.  Thanks, John.
    Marilyn

  • Security issues related to widgets

    I have experienced some very strange phenomena after installing a few widgets (laptop restarts spontaneously, huge hard drive inexplicably fills up). Although the widgets might not be responsible for all this I'd like to get rid of them.
    Is there a way to uninstall widgets? Would removing the widgets in question guarantee that whatever they've installed—if anything—would be removed?

    Since X doesn't have your passphrase, it can't put it into any core dumps. About the only private data X has inside it that I can think of it the xauth key, but that changes every time you restart X, so it's already expired anyway.
    You can always try running "strings" on the core dump and looking for anything bad.

  • How to deploy a war file on Weblogic Server 7.0??

    Hello Everyone
    I am trying to deploy a servlet on Weblogic Server 7.0 as a WAR file. Can anyone of u plz tell me the steps required to do that. I am posting this question on EJb forum and not on servlets coz this is not a servlet problem, rather this is something which is related to J2EE, ie how to deploy a war file on J2EE Server.
    This is how i have done it, but this is not working---
    (1) First i created a directory structure for the web application according to J2EE Specification.
    C:\Work\
    myServletWAR\
    META-INF\
    WEB-INF\
    classes\
    HelloServlet.class
    web.xml
    i.e within work directory, there is a dic called myServletWAR which is my application directory which contains 2 sub directories viz META-INF which contains the mainifest file being generated by the jar utility. the second directory in the myServletWAR application dir is WEB-INF, which contains one file called web.xml for servlet mapping and one directory classes which contains HelloServlet.class
    (2) I used following command for creating war file from myServletWAR director(i.e from my web application's directory).
    jar -cvf TestServletWAR.war .
    This creates the TestServletWAR.war file in myServletWAR dir.
    Here is how my Servlet and web.xml looks like...
    Servlet code
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class HelloServlet extends HttpServlet
    public void doPost ( HttpServletRequest req, HttpServletResponse res )
    throws IOException, ServletException
    doGet( req, res );
    public void doGet ( HttpServletRequest req, HttpServletResponse res )
    throws IOException, ServletException
    res.setContentType( "text/html" ); // Can also use "text/plain" or others.
    PrintWriter out = res.getWriter();
    // Get the requestor's IP address (See JavaDocs to see how to get other info):
    String addr = req.getRemoteAddr();
    // Create output (the response):
    out.println( "<HTML><HEAD><TITLE>HelloServlet in myServletWAR</TITLE></HEAD>" );
    out.println( "<BODY><H1 ALIGN=\"CENTER\">" );
    out.println( "Hello " + addr + ", from HelloServlet in myServletWAR!" );
    out.println( "</H1></BODY></HTML>" );
    out.close();
    ************************Servlet Ends Here **************************
    web.xml
    ---------------------------------------------------------- <!DOCTYPE web-app
    PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN"
    "http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">
    <web-app>
    <display-name>myServletWAR, a first Web Application</display-name>
    <description>
    This is a simple web application containing a single servlet
    of the "Hello, World" variety.
    </description>
    <servlet>
    <servlet-name>myHello</servlet-name>
    <servlet-class>HelloServlet</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>myHello</servlet-name>
    <url-pattern>/myHello</url-pattern>
    </servlet-mapping>
    </web-app>
    ****************************web.xml file ends here********************
    After deploying the TestServletWAR.war file on the weblogic 7.0, i tried to execute the servlet from the browser by the following URL
    http://localhost:7001/myServletWAR/myHello
    I am getting the HTTP 404 Error, which is an indication that weblogic was unable to find the resourse, which it was requested for. Can anybody plz tell me what i m doing worng?? do i need to use weblogic related xml file (i.e weblogic.xml) also along with web.xml. If yes, then what all i need to include that. I m not very sure. A sample weblogic.xml file for this HelloWorld example will help me a lot.
    Looking forward for your help
    Thanx in advance
    Nisha

    hi i have read ur answer regarding deploing a servlet in weblogic 7.0
    i am facing another problem
    when i try to access the servlet inside my classes directory it throwa an error stating this :
    IT DOES NOT FOUND THE CLASSES ON WHICH MY SERVLET DEPENDS.WHAT DOEES ATHIS MEAN
    KINDLY TELL ME
    PUNEET JAIN
    <May 28, 2003 1:46:25 PM IST> <Error> <HTTP> <101250> <[ServletContext(id=6057728,name=WebApp,context-path=/WebApp)]: Se
    rvlet class myclasses.Wservlet for servlet welcome could not be loaded because a class on which it depends was not found
    in the classpath D:\bea\user_projects\PuneetDomain\applications\WebApp;D:\bea\user_projects\PuneetDomain\applications\W
    ebApp\WEB-INF\classes.
    java.lang.NoClassDefFoundError: myclasses/Wservlet (wrong name: Wservlet)>
    <May 28, 2003 1:46:26 PM IST> <Error> <HTTP> <101018> <[ServletContext(id=6057728,name=WebApp,context-path=/WebApp)] Ser
    vlet failed with ServletException
    javax.servlet.ServletException: [ServletContext(id=6057728,name=WebApp,context-path=/WebApp)]: Servlet class myclasses.W
    servlet for servlet welcome could not be loaded because a class on which it depends was not found in the classpath D:\be
    a\user_projects\PuneetDomain\applications\WebApp;D:\bea\user_projects\PuneetDomain\applications\WebApp\WEB-INF\classes.
    java.lang.NoClassDefFoundError: myclasses/Wservlet (wrong name: Wservlet)
    at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.java:791)
    at weblogic.servlet.internal.ServletStubImpl.getServlet(ServletStubImpl.java:517)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:351)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:306)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:5412)
    at weblogic.security.service.SecurityServiceManager.runAs(SecurityServiceManager.java:744)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3086)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2544)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:153)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:134)
    >

  • JSF(2.1 & 2.2) upload problem Weblogic 12.1.1

    Hi all.
    I'm trying to configure an upload element with JSF, running on Weblogic 12.1.1.
    I tried this both with JSF 2.1 (custom component, custom filter) and the new h:inputFile tag in JSF 2.2
    And with both implementations I'm getting the same error from Weblogic: weblogic.servlet.utils.fileupload.SizeException: The field myElementId exceeds its maximum permitted  size of 0 characters
    I already found where the problem is coming from: Weblogic seems to ignore the max-file-size setting(part of the multipart-config tag) in the web.xml
    <servlet>
        <servlet-name>Faces Servlet</servlet-name>
        <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
       <multipart-config>
            <location>/tmp</location>
            <max-file-size>20848820</max-file-size>
            <max-request-size>418018841</max-request-size>
            <file-size-threshold>1048576</file-size-threshold>
          </multipart-config>
      </servlet>
    Without the <multipart-config> part, nothing happened when clicking the upload button. So Weblogic is using the multipart-config tag, but not the max-file-size tag.
    On Glashfish it all works fine. So the configuration seems to be OK. And the problem seems to be Weblogic related.
    Finally, to doublecheck, we modified the FacesServlet class (JSF 2.2, org.apache.myfaces 2.2.0-SNAPSHOT version) itself with the @MultipartConfig annotation
    @MultipartConfig(maxFileSize = 10485760L)
    public final class FacesServlet implements Servlet
    And this worked!
    so finally my question :-)
    How can I set the maxFileSize on Weblogic in a 'normal' way?  Am I missing something? Is there maybe a weblogic.xml setting for this?
    Thanks,
    Jorden

    problem seems to be solved by using the com,sun.faces 2.2.2 version

  • How to configure weblogic log file?

    HI
    How do i configure Weblogic server log file to log weblogic related information as well as my application?
    I need to maintain one log file for weblogic and my application.
    Thanks,

    Then glassfish instance is either not configured yet or installed somewhere else. Try looking under your user's home directory like C:\Documents and Settings\<username>\Application Data\glassfish\domains\domain1\logs

  • Oc4j to weblogic server migration

    I want to migrate my application from oc4j to weblogic server. i have oc4j related deployment descriptors like Orion-ejb-jar.xml, Orion-application.xml etc.
    For getting weblogic related deployment descriptors from oc4j ear(containing oc4j related descriiptors) , i used SmartUpgrade utility along with JDeveloper. Also i also tried SmartUpgrade command line utility.
    But i did not get Web Logic related descriptors i.e weblogic-ejb-jar etc.
    Please guide me regarding above issue.
    Also, tell me , is there any other utility to get weblogic related descriptors.

    Hello,
    this Forum is dedicated for questions about using the SQL Developer Migration Workbench to migrate non-Oracle databases to Oracle databases.
    There exists better Forums:
    WebLogic Server - Upgrade / Install / Environment / Migration
    OC4J
    You should better use one of them. Here are the links:
    WebLogic Server - Upgrade / Install / Environment / Migration
    OC4J
    Regards
    Wolfgang

  • Weblogic 11 G Certification 1Z0-102 Contents Updated?

    Hi,
    I've been working for 1Z0-102 Weblogic 11g Exam since some time now and I recently checked the exam objectives to validate my prep. It looks like it has been reduced and although objectives still cover clustering and fail over, exam contents do not !
    Am I looking at wrong information, or it has been updated? Was it ever there? I can recall having these topics in WLS 11G Cert. Can someone validate?
    http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=5001&get_params=p_exam_id:1Z0-102&p_org_id=&lang=
    Look at following text from above link :
    The Oracle Certified Associate, Oracle WebLogic Server 11g System Administrator should have a firm grasp on the administrative tasks performed by a WebLogic Server 11g System Administrator, including installing and configuring Oracle WebLogic Server 11g, deploying Java EE applications to Oracle WebLogic Server 11g, and configuring Oracle HTTP Server as a Web proxy for Oracle WebLogic Server. OCAs certified as a WebLogic Server 11g System Administrator should also be able to configure Oracle WebLogic Server cluster to support failover and load balancing for applications*.
    Certification is obtained by passing the certification exam: 1Z0-102, Oracle WebLogic Server 11g: System Administration I.
    Does it mean Cluster is no longer part?
    Thanks.

    It is possible (though infrequent) for exam topics to be updated; there are precedents for this; it happened on DBA OCA/OCP 10gR1->10gR2 and for Solaris 10 under sun. It also happens sometimes after beta.
    That is why it is always useful to periodically go back and check as you have sensibly done.
    I admit my knowledge of weblogic is patchy. I know very few some obscure parts, a lot of basics I don't know.
    From the knowledge I have (which may be imperfect) I believe you are right to question why:
    On the exam topics page: http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=5001&get_params=p_exam_id:1Z0-102&p_org_id=&lang= there appears to be noo mention of any clustering topics. On the associated certifcation page http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=458&get_params=p_track_id:Weblogic11g as you rightly say the certification does cover clustering. The suggested training course: http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=609&p_org_id=1001&lang=US&get_params=dc:D58682GC20,p_preview:N .... covers clusters.
    At least three possibilities exist:
    - Clustering covered under other topics or throughout exam (IMHO unlikely)
    - Clustering topics were in exam, but removed, and certiifcation description not changed to suit.
    - Clustering topics are on exam but missed from topics list on the webpage
    Brandye (cert forum moderator) is usually great at checking this and following up (but she can anlso randomly on holiday etc) .... but IMHO there is more than enough reason here to raise a SR here (note it may take a few days to get an answer):
    http://education.oracle.com/pls/eval-eddap-dcd/OU_SUPPORT_OCP.home?p_source=OCP
    ( Not sure about which Issue type to choose ... its a toss up between ( BEA Certifcation / Certification details or OTHER) ... I think OTHER might be safest).
    Post the SR number back on this Thread for Brandye to follow up if she passes by.
    ~~~~~~~~~~~~~~~~~
    My knowledge of this anything that follows is very very sketchy and non authorative. I may be talking rubbish during part of it, and I defer to those who know such technology areas better):
    There are/have recently been a number of weblogic related changes ... and Oracle may be steering to view management of weblogic clusters down a different angle:
    Looking at the all exams and all certification pages ...
    http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=632
    I see a number of certifcations / exams which appear to be related to weblogic / weblogic clusters to a greater/lesser degree:
    Oracle WebLogic Server 10g System Administrator Certified Expert (WLS 10g OCE via 1z0-108 ) #### This certainly covers clusters ...
    Oracle Certified Associate, Oracle WebLogic Server 11g System Administrator ( WLS 11g OCA via 1z0-102)
    Oracle Cloud Application Foundation Certified Implementation Specialist (CLOUDAPP OCS via 1Z0-468) ### very loose connection ( beta finishing soon)
    Oracle Application Grid 11g Essentials (APPGRID OCS via 1z0-523) ### quite loose connection
    Oracle WebLogic Server 12c Certified Implementation Specialist (WLS 12c OCS via 1z0-599) ### Covers cluster
    ... I suspect as the WLS 11g OCA is at OCA level I postulate it may have been felt appropriate to leave clustering it for a later or different exam (e.g. WLS OCP 11 should that ever appear). Generally the OCS exams are for Oracle Partners and often lean towards installation/deployment of the associated product and things needed by a partner.

  • Some weblogic real time questions....

    Hi All,
    Have some weblogic related real time questions. I am posting them below. I would appreciate you kind replies to them.
    if two managed servers is there Same Domain is configured in both servers, but one physical server is crashed then how can you create a domain with the same configuration?
    Give me the real time scenario to configure weight based algorithm in a cluster?
    if some servers in cluster are running some of them are down is it deployment is possible?
    Is it possible two different versions of the same application deploy at the same time?
    how to recover password in weblogic?
    how to recover boot.properties?
    how to recover serializedini.dat, if the file is corrupted.>
    How admin server knows that the managed server is down?
    what you can do if multicast buffer is full and how you know that?
    What is the Max amount of information that can be saved in a session object?
    how do u differentiate a out of memory and memory leak issue?
    Thanks,

    request you to please get in touch with the oracle consultant group they would help much better ...

  • Not able to connect JDev to weblogic

    Hello
    I just installed standalone weblogic production server (10.3.4) on a server. I am able to access the weblogic console from the server machine but I am not able to access the weblogic console from my machine.
    I tried with the http://ipaddress:7001/console and http://hostname:7001/console but still doesn't work.
    I can ping the server from my machine and it works fine.
    (On my production server for the adf_domain -->adminserver i don't have any listen address but i don't think this can be a problem)
    (I can swear it i am able to connect my local JDev to that weblogic server first time successfully but after that i am not able to connect my local jdev as well)
    Does it sound like an weblogic related problem or server related issue?
    Any help will be grealy appreciated...
    -Raj

    In the absence of more information I suggest that you check if there is a local firewall running on the machine and make sure that the WebLogic Server is started.
    The command netstat will show on which NIC and on which port the server listens.
    cu
    Andreas

  • IE 11: Widget script error every 10-20 minutes and every new tab opened

    So as of recently, Internet Explorer has started popping up these errors every 10-20 minutes and every time I would open a New tab. I've tried disabling script troubleshooting in the Tools section but I still get them. I haven't downloaded or edited anything
    in the past couple of days before I encountered this problem.Any help is greatly appreciated.
    Here's the error I keep getting:
    Line: 12
    Char: 13
    Error: No access
    Code: 0
    URL: http://widgets.xrosview.com/widgets/1.4.2/shared/windows/hyperpop/background.htm?v=1&name=mpvFloatingWind39160076644830740&id=ivdmpvep&url=http://widgets.xrosview.com/widgets/entryPoints/ivd.js?v=2&hrdId=008edbb000000000000000ffc0f6e141&vrsn=1%2E8%2E20%2E0&smplGrp=none&afltId=5&tlbrid=base&age=285&instlDate=15878&toolbarLoaded=false&loader=pagePlatformLoader

    Hi Chillom,
    Please also check the Event Viewer to see whether there're some more information recorded.
    Regarding to the Widget, it might be an application installed in your system or for your web, I'm not sure what exactly it is referring to in your system, so have you ever installed any software or IE add-ons mainly related with "Widget"? I suggest
    you test IE in no add-ons mode, run %ProgramFiles%\Internet Explorer\iexplore.exe -extoff
    Meanwhile, run a security scan.
    Or test this issue in clean boot mode, if it disappears in this mode, then we can narrow down to find the culprit
    http://support.microsoft.com/kb/929135/en-us
    Yolanda Zhu
    TechNet Community Support

  • MDS+ Oracle Weblogic server 10.3.2

    Hello,
    Does anyone how to register the MDS with application server?
    I raised on other weblogic related forum,
    MDS + Oracle Weblogic Server 10.3.2
    Thanks
    RB

    There are some MDS WLST commands, but not sure if they will help.
    http://download.oracle.com/docs/cd/E15523_01/web.1111/e13813/custom_mds.htm#BEIEJCFH

  • Problem wth weblogic.servlet.jsp.jspstub

    hai,
              i have three pages in my application iam calling a login page which verifies the user and gets the data from the database
              and iam showing the results in the secod page and logging from there.
              This process iam doing with a stress tool repeatedly.
              iam observing the created objects in the heapinspector the name of the product is optimiztit.
              iam observing the following contents are increasing on each login process.
              The objects which are increasing are as follows.
              weblogic.servlet.jsp.config,
              weblogic.servlet.jsp.jspstub,
              weblogic.socket.IoRecord,
              weblogic.rmi.internal.dgc.DGCServerHelper,
              java.lang.security.exceptions
              and some other weblogic related objects.
              and once they reach the max heap memory my application is runnig outofmemory exception.
              do i need to follow any configration setting to arrest the above object increments.
              can any body give some help to over come this.it would be a great help for me if i get any healp.
              Any ideas/pointers would be welcome. Thanks for your help.
              Thanks,
              gangadhar
              

    Hi,
              It's peculiar that you're seeing JspStub and jsp.config instances
              increasing. Can you convert your application to a stand alone app that
              doesn't do any database access and send me the application with instructions
              on how to run it. If so, I can look into it quickly - otherwise, I can only
              guess and that is a waste of time for both of us.
              Alex
              "gangadhar" <[email protected]> wrote in message
              news:[email protected]...
              > hai,
              >
              > i have three pages in my application iam calling a login page which
              verifies the user and gets the data from the database
              > and iam showing the results in the secod page and logging from there.
              >
              > This process iam doing with a stress tool repeatedly.
              >
              > iam observing the created objects in the heapinspector the name of the
              product is optimiztit.
              >
              > iam observing the following contents are increasing on each login process.
              >
              > The objects which are increasing are as follows.
              >
              > weblogic.servlet.jsp.config,
              > weblogic.servlet.jsp.jspstub,
              > weblogic.socket.IoRecord,
              > weblogic.rmi.internal.dgc.DGCServerHelper,
              > java.lang.security.exceptions
              > and some other weblogic related objects.
              >
              > and once they reach the max heap memory my application is runnig
              outofmemory exception.
              >
              > do i need to follow any configration setting to arrest the above object
              increments.
              >
              > can any body give some help to over come this.it would be a great help for
              me if i get any healp.
              >
              > Any ideas/pointers would be welcome. Thanks for your help.
              >
              > Thanks,
              > gangadhar
              

  • JSP on Weblogic Server

    Hi All,
    I am new to weblogic server. I will be maintaing a site that is already uploaded on weblogic 8.1. I will be modifying as well as changing the contents of jsp and html pages. What needs to be done so that after doing the changes I can deploy these pages. Some one told me that you can do this through management console. How can I access the management console. I am having the IP address of the server.
    What needs to be done?
    Please guide me
    Thanks in advance

    If you want to redeploy the application you can do it via the admin console.
    Do you know at which address your admin console is running?
    If you know that , access it like
    http://ip_address:port/console
    It will ask for the username/password , once you are in there you can redeploy the webapp if required.
    If you dont know the port where it is running you should be able to get it from config.xml
    Use the bea forum , you get a better response there for weblogic related questions
    http://newsgroups.bea.com/cgi-bin/dnewsweb
    hope this helps

Maybe you are looking for