Which parser is used under JDOM

Is there a way to tell which parser, Oracle, Xerces, Sun, is being used under JDOM. I'm getting a SAXBuilder, but I want to make sure it's using the right parser underneath. I know how to set it, but I want to know how to prove that's what is being used.
Thanks in advance,
Brunky

Found answer on jdom.org.
http://www.servlets.com/archive/servlet/ReadMsg?msgId=126411&listName=jdom-interest
import javax.xml.parsers.SAXParserFactory;
XMLReader reader =
SAXParserFactory.newInstance().newSAXParser().getXMLReader();
System.out.println("XMLReader: " + reader.getClass().getName());

Similar Messages

  • Which Parser to use

    Hi All,
    I am developing an application which requires the Validation of large xml files with standard baselined xml files.And whenever there is a mismatch I would require the list of all previous nodes with details.
    Does SAX provides this facility of maintaining the history of trvaesed tags.
    Pls. suggest which parser is best of this requirement(Jdom, dom, sax etc).
    Thanx in Advance,
    Neeraj

    dom4j because it's easy to work with. U can also use XPath queries etc and sun MSV because it supports all kinks of schemas (relex, w3c,...). This means that you can use any schema you want. This is necessary because you now don't know which schema will be "the standard".
    You better read some info yourself. That will be perhaps more convincing then I am. These API's are easy to find.

  • Which Parser in Use?

    hi guys/gals
    how do i find out which parser I am using?? I am using SAX for parsing
    and have not set any driver properties and would like to know if there is a way of finding out programmatically which parser I am using....
    many thanks

    Well, you can always call getClass() on the parser, to see the implementation.

  • Does anybody know whether Primavera Project Management software can be used under Mac OSX ?

    I itend to use the Primavera software which we are using under Windows with my Apple Notebook and would like to know whether there is an OS X version existing.

    Did you check with Oracle? http://www.oracle.com/us/products/applications/primavera/overview/index.html

  • Parsing Xml using Jdom

    Hi all,
    I am reposting it as I was told to format the code and send it again.
    I am trying to parse a xml file using a jdom java code.This code works fine if I remove xmlns attribute in the root element. (I get the expected result) .If the "xmlns" attribute is put in the xml as it should be then the parsing and retrieving returns null. Please tell me how to fix this issue.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Xml
    <process name="CreateKBEntryService" targetNamespace="http://serena.com/CreateKBEntryService" suppressJoinFailure="yes" xmlns:tns="http://serena.com/CreateKBEntryService" xmlns="http://schemas.xmlsoap.org/ws/2003/03/business-process/" xmlns:bpelx="http://schemas.oracle.com/bpel/extension" xmlns:ora="http://schemas.oracle.com/xpath/extension" xmlns:nsxml0="http://localhost:8080/axis/services/CreateKBEntryService" xmlns:nsxml1="http://DefaultNamespace" xmlns:bpws="http://schemas.xmlsoap.org/ws/2003/03/business-process/">
    <partnerLinks>
    <partnerLink name="client" partnerLinkType="tns:CreateKBEntryService" myRole="CreateKBEntryServiceProvider"/>
    <partnerLink name="CreateKBEntryPartnerLink" partnerLinkType="nsxml0:CreateKBEntryLink" partnerRole="CreateKBEntryProvider"/>
    </partnerLinks>
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~`
    Java:
    import java.io.*;
    import java.util.*;
    import org.jdom.Document;
    import org.jdom.Element;
    import org.jdom.input.SAXBuilder;
    public class sample1 {
    public static void main(String[] args) throws Exception {
    // create a XML parser and read the XML file
    SAXBuilder oBuilder = new SAXBuilder();
    Document oDoc = oBuilder.build(new File("**xml file location**"));
    Element root = oDoc.getRootElement();
    System.out.println(root.getName());
    String tgtns= root.getAttributeValue("targetNamespace");
    System.out.println("tgt ns "+ tgtns);
    List list= root.getChildren("partnerLinks");
    Iterator it1= list.iterator();
    System.out.println("Iterator 1 - "+list.size());
    while(it1.hasNext()){
    Element partnerlinks = (Element)it1.next();
    List list2= partnerlinks.getChildren("partnerLink");
    System.out.println("iterator 2 - "+list2.size());
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Result:
    Without Xmlns in xml file(Expected and correct output)
    process
    tgt ns http://serena.com/CreateKBEntryService
    Iterator 1 - 1//expected and correct result that comes when I remove xmlns attribute from xml
    iterator 2 - 2
    Result with xmlns:
    process
    tgt ns http://serena.com/CreateKBEntryService
    Iterator 1 - 0 //instead of 0 should return 1

    Hi all,
    I am reposting it as I was told to format the code and send it again.
    I am trying to parse a xml file using a jdom java code.This code works fine if I remove xmlns attribute in the root element. (I get the expected result) .If the "xmlns" attribute is put in the xml as it should be then the parsing and retrieving returns null. Please tell me how to fix this issue.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Xml
    <process name="CreateKBEntryService" targetNamespace="http://serena.com/CreateKBEntryService" suppressJoinFailure="yes" xmlns:tns="http://serena.com/CreateKBEntryService" xmlns="http://schemas.xmlsoap.org/ws/2003/03/business-process/" xmlns:bpelx="http://schemas.oracle.com/bpel/extension" xmlns:ora="http://schemas.oracle.com/xpath/extension" xmlns:nsxml0="http://localhost:8080/axis/services/CreateKBEntryService" xmlns:nsxml1="http://DefaultNamespace" xmlns:bpws="http://schemas.xmlsoap.org/ws/2003/03/business-process/">
    <partnerLinks>
    <partnerLink name="client" partnerLinkType="tns:CreateKBEntryService" myRole="CreateKBEntryServiceProvider"/>
    <partnerLink name="CreateKBEntryPartnerLink" partnerLinkType="nsxml0:CreateKBEntryLink" partnerRole="CreateKBEntryProvider"/>
    </partnerLinks>
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~`
    Java:
    import java.io.*;
    import java.util.*;
    import org.jdom.Document;
    import org.jdom.Element;
    import org.jdom.input.SAXBuilder;
    public class sample1 {
    public static void main(String[] args) throws Exception {
    // create a XML parser and read the XML file
    SAXBuilder oBuilder = new SAXBuilder();
    Document oDoc = oBuilder.build(new File("**xml file location**"));
    Element root = oDoc.getRootElement();
    System.out.println(root.getName());
    String tgtns= root.getAttributeValue("targetNamespace");
    System.out.println("tgt ns "+ tgtns);
    List list= root.getChildren("partnerLinks");
    Iterator it1= list.iterator();
    System.out.println("Iterator 1 - "+list.size());
    while(it1.hasNext()){
    Element partnerlinks = (Element)it1.next();
    List list2= partnerlinks.getChildren("partnerLink");
    System.out.println("iterator 2 - "+list2.size());
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Result:
    Without Xmlns in xml file(Expected and correct output)
    process
    tgt ns http://serena.com/CreateKBEntryService
    Iterator 1 - 1//expected and correct result that comes when I remove xmlns attribute from xml
    iterator 2 - 2
    Result with xmlns:
    process
    tgt ns http://serena.com/CreateKBEntryService
    Iterator 1 - 0 //instead of 0 should return 1

  • Which XML parser is used by JWSDP?

    Hi,
    SOAP messages are xml messages. I know that the SOAP messages are processed before invoking the web service. what parser is used to process the SOAP message at the service side. Is it a DOM parser or a SAX parser?? Can i make the server use another parser.??
    Regards,
    Kartik.

    There are standard ways of causing a particular parser to be used. You will find a list of them in the API documentation for the newInstance() method of SAXParserFactory and DocumentBuilderFactory.
    Personally I don't understand why you care what parser is used to parse the message. You don't say that there is any problem with it, so why do you ask?

  • TS1368 I want to delete a lot of things childrens stories, albums which are not used which that are on my ipad. However when I go through Itunes it wont show me most of the stuff in my library. it takes ages to delete one at a time.

    I want to delete a lot of things childrens stories, albums which are not used which that are on my ipad. However when I go through Itunes it wont show me most of the stuff in my library. it takes ages to delete one at a time.
    Can you help please?

    Thanks King_Penguin for taking time to read and reply. 
    I just purchased this movie on Thursday, May 15, so just a few days ago.  I have never had any trouble whatsoever since I have been in Vietnam.  I have downloaded several movies and even music and they have all synced to my respected Apple products except for this purchase. 
    Sorry, I don't quite understand what you mean by studios and different versions.  Could you please explain? 
    I checked my purchased list in my purchase history under my account and there are no hidden items. 

  • How to handle RunTime Faults which doesn't list under System Faults?

    Hi,
    I have a doubt regarding runtime faults in BPEL 1.1.In BPEL 1.1 some of the run time faults are categorised as system faults.So we can handle those run time faults
    using the faultname or namespace(http://schemas.oracle.com/bpel/extension) of system fault itself.But 'SublanguageExecutionFault' is a run time fault which doesn't list under system faults.
    So what namespace it belongs to?Can we use the same namespace of system fault for this kind of runtime faults ?
    Are any other runtime faults existing which don't have the same namespace of sytem faults?So how can we identify and handle those run time faults?

    You can create a role menu as remote enabled remote menu.
    The authority checks will happen on the remote side, also against objects which don't exist in the calling system as the music is on the other side.
    On the RFC client system side, you only need the parameter transaction to start the remote transaction in the remote system.
    See the documentation on SYST function module ABAP4_CALL_TRANSACTION.
    This is however a rather antiquated technology... it is more popular to use a SAP Portal or webdynpro applications for this sort of thing (the user does not notice the difference) or later versions of such integration such as Fiori UIs or imbedded links within the Business Client.
    I don't want to lean out the window too far, but the buggy phase of these new things is approaching an end and they are usable if you are on newer releases. Then you can pool the menu and use APIs for navigation and no more irritating S_TCODE checks.
    Cheers,
    Julius

  • Which license to use ?

    When installing 11G XE beta on Windows following license is displayed:
    >
    Oracle Technology Network Early Adopter License Terms
    Export Controls on the Programs
    Selecting the "Accept License Agreement" button is a confirmation of your agreement that you comply, now and during the trial term, with each of the following statements:
    -You are not a citizen, national, or resident of, and are not under control of, the government of Cuba, Iran, Sudan, North Korea, Syria, nor any country subject to United States trade sanctions.
    -You will not download, provide, make available or otherwise export or re-export the Programs, directly or indirectly, to the above mentioned countries nor to citizens, nationals or residents of those countries, wherever located.
    -You are not listed on the United States Department of Treasury lists of Specially Designated Nationals and Blocked Persons, Specially Designated Terrorists, and Specially Designated Narcotic Traffickers, nor are you listed on the United States Department of Commerce Table of Denial Orders.
    You will not download or otherwise export or re-export the Programs, directly or indirectly, to persons on the above mentioned lists.
    You will not use the Programs for, and will not allow the Programs to be used for, any purposes prohibited by United States law, including, without limitation, for the development, design, manufacture or production of nuclear, chemical or biological weapons of mass destruction.
    EXPORT RESTRICTIONS
    You agree that U.S. export control laws and other applicable export and import laws govern your use of the programs, including technical data; additional information can be found on Oracle®'s Global Trade Compliance web site (http://www.oracle.com/products/export).
    You agree that neither the programs nor any direct product thereof will be exported, directly, or indirectly, in violation of these laws, or will be used for any purpose prohibited by these laws including, without limitation, nuclear, chemical, or biological weapons proliferation.
    Oracle Employees: Under no circumstances are Oracle Employees authorized to download software for the purpose of distributing it to customers. Oracle products are available to employees for internal use or demonstration purposes only. In keeping with Oracle's trade compliance obligations under U.S. and applicable multilateral law, failure to comply with this policy could result in disciplinary action up to and including termination.
    Note: You are bound by the Oracle Technology Network ("OTN") License Agreement terms. The OTN License Agreement terms also apply to all updates you receive under your Technology Track subscription.
    The OTN License Agreement terms below supercede any shrinkwrap license on the OTN Technology Track software CDs and previous OTN License terms (including the Oracle Program License as modified by the OTN Program Use Certificate).
    Oracle Technology Network Development License Agreement
    "We," "us," and "our" refers to Oracle America, Inc., for and on behalf of itself and its subsidiaries and affiliates under common control. "You" and "your" refers to the individual or entity that wishes to use the programs from Oracle. "Programs" refers to the pre-production release version of the Oracle software product you wish to download and use and program documentation, if any. "License" refers to your right to use the programs under the terms of this agreement. "Confidential Information" includes (a) the Programs and all information related thereto, including but not limited to features, requirements, designs, specifications and documentation; and (b) any other information disclosed by Oracle hereunder and marked or identified as confidential at the time of disclosure. Confidential Information does not include information which (a) is or becomes a part of the public domain through no act or omission of you; or (b) was in your lawful possession prior to the disclosure and had not been obtained by you either directly or indirectly from us; or (c) is lawfully disclosed to you by a third party without restriction on disclosure; or (d) is independently developed by you. This agreement is governed by the substantive and procedural laws of California. You and Oracle agree to submit to the exclusive jurisdiction of, and venue in, the courts of San Francisco, San Mateo, or Santa Clara counties in California in any dispute arising out of or relating to this agreement.
    We are willing to license the programs to you only upon the condition that you accept all of the terms contained in this agreement. Read the terms carefully and select the "Accept" button at the bottom of the page to confirm your acceptance. If you are not willing to be bound by these terms, select the "Do Not Accept" button and the registration process will not continue.
    License Rights
    We grant you a nonexclusive, nontransferable limited license to use the programs only for the purpose of internal evaluation and testing of the programs and/or developing a single prototype of your application, and not for any other purpose. If you want to use the programs or the application you develop under this license for any internal data processing or internal business operations or for any commercial or production purposes, or you want to use the programs for any purpose other than as permitted under this agreement, you must obtain a production release version of the program by contacting us or an Oracle reseller to obtain the appropriate license. You acknowledge that we may not produce a production release version of the program and any development efforts undertaken by you are at your own risk. We may audit your use of the programs. Program documentation, if available, may accessed online at http://otn.oracle.com/docs.
    Ownership and Restrictions
    We retain all ownership and intellectual property rights in the programs. The programs may be installed on one computer only, and used by one person in the operating environment identified by us. You may make one copy of the programs for backup purposes.
    You may not:
    - use the programs for your own internal data processing or internal business operations or for any commercial or production purposes, or use the programs for any purpose except as permitted under this agreement;
    - continue to use the programs for a period longer than: (a) six months; or, (b) after the general availability of the programs, if any;
    - use the application you develop with the programs for any internal data processing or internal business operations or commercial or production purposes without obtaining a production release version of the programs by securing an appropriate license from us or an Oracle reseller;
    - remove or modify any program markings or any notice of our proprietary rights;
    - make the programs available or accessible in any manner to any third party;
    - use the programs to provide third party training;
    - assign this agreement or give or transfer the programs or an interest in them to another individual or entity;
    - cause or permit reverse engineering (unless required by law for interoperability), disassembly or decompilation of the programs;
    - disclose results of any program benchmark tests without our prior consent
    - disclose Confidential Information to any third party without our prior consent.
    Feedback
    Any Content that is provided to and Shared with Oracle relating to the programs shall be received and treated by Oracle on a non-confidential and unrestricted basis ("Feedback"), and Oracle shall have a worldwide, perpetual, royalty-free, irrevocable, nonexclusive, fully sublicensable license to use, reproduce, modify, adapt, translate, publish, publicly perform, publicly display, broadcast, transmit and distribute the Feedback for any purpose and in any form, medium, or technology now known or later developed. This includes, without limitation, the right to incorporate or implement the Feedback into any Oracle product or service, and to display, market, sublicense and distribute the Feedback as incorporated or embedded in any product or service distributed or offered by Oracle without compensation to you.
    Export
    You agree that U.S. export control laws and other applicable export and import laws govern your use of the programs, including technical data; additional information can be found on Oracle's Global Trade Compliance web site located at http://www.oracle.com/products/export/index.html?content/html. You agree that neither the programs nor any direct product thereof will be exported, directly, or indirectly, in violation of these laws, or will be used for any purpose prohibited by these laws including, without limitation, nuclear, chemical, or biological weapons proliferation.
    Disclaimer of Warranty and Exclusive Remedies
    THE PROGRAMS ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. WE FURTHER DISCLAIM ALL WARRANTIES, EXPRESS AND IMPLIED, INCLUDING WITHOUT LIMITATION, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT.
    IN NO EVENT SHALL WE BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, PUNITIVE OR CONSEQUENTIAL DAMAGES, OR DAMAGES FOR LOSS OF PROFITS, REVENUE, DATA OR DATA USE, INCURRED BY YOU OR ANY THIRD PARTY, WHETHER IN AN ACTION IN CONTRACT OR TORT, EVEN IF WE HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. OUR ENTIRE LIABILITY FOR DAMAGES HEREUNDER SHALL IN NO EVENT EXCEED ONE THOUSAND DOLLARS (U.S. $1,000).
    Trial Programs Included With Orders
    We may include additional programs with an order which may be used for trial purposes only. You will have 30 days from the delivery date to evaluate these programs. Any use of these programs after the 30 day trial period requires you to obtain the applicable license. Programs licensed for trial purposes are provided "as is" and we do not provide technical support or any warranties for these programs.
    No Technical Support
    Our technical support organization will not provide technical support, phone support, or updates to you for the programs licensed under this agreement.
    End of Agreement
    This agreement, and your right to use the programs, will be terminated: (i) automatically upon the release of production-release versions of the programs, in which case you shall destroy all copies of the programs; (ii) by you, by destroying all copies of the programs; or, (iii) by us if you fail to comply with any of the terms of this agreement, in which case you shall destroy all copies of the programs.
    Relationship Between the Parties
    The relationship between you and us is that of licensee/licensor. Neither party will represent that it has any authority to assume or create any obligation, express or implied, on behalf of the other party, nor to represent the other party as agent, employee, franchisee, or in any other capacity. Nothing in this agreement shall be construed to limit either party's right to independently develop or distribute software that is functionally similar to the other party's products, so long as proprietary information of the other party is not included in such software.
    Open Source
    "Open Source" software - software available without charge for use, modification and distribution - is often licensed under terms that require the user to make the user's modifications to the Open Source software or any software that the user 'combines' with the Open Source software freely available in source code form. If you use Open Source software in conjunction with the programs, you must ensure that your use does not: (i) create, or purport to create, obligations of us with respect to the Oracle programs; or (ii) grant, or purport to grant, to any third party any rights to or immunities under our intellectual property or proprietary rights in the Oracle programs. For example, you may not develop a software program using an Oracle program and an Open Source program where such use results in a program file(s) that contains code from both the Oracle program and the Open Source program (including without limitation libraries) if the Open Source program is licensed under a license that requires any "modifications" be made freely available. You also may not combine the Oracle program with programs licensed under the GNU General Public License ("GPL") in any manner that could cause, or could be interpreted or asserted to cause, the Oracle program or any modifications thereto to become subject to the terms of the GPL.
    Third Party Technology
    The Programs may contain third party technology. We may provide certain notices to you in program documentation or otherwise in connection with such third party technology. If you are permitted to distribute a Program, you agree to include with the distribution all such notices and any associated source code for third party technology as specified, in the form and to the extent such source code is provided by us. For clarity, the existence of a notice does not affect the terms under which third party technology is licensed to you.
    Third party technology will be licensed to you either under the terms of this agreement, or, if specified in the program documentation, readme files or otherwise in writing, under separate license terms ("Separate Terms") and not under the terms of this agreement ("Separately Licensed Third Party Technology"). Your rights to use such Separately Licensed Third Party Technology under the Separate Terms are not restricted or modified in any way by this agreement.
    Entire Agreement
    You agree that this agreement is the complete agreement for the programs and licenses, and this agreement supersedes all prior or contemporaneous agreements or representations. If any term of this agreement is found to be invalid or unenforceable, the remaining provisions will remain effective.
    Last updated: 08/26/10
    Should you have any questions concerning this License Agreement, or if you desire to contact Oracle for any reason, please write:
    Oracle America, Inc.
    500 Oracle Parkway,
    Redwood City, CA 94065
    Oracle may contact you to ask if you had a satisfactory experience installing and using this OTN software download.
    >
    which is different from http://download.oracle.com/docs/cd/E17781_01/license.112/e18068/toc.htm#BABHFGHA regarding production or commercial purposes.

    At first sight, I was surprised too, but after reading both terms thoroughly I came to the same conclusion that orafad posted above: The text you posted is entitled Oracle Technology Network Early Adopter License Terms. Of course, EA-Terms are different from the ones for the production release. To illustrate the example with software from another company: It was possible to download betas of Microsoft Windows "for free", but it was just for evaluation, testing and "early adopting" purposes, not for productive use. Similar rules apply here. The final release will definetly not be published with that EA License. Oracle has published a draft of the final terms so you get an idea of what you'll be allowed to do with the software you evaluate when it will be released.
    -Udo

  • Which URL to use to open a financial report from a Task list ?

    Hi,
    I've got a big issue in Hyperion Planning : I do not know which URL to use to open a financial report from a task list.
    If I use the Smartcut (given when you do a right-click on the report, then Properties), a tab is opening (normal behaviour), but another tab is opening under the tab, which is very ugly, and moreover which prevent from using the PDF/HTML display icons !
    Is someone know which URL to use to display correctly a financial report when opening it from a task list ?
    It's an emergency, please help !
    Thanks very much.
    Virgile.
    PS. : we use Internet Explorer 8 and we use 11.1.2.1 Hyperion Planning version
    Edited by: 808808 on Jan 5, 2012 3:41 AM

    Hi,
    OK, thanks, it almost works !!
    I've just a problem. 2 tabs are opening.
    One is opening correctly and displays my report. I can display it in PDF/HTML.
    But another tab is opening with this message : This window can now be closed since the application has been launched in a separate window. Note: Popup blockers may prevent this application from working properly.
    Do you know why this tab is opening ?
    Thanks very much for your help.
    Virgile.

  • HT5622 My wife and I have different Apple ID's and passwords but I want to share the music library which is on iCloud under my Apple ID.  How do I set her up to share the music library that exists in iCloud?

    My wife and I have different Apple ID's and passwords but I want to share our music library which is on iCloud under my Apple ID.  How do I set her up to share the music library that resides on the iCloud under my Apple ID?

    You would need to go to Settings>iTunes & App Store, tap her ID, sign out, then sign back in with your ID.  However, if she has turned on automatic downloads, download previous purchases or signed into an iTunes Match account using her current ID, she would have to wait 90 days from when she first did this to change to another ID.  She can, of course, sync your music to her device using iTunes without changing her ID association.

  • Why is the "From:" field being changed in Mac Mail.  I have multiple gmail accounts setup and it seems to change the "FROM" field even though I've selected which account to use to send the email.

    So
    I've got multiple gmail accounts setup in Mac Mail.
    Somtimes when I send or forward emails, it uses the wrong FROM field even though I'm declaring
    specifically which account to use.
    This becomes apparent when the person replies to my message and it goes to the wrong account

    Check you accounts in Mail and make sure each account has the correct outgoing server address. Check the box to use only that server.
    Second, go to the gmail website and in settings under the account tab, make sure you have the correct settings for replying to messages.

  • How to specify which cert to use for software virt server?

    Is there a way to specify which certificate to use for each software virtual server? So, for example a user hitting https://somewhere.com would get the certificate for somewhere.com while the virtual server https://somewhereelse.com would use the certifcate with the name somewhereelse.com in it?

    No, this is not possible due to limitations of the underlying protocols.
    HTTP requests are sent over TCP connections which deal with IP addresses and port numbers (i.e. hardware virtual server properties), not hostnames (i.e. software virtual server properties). The HTTP protocol adds software virtual server support by allowing a client to identify the hostname (e.g. "www.iplanet.com") of the server it wishes to communicate with. This is achieved by including a "Host:" header with each HTTP request.
    Unfortunately, the SSL/TLS protocols require that the web server present its SSL/TLS certificate BEFORE the client sends its HTTP request. Since the software virtual server information is contained in the HTTP request, it is not possible for the server to select different certificates for different software virtual servers.
    You will need to use hardware virtual servers (i.e. virtual servers that have different IP addresses and/or port numbers) if you wish to use distinct SSL/TLS certificates.

  • Parse xml using httpuritype

    Hi,
    I am trying to extract an xml document from a URL which, when i use "httpuri.getContentType()", it is returning "text/html" instead of "text/xml". Therefore, i could not use getXML() method to parse it into xmltype for processing. What other way can i parse it into an xmltype? Thanks for the help
    Regards
    vivian

    Are you sure that it is actually accessing the XML Document correctly. Can you check what httpuri.getclob() returns. If this is returning the document then you can do xmltype(httpuri.getClob()). If this is not returning the docuemnt then you probably need to configure http proxies correctly.

  • How to get the line in the template (smartform) with out using under score

    Hi,
         How to get the line in the template (smartform) with out using under score,
         and how to print the box (line the check box - small squre box (which is used ot mark the tick by the user in front of the item).
         Please provide the valueble answer as early as possible.
    Thanks,
    Ravi

    Hi Ravi,
    Line -
    Use a SMATSTYLE for this purpose.in the smartstyle create a paragraph or character with underline atribute.Then call the smartstyle in the text.
    Search SDN with Key <b>UNDERSCORE</b>.. will get few more posts on the same.
    For Checkbox - refer link
    Re: Quick Question on Smartforms
    Re: putting tick mark into check box in smartform
    Reward points if this Helps.
    Manish
    Message was edited by:
            Manish Kumar

Maybe you are looking for

  • How to register discoverer report

    Can some one tell me how to register discoverer report from scratch thanks in advance

  • Numlock key turning itself off

    In my office we have all received new computers with Microsoft 7 installed. I have a logitech keyboard and someone else uses a dell keyboard and we both have the same issue of our numlock keys turning themselves off. This is very frustrating as I use

  • Printing description of infotype 1002 in smartform

    Hi , We have a requirement to print the description of subtype of infotype  1002 in smartform . One alternative is to get data in itab and use loops . But do we have any better way some thing like include text or dynamic text . Thanks & Regards, Braj

  • IDCS3: PDF font embed issue, no answers anywhere!

    Help if you can. I'm using the font Dirty Headline in many of my layouts that require exporting to PDF. Substituting the font is not really an option at the time. I also don't want to keep outlining the font every time a chance is made. Here's the is

  • Memory management in jelly bean xperia tablet s and performance issues

    Most used apps are always in memory. while recent apps few remain in memory untill memory is full. this is how memory management is supose to work. pretty much same as windows 7 but if this true then why are games lagging ? http://www.youtube.com/wat