Re: Do I have to use OAS?

So you don't get as confused as me, my previous message should have read:
I want to set up Forms Server on a single machine running NT server to simulate a n-tier runtime configuration i.e.
browser->forms server->Oracle8i
The server executable on my Developer Server version 6 disc from OTN is ifsrv60.exe which I'm assuming is a beta 6i version. I thought one of the main bonuses of 6i was that it contains it's own Web server so you don't need the overhead of OAS. But the Configuration guide in the on-line manual assumes you're using OAS and I can't find any documentation relating to configuring 6i's built-in web server.
Any assistance/ suggestions much appreciated.
null

6i ships with the WebDB 2 listener to allow you to run without the need for any webserver let alone OAS.
The executable name is the same for 6.0 as 6i because 6i is functionally a point release.
The easiest way to check which version you have installed is to look for the formsweb.cfg file in
[oracle home]\forms60\server
If this file and directory are not there then you are running 6.0 as this file is the config file for the CGI forms server.

Similar Messages

  • Uploading file using OAS 4.0.8.1

    I am trying to upload files with an application using OAS 4.0.8.1 in
    linux (kernel 2.2.14). I am sure that all the environment are
    correct installed and my application wait forever.
    I'm using PL/SQL catrige.
    My database doesn't have any invalid objects.
    If somebody can help me, please.
    Thank you !
    null

    Some weeks ago I wanted to get to work it too. Without any success. It seems that file is going to server because of high traffic but I could not find any storage changes in the server even uploading large files. So I came to solution to use a PERL cgi script which stores file on the server filesystem and then passes filename and other attributes to a plsql procedure to save file attributes in tables. If you are interested in this script mail directly ([email protected]) or search for an example in http://cgi.resourceindex.com/

  • Uploading files using OAS on linux

    I am trying to upload files with an application using OAS 4.0.8.1 in linux (kernel 2.2.14). I am sure that all the environment are correct installed and my application wait forever.
    I'm using PL/SQL catrige.
    When I look to the database I retrive the following information:
    SQL> select address,sql_text from v$open_cursor;
    ADDRESS SQL_TEXT
    216FAA6C begin sys.dbms_describe.describe_procedure(:object_name,:res
    216A3C84 select address,sql_text from v$open_cursor
    21841F74 INSERT INTO WEBSYS.OWS_CONTENT VALUES ( WEBSYS.OWS_SEQUENCE.
    2183141C SELECT * FROM WEBSYS.OWS_ATTRIBUTES WHERE OID = :b1
    21839DC4 INSERT INTO WEBSYS.OWS_OBJECT_VIEW VALUES ( :b1,:b2,:b3,WEBS
    21831234 INSERT INTO WEBSYS.OWS_ATTRIBUTES VALUES ( :b1,:b2,:b3,:b4
    21831540 SELECT * FROM WEBSYS.OWS_FIXED_ATTRIB WHERE OID = :b1
    21831788 SELECT * FROM WEBSYS.OWS_OBJECT_VIEW WHERE OID = :b1
    216EE1A4 SELECT STATUS FROM OBJ$ WHERE OBJ# = :b1
    21831664 SELECT LENGTH FROM WEBSYS.OWS_CONTENT WHERE OID = :b1
    216B00AC begin :1 := websys.ows_cs.set_attribute(:2, :3, :4, :5
    218322F4 INSERT INTO WEBSYS.OWS_FIXED_ATTRIB VALUES ( WEBSYS.OWS_SEQU
    21839CA0 SELECT WEBSYS.OWS_SEQUENCE.CURRVAL FROM DUAL
    216EE5B0 SELECT ARGUMENT,OVERLOAD#,POSITION# POSITION,TYPE# TYPE,NVL(
    14 rows selected.
    SQL> SELECT SQL_ADDRESS FROM V$SESSION WHERE SID='7'; ( the last command of the user of DAD )
    SQL_ADDR
    216B00AC
    My database doesn't have any invalid objects.
    If somebody can help me, please.
    Thank you !

    David,
    Thanks for the reply.  I neglected to mention that file upload do work on the server, it's just the Zend FW implementation that doesn't.  The Zend FW is basically what is in your book, and nothing happens when I try an upload, but I know that the code is talking to the FW (e.g., if I provide an invalid path, I get the appropraite PHP error).  If I don't use the FW it works.  So the following code correctly uploads a file on the hosting platform:
    if ($_POST['send']) {
    //validate the user input
    $val = new Zend_Validate_Alnum(TRUE);
    if (!$val->isValid($_POST['name'])) {
       $errors['name'] = 'Name is required';
    $val = new Zend_Validate_EmailAddress();
    if (!$val->isValid($_POST['email'])) {
       $errors['email'] = 'Email address is required';
    $val = new Zend_Validate_StringLength(10);
    if (!$val->isValid($_POST['message'])) {
       $errors['message'] = 'Required';
    if (!$errors) {
      foreach($_FILES as $temp_name => $file_array) {
       $file_name = str_replace(" ","_",$file_array["name"]);
       if (is_uploaded_file($file_array["tmp_name"])) {
        move_uploaded_file($file_array["tmp_name"], "$file_dir/".$file_name) or die ("Couldn't copy");
       $new_names[] = $file_name;
      //start building the mail string
      $msg = "Name:\n\t\t".$_POST["name"]."\n";
      $msg .= "E-Mail:\n\t\t".$_POST["email"]."\n";
      $msg .= "Message:\n\t\t".$_POST["message"]."\n";
      foreach ($new_names as $name) {
       if ($name != "") {
       $msg .=  "Link: xxx/uploads/$name"."\n\n";
    Using this code I wil email that contains links to the uploaded files, which I can then sucessfully download.  So it's the FW code that fails... and note that the Zend validation code above does work correctly; I get errors if invalid entries are made.
    Also, I note that my hosting providers only support PHP 5.2.14, whereas on my XAMPP installation I'm using 5.3  Could that be an issue?

  • Special Character in Web Service using OAS and Weblogic

    In the project, we are using OAS be the app server, all the "<" in the context of xml in web service are converted to "&lt;" automatically.
    However, when we deploy it to weblogic, the "<" was converted to "&<;&"
    Then another app try to unmarshalling it, but the app cannot handle the < the throw the exception. Do you know why the how to change it back to "&lt;"?
    OAS version:10.1.3.2.0
    Weblogic version:11gR1
    Spring Version:2.5
    OAS XML
    <?xml version='1.0' encoding='UTF-8'?>
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
    <soapenv:Body>
    <makeHTMLStrForAwardServiceResponse xmlns="http://com.makeHTMLStrForAward/types/">
    <htmlStr>&lt;html>&lt;head>&lt;style type="text/css">
    &lt;/html>
    </htmlStr>
    </makeHTMLStrForAwardServiceResponse>
    </soapenv:Body>
    </soapenv:Envelope>
    Weblogic XML
    <?xml version='1.0' encoding='UTF-8'?>
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
    <soapenv:Body>
    <makeHTMLStrForAwardServiceResponse xmlns="http://com.makeHTMLStrForAward/types/">
    <htmlStr>&<;&html>;&<;&head>;&<;&style type="text/css">
    ;&<;&/html>;</htmlStr>
    </makeHTMLStrForAwardServiceResponse>
    </soapenv:Body>
    </soapenv:Envelope>
    Edited by: user1287019 on Apr 20, 2011 10:13 AM

    Ha Ha,
    I found that one of the Spring WS lib we were using is 1.5.4.
    It seems OAS ship with WS lib and the app use the OAS lib.
    But weblogic did not have WS lib, then app need to use it's own lib. Then problem occur.
    After change to version 1.5.8, the problem solved.

  • How can I reset my IPAD 2 to resolve the fact that Apple will not let me use the APPLE  ID and passwords that I want to use becasue they may have been used in the past year. I am very close to donating this contraption to the Good Will.

    I have been an Apple User for almost two decades and have had no problems with my G4 Powerbook, my Intel MacMini, nor several other Macs as well as Windows 7 machines. However, the IPAD2 poses a problem of unfathomable disgust with the concept and implementation of the Apple ID. There is one for the computer, there is one for support, and there is one for itunes, and possibly another one for apps. There are different passwords for each. I am continually faced with notification that my Apple ID is incorrect or the password is incorrect. I have to keep an Excel spreadsheet with all of this unnecessary NANNY State protection matched only in pervasiveness by the Federal government.
    I am told that an Apple ID can never be destroyed and replaced. Who dreamed that one up? I am told I cannot use a password that has been used in the past year. Why? By whose authority? I am not a walking encyclopedia that remembers every telephone number he ever dialed. Thankfully my cheap LG clamshell telephone keeps numbers and talks to Ford Sync successfully.
    Bottom line is that the IPAD has become almost totally useless since I cannot change the several necessary passwords to anything I can remember because they are not novel enough. I also never seem to be able to keep the Apple IDs straight as they are too numerous to remember and I don't want to remember them anyway. Why? Even if you enventually get the ID right you have the wrong password and have to go through a merry-go-round of emails to change the password to something you have already used in the past year which is not permitted.
    Has anyone out there used a competitive device with less cumberson overhead? Surely this is not the best American technology can produce.
    Thanks for your comments.
    Ray Zachary

    Thanks to all who responded. You are all absolutely correct. However, this Ipad was a gift to my wife who was dying of cancer in the hospital and wanted some entertainment. So I started it out with her Apple ID. After she passed away I moved from Sacramento to Austin and eventually proceeded to get the Apple ID changed from my wife's to mine. Meanwhile when she was in the hospital I opened an Itunes account in my name to buy movies for her. That was the first mistake.
    Then during the move to Austin I lost track of the IPAD and later found it and tried to use support but could not remember the proper ID. Later the folks at the Apple store helped me create a new and novel Apple ID that was unfortunately unlike any other.
    The botom line is that I am stuck with three Apple IDs and three passwords. I am told by Apple there is nothing they can do about this as IDs cannot be changed or destroyed. I can quit using them or start a new account but when I try to do that the system keeps remembering too many things from the past and resists.
    Even if I sold this Ipad and bought a new one, the system memory is still there.
    I think the real problem is that destop and laptop computers are totally owned by an individual and that individual can control logins and passwords to his liking. IPADs and similar Apple products are different in that the corporation has built in their own intrusion detection schemes because of the relation to Itunes.
    One thing I thought about is to open a new Itunes account pretendding to be a new customer with my regular Apple ID. Perhaps I could do the same with Apple Support.
    Thanks for your comments.
    RAZ

  • HT5622 I have been using one apple ID for my family as it makes it easier to manage itunes purchases/rentals on all of our devices.  Now that my kids are getting old and my wife has recently purchased an Iphone, I can see that I need to change my strategy

    I have been using one apple ID for my family as it makes it easier to manage itunes purchases/rentals on all of our devices.  Now that my kids are getting old and my wife has recently purchased an Iphone, I can see that I need to change my strategy. I plan to add a few more iphones to the family very soon.  What is your recommendation to manage all of our devices (iphones, itouch, apple tv) for my family?  Can I continue to function with one apple ID or is it time to take the leep into attempting to manage multi-apple ID's? 

    There's a few ways of managing multiple devices on a single computer (and keeping seperate content on each). The following document is worth checking through:
    How to use multiple iPods, iPads, or iPhones with one computer

  • I have been using icloud for itunes and aps purchases, but now I would like to create a new icloud account so that my calendars sync without having to plug in ... how do I do this, as my phone won't let me change the icloud account

    My husband and I have been using our iCloud account for music and ap purchases only.  I have decided that i would like to now create a new icloud account so that i can sync my calendar and contacts.  I read about doing this online and it looks simple and easy ... and yet, when i go to switch it on my iphone, there is only 1 place for an icloud account (our shared account) and it is greyed out so that I cannot change it.  How do I do this?

    Whenever a menu choice is grayed out, that is because you have Restrictions turned on in Settings.  Be sure to turn it off.
    You are confusing an itunes store account with an icloud account.  You two can continue using the same ID for itunes (thus sharing purchased music, apps, etc.), but you really should have separate accounts (different IDs) for icloud, since an account is intended for one user to keep his/her devices in sync.
    To create a new icloud account, go to
    http://www.apple.com/icloud/setup/
    Then go to Settings>icloud and scroll to the bottom of the screen and tap Delete Account.  (have restrictions turned off)  That will disconnect the device from the account but will not delete data in icloud or other devices.  Then sign in using the new ID.

  • I have been using Photoshop Elements 8 for years. All of a sudden, the cropping tool changed: I cannot crop vertically or horizontally anymore--only diagonally. This has made it impossible for me to get the photo I want. I hope someone knows how to fix th

    I have been using Elements 8 ever since it came out, and all of a sudden the cropping tool has changed: I can no longer crop horizontally or vertically, only diagonally. The up/down/side arrows have disappeared! Please help if you can, I'm no longer able to make my photos look their best. Thank you in advance.

    Quit the editor (Quit PSE on a mac). Then restart it while holding down ctrl+alt+shift (command+option+shift). Keep the keys down till you see a window asking if you want to delete the settings file. You do.

  • I have been using Adobe Photoshop Elements 11 for two years. I got a new printer and installed it although I did not remove my old printer from my computer. I used this program and my new printer for quite a few months, but today I deleted my old printer

    I have been using Adobe Photoshop Elements 11 for along time now. When I first used the program I had a different printer than I have now. Although I changed printers I never removed the software from my old one. Now this was never a problem until today. When I choose a printer I still had option to use the old one but always chose my new HP Envy 5530 and Adobe never had a problem printing from that new printer. However today I decided to remove my old printer from my computer and now my Adobe cannot find my new printer.  How can I make it find the HP printer?

    Try this --
    Go to the bottom of the link I gave you, and you will see
    click that link and then click the chat button to talk to an Adobe agent

  • How can I Publish to a Folder just one of the several websites I have created using iWeb?

    How can I Publish to a Folder just one of the several websites I have created using iWeb?
    it drives me nuts having to emove all the other websites when I want to upload one. 
    Sparrow

    For iWeb, I like to do only one site per domain file.  I move domain files out of the Application Support folder and place them inside project or client folders, or in DropBox. Once you duplicate a domain file and begin customizing it, it will load and behave as a separate project/site.
    I publish each iWeb domain/project direct to a server via FTP. Sometime I publish to a folder, then upload via FTP manually.
    iWeb is a remarkable tool, especially when you work from scratch with blank tamplates
    Here are a few of my iWeb sites:
    http://www.newcovenant.org
    http://www.visionmultimedia.org
    http://www.visioncomsolutions.com

  • I have been using itunes all day and then it wanted me to install a newer version.  When I did it said I can't because it's missing mdsvr80 or something so i downloaded that now it has another error.  How do I get itunes back the way it was or to work?

    I have been using itunes all day and then it wanted me to install a newer version.  When I did it said I can't because it's missing mdsvr80 or something so i downloaded that now it has another error.  How do I get itunes back the way it was or to work?

    See this User Tip by turingtest2
    https://discussions.apple.com/docs/DOC-6562

  • In Adobe Acrobat 9 which I have been using for a long time (Widows 7) says, You cannot use this prod

    In Adobe Acrobat 9 (Wndows 7) which I have been using for a long time now it says I cannot use it withoutv repairing.  It instructs me to uninstall & reinstall...

    I have not run into this yet with my AA9 and Win7, but have been seeing posts about it. I would try a repair before I would do an uninstall and reinstall. You might also turn off javascript for a bit in case there has been some javascript that has caused problems (ok, making wild guesses). If you do decide to uninstall, be sure to deactivate first, uninstall, run http://labs.adobe.com/downloads/acrobatcleaner.html, and remove any left over parts of the Acrobat folder. Then proceed to the reinstall and updates.
    There is a question about whether being able to use it is correct, or you are just getting some message that is a spam that somehow got into your system (again, a possible javascript issue). Besides turning off javascript, you could also try isolating the javascripts to moving them to a temporary directory and seeing if one is causing the problem.

  • Be grateful for your help with Photoshop Elements which I have been using for several years.

    Be grateful for your help with Photoshop Elements which I have been using for several years.  Does Elements need to have access to ‘My Pictures’ on Windows as when I remove Photos from ‘My Pictures’, Elements later, when backing up, gives a message that it is unable to ‘reconnect’ to the same picture on elements.  On other occasions when removing a photo from Elements catalogue I also get a similar message when backing up saying ‘unable to reconnect’.  1. Is there a relationship between Elements and My Pictures and is Elements dependant on    the Windows ‘My Pictures’? 2. Why does some photos in Elements in some cases cause them to multiply e.g. double; triple; quadruple; and on occasions even more?  Is there something I need to do to stop this or an easy way I can remove the multiples without spending hours doing it manually one by one?  Am I doing something wrong? My O/S is Windows XP SP2 and windows Vista on my Laptop.  I have been using Elements 5 and have just purchased Photoshop Elements 8.0. (Upgrade) and about to install it. Be grateful for any advice as I do enjoy using the program if only I can resolve this issue.  I am not a PC wiz and mainly use Elements to catalogue photos from which I compile collections and from them slide shows with music.  Any advice appreciated Sonny.t PS Have tried to post this previously but without success so hoping to see message appear and a +response

    The organizer doesn't care where you send your photos when you download them via the downloader or where they happen to be when you first bring them in if you use the Get Photos command, but once your pics are in the Organizer, you *must* move them from within organizer or it can't find them. You don't have to use My Pictures at all if you don't want to, but regardless of the folder where you put your photos, if you want them someplace else, you use organizer to do it.

  • I can not send email from my iPad .  Have been using it for over a year, all of a sudden I can only receive email.  I have a wifi connection in my home and have a A T &T cellular data plan?

    I can not send email from my iPad .  Have been using it for over a year, all of a sudden I can only receive email.  I have a wifi connection in my home and have a A T &amp;T cellular data plan?

    I have a 1st gen iPhone that I just updated the software to 2.0.2
    Now whenever I press the mail icon it goes to the mail app for about 4 seconds, does nothing, no loading of folders, old messages, nothing.
    Then it reverts back to the home screen. Tried restarting, haven't tried restoring, thought I'd look here first.
    Anyone???

  • I am getting frequent lock-ups and blue screens during boot up. The lock ups occur during normal use and I cannot click anything or force quit. The cursor shows something is loading, but never stops. I have to use power button. Ideas?

    I am getting frequent lock-ups and blue screens during boot up on my Mac Pro.  The lock- ups occur sometimes during normal use and I cannot click anything or force quit. The cursor shows something is loading, but never stops. I have to use power button.
    I had the Mac Defender malware and I have used apple jack but still having issues.

    I am getting frequent lock-ups and blue screens during boot up on my Mac Pro.  The lock- ups occur sometimes during normal use and I cannot click anything or force quit. The cursor shows something is loading, but never stops. I have to use power button.
    I had the Mac Defender malware and I have used apple jack but still having issues.

Maybe you are looking for

  • Flash Player installed but not working....

    had a virus 3 days ago which was resolved with assistance from Microsoft.  Now Adobe Flash does not work (when I go to Youtube, it says I do not have the latest version.  I have unistalled, restarted, installed at least 10 times.  Sites still say I n

  • Add new fields in open items

    Hey, In Accounts Receivable, we have the need for the following fields on the open items in SAP: Store External System Division Bill of Lading How to work on this? Regards

  • Torch 9800 will not synch

    I had a Windows failure that has resulted in all programmes having to be re-installed, including Blackberry Desktop. Now when I connect the Torch 9800 to my computer the programme opens and the model is recognised but it fails to connect to synchroni

  • IPad2 camera won't work and it takes 5 1/2 hrs to charge battery

    My ipad2 is about 2 and a half months old and everything was working fine until a few days ago. First my iPad froze in the middle of one app and I couldn't restart the device. I tried to press the home button but it didn't work. I then tried to resta

  • Regarding Error in Source System.

    Hello, Need help, When i try to create a Source System (SAP System). Firstly i have connect both the system (BW to R/3) via T-Code SM59 (RFC Connection) then it shows connected. After that, creating a Source System (RSA1) then