How to fix SOAP Security Header UsernameToken is required for operation?

hi all,
can somone help me how to resolve the error "javax.xml.ws.soap.SOAPFaultException: SOAP Security Header UsernameToken is required for operation" when i run a client.
i got a WSDL and using wsdl2java i generated the stubs
Here is my client code
public final class LiteratureClient {
     public final static QName SERVICE = new QName("http://siebel.com/asi/",
               "Literature");
     public final static URL WSDL_LOCATION;
     private LiteratureClient() {
     static {
          URL url = null;
          try {
               url = new URL(
                         "file:c:\\reprintwsdl\\http___siebel.com_asi__Literature17.WSDL");
          } catch (MalformedURLException e) {
               System.err
                         .println("Can not initialize the default wsdl from file:http___siebel.com_asi__Literature17.WSDL");
               // e.printStackTrace();
          WSDL_LOCATION = url;
     public static void main(String args[]) throws Exception {
          System.out.println(WSDL_LOCATION);
          Literature obj = new Literature(WSDL_LOCATION, SERVICE);
          DefaultBindingSpcLiteratureSpcWS port = obj.getDefault();
          Client cxfClient = ClientProxy.getClient(port);
          cxfClient.getInInterceptors().add(new LoggingInInterceptor());
          cxfClient.getOutInterceptors().add(new LoggingOutInterceptor());
          cxfClient.getOutInterceptors().add(new SiebelPasswordInterceptor());
          com.siebel.xml.literatureio.iterature inputObj = new com.siebel.xml.literatureio.lterature();
inputObj.setDocId("1234");          
          // Query by ID
     LiteratureQueryByIdlInput input = new LiteratureQueryByIdInput();
          com.siebel.xml.iteratureio.ListOfliteratureio list = new com.siebel.xml.iteratureio.ListOfliteratureio();
          list.getLiterature().add(inputObj);
          input.setListOfliteratureio(list);
          LiteratureQueryByIdOutput output = obj.getDefault().LiteratureQueryById(input);
This is the interceptor which i added to the client before performing the query operation
public class SiebelPasswordInterceptor extends AbstractPhaseInterceptor<SoapMessage> {
     public static final String SECURITY_TAG_NAME = "wsse:Security";
     public static final String SECURITY_NAMESPACE = "http://schemas.xmlsoap.org/ws/2002/04/secext";
     public static final String USERNAME_TOKEN_TAG_NAME = "wsse:UsernameToken";
     public static final String USERNAME_TAG_NAME = "wsse:Username";
     public static final String PASSWORD_TAG_NAME = "wsse:Password";
     public static final String PASSWORD_TEXT_ATTRIBUTE_NAME = "wsse:PasswordText";
     public static final String TYPE_TAG_NAME = "Type";
     public static final String SECURITY_NAMESPACE_NAME = "wsse";
     public static final String SECURITY = "Security";
     public SiebelPasswordInterceptor() {
          super(Phase.PREPARE_SEND);
     public void handleMessage(SoapMessage message) {
          List l = message.getHeaders();
          Document d = DOMUtils.createDocument();
          Element securityParent = d
                    .createElementNS(
                              SECURITY_NAMESPACE,
                              SECURITY_TAG_NAME);
          Element userNameToken = d.createElementNS(
                    SECURITY_NAMESPACE,
                    USERNAME_TOKEN_TAG_NAME);
          Element userName = d
                    .createElementNS(
                              SECURITY_NAMESPACE,
                              USERNAME_TAG_NAME);
          userName.setTextContent(getUsername());
          userNameToken.appendChild(userName);
          Element pwdText = d
                    .createElementNS(
                              SECURITY_NAMESPACE,
                              PASSWORD_TAG_NAME);
          pwdText.setAttribute(TYPE_TAG_NAME, PASSWORD_TEXT_ATTRIBUTE_NAME);
          pwdText.setTextContent(getPassword());
          userNameToken.appendChild(pwdText);
          securityParent.appendChild(userNameToken);
          SoapHeader header = new SoapHeader(new QName(
                    SECURITY_NAMESPACE, SECURITY,
                    SECURITY_NAMESPACE_NAME), securityParent);
          System.out.println(" HEADER "+header.toString());
          l.add(header);
     protected String getUsername(){
return "test";
     protected String getPassword(){
          return test";
I did add this interceptor as out interceptor to my client but for some reason the header is not getting added to the request . can someone pls. help me in troubleshooting this issue.
Thank you

The problem is in <form action="http://www.eastsidestudios.com.au/FormProcessv2.aspx?WebFormID=42582&O ID={module_oid}&amp;OTYPE={module_otype}&amp;EID={module_eid}&amp;CID={mo dule_cid}"
You have to remove http://www.eastsidestudios.com.au from the action URL and make it relative:
<form action="/FormProcessv2.aspx?WebFormID=42582&O ID={module_oid}&amp;OTYPE={module_otype}&amp;EID={module_eid}&amp;CID={mo dule_cid}"
Cheers,
-mario

Similar Messages

  • How to include WS-Security Header in the WSDL

    hi
    how to include WS-Security Header which have username and password as
    i had seen the below link it deals with just hello world which is not using any Services(DBAdapter) is it possible to use DBAdapter as the steps present in the below link how to include WS-Security Header which have username and password
    http://blogs.oracle.com/reynolds/2005/09/invoking_bpel_from_an_html_for.html

    As Amir suggested, you may provide in the URL but I wouldn't suggest it though. You don't want to hard code the user ID and password within in the WSDL because it is a bad practice especially the user ID and password may be different in different systems and every time you change the password, you have to regenarate your WSDL.
    May be you thought through this but just in case if you didn't
    KK

  • How to fix the column header width in BEx or WAD

    hi there!
    how to fix the column header width in BEx or WAD. because, depends on the column data, the column size varies. i want to fix the size so that i can maintain the consistency through out the report.
    thanks!
    Vam.

    Dear Vam,
    you can easily do that with css, search the source code of the executed web template for the td tag which is around your coloumn header, remember the style sheet class name it is ´displayed as class= in the td tag.
    Now you can add this code the beginning of your web template:
    </style>
    This will only work in Web.
    Regards
    Marcus

  • How to retrieve SOAP Original Header from request and response

    Hi,
    Does anyone know how to retrieve SOAP original header from SOAP request and response? I surfed but I'm able to see only the retrieval of SOAP custom headers via BPM mediator. Can anyone please help me regarding this? Also Please tell me how to check the headers in the Enterprise Manager.

    HI Chandra,
    Thanks for your suggestions.
    But i think in my case we do not want to get the complete list. We still want to get only 100 items initially and then if the user would scroll down he/she would see more items. But we already need to know the total number of items for the purpose of showing a message to the user. For e.g. Total issues (515),  but the table would initially show only 100 and then another 100 after scroll. So setting the size litmit to max would not help.
    And to be able to use the $count you mentioned, we have to still make another oData service call which we do not want.
    But as i mentioned there is already a property named "__count" in the response of the bindItems() method call and i see that it has correct count but not sure how to retrieve it inside the controller. Thanks.
    Regards,
    Ashish

  • How to fix your security questions

    How to fix your security questions

    Hi Yungcowgirl,
    Welcome to the Support Communities!
    The article below should help you with this:
    Rescue email address and how to reset Apple ID security questions
    http://support.apple.com/kb/HT5312
    I hope this information helps ....
    Have a great day!
    - Judy

  • How to fix the security code invaild

    how to fix the security code invaild i keep writing the security code but it keeps telling me that it wrong what should i do?

    please im talking about my credit card i was buying and every thing was ok till 6 days ago it says that my billing info was wrong or aomething like that and it says i have to update it i clicked billing info it says that the security code of my card is invaild and im so sure it vaild please help me and teach me what to do (please step by step)

  • How do I disable Security Warning - "The application requires an earlier...

    h4. How do I disable Security Warning - "The application requires an earlier Java. Do you want to continue?" ?
    The message is correct - our ESS application requires 1.4.08, but this message has begun with 1.6.11. Earlier versions of 1.6 did not produce this. Is there any setting anywhere that I can use to prevent this from displaying for my users?
    Thanks.

    The simplest approach is to only have the latest version of Java "enabled".
    A fix, step-by-step, is as follows:
    1. Close all browsers;
    2. Make sure you are running latest version of Java (check this via Java Control Panel in Windows Control Panel, or, more simply, just download latest version from Java.com) (as of today's date, the latest version is 1.6.0_14);
    3. Open Java Control Panel (via Windows Control Panel);
    4. Go to "Java" tab;
    5. Click on "View" in "Java Applet Runtime Settings" of that tab;
    6. Uncheck "Enabled" for every version of Java listed EXCEPT for the latest version;
    7. Click "OK", etc., and thus close Java Control Panel;
    8. Restart browser(s);
    9. Done.
    Alternatively, you can Uninstall all earlier versions via Windows Control Panel - Programs and Features (This is in Vista; similarly in other Windows versions)... Select previous versions and uninstall them. Leave the most current version.
    This was a puzzling one, at least for me. Took a while to figure out.
    M

  • How to fix Workflow failed to get user profile for user:

    hi All,
    How to fix Workflow failed to get user profile for user when using Lookup function in sharepoint designer?

    Try to use “As string” instead of “Login Name” for the “Return field as”.
    Regards,
    Jayant
    jayant prabhakar

  • How to fix ipad disabled? it is looking for password, it looks like its frozen

    how to fix ipad disabled? it is looking for password, it looks like it's frozen.

    First, try a system reset.  It cures many ills and it's quick, easy and harmless...
    Hold down the on/off switch and the Home button simultaneously until you see the Apple logo.  Ignore the "Slide to power off" text if it appears.  You will not lose any apps, data, music, movies, settings, etc.
    If the Reset doesn't work, try a Restore.  Note that it's nowhere near as quick as a Reset.  It could take well over an hour!  Connect via cable to the computer that you use for sync.  From iTunes, select the iPad/iPod and then select the Summary tab.  Follow directions for Restore and be sure to say "yes" to the backup.  You will be warned that all data (apps, music, movies, etc.) will be erased but, as the Restore finishes, you will be asked if you wish the contents of the backup to be copied to the iPad/iPod.  Again, say "yes."
    At the end of the basic Restore, you will be asked if you wish to sync the iPad/iPod.  As before, say "yes."  Note that that sync selection will disappear and the Restore will end if you do not respond within a reasonable time.  If that happens, only the apps that are part of the IOS will appear on your device.  Corrective action is simple -  choose manual "Sync" from the bottom right of iTunes.
    If you're unable to do the Restore, go into Recovery Mode per the instructions here.

  • HT1331 I have windows  xp.  I 'm trying to download the airPort utility. how can I do this?  It is required for AirPort base station right?

    I have windows  xp.  I 'm trying to download the airPort utility. how can I do this?  It is required for AirPort base station right?

    Downloading the right file for XP?  Check to make sure that you are running XP SP3.
    AirPort Utility 5.5.3 for Windows
    AirPort Utility is required if you need to set up or change the settings on an Apple AirPort router.  It is not required if you are simply connecting to the wireless network from a PC.

  • How to fix the column header

    Try to display something like this:<br><br>
    HA HB <br>
    A1 B1<br>
    A2 B2<br>
    <br>
    So I use:
    <div class="Show2Rows"><br>
    <table><br>
    <tr><br>
    <th>HA</th><br>
    <th>HB</th><br>
    </tr><br>
    <tr><br>
    <td><input ... value="A1" ></td><br>
    <td><input ... value="B1" ></td><br>
    </tr><br>
    <br>
    </table><br>
    </div><br>
    <br>
    The rule is: allow it to display ONLY two rows in the window. When more rows are added, a vertical scroll bar will be enabled. --And, yes, it works just as expected.
    The problem is that when more rows are added, when I scroll the bar downward, of course the rows will move up. When this happens, the Column Headers (HA and HB) will disappear. Obviously I need to fix the Column Headers.
    So question is: How can I fix the headers while still be able to scroll the data rows up and down?
    Thanks

    Dear Vam,
    you can easily do that with css, search the source code of the executed web template for the td tag which is around your coloumn header, remember the style sheet class name it is ´displayed as class= in the td tag.
    Now you can add this code the beginning of your web template:
    </style>
    This will only work in Web.
    Regards
    Marcus

  • How to fix folder security

    folder does not have proper security settings--how do you fix it?

    Parallels no longer users the Transporter application so its startup item should be removed. I don't know why you have the .DS_Store file in that folder nor why it is being detected as a startup item. It's an invisible file that you can easily remove by opening the Terminal application in your Utilities folder and doing the following:
    At the command prompt enter:
    sudo rm -rf /Library/StartupItems/.DS_Store
    Press RETURN. You will be asked to enter your admin password which will not be echoed.
    As an additional precaution you may do the following:
    Repairing the Hard Drive and Permissions
    Boot from your OS X Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Installer menu (Utilities menu for Tiger, Leopard or Snow Leopard.) After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list. In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive. If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the installer. Now restart normally.
    If DU reports errors it cannot fix, then you will need Disk Warrior and/or Tech Tool Pro to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.

  • How to fix the security setting?

    Hi there,
    I wish to convert file from Microsoft Word to Adobe Reader. However, I do not know how to put in a security. What should I do in order to prevent someone copying the content, printing or leave comments? Can you please show me the steps?
    I can't find any information about this issue so far on the Internet.
    Thanks.

    > I can't find any information about this issue so far on the Internet.
    In the help of Adobe Acrobat read all about security.

  • How to fix a security warning on a web form?

    hi, I have added a new form which I have modified, and it is coming up with a security warning (see attached screenshot)
    Is there any reason why this is happening and is there anything I can do to make it secure?
    Form is here:
    (www.eastsidestudios.com.au > book now > view cart > checkout)
    The checkout form is the one that has the security warning.
    This is the code on the form:
    <div class="checkOut">
    <h3>CHECKOUT</h3>
    <h5>* These fields are required</h5>
    <form action="http://www.eastsidestudios.com.au/FormProcessv2.aspx?WebFormID=42582&OID={module_oid}&amp;OTYPE={module_otype}&amp;EID={module_eid}&amp;CID={module_cid}" enctype="multipart/form-data" onsubmit="return checkWholeForm73108(this)" method="post" name="catwebformform73108">
        <table width="600" cellspacing="0" cellpadding="2" border="0" class="webform">
            <tbody>
                <tr>
                    <td colspan="3">
                    <table width="600" cellspacing="0" cellpadding="2" border="0" class="webform">
                        <tbody>
                            <tr>
                                <td colspan="3"><label for="Title">Title</label>
                                <br />
                                <select class="cat_dropdown_smaller" id="Title" name="Title">
                                <option value="436503">MISS</option>
                                <option selected="selected" value="436500">MR</option>
                                <option value="436501">MRS</option>
                                <option value="436502">MS</option>
                                </select></td>
                            </tr>
                            <tr>
                                <td colspan="2"><label for="FirstName">Parent First Name <span class="req">*</span></label>
                                <br />
                                <input type="text" maxlength="255" class="cat_textbox" id="FirstName" name="FirstName" /></td>
                                <td colspan="2"><label for="LastName">Parent Last Name <span class="req">*</span></label>
                                <br />
                                <input type="text" maxlength="255" class="cat_textbox" id="LastName" name="LastName" /></td>
                            </tr>
                            <tr>
                            </tr>
                            <tr>
                                <td colspan="3"><label for="EmailAddress">Email Address <span class="req">*</span></label>
                                <br />
                                <input type="text" maxlength="255" class="cat_textbox" id="EmailAddress" name="EmailAddress" /></td>
                            </tr>
                            <tr>
                                <td style="width: 188px;"><label for="HomeAddress">Home Address <span class="req">*</span></label>
                                <br />
                                <input type="text" maxlength="500" class="cat_textbox" id="HomeAddress" name="HomeAddress" /></td>
                                <td colspan="3"><label for="HomeCity">Suburb <span class="req">*</span></label>
                                <br />
                                <input type="text" maxlength="255" class="cat_textbox" id="HomeCity" name="HomeCity" /></td>
                                <td colspan="3" style="width: 172px;"><label for="HomeZip">Zipcode/Postcode <span class="req">*</span></label>
                                <br />
                                <input type="text" maxlength="255" class="cat_textbox" id="HomeZip" name="HomeZip" /></td>
                            </tr>
                            <tr>
                            </tr>
                            <tr>
                            </tr>
                            <tr>
                                <td colspan="3"><label for="HomePhone">Home Phone Number <span class="req">*</span></label>
                                <br />
                                <input type="text" maxlength="255" class="cat_textbox" id="HomePhone" name="HomePhone" /></td>
                            </tr>
                            <tr>
                                <td colspan="3"><label for="CellPhone">Cell Phone Number <span class="req">*</span></label>
                                <br />
                                <input type="text" maxlength="255" class="cat_textbox" id="CellPhone" name="CellPhone" /></td>
                            </tr>
                            <tr>
                                <td colspan="3"><label>Payment Method <span class="req">*</span></label>
                                <br />
                                <input type="radio" value="5" id="PaymentMethodType_5" name="PaymentMethodType" />
                                PayPal<br />
                                </td>
                            </tr>
                            <tr>
                                <td><label for="CAT_Custom_259470">Child 1 Name <span class="req">*</span></label>
                                <br />
                                <input type="text" class="cat_textbox" id="CAT_Custom_259470" name="CAT_Custom_259470" maxlength="1024" /></td>
                                <td colspan="3"><label for="CAT_Custom_259481">Date of Birth Child 1 <span class="req">*</span></label>
                                <br />
                                <input type="text" class="cat_textbox" id="CAT_Custom_259481" name="CAT_Custom_259481" maxlength="1024" /></td>
                                <td colspan="3"><label for="CAT_Custom_259484">T-Shirt Size - Child 1 (holiday camp only)</label>
                                <br />
                                <select class="cat_dropdown" id="CAT_Custom_259484" name="CAT_Custom_259484">
                                <option value=" ">-- Please select --</option>
                                <option value="XS">XS</option>
                                <option value="S">S</option>
                                <option value="M">M</option>
                                <option value="L">L</option>
                                </select></td>
                            </tr>
                            <tr>
                            </tr>
                            <tr>
                            </tr>
                            <tr>
                                <td><label for="CAT_Custom_259475">Child 2 Name</label>
                                <br />
                                <input type="text" class="cat_textbox" id="CAT_Custom_259475" name="CAT_Custom_259475" maxlength="1024" /></td>
                                <td colspan="3"><label for="CAT_Custom_259482">Date of Birth Child 2</label>
                                <br />
                                <input type="text" class="cat_textbox" id="CAT_Custom_259482" name="CAT_Custom_259482" maxlength="1024" /></td>
                                <td colspan="3"><label for="CAT_Custom_259485">T-Shirt Size - Child 2 (holiday camp only)</label>
                                <br />
                                <select class="cat_dropdown" id="CAT_Custom_259485" name="CAT_Custom_259485">
                                <option value=" ">-- Please select --</option>
                                <option value="XS">XS</option>
                                <option value="S">S</option>
                                <option value="M">M</option>
                                <option value="L">L</option>
                                <option value="XL">XL</option>
                                </select></td>
                            </tr>
                            <tr>
                            </tr>
                            <tr>
                            </tr>
                            <tr>
                                <td colspan="3"><label for="CAT_Custom_259472">School</label>
                                <br />
                                <input type="text" class="cat_textbox" id="CAT_Custom_259472" name="CAT_Custom_259472" maxlength="1024" /></td>
                            </tr>
                            <tr>
                                <td colspan="3"><label>I hereby give permission for my child to attend Eastside Studios and I understand that my child will be supervised for the duration of the class camp and/or aftercare hours only. (Aftercare hours only available during holiday camps) <span class="req">*</span></label>
                                <br />
                                <input type="radio" value="Yes" id="CAT_Custom_259476_0" name="CAT_Custom_259476" checked="checked" />
                                Yes</td>
                            </tr>
                            <tr>
                                <td colspan="3"><label for="CAT_Custom_259473">Does your child have any condition/illnesses/allergies that we need to be aware of?</label>
                                <br />
                                <textarea onkeydown="if(this.value.length&gt;=1024)this.value=this.value.substring(0,1023);" class="cat_listbox" rows="4" cols="10" id="CAT_Custom_259473" name="CAT_Custom_259473"></textarea></td>
                            </tr>
                            <tr>
                                <td colspan="3"><label>I give permission for my child to be photographed during the class and understand these photos may be used exclusively for Eastside Studios advertising material. <span class="req">*</span></label>
                                <br />
                                <input type="checkbox" value="Yes" id="CAT_Custom_259474_0" name="CAT_Custom_259474" />
                                Yes<br />
                                <input type="checkbox" value="No" id="CAT_Custom_259474_1" name="CAT_Custom_259474" />
                                No</td>
                            </tr>
                            <tr>
                                <td colspan="3"><input type="checkbox" name="CampaignList_29296" />
                                Subscribe to: Eastside Studios Database</td>
                            </tr>
                            <tr>
                                <td colspan="3"><input type="submit" id="catwebformbutton" value="Submit" class="cat_button" /></td>
                            </tr>
                        </tbody>
                    </table>
                    </td>
                </tr>
            </tbody>
        </table>
        <script type="text/javascript" src="http://www.eastsidestudios.com.au/CatalystScripts/ValidationFunctions.js"></script>
        <script type="text/javascript">
    //<![CDATA[
    var submitcount73108 = 0;function checkWholeForm73108(theForm){var why = "";if (theForm.FirstName) why += isEmpty(theForm.FirstName.value, "First Name");if (theForm.LastName) why += isEmpty(theForm.LastName.value, "Last Name"); if (theForm.EmailAddress) why += checkEmail(theForm.EmailAddress.value); if (theForm.HomeAddress) why += isEmpty(theForm.HomeAddress.value, "Home Address"); if (theForm.HomeCity) why += isEmpty(theForm.HomeCity.value, "Home City"); if (theForm.HomeState) why += isEmpty(theForm.HomeState.value, "Home State"); if (theForm.HomeZip) why += isEmpty(theForm.HomeZip.value, "Home Zipcode"); if (theForm.HomeCountry) why += checkDropdown(theForm.HomeCountry.value, "Home Country"); if (theForm.HomePhone) why += isEmpty(theForm.HomePhone.value, "Home Phone Number"); if (theForm.CellPhone) why += isEmpty(theForm.CellPhone.value, "Cell Phone Number"); if (theForm.PaymentMethodType) why += checkSelected(theForm.PaymentMethodType, "Payment Method");if (theForm.CAT_Custom_259470) why += isEmpty(theForm.CAT_Custom_259470.value, "Child 1 Name");if (theForm.CAT_Custom_259481) why += isEmpty(theForm.CAT_Custom_259481.value, "Date of Birth Child 1");if (theForm.CAT_Custom_259476) why += checkSelected(theForm.CAT_Custom_259476, "I hereby give permission for my child to attend Eastside Studios and I understand that my child will be supervised for the duration of the class camp and/or aftercare hours only. (Aftercare hours only available during holiday camps)");if (theForm.CAT_Custom_259474) why += checkSelected(theForm.CAT_Custom_259474, "I give permission for my child to be photographed during the class and understand these photos may be used exclusively for Eastside Studios advertising material.");if(why != ""){alert(why);return false;}if(submitcount73108 == 0){submitcount73108++;theForm.submit();return false;}else{alert("Form submission is in progress.");return false;}}
    //]]>
    </script>
    </form>
    </div>

    The problem is in <form action="http://www.eastsidestudios.com.au/FormProcessv2.aspx?WebFormID=42582&O ID={module_oid}&amp;OTYPE={module_otype}&amp;EID={module_eid}&amp;CID={mo dule_cid}"
    You have to remove http://www.eastsidestudios.com.au from the action URL and make it relative:
    <form action="/FormProcessv2.aspx?WebFormID=42582&O ID={module_oid}&amp;OTYPE={module_otype}&amp;EID={module_eid}&amp;CID={mo dule_cid}"
    Cheers,
    -mario

  • How to fix invalid security code?

    HELP ME

    Try:
    iTunes Store: My credit card's security code or zip code does not match my bank's records

Maybe you are looking for

  • Resolution Xtra and secondary monitor

    Hi I'm using Resolution xtra to change the resolution on my monitor My PC with windows XP has 2 monitors And when I change resolution for primary monitor, using function cSuccess = gResXtra.set_resolution(cResWidth,cResheight,cResMode,gResXtra.get_pr

  • Statistics Analysis on Tables that are often empty

    Right now I'm dealing with a user application that was originally developed in Ora10g. Recently the database was upgraded to Ora11g, and the schema and data was imported successfully. However, since the user started using Ora11, some of their applica

  • How to deselect the text when I start the program?

    how to deselect the text when I start the program? photo:

  • Graphical version of Process Chain Maintenance

    Hi Expert, My BW is running on 730 SAPKW73003, BI CONT 735 SAPK-73503INBICONT when i run RSPC, it is showing RSA1 menu with extra process chain menu on the right. Where is the old version of graphical representation of RSPC? Anyway i could get it bac

  • FCE to Final cut Pro

    I am about to start a long project. If I start and edit in FCE, will Final cut Pro be able to open the project for "online finishing"? ( I want to be able to have the audio track sweetened and color-timing accomplished? I am shooting the project in N