Is there plug-in for JBuilder developing Weblogic web application?

Is there plug-in for JBuilder developing Weblogic web application?
thanks in advance
woodsonli

Firefox 3.03 - why such an old version? 3.6.12 is the most recent release.
It is up to Microsoft to fix Outlook Web Access to work with Firefox or to come up with a plugin for Firefox. If Mozilla was to start fixing or write plugins for all the software out there that is made to work with Internet Explorer and not any other browser, they wouldn't have time to work on Firefox.
There are two Firefox extensions that will open IE in a Firefox tab. Many users install one of these addons to get around problems like you are having with Outlook Web Access.
IE Tab2
https://addons.mozilla.org/en-US/firefox/addon/92382
IE Tab Plus
https://addons.mozilla.org/en-US/firefox/addon/52809/

Similar Messages

  • Eclipse plug-in for BPEL development

    Hi
    I have downloaded an Eclipse plug-in for Oracle BPEL process manager around 2 years ago. I don't see the plug-in on the downloads page anymore so I was wondering whether this plug-in is still supported/enhanced. We are solely using Eclipse in our organization and JDeveloper is not an option- so does anyone know of any other plug-ins for BPEL development for Eclipse?
    Thanks.

    There hasn't been a new Eclipse plug-in for BPEL in long time. The old ones available are out of sync of the new functionality and are supported on only the older versions of Eclipse. You can google for exact details.
    But my advise is that if you are using the Oracle BPEL PM, then use Jdeveloper.
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Plug-in for JBuilder 7

    Where is the Oracle iAS 903 Plug-in for JBuilder 7?
    The link is not working in partners solutions page.
    Error 404 page not found.

    Guys,
    I have uploaded a newer version of the 903 version of the plug-in for JB7. This plug-in fixes the following issues:
    1. Oracle 9.0.3 Application Server Client Libraries are now populated with the correct libraries.
    2. Changed the name of the file from .zip to .jar
    Known issue:
    1. Documentation version number of 9iAS (we are working on fixing this one)
    The plug-in can be downloaded from the same location as before (http://otn.oracle.com/products/ias/9ias_partners.html -> Borland)
    Also, as mentioned in the another forum thread, JBuilder is only supported against Standalone Version of OC4J. Please complete the install of the Standalone version of OC4J with the command:
    java -jar oc4j.jar -install
    so that admin password is set. Use this at deployment time from JBuilder.
    Thanks,
    Aalok

  • Tools for Developing Rich Web Applications

    What tools are others using to Develop Web applications
    against BW 3.5? I have a few years of experience developing web applications using Visual Studio .NET and C#, but the .net PDK is not an option in our current environment.
    I was thinking that writing jsp's would give me the flexibility I needed to develop Rich web applications, but being new to SAP BW I am not sure.
    I am looking for tools in which I can control result sets, write logical code based on users information to filter and return data.
    Please list technologies and Languages.

    Hi Jimmy.  As it relates to SAP,  you can use a couple different technologies.   JSP on the java side, or BSP on the ABAP side will allow you to do pretty much anything you want.  It allows you to use HTML and javascript and also HTMLB.   You could also use Web Dynpro.  Web Dynpro is SAP's new UI strategy.  It is designed to help you create business transactions, so the UI elements are stardard and cannot be modified.  But its cool, because you drag/drop your ui elements in the layout.  Web Dynpro allows you to create robust web applications without coding the UI and allows you to focus on the business logic.  Of course there is some coding to handle UI, and flow, but not as much as when you are developing JSP or BSP.
    Regards,
    Rich Heilman

  • Hi, I developed a web application using HTML5-Offline Application Cache mechanism. Inspite of deleting the cache as mentioned in the above steps, Firefox still maintains a copy of the page in it's cache. Also, a serious bug is, even though we delete all

    == Issue
    ==
    I have a problem with my bookmarks, cookies, history or settings
    == Description
    ==
    Hi,
    I developed a web application using HTML5-Offline Application Cache mechanism. Inspite of deleting the cache as mentioned in the above steps, Firefox still maintains a copy of the page in it's cache. Also, a serious bug is, even though we delete all temp files used by Firefox, and open the previously cached page, it displays it correctly, but upon refreshing/reloading it again shows the previous version of the page maintained in the cache.
    == Troubleshooting information
    ==
    HTML5: Application Caching
    .style1 {
    font-family: Consolas;
    font-size: small;
    text-align: left;
    margin-left: 80px;
    function onCacheChecking(e)
    printOutput("CHECKINGContents of the manifest are being checked.", 0);
    function onCacheCached(e) {
    printOutput("CACHEDAll the resources mentioned in the manifest have been downloaded", 0);
    function onCacheNoUpdate(e)
    printOutput("NOUPDATEManifest file has not been changed. No updates took place.", 0);
    function onCacheUpdateReady(e)
    printOutput("UPDATEREADYChanges have been made to manifest file, and were downloaded.", 0);
    function onCacheError(e) {
    printOutput("ERRORAn error occured while trying to process manifest file.", 0);
    function onCacheObselete(e)
    printOutput("OBSOLETEEither the manifest file has been deleted or renamed at the source", 0);
    function onCacheDownloading(e) {
    printOutput("DOWNLOADINGDownloading resources into local cache.", 0);
    function onCacheProgress(e) {
    printOutput("PROGRESSDownload in process.", 0);
    function printOutput(statusMessages, howToTell)
    * Outputs information about an event with its description
    * @param statusMessages The message string to be displayed that describes the event
    * @param howToTell Specifies if the output is to be written onto document(0) or alert(1) or both(2)
    try {
    if (howToTell == 2) {
    document.getElementById("stat").innerHTML += statusMessages;
    window.alert(statusMessages);
    else if (howToTell == 0) {
    document.getElementById("stat").innerHTML += statusMessages;
    else if (howToTell == 1) {
    window.alert(statusMessages);
    catch (IOExceptionOutput) {
    window.alert(IOExceptionOutput);
    function initiateCaching()
    var ONLY_DOC = 0;
    var ONLY_ALERT = 1;
    var BOTH_DOC_ALERT = 2;
    try
    if (window.applicationCache)
    var appcache = window.applicationCache;
    printOutput("BROWSER COMPATIBILITYSUCCESS!! AppCache works on this browser.", 0);
    appcache.addEventListener('checking', onCacheChecking, false);
    appcache.addEventListener('cached', onCacheCached, false);
    appcache.addEventListener('noupdate', onCacheNoUpdate, false);
    appcache.addEventListener('downloading', onCacheDownloading, false);
    appcache.addEventListener('progress', onCacheProgress, false);
    appcache.addEventListener('updateready', onCacheUpdateReady, false);
    appcache.addEventListener('error', onCacheError, false);
    appcache.addEventListener('obsolete', onCacheObselete, false);
    else
    document.getElementById("stat").innerHTML = "Failure! I cant work.";
    catch (UnknownError)
    window.alert('Internet Explorer does not support Application Caching yet.\nPlease run me on Safari or Firefox browsers\n\n');
    stat.innerHTML = "Failure! I cant work.";
    == Firefox version
    ==
    3.6.3
    == Operating system
    ==
    Windows XP
    == User Agent
    ==
    Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 ( .NET CLR 3.5.30729; .NET4.0E)
    == Plugins installed
    ==
    *-Shockwave Flash 10.0 r45
    *Default Plug-in
    *Adobe PDF Plug-In For Firefox and Netscape "9.3.2"
    *NPRuntime Script Plug-in Library for Java(TM) Deploy
    *The QuickTime Plugin allows you to view a wide variety of multimedia content in Web pages. For more information, visit the QuickTime Web site.
    *Google Update
    *4.0.50524.0
    *Office Live Update v1.4
    *NPWLPG
    *Windows Presentation Foundation (WPF) plug-in for Mozilla browsers
    *Next Generation Java Plug-in 1.6.0_20 for Mozilla browsers
    *Npdsplay dll
    *DRM Store Netscape Plugin
    *DRM Netscape Network Object
    Thanks & Regards,
    Kandarpa Chandrasekhar Omkar
    Software Engineer
    Wipro Technologies
    Bangalore.
    [email protected]
    [email protected]

    We have had this issue many, many times before including on the latest 3.6 rev. It appears that when the applicationCache has an update triggered by a new manifest file, the browser may still use only its local network cache to check for updates to the files in the manifest, instead of forcing an HTTP request and revalidating both the browser cache and the applicationCache versions of the cached file (seems there is more than one). I have to assume this is a browser bug, as one should not have to frig with server Cache-Control headers and such to get this to work as expected (and even then it still doesn't sometimes).
    The only thing that seems to fix the problem is setting network.http.use-cache to false (default is true) in about:config . This helps my case because we only ever run offline (applicationCache driven) apps in the affected browser (our managed mobile apps platform), but it will otherwise slow down your browser experience considerably.

  • Need help to develop centralized web application

    Hello,
    Please correct me if i am posting thread in wrong area.
    I am going to develop web application for a university, a complete online portal for Teachers, Students and Administrators. There are more than 50 affiliated campuses of university in different cities. I need to develop centralized web application which all campuses' teachers/students/administrators will access from internet. Please guide me what hardware, module, development technique etc should i use.
    I am using J2SE and Oracle10g to develop that application.
    Thank You

    Go to CustomInk.com.  Their T-shirt Design App is not Flash based which is refreshing. Instead, they're using a sophisticated combination of CSS, JavaScript and PHP/MySql.
    Digging a little deeper into the source code, it looks like the company that developed their T-shirt Design App is located in India and called No-Fresh.com
    No-Fresh licenses their T-shirt Design App.  You might want to contact them directly.
    http://www.no-refresh.com/online-t-shirt-design-tool.php
    Nancy O.

  • Calling a WebLogic web service from a WebLogic web application

    We would like to call a WebLogic web service from WebLogic web application. The current architecture looks like:
    LoadBalancer--->iPlanet-1/iPlanet-2--->Firewall--->WebLogic-AppServer-1/WebLogic-AppServer-2
    The web application and web service are in the same WebLogic cluster. We would prefer that the web services do not get published externally.
    Does the WebLogic web application need to make a call back outside the firewall to the load balancer?
    Is there a way the web services can be called locally with load balancing?
    Can web service calls be made over the t3 protocol?
    Thanks,
    Mike

    I think one solution is to use a Java proxy to call the Web services.
    In the Java proxy you can have a method that accepts the user/pass and sets them correctly for the Web service.
    Then you expose that Java proxy as a data control (right click, create data control) - and then create a page that invokes that method.
    (For the basics of working with a POJO data control see: http://blogs.oracle.com/shay/2009/07/java_class_data_control_and_ad.html )

  • Develop iPhone Web applications

    This is regarding the article “Develop iPhone Web applications with Eclipse” article posted on "http://www.ibm.com/developerworks/library/os-eclipse-iphone/".
    I have refer the article. It would be great if somebody will advise on the below :
    Problem - 1: I am trying to develop an iPhone Web Application –(client ) using eclipse IDE( version - 3.3 Europa)
    as mentioned in the article :
    Setp 3 : Add Aptana to this list by clicking New Remote Site and defining it with a URL of http://update.aptana.com/update/3.2/.
    It is not working getting error “Network connection error”. Even when I tried to download the same from the Browser (Safari and FireFox) it is not working .
    Is there any other way to download the same from Network – Please Guide .
    Problem – 2 :
    I also want to use iUI kit for iPhone web application Development .
    But I am not able to understand how to proceed for the same .
    Does iUI kit work only with Eclipse . If yes is there any specific version which we need to download ?
    Please forward the link which gives me details about “How develop web apps for iPhone using iUI kit”
    Looking forward for your valuable inputs .
    Best Regards,

    This is the incorrect forum for that type of information.
    I would suggest you direct your questions towards the forums for developers.
    These can be found at developer.apple.com/iphone and http://developer.apple.com/devforums/

  • Best practice for auto update flex web applications

    Hi all
    is there a best practice for auto update flex web applications, much in the same way AIR applications have an auto update mechanism?
    can you please point me to the right direction?
    cheers
    Yariv

    Hey drkstr
    I'm talking about a more complex mechanism that can handle updates to modules being loaded into the application ect...
    I can always query the server for the verion and prevent loading from cach when a module needs to be updated
    but I was hoping for something easy like the AIR auto update feature

  • Developing a web application in Dreamweaver,MySql and PHP

    I have two questions:
    1.  Am developing a web application on a windows 7 platform.
    I have an insertion form where I have to always eneter the geographical details for some one. I.e District, County, Sub County and village.
    So what I want is to have these pre entered in the database before I revock this form such that when I select a certain village on the form, it automatyically displays its District, Subcounty and County in the following textfiled. This saves time than typing them manually all the time.
    I need help on how to do this.
    2.  On the same form, I have a textfield for capturing date of Birth. I need help on to insert a calender in this field such that when some one clicks on it, a calender pops up and he selects the date which is then inserted in the text field other than  tytping it manually.
    Thank u.

    1. Have a look here http://labs.adobe.com/technologies/spry/samples/data_region/DataSetMasterDetailSample.html
    2. Have a look here http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&loc=en_us&extid=2137 022
    I hope this helps.
    Ben
    PS For more support on these products go to the Spry Forum here http://forums.adobe.com/community/labs/spry

  • DW 8 Tutorial - Developing a Web Application - ERROR

    Hi, I am new at this and using the Dreamweaver 8 Tutorial,
    Developing a Web Application. Everything went fine until the very
    end, when I tried to submit data to the document. I got the
    following error message. I have searched online for a solution and
    haven't been able to find it. I am new at this (obviously) and
    would appreciate any help you could give me. Here is the error
    message:
    Error Type:
    Microsoft OLE DB Provider for ODBC Drivers (0x80004005)
    [Microsoft][ODBC Microsoft Access Driver] Operation must use
    an updateable query.
    /MySampleApps/send.asp, line 115
    Browser Type:
    Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR
    1.1.4322)
    Page:
    POST 59 bytes to /MySampleApps/send.asp
    POST Data:
    FIRST_NAME=s&LAST_NAME=s&EMAIL=s&COMMENTS=s&MM_insert=form1
    Time:
    Friday, August 01, 2008, 10:53:58 AM

    Oops!
    http://livedocs.adobe.com/dreamweaver/8/using/31_trou7.htm
    http://www.adobe.com/go/tn_18984
    Ken Ford
    Adobe Community Expert - Dreamweaver/ColdFusion
    Fordwebs, LLC
    http://www.fordwebs.com
    "Ken Ford" <[email protected]> wrote in message
    news:g71tvt$ro4$[email protected]..
    > It is a permissions problem with the database:
    >
    >
    > --
    > Ken Ford
    > Adobe Community Expert - Dreamweaver/ColdFusion
    > Fordwebs, LLC
    >
    http://www.fordwebs.com
    >
    >
    > "squatier" <[email protected]> wrote in
    message news:g6vj9i$c5n$[email protected]..
    >> Hi, I am new at this and using the Dreamweaver 8
    Tutorial, Developing a Web
    >> Application. Everything went fine until the very
    end, when I tried to submit
    >> data to the document. I got the following error
    message. I have searched
    >> online for a solution and haven't been able to find
    it. I am new at this
    >> (obviously) and would appreciate any help you could
    give me. Here is the error
    >> message:
    >>
    >>
    >> Error Type:
    >> Microsoft OLE DB Provider for ODBC Drivers
    (0x80004005)
    >> [Microsoft][ODBC Microsoft Access Driver] Operation
    must use an updateable
    >> query.
    >> /MySampleApps/send.asp, line 115
    >>
    >>
    >> Browser Type:
    >> Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1;
    .NET CLR 1.1.4322)
    >>
    >> Page:
    >> POST 59 bytes to /MySampleApps/send.asp
    >>
    >> POST Data:
    >>
    FIRST_NAME=s&LAST_NAME=s&EMAIL=s&COMMENTS=s&MM_insert=form1
    >>
    >> Time:
    >> Friday, August 01, 2008, 10:53:58 AM
    >>
    >>
    >>
    >>

  • Developing multithread web application

    in one of my application there is problem of data acess in web application developed in servlets and jsp in MVC2 architecture.
    It was working fine in development and as well as in testing.
    But there was some problem in production when multiple users access application simultaneously.
    data is not consistent among the user session.
    can any one help me..what would be the cause..

    jleech,
    though my question is some thing not difficult but i want to gain command on the problem that what was going wrong,which i may not knew.

  • Is it possible to invoke external REST web service hosted in WebLogic web application from an Adobe LiveCycle Process (ES-4)

    Is it possible to invoke an external REST web-service hosted in WebLogic web application from an Adobe LiveCycle Process (ES-4) with parameters as input and manipulating the response depending on the type of parameters it gets back. Then invoking an Adobe Form and prepopulating the Form based on the response parameters? Do you have sample projects that do this invocation. The part highlighted in red is what I need examples.

    You can simply use "Execute Script" operation in Workbench and make use of java.net.URL. Below links should help :
    http://www.mkyong.com/webservices/jax-rs/restfull-java-client-with-java-net-url/
    http://www.adobe.com/devnet/livecycle/articles/building-xml.html
    http://help.adobe.com/en_US/livecycle/9.0/workbenchHelp/help.htm?content=000581.html
    Hope this helps.
    -Wasil

  • License Keys for J2EE-Engine_ORA SAP Web Application Server.

    Hi Experts
    I have installed SAP Net Weaver 04 support release 1 > oracle JAVA System. I don’t have ABAP system on same Hardware so I cant used SLICENSE GUI transaction code, how I generate hardware key, I am performing installation on Windows 2003 server.
    Now I want to add License Keys for J2EE-Engine_ORA SAP Web Application Server. So please give me producer for how to add license key.
    Regards,
    Rahul

    Hi
    Go to  Visual Administrator in the following path:
    <Your Server> -->  Services --> Licensing  Adapter to get the Hardware key , SID etc . Ten apply license in
    https://service.sap.com/licensekeys
    Once you get the license from SAP, do the following
    ->Download the license  file to a local disk
    --> Start the Visual Administrator  Server --> Services --> Licensing Adapter
    --> Use the Install License From File button to upload the file
    --> Select the file with the downloaded license key
    --> Choose Open to continue
    After installation restart J2EE engine
    Thanks
    Prince Jose

  • Is there a way for a developer to detect if the Java plugin was blocked?

    For best UX in my web application I'd like to know if Java has been blocked because of security vulnerabilities.
    If it's been blocked I'd like to show m own message that Java is out of date and they should update.
    I don't want to show it everytime Java is out of date since it's only important for me and the user if there are security vulnerabilities. If Java version is not known to have vulnerablities I don't want my users to be disturbed by additional messages or steps reguired to update Java.
    Is there a way to detect using Javascript if Firefox blocked a plugin because of security vulnerability?

    Thanks for the reply.
    I have already seen this page but my applet doesn't have a visible area. It's just for communication with external devices and it interacts with Javascript. In my case it doesn't look like in the link.
    Fortunately in new version of Firefox a large modal appears with option to update Java which is quite OK. I am only affraid that if there are no new versions of Java Firefox will display this small dropdown in the top left hand corner which our users tend to miss.

Maybe you are looking for