CONVERSION FROM FORMS 4.5 - FORMS6

I have about 300 4.5 fmb's to convert.
Before I embark on this painfull task I have a few questions....
Can I convert any menu's I currently use or do I need to rebuild them?
I want to use the default smart bar available in 6.0. The current forms use buttons in a block. Where there is code to alter buttons properties ie. set_item_property('button_bar.excq' etc will it be possible to amend to
set_item_property('smartbar.excq' etc ??

There is no need of any tool wrather than Oracle Developer 6 to upgrade Forms 4.5 to Forms 6.0. Just open your
Forms4.5 version Forms in Forms6.0 builder. It will automatically upgrade the forms into V6.0. If you want to add any
funtionality or feature of Forms6i you need to do it manually after upgrading V4.5 forms.

Similar Messages

  • Conversion from forms 4.5 to 6i .....urgent !

    Hi all,
    I'm trying to convert my forms from Forms version 4.5 to 6i.
    In the process, all the variables declared as char are getting converted to varchar2.Say it was:
    (in version 4.5)
    v_variable char(22);
    This gets converted to
    (in version 6i)
    v_variable varchar2(22);
    But if the length of the char variable is not defined it is getting defaulted to varchar2 (1).This will give me various errors because of the conversion into a variable of length 1.(Earlier it was not compulsory to define the length of char variables)
    Is there any way that I can prompt the compiler to convert char variables into varchar2(200) ?????
    Any suggestions will be of great help.
    Thanks in advance.
    null

    But if you had a variable defined as "my_var char;" it had a
    length of 1 implicitly. This should not affect your runtime
    behavior.
    You can check into using the Forms API to convert the text
    string "varchar2(1)" to varchar2(2000). You can find
    information on the API at:
    http://otn.oracle.com/products/forms/pdf/274326.pdf
    Regards,
    Candace Stover

  • Conversion from Forms 4.5 to 6i

    Hello
    Do someone knows wich are the most common problems converting the forms from 4.5 to 6i Forms version ?
    Is there a product that can help me ?
    Thanks
    Fabien

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by wave80:
    Hello
    Do someone knows wich are the most common problems converting the forms from 4.5 to 6i Forms version ?
    Is there a product that can help me ?
    Thanks
    Fabien<HR></BLOCKQUOTE>
    One of the biggest problem is that the "field" in form 4.5 is replaced by "item" in form 6i in all non-procedural language and procedureal language. You have to replace it manually as far as I know. Another problem is that form 4.5, after compiling in form 6i,would be resized the layout. You may be required to either enlarge or reduce the size of the layout. Hope this little clue may help you
    null

  • Automated tool to convert from Forms to Dynamic Page for Oracle Portal?

    Hi Experts,
    We are thinking to convert majority of the forms in our portal to dynamic pages. Is there any tool to automate the conversion from Forms to Dynamic page for Oracle Portal 9.0.4.1.0?
    Thanks, Abbas

    Dear Abbas,
    You seem to have two issues... ;-)
    If you are finding the Forms are getting corrupt very easily, I'd suggest you go and open a Service Request into Oracle Support (http://metalink.oracle.com). There are a couple of ways where you can have these not corrupted (depeding on the Portal version you are in) and if there isn't yet a way you may get a bug logged and fixed within the next patchset eventually (improving the product functionality).
    As to changing it to a dynamic page it might give you a bit more flexibility... yeah. It really depends on what you desire to do. I'd slowly start to code them in this way if your goal is this. As to the former coded forms unfortunately as I've said there isn't a strait way to do that, so you may do this slowly in time...
    I hope it helps you a bit further...
    Cheers,
    Pedro.

  • Calling Reports From Forms

    Hello,
    i'm trying to call a Report from a Form but i'm getting the error:
    <b>Cannot Get Output of Job ID 91 you requested on Mon Feb 03 14:00:03 BRT 2003.
    REP-56033: Job 91 does not exist<b/>
    I'm using Reports Server 9i (9.0.2.3) and Forms Server 6i.
    The PL/SQL to call the report is something like the following:
    <b>declare
    v_rep_id Report_Object;
    v_rep_job_id Varchar2(200);
    v_rep_status Varchar2(200);
    begin
         v_rep_id := Find_Report_Object('RPT_GENERICO');
         Set_Report_Object_Property(v_rep_id, REPORT_FILENAME, 'plscvnd0013rpt');
         v_rep_job_id := Run_Report_Object(v_rep_id, pLista_ID);
         v_rep_status := Report_Object_Status(v_rep_job_id);
         while v_rep_status in ('RUNNING', 'OPENING_REPORT', 'ENQUEUED')
         loop
              v_rep_status := Report_Object_Status(v_rep_job_id);
         end loop;
         if v_rep_status = 'FINISHED' then
              Web.Show_Document('http://reports.caarj.com.br:7779/reports/rwservlet/getjobid' ||
                                                 substr(v_rep_job_id, 18) || '?server=Rep.caarj.com.br');
    end if;
    end;
    end if;
    Destroy_Parameter_List(pLista_ID);
    end;</b>
    I've already commented out the <security> section, and uncommented the <compatible version="6i"> in <reports_server>.conf file. The rwproxy service is up and running on port 1949 and i'm using SIGLE_SIGN_ON=NO in rwservlet.properties file.
    What could be wrong??
    Regards,
    Marcus Santos.

    Jermima,
    To call Reports9i from Forms6i it needs to be configured for backward compatibility. this means that your Reports9i server must run as if it was a 6i server.
    The following is from an unpublished paper I wrote on this topic:
    Using Reports9i with Forms 6i
    ====================================================
    To be able to call Reports9i Services from a Forms6i client, an extra Reports server process must be created. Oracle9iAS Reports Services knows of two kinds of Reports Server processes. The in-process server is started the first time that a Reports is requested from the Web by
    the Reports Servlet rwservlet. This Reports Server process cannot be used with Forms using Run_Report_Object and therefore a separate Reports Server process must be started prior to using it.
    This can be done by issuing he following command from the Oracle9iAS/bin directory rwserver <servername> batch=yes & (UNIX)or rwserver -install <service name> (WINDOWS)In both cases, the first time that the Reports Server starts, a Reports configuration file <servername>.conf (UNIX) or <service_name>.conf (WINDOWS) is created in the Oracle9iAS/reports/conf directory.
    To use Reports9i Services form a Forms6i client, this file needs some editing:
    The Reports Sevices configuration file gets created with the first start of the Oracle9iAS Reports Services. The configuration settings in this file determine the runtime behavior of the Reports Services.
    Two changes need to be applied to this file to make Oracle9iAs Services work with Forms6i client-server applications. Make sure that the Reports Services process was stopped before opening the Reports Services configuration file, located in the Oracle9iAS/reports/conf directory, with a text editor. The Reports Services configuration file name does apply to the following naming convention.
    Separate server process
    <ServiceName>.conf
    <server>
    [1] <!--compatible version="6i"/-->
    <cache class="oracle.reports.cache.RWCache">
    <property name="cacheSize" value="50"/>
    <!--property name="cacheDir" value="your cache directory"/-->
    <!--property name="maxCacheFileNumber" value="max number of files"/-->
    </cache>
    [2] <security id="rwSec" class="oracle.reports.server.RWSecurity">
    <property name="securityUserid" value="tyKAUY845QDO/2vyaGbQw …" confidential="yes" encrypted="yes"/>
    </security>
    </server>
    Change the following entries in the Reports Services configuration file for the Oracle9iAS Reports Services to accept requests from Forms 6i
    clients.
    [1] Uncomment this line to make Reports9i Services run in 6i compatibility mode. After uncommenting this line it should look similar to this
    <compatible version="6i"/>
    [2] Remove the <security> </security> tag pair and their included content. This effectively disables the Reports Services access control,
    which by default requires a system authentication to be provided by the user to before running a report.
    If later you want to recover access control, then all you need to do is to stop the Reports Services, delete the configuration file and start it up
    again. This leads to a new configuration file being created. Repeat step [1].
    Configure the tnsnames.ora file on the client and the server
    For the Forms6i client server application and the Oracle9i Reports Server to know each other, the tnsnames.ora file needs to be edited on
    both sides. The tnsnames.ora file to use is located in the Forms6i_Home/net80/admin directory on the client and the
    Oracle9iAS/network/admin directory on the server. Add the following entry to both files:
    <report_server_name>.<domain>=
    (ADDRESS=
    (PROTOCOL=tcp)
    (HOST=<hostname of the Reports Server installation>)
    (PORT=1950)
    The following entry is an example for a Reports Server with the name RepSRV in a “world� domain. Note that the port number of the Reports
    Services is defaulted to 1950.
    RepSRV.world=
    (ADDRESS=
    (PROTOCOL=tcp)
    (HOST=<fnimphiu-lap.de.oacle.com)
    (PORT=1950)
    Rwservlet configuration file
    =============================
    Calling Oracle9iAS Reports Services from a Browser URL* accesse the reports servlet first, which then routes the request to the server
    engine, The Reports servlet rwservlet is configured by a file named rwservlet.properties, located in the Oracle9iAS/reports/conf directory.
    Open this file with a text editor and uncomment the following line by remiving the ‘#’ character in front of it.
    # SINGLESIGNON=YES
    Change the value of this varible to No, so that the whole entry reads
    SINGLESIGNON=NO.
    Restart the Oracle9i Application Server, restarting the Oracle process monitor service (OPM), for the changes to take effect.
    From now on the Reports Services does not require users to provide their single sign-on login password when retrieving the Report output
    from the Web, which is one option of getting a Report back to the client.
    * Note that you call the Servlet for retrieving the Reports output through web.show_document

  • URGENT- Need advice on executing scripts from Forms 6i

    Hi all,
    Quick background info:
    I'm working on a conversion project from Forms 4.5 client/server applications to a three tier, web based Forms 6i environment.
    We're running Oracle 8i DB on HP-UX machines, Oracle 9ias on HP-UX machines, and users access forms through Netscape
    on Win2000 platform.
    The problem:
    I have a SQL execution interface form from which users have been able to run dynamic SQL scripts w/o having direct access to
    a SQL Plus prompt (uses the 'HOST' command in 4.5). How can this functionality be implemented in the three tier environment?
    Unless other options are available, my plan is to use a Java servlet to access the 8i database on the UNIX box and display
    output on an html page. Is there a better/easier way?!
    Any advice is appreciated...
    FLM
    Paychex, Inc.

    Thanks for the response,
    I may be able to invoke the script from Forms using the HOST command, but how is the script output
    displayed back to the browser?
    FLM
    [email protected]
    You can probably still use the host to sqlplus, but this time it will run on the Forms Server.
    You just need to make sure that the dynamic SQL files are uniquly identified for each customer.

  • Converting from Forms to APEX

    does anyone have a formula or methodology for estimating the time it takes to convert (or recreate) a Form to APEX?

    Not really possible, since you are going to have to do some re-designing when you move from Forms to APEX. Just remember, the conversion tool will do some of the work, but you are REALLY better off re-developing your Forms app in APEX then converting..
    Thank you,
    Tony Miller
    Webster, TX
    On the road of life...There are 'windshields', and there are 'bugs'
    (splat!)
    "Squeegees Wanted"
    If this question is answered, please mark the thread as closed and assign points where earned..

  • Struts/ADF/Toplink conversion from 10.1.2 to 10.1.3

    Hi. We have a J2EE application based on Struts/ADF/Toplink.
    We just let the JDeveloper migrate the whole application itself.
    We solved a few minor problems, but now we have the greater one:
    - we have in domain classes some getX...(), setX...() methods, intended for example
    for getting attributes of nested objects or for conversion from String to Date.
    In older version, when you had some getXSomeAtr() method in domain class, the attribute
    XSomeAttr was automatically generated into Data Control.
    In newer version it's not! If you want the attribute to be in data control, you must
    have an private attribute XSomeAtr declared in domain class.
    Example - we have these attibutes (first two has their own getters and setters and are
    mapped in toplink, the third is unmapped)
         private Date datum;
    private String nazev;
    private String XDatumAsDate;
    and methods
    public String getXDatumAsDate() {
    return OurUtils.dateToStringAsDate(getDatum());
    public void setXDatumAsDate(String datum) throws ParseException{
    Date d = OurUtils.StringToDateAsDate(datum);
    setDatum(d);
    And the form look like this
    <html:text property="XDatumAsDate" .../>
    <html:text property="nazev"     .../>
    Reading is ok, but attempt to modify date in input field ends with
    "JBO-35009: Setting attribute for XDatumAsDate in object methodRSICollection failed"
    Are we doing something wrong ? We just need to have the date entering under our control and
    be able to enter dates in various formats.
    Thanks in advance for any comments.

    I compared the both old and new data control xml files and found the difference. The previous attribute descriptor has IsUpdateable="true" but the new has IsUpdateable="0".
    Manually changing won't help - data control generation of any class regenerates all data controls and puts back IsUpdateable="0". I'm stuck now.

  • XML insert from forms

    Hi Guys,
    I have an xml file that I want to insert into a table using the database stored objects in Forms6i on Windows2000 server.
    I am using Oracle 8i DB with XSU package.
    My insert script is written in PL/SQL and saved as a stored procedure in the database.
    My script is running fine if I call it from SQL Plus. However, if I call it from forms (as a stored procedure with input parameters) the script runs well for the first time and if run again, the whole application freezes and I have to suppress it with CTRL-ALT-DEL. Even if I enter another time, I can't access the stored procedure or run my script again.
    The code I am using is the following:
    declare
    charString varchar2(80);
    finalStr varchar2(4000) := null;
    rowsp integer;
    v_FileHandle UTL_FILE.FILE_TYPE;
    begin
    -- the name of the table as specified in our DTD
    xmlgen.setRowsetTag('BILC_IMP_LC_MVTS');
    -- the name of the data set as specified in our DTD
    xmlgen.setRowTag('mappings');
    -- for getting the output on the screen
    dbms_output.enable(1000000);
    -- open the XML document in read only mode
    v_FileHandle := utl_file.fopen('E:\oracle\ora81\bin','okay.xml', 'r');
    loop
    BEGIN
         utl_file.get_line(v_FileHandle, charString);
    exception
         when no_data_found then
         utl_file.fclose(v_FileHandle);
         exit;
    END;
    dbms_output.put_line(charString);
    if finalStr is not null then
         finalStr := finalStr || charString;
    else
         finalStr := charString;
    end if;
    end loop;
    -- for inserting the XML data into the table
    rowsp := xmlgen.insertXML('BILC_IMP_LC_MVTS',finalStr);
    dbms_output.put_line('INSERT DONE '||TO_CHAR(rowsp));
    xmlgen.resetOptions;
    end;

    Lets take for example you are having the response in following format
    response := '<Response>
    <r><name></name><r>
    <r><name></name><r>
    </Response>'
    Convert it to XMLTYPE using the following
    xml_type := XMLTYPE(response);
    select extractvalue(xml_type,'/Response/r[1]/name') into result from dual;
    '1' in [1] refers to the index of the similiar node.(r node)

  • Unable to connect to Oracle 9i from Forms 6i

    Hi,
    I have Oracle 9.2.0 (Personal edition) and Forms 6i installed on a Win2K PC.
    I am able to connect to the DB from SQLPLUS. But, I am unable to connect to the DB from Forms 6i. Can anyone suggest where am I going wrong and what is that I need to do to resolve the problem.
    Thanks in advance!!!

    Normaly forms6i uses Tnsnames.ora file to connect to the database. You need to setup your Tnsnames.ora file correctly by clicking Start---Programs---Directory for Oracle--Oracle net8 easy config, and configure your database connection.

  • Connection Dialog Box Pops Up When a Report is Called From Forms

    Hi ,
    Some times when calling a report from forms using RUN_PRODUCT, a connection dialog box is popped up. We are using forms6i (Version 6.0.8.8.0) client-server.This behavior occurred on a specific pc while many other pc work fine.
    I found a relevant document in metalink (docid:156232.1 https://metalink.oracle.com/metalink/plsql/f?p=130:14:4126992859688402901::::p14_database_id,p14_docid,p14_show_header,p14_show_help,p14_black_frame,p14_font:NOT,156232.1,1,1,1,helvetica ) saying that the database user must have the ALTER_SESSION privilege.In out case user has that privilege through CONNECT role.
    Any suggestions??
    Thanks in advance

    You can try these steps in case of issues with web pages:
    Reload web page(s) and bypass the cache to refresh possibly outdated or corrupted files.
    *Hold down the Shift key and left-click the Reload button
    *Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    *Press "Command + Shift + R" (Mac)
    Clear the cache and cookies only from websites that cause problems.
    "Clear the Cache":
    *Firefox/Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox/Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Exists Asynchronous mode in execution of package from Forms?

    Hi people
    Exist asynchronous mode in execution of package from Forms 6i? , the database is Oracle9i.
    Thanks
    regards
    Hector Ulloa Ligarius

    Hi...
    I will use, DBMS_JOB, call one time and delete Job from Forms6i or Forms9i...
    I use Oracle9ir2, the migration a Oracle10g, will not posible...
    Thanks
    Regards
    Hector Ulloa Ligarius
    Santiago of Chile...

  • Integrating Forms and Apex. (Calling Apex from Forms).

    Hi all.
    We'll soon start an upgrade of our Forms / Reports 6i Application to 11g.
    I was wondering, maybe, it would be nice to add some value for the upgrade process as a whole, using some of Apex new features like web mobile interface or maybe an integration between Forms an Apex, for example to provide users with the powerful features of Interactive Reports, just to name one.
    I have found this interesting link: http://roelhartman.blogspot.com/2008/11/integrate-oracle-forms-with-apex.html. (not a 100% clear for me, but at least it is a start).
    Obviously, to make it attractive, one would expect automatic login between the two Apps. As far as i know, this could be done like this:
    1) Using SSO. With that a Portal / Forms / Reports/ Discoverer/ version would be mandatory (too expensive for some clients).
    2) Oracle Access Manager? Not sure, can Oracle Forms connect to Access Manager? or LDAP? How about the licensing costs?. Not a clue.
    3) Make all Apex pages public? Not feasible.
    4) Now this one: in our forms application, every user authenticates within the application and we internally map that application user to an actual database user. At all times we hold metadata info about the current user (app, and DB), as well as application context. So this is my question:
    It is possible to create an Apex app, with database authentication method, and somehow pass the metadata from forms, and have a kind of custom login procedure that does all the application to DB user conversion process and application context setting????
    This is a very important question for us, although not sure where to really post it...
    Feedback will be greatly appreciated .....!
    Regards,Luis ....:)=

    I did something like that once. What you can do is set some random session id after logging in in Forms. Pass this session id to Apex every time and let Apex check if it is a valid session id.
    More information here:
    http://sqlcur.blogspot.com/2009/04/forms-apex-integration-2.html
    In that example I create a new session id on every call to an Apex page from Forms, but you can use the same session id as long as the user is logged in in Forms.
    Ino

  • Sync old iMessage conversations from iPhone to new iPad & Mac?

    I have had my iPhone for a couple years now, and have accumulated a fairly large amount of iMessage conversations from various people. A few days ago, I purchased my first iPad and also updated my Mac to Mountain Lion. By doing so, I now have access to iMessage on three devices in total, whereas before I only had one.
    I have managed to setup my devices so that all new iMessages I send and receive are being synced between them. However, is it possible to sync my old iMessage conversations from my iPhone back onto my iPad and Mac?
    I would like to do so in order to keep a full record of the past conversations I have had with my contacts.
    I have done a bit of research before posting, but the only related topics I found werehttps://discussions.apple.com/message/19095937 andhttps://discussions.apple.com/message/17818920. The former was left unresolved, whereas the latter describes a solution which I am unable to reproduce.
    Could anyone shed some light on this for me?

    Hi,
    For me this was very early on in my Mountain Lion days.
    I would now say that you cannot sync iMessages from an iOS device that were sent before your linked any Apple ID with the iPhone Number or added the Mac to the use of the Apple ID.
    At the point at which and Apple ID is used on both an iPad and the Mac version of Messages becomes it's "Start date"
    The same can be said for adding an Apple ID to an iPhone and the Mac.
    On the Mac all messages can be saved if you wish.
    This are in the .ichat format which you can send to Mac  Buddies and then can open them and read them as if they were the chat (i.e they display as "chats').
    There appears to be no way in iTunes to access the iMessages (or SMS ones) on the iPhone.
    Someone who knows more about the iOS may be able to tell you if they are accessible another way.
    8:52 PM      Friday; May 24, 2013
      iMac 2.5Ghz 5i 2011 (Mountain Lion 10.8.3)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Sending arrays from Forms to Oracle PL/SQL

    Hi All,
    I'm stuck up in an urgent requirement where I want to send an array of values(eg., PL/SQL table) with a number of rows say 100 from Forms 6i to Oracle PL/SQL. PL/SQL table is based on a record type consists of a number of columns say 10.
    The actual scenario is that, Forms interactive screen (multiple record block) does validations on the values entered by users and then it should send all the rows together to a Stored Procedure or Packaged procedure. Packaged procedure receives the PL/SQL table, does processing on the data values of the PL/SQL table and send it back to Forms 6i.
    Please help me in getting the solution on this urgent problem. There is a flexibility of using any kind of arrays, it can be PL/SQL, Nested table or varrays.
    Thanks.

    hi,
    I want to give n-array elements from a forms6i application to
    a stored package at the same time. I want to work with n-array
    elements in my stored package >>mypackage<<, because I want to sort the
    array elements in a stored package. Now >>mypackage<< works only with
    one array-element, but I need n-elements. First I start a test with
    a procedure and a package.
    -- Later >>element<< should be a program unit in Forms6i
    CREATE OR REPLACE PROCEDURE element IS
    TYPE tab_spoolfile IS TABLE OF VARCHAR2(100) INDEX BY BINARY_INTEGER;
    t_file     tab_spoolfile;
    BEGIN
    t_file(1):= 'abc_00017_cba'; -- 1.
    t_file(2):= 'xyz_00002_zyx'; -- 2.
    t_file(3):= 'efg_99999_gfe'; -- 3.
    t_file(4):= 'mno_00115_onm'; -- 4.
    t_file(5):= 'hij_00088_jih'; -- 5.
    FOR i IN t_file.FIRST..t_file.LAST
    LOOP
    out('Element: '||t_file(i));
    mypackage.my_procedure(mypackage.tab_array(t_file(i)),null);
    END LOOP;
    END;
    CREATE OR REPLACE PACKAGE MyPackage AS
    TYPE tab_array IS TABLE OF VARCHAR2(300);
    t_file tab_array;
    PROCEDURE my_procedure(in_values IN tab_array, p_param VARCHAR2);
    END MyPackage;
    CREATE OR REPLACE PACKAGE BODY MyPackage AS
    i BINARY_INTEGER:= 1;
    PROCEDURE my_procedure(in_values IN tab_array, p_param VARCHAR2) IS
    BEGIN
    IF in_values.EXISTS(i)
    THEN
    out('Sort : '||in_values(i));
    END IF;
    END;
    END MyPackage;
    SQL> exec element
    Element: abc_00017_cba
    Sort : abc_00017_cba
    Element: xyz_00002_zyx
    Sort : xyz_00002_zyx
    Element: efg_99999_gfe
    Sort : efg_99999_gfe
    Element: mno_00115_onm
    Sort : mno_00115_onm
    Element: hij_00088_jih
    Sort : hij_00088_jih
    Does anybody have an idea?
    Best regards,
    Tom

Maybe you are looking for

  • Forms built in 6i is not showing up in Runtime in 10g

    Hi, In Forns 10g developer I compiled a form built with Forms 6i but when I try to execute it, the internet explorer launches and show blank i.e form is not appearing in 10g runtime. status bar says Applet Started. Thanks.

  • Not able to Pass header info to Microsoft MapPoint WebService using WLS10

    We are passing some Header info to the MapPoint Web Service from our client Web Service which is hosted in Weblogic 10, however we are not sure if the info is getting passed. The actual soap header which we are trying to postis as below: <env:Header

  • Ultra 40 M2 & SLI ?

    Good morning. Reciently I purchased some Ultra 40 M2's for our lab. Last week we had a requirement for a machine to be built with Vista and SLI so I decided to scrap RHEL and load Vista on one of the spare 40's. After installing and updating to SP1,

  • 6880 in VSS Mode and OSPF maximum paths

    Hi Folks, I have an issue observed in testing.  We have implemented a VSS solution on the 6880-X-LE.  We have two MEC L3 PO's upstream and thus two OSPF path's for our default route.  After creating an event in the lab to put the boxes in Active - Ac

  • Why was support for CMYK files dropped with iPhoto 6?

    In version 5 I used to be able to import CMYK files, I cannot do this in iPhoto 6, which is a royal pain. When I upgraded from version 5 to 6, CMYK albums that I had imported stayed in the library, and I was able to view and open them (I have default