Inventing a new tag in XML

hi,
i m a beginer for the xml and my question is that if we r adding our own tag that how the DTD or XSL(XML schema language) is approve that tag.And we r not design any dtd for our tag.
in short how can i invent the tag in my XML file.
plz give me a brief answer.
bye....

XML is flexible. You can make ANY tag you want. Just make it and when you parse the XML file, check for it. The DTD is there as an added constraint to make sure that the XML file contains ONLY the tags you approve. But if no DTD is setup, you can make any tag you want.

Similar Messages

  • Append new tag in xml schema

    Hi,
               I have created a local varibale and stored my xml schema (xml structure) in it. I am using a sql query to fetch the records from databae and populating it to the schema using Assignment action block. But I have a requirement that one of the tag in the xml schema should be added dynamicaly according to the result of the query. Can anyone help me on this? . In the Linktype I saw one option as Append xml. How can we use that option
    Please let me know if you have any thoughts on this
    Thanks in advance
    Shaji

    Hi Shaji,
    Please find the below link: It explains all the XML functions in MII Workbench.
    http://wbhelp.sap.com/manufacturing/xmii_120/en/44/7ca00d32406572e10000000a11466f/content.htm
    "Calculated Columns" can be useful here as per your requirements.
    For help on Link Types, go through the following link:
    http://wbhelp.sap.com/manufacturing/xmii_120/en/44/89aa7088cc6fb5e10000000a155369/content.htm
    Hope this will help you.
    Best regards,
    Kedar

  • New tag in PO XML with SRM 4.0

    Hello, I need to create a new tag in the xml structure which is generated from Process Purchase Order-> Header Data -> Output -> Order and Send Inmediately.
    It is possible to create a new tag?
    I have created a badi implementation of BBP_SAPXML1_OUT_BADI in order to change XML, but, this implementation is never processed.
    Thanks in advance.

    Hi Rav,
    I guess you have extended classic scenario.
    In this case please use the function module BBP_PD_PO_TRANSFER_EXEC_V2.
    This function module calls the plugin BBP_PO_INBOUND of the R/3 backend via RFC for updating the PO changes (or at the first time during the PO creation).
    Regards,
    Peter

  • How to Include html tag in xml

    Hi,
    Is there any way to include html tags in xml?
    For Example, I'm using xsl to get the value of FIELD_1 from fetch.xml
    In fetch.xml, I have the tag
    <FIELD_1>
    <font color='#8080ff'>&#160;<font face='Times New Roman, Times' size='28'>Testing font and color</font></font>
    </FIELD_1>
    But If I tried to read the value from xsl like <xsl:value-of select="FIELD_1"/> I'm just gettig the display 'Testing font and color' without the specified font and color....
    How to achieve this?
    Thanks
    Selva.

    Hi,
    Thanks for the input.
    I tried with the below code
    <fo:block space-after="5mm" font-family="Arial"><xsl:copy-of select="FIELD_1"/></fo:block>
    But I'm getting the below error...
    "An invalid XML character (Unicode: 0xa0) was found in the element content of the document."
    Below is the code included in the xsl....
    <?xml version="1.0" encoding="utf-8"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format">
    <xsl:output method="xml" indent="yes"/>
    <xsl:template match="Values"><fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
    <fo:layout-master-set>
    <fo:simple-page-master master-name="simpleA4" page-height="29.7cm" page-width="21cm" margin-top="3cm" margin-bottom="2cm" margin-left="2cm" margin-right="2cm">
    <fo:region-body/>
    </fo:simple-page-master>
    </fo:layout-master-set>
    <fo:page-sequence master-reference="simpleA4">
    <fo:flow flow-name="xsl-region-body">
    <fo:block space-after="5mm" font-family="Arial"><xsl:copy-of select="FIELD_1"/></fo:block>
    </fo:flow> </fo:page-sequence> </fo:root> </xsl:template></xsl:stylesheet>
    Is there any mistakes in the above code?
    Regards,
    Selva.

  • OIM 11g: Adding a new tag to notification template

    Hi:
    OIM 11g comes with some pre-defined notification templates, like 'Generated Password Template', 'Reset Password Template'.
    You can see those thru the admin console, System Management, Notifications.
    I would like to add a new Tag to one of those notifications, like 'Generated Password'. It currently includes the User Login and Password. I would like to include the User Name to the notification Body.
    Can I do this?? How can I accomplish this??
    I try to edit the template, and in the documentation, they mention the Event Name and Available variables. I don't see this 'Available Variables' to select from when I edit the notification template.
    I am using OIM 11g 11.1.1.5.
    Thank you for your help..

    Modify the OOTB notification Template for including a few extra attributes
    -Identify the template and the event type which you want to modify. For example let’s assume we will modify the OOTB ‘Request Creation’, the corresponding xml for this event type is in the following MDS path:
    \metadata\iam-features-request\notification\RequestCreationEvent.xml
    Note: The path as specified in the OIM11G documentation might be incorrect
    -Modify this xml to point to a custom resolver class as follows:
    <?xml version='1.0' encoding='UTF-8'?>
    <Events xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../notification/metadata/NotificationEvent.xsd">
    <EventType name="RequestCreation">
    <Resolver class="com.iam.notification.CustomNotificationResolver">
    <Param Name="Request" DataType="X2-Entity" EntityName="Request"/>
    </Resolver>
    </EventType>
    </Events>-Import the xml back to the MDS database
    -Create a jar (custom resolver class) and a plugin.xml, bundle them up as a zip and register the plug-in using ‘ant/API’s’ as you want
    -Modify the OOTB notification templates as required
    -Send email to verify if your changes are being reflected
    You can create your own customized templates based on the OOTB one but the ‘Resolver Class’ would not be able to pick up this new template because the only purpose of the resolver class is to override a couple of methods (‘getAvailableData’ & ‘getReplacedData’), so that you can add some extra attributes to be read in your template, but the ‘Template Name’ remains the same as it is hard-coded.
    import java.util.HashMap;
    import java.util.List;
    import java.util.Map;
    import oracle.iam.notification.impl.NotificationEventResolver;
    import oracle.iam.notification.vo.NotificationAttribute;
    public class CustomNotificationResolver implements NotificationEventResolver {
         public List<NotificationAttribute> getAvailableData(String eventType, Map<String, Object> params) throws Exception {
              return null;
         public HashMap<String, Object> getReplacedData(String eventType, Map<String, Object> params) throws Exception {
              HashMap<String, Object> resolvedData = new HashMap<String, Object>();
             resolvedData.put("requestId", params.get("RequestId"));
             resolvedData.put("requestType", params.get("RequestType"));
             resolvedData.put("userId", params.get("UserId"));
             resolvedData.put("userName", params.get("Name"));
             resolvedData.put("baseUrl", params.get("BaseURL"));
             resolvedData.put("myCustomField1", "myCustomField1");
             resolvedData.put("myCustomField2", "myCustomField2");
             resolvedData.put("myCustomField3", "myCustomField3");
              return resolvedData;
    }Credits to Sunny for coming up with the solution. Since he seems busy, I took the liberty of posting his solution here.
    HTH,
    BB

  • How can we get  tag of XML file using SAX

    Hi ,
    I'm parsing one SAX parser , I'have almost done this parsing. i have faced problem for one case, i'e how can we get tag from XML file using SAX parser?
    XML file is
    <DFProperties>
    <AccessType>
    <Get/>
    </AccessType> <Description>
    gdhhd
    </Description>
    <DFFormat>
    <chr/>
    </DFFormat>
    <Scope>
    <Permanent/>
    </Scope>
    <DFTitle>gsgd</DFTitle>
    <DFType>
    <MIME>text/plain</MIME>
    </DFType>
    </DFProperties>
    I want out like GET and Permanent... means this one tag which is present inside of another tag.
    Handler class like
    public void startElement(String namespaceURI, String localName,
                   String qName, Attributes atts) throws SAXException {
    if(_ACCESSTYPE.equals(localName)){
                   accessTypeElement=ACCESSTYPE;
    public void characters(char[] ch, int start, int length)
                   throws SAXException {
    if (_ACCESSTYPE.equals(_accessTypeElement)) {
                   String strValue = new String(ch, start, length);
                   System.out.println("Accestype-----------------------------> " + strValue);
                   //System.out.println(" " + strValue);
    public void endElement(String namespaceURI, String localName, String qName)
                   throws SAXException {
    if (_ACCESSTYPE.equals(localName)) {
                   _accessTypeElement = "";
    . please any body help me

    Hi ,
    I have one problem,Please help me.
    1. How can I'll identify where exactly my Node is ended,means how how can we find corresponding nodename? in partcular place
    <Node> .............starttag1
    <NodeName>Test</NodeName>
    <Node>................starttag2
    <nodeName>test1</NodeName>
    </Node>..................endtag2
    <Node>.....................starttag3
    <NodeName><NodeName>
    <Node> .........................starttag4
    <NodeName>test4</NodeName>
    </Node>.......enddtag4
    </Node>...........end tag3
    </Node>............endtag1
    my code is below
    private final String _NODENAME = "NodeName";
    private final String _NODE = "Node";
    private String _nodeElement = "";
         private String _NodeNameElement = "";
    public void startElement(String namespaceURI, String localName,
                   String qName, Attributes atts) throws SAXException {
    if (_NODENAME.equals(localName)) {
                   NodeNameElement = NODENAME;
    if(_NODE.equals(localName)){
         System.out.println("start");
         if (_NODENAME.equals(localName)) {
                   NodeNameElement = NODENAME;
    public void characters(char[] ch, int start, int length)
                   throws SAXException {
    if (_NODENAME.equals(_NodeNameElement)) {
                   String strValue = new String(ch, start, length);
                   String sttt=strValue;
                   System.out.println("NODENAME: ************* " + strValue);
    if(_NODE.equals(_nodeElement)){
                   if (_NODENAME.equals(_NodeNameElement)) {
                        String strValue = new String(ch, start, length);
                        String sttt=strValue;
                        System.out.println("nodevalue********** " + strValue);
    public void endElement(String namespaceURI, String localName, String qName)
                   throws SAXException {
    if (_NODENAME.equals(localName)) {
                   _NodeNameElement = "";
    if(_NODE.equals(localName)){
                   System.out.println("NODENAME: %%%%%%%%%");
    please help me. How can I figure node ending for particular nodename

  • How to apply multiple styles for nested tags in XML?

    Say you import this XML into InDesign:
    <Root>
      <strong>
        <em>Bolded and Italicized</em>
      </strong>
    </Root>
    And you have two character styles, bold and italics, to map to strong and em tags respectively.
    You will see that the text appears italicized not bolded and italicized as expected. Generally, only the innermost tag will get the style and will overwrite its parent styles.
    Notice the XML is generated dynamically and tags order is not enforced. Also, there's an additional underline tag that can be nested with these two.
    So far I have tried to use GREP styles (with paragraph styles), but these do not have effect in the XML tags.
    Other possible options not tried yet:
    Create new tags for every formatting combination. Not what I really want because I could en up with a lot of tags each one with a corresponding styles.
    Create InDesign XML rules to apply character styles automatically based on the tags
    Use character styles in the XML with the aid namespace referencing InDesign styles. Will this really work?
    What do you suggest to go for? See any other option?
    Thank you in advance.
    Juan

    I'd say that you should create tags not for appearances, but for semantic content. Specifying formatting styles in your XML betrays your lack of familiarity with the format, because the last thing you'd want to do would be to use HTML markup in the middle of your XML. If you have content that's supposed to be both bolface and oblique - say, a warning - then it's marked up as
    <warning>Never refer directly to formatting in your XML markup, only to content types!</warning>
    If I had a document that was written in the style you suggest - one with lots of overlapping local formatting - I'd look at developing a better style guide that told the writers that doing so would be bad form. Because, you know, many of the writers I deal with are addicted to forms of emphasis that do nothing useful whatsover for their readership - they only serve to overemphasize the authorial voice of the writers.
    Maybe you could tell us why you need these overlapping forms of styling, and we could suggest other InDesign formatting tools (like line styles or nested styles) that would help you get the appearance you want without crowding styling markup into your XML - where, strictly speaking, it doesn't really belong.

  • Changing data in XML variable and appending tags in XML  document

    Hi all,
    I am new to weblogic Integrator . can any one help me concerning following problem
    1. I get input XML message to my workflow which I stores in XML variable. after
    some processing i want to change value of one tag in XML stored in XML variable.
    How I can do thaat ?
    2. I have some XML like
    <root>
    <child>
    <a> </A>
    </child>
    <child>
    </child>
    </root>
    and i want to append multiple such tag at run time . how i can do the same
    in wli
    Please let me know your suggestion
    Kiran

    For both cases I suggest you use XSLT.
    Mike
    "Kiran" <[email protected]> wrote in message
    news:3c720cd2$[email protected]..
    >
    Hi all,
    I am new to weblogic Integrator . can any one help me concerning followingproblem
    1. I get input XML message to my workflow which I stores in XML variable.after
    some processing i want to change value of one tag in XML stored in XMLvariable.
    How I can do thaat ?
    2. I have some XML like
    <root>
    <child>
    <a> </A>
    </child>
    <child>
    </child>
    </root>
    and i want to append multiple such tag at run time . how i can do thesame
    in wli
    Please let me know your suggestion
    Kiran

  • Search for a tag in xml and modify the content

    Hi,
    I am quite new to using xml db and i want to know how to search a xml, modify a tag value inside xml and replace the content in xml.
    Please help me to find a solution for this.
    Regards,
    Sprightee

    Hi,
    First important thing : give your database version (SELECT * FROM v$version).
    Please also provide some sample data :
    - a typical XML document you're working with (or abridged version)
    - explain what change(s) you want to do, or give expected output
    - if you're using a table to store the XML (which is preferred), give the DDL

  • Ignore DOCTYPE tag in xml

    Hi!,
    I need to remove DOCTYPE tag from the xml file. The parser is trying to validate the DTD. I do not want to validate, I just want to parse. I could not find any documentation on how this can be done. if any one of you have done this please let me know how you have managed to ignore the DOCTYPE tag.
    Regards

    Here is one way to do it:
    Example taglib DOCTYPE:
    <!DOCTYPE taglib
    PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.2//EN"
    "http://java.sun.com/dtd/web-jsptaglibrary_1_2.dtd">
    Example Code:
    // Get your parser, then set its EntityResolver to your own custom er.
    parser.setEntityResolver(new EntityResolver()
    public InputSource resolveEntity(String publicId, String systemId)
    if ("-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.2//EN".equals(publicId))
    return new InputSource(
    new ByteArrayInputStream("<?xml version='1.0' encoding='UTF-8'?>".getBytes()));
    else
    return null;
    });

  • STRIP tag in XML Generator

    We are  creating xml files from RDBMS, for that we are using XML generator .  we  imported dtd file for creating  XML generator  but we are getting some tag with name  'STRIP' .  i dont know what is this tag , i am new to this XMl files generation can any one give some useful info  about this. The flow in informatica is:  SOURCE----->XML GENERATOR----->MQ series(Target)  Thanks,Srinadh.

    인계동 QIQ-9529-1551 수원출장안마 ‡ 수원출장마사지 영통출장안마]인계동 QIQ-9529-1551 수원출장안마 ‡ 수원출장마사지 영통출장안마]인계동 QIQ-9529-1551 수원출장안마 ‡ 수원출장마사지 영통출장안마]인계동 QIQ-9529-1551 수원출장안마 ‡ 수원출장마사지 영통출장안마]인계동 QIQ-9529-1551 수원출장안마 ‡ 수원출장마사지 영통출장안마]인계동 QIQ-9529-1551 수원출장안마 ‡ 수원출장마사지 영통출장안마]인계동 QIQ-9529-1551 수원출장안마 ‡ 수원출장마사지 영통출장안마]인계동 QIQ-9529-1551 수원출장안마 ‡ 수원출장마사지 영통출장안마]인계동 QIQ-9529-1551 수원출장안마 ‡ 수원출장마사지 영통출장안마]인계동 QIQ-9529-1551 수원출장안마 ‡ 수원출장마사지 영통출장안마]인계동 QIQ-9529-1551 수원출장안마 ‡ 수원출장마사지 영통출장안마]인계동 QIQ-9529-1551 수원출장안마 ‡ 수원출장마사지 영통출장안마]인계동 QIQ-9529-1551 수원출장안마 ‡ 수원출장마사지 영통출장안마]인계동 QIQ-9529-1551 수원출장안마 ‡ 수원출장마사지 영통출장안마]인계동 QIQ-9529-1551 수원출장안마 ‡ 수원출장마사지 영통출장안마]인계동 QIQ-9529-1551 수원출장안마 ‡ 수원출장마사지 영통출장안마]인계동 QIQ-9529-1551 수원출장안마 ‡ 수원출장마사지 영통출장안마]인계동 QIQ-9529-1551 수원출장안마 ‡ 수원출장마사지 영통출장안마]인계동 QIQ-9529-1551 수원출장안마 ‡ 수원출장마사지 영통출장안마]인계동 QIQ-9529-1551 수원출장안마 ‡ 수원출장마사지 영통출장안마]인계동 QIQ-9529-1551 수원출장안마 ‡ 수원출장마사지 영통출장안마]인계동 QIQ-9529-1551 수원출장안마 ‡ 수원출장마사지 영통출장안마]인계동 QIQ-9529-1551 수원출장안마 ‡ 수원출장마사지 영통출장안마]인계동 QIQ-9529-1551 수원출장안마 ‡ 수원출장마사지 영통출장안마]인계동 QIQ-9529-1551 수원출장안마 ‡ 수원출장마사지 영통출장안마]인계동 QIQ-9529-1551 수원출장안마 ‡ 수원출장마사지 영통출장안마]인계동 QIQ-9529-1551 수원출장안마 ‡ 수원출장마사지 영통출장안마]인계동 QIQ-9529-1551 수원출장안마 ‡ 수원출장마사지 영통출장안마]인계동 QIQ-9529-1551 수원출장안마 ‡ 수원출장마사지 영통출장안마]인계동 QIQ-9529-1551 수원출장안마 ‡ 수원출장마사지 영통출장안마]인계동 QIQ-9529-1551 수원출장안마 ‡ 수원출장마사지 영통출장안마]인계동 QIQ-9529-1551 수원출장안마 ‡ 수원출장마사지 영통출장안마]인계동 QIQ-9529-1551 수원출장안마 ‡ 수원출장마사지 영통출장안마]인계동 QIQ-9529-1551 수원출장안마 ‡ 수원출장마사지 영통출장안마]인계동 QIQ-9529-1551 수원출장안마 ‡ 수원출장마사지 영통출장안마]인계동 QIQ-9529-1551 수원출장안마 ‡ 수원출장마사지 영통출장안마]인계동 QIQ-9529-1551 수원출장안마 ‡ 수원출장마사지 영통출장안마]인계동 QIQ-9529-1551 수원출장안마 ‡ 수원출장마사지 영통출장안마]인계동 QIQ-9529-1551 수원출장안마 ‡ 수원출장마사지 영통출장안마]인계동 QIQ-9529-1551 수원출장안마 ‡ 수원출장마사지 영통출장안마]인계동 QIQ-9529-1551 수원출장안마 ‡ 수원출장마사지 영통출장안마]인계동 QIQ-9529-1551 수원출장안마 ‡ 수원출장마사지 영통출장안마]인계동 QIQ-9529-1551 수원출장안마 ‡ 수원출장마사지 영통출장안마]

  • Insert new tags after root element

    Hi,
    I'm trying to insert new tags immediately after the root element in a DOM tree. The data to be inserted is being passed to the program as a string parameter. I've used Dom4J to add the data as a new element immediatelty after the root. Problem is, I'm not able to extract the content as a String from the document object. Here's my sample code :
    String addStr = "<div class=\"test2\">Test Val1</div><div class=\"test2\">Test Val2</div>";
    SAXReader reader = new SAXReader();
    String xml = "<div class=\"discussionThread dt\"><div class=\"dt_subject\">2011 IS HERE!</div></div>";
    Document document = reader.read(new StringReader(xml));
    DefaultElement newElement = new DefaultElement("div");
    newElement.addAttribute("class", "test");
    newElement.add(new DefaultText(addStr));
    List content = document.getRootElement().content();
    if (content != null ) {
            content.add(0, newElement);
    }There are couple of issues with this approach.
    1. I'm not able to find a way to convert the Document object content to String. The only API reference is asXML() which converts the document to a xml and sends it back as String. As a result of this, it adds a <xml> tag at the top.Also,the content within the added String has been parsed and converted to &gt; , &lt;
    Here's the output
    <?xml version="1.0" encoding="UTF-8"?>
    <div class="discussionThread dt"><div class="test">&lt;div class="test2"&gt;Test Val1&lt;/div&gt;&lt;div class="test2"&gt;Test Val2&lt;/div&gt;</div><div class="dt_subject">2011 IS HERE!</div></div>Just wanted to know if there's a better way to do this. Any pointers will be highly appreciated.
    -Thanks

    from oracle documentation...
    Old and new values are available in both BEFORE and AFTER row triggers. A new column value can be assigned in a BEFORE row trigger, but not in an AFTER row trigger (because the triggering statement takes effect before an AFTER row trigger is fired). If a BEFORE row trigger changes the value of new.column, then an AFTER row trigger fired by the same statement sees the change assigned by the BEFORE row trigger.
    for more details read the documentation

  • Creating new Tags with HTMLEditorKit

    Hello,
    I have an HTMLEditorKit and I want it to recognize the HTML tags + some new tags I've created (which contains some attributes).
    1. Is it possible ?
    2. How ?
    I've read the API, and found something about an HTML parser and a SGML DTD. There's a mthode like defElement(String name, int type, boolean omitStart, boolean omitEnd, ContentModel content, String[] exclusions, String[] inclusions, AttributeList atts) but I can't find any example how to use it. And I don't know if it's really the best way to do so.
    I'm not using XML because I need to have, in the same document, the bold, italic, table, etc tags, and my new tags. And some are overlapping... (like <b>aa<tag>ccc</b>ggg</tag> )
    Bastet

    Overlapping of tags is a really bad thing to do. There is also no need to do it.
    <b>Some bold<i> some bold Italic</b> some Italic</i> is -bad-. Better to do the following as it is much clearer and also correct.
    <b>Some bold<i> some bold Italic</i></b><i> some Italic</i>.
    As for the rest, search on google for the method call, find a book on the subject.

  • How can I create a new Tag in Finder?

    Can somebody explain how to create a new Tag in Finder? Thank you very much

    If you right-click on the file you want to add the tag to you get this menu:
    Select "Tags..." and you get:
    Just type the new tag name in the box at the top.

  • Is there a way to "create" new tags?

    I had accidentally deleted my "Red" tag and i no longer see the "All Tags" option in Finder. I just want to make a new tag.

    Well I tested this out...
    I deleted a tag, it gave me the warning that this action can't be undone.
    However, I was able to get it back. Granted the files/documents that this tag reprecented had they're link broken and probably wouldn't be restore once I got the tag back. (Didn't test that part).
    So if a tag is deleted for any reason.
    Open Finder.
    Click on Documents (or something that will allow you to click on "Edit Tags".
    Click on Edit Tags and start typing a color in the field provided.
    Press Enter and the color should reappear in the list.
    For me, I deleted Green. Typed in Green press Enter and the Green tag reappeared.
    KOT

Maybe you are looking for

  • Missing warnings while using softproofing ?

    First, congratulations for all the new or enhanced features ! Especially the softproofing function is great : the histogramm is now showing what is happening in the destination color space. My question is about the warnings on the image while using s

  • Difference Vendor user and Normal application user

    Hi I need to know what is the difference between the Vendor user and Normal Application user in R12. Could you please tell me any difference or the reference link as soon as possible. Thanks Vivek

  • RH9 HTML: Publishing Deleted ALL Content from ALL Topics

    All, One of my writers was working in a large RH9 HTML file yesterday as per usual, doing nothing out of the ordinary. When he published the WebHelp and Printed Documentation, the results were blank... all topics had no content. When looking in the P

  • Quicktime Error 2330 during Itunes and Quicktime Installation

    Whenever I try to install Itunes or Quicktime the Erro 2330 pops up and says ProgramFiles/QTSystem/QuicktimeMPEG4Authoring.Resources/no.lproj I tried to uninstall Quicktime with the same error along with another number Error 1603. I downloaded the Wi

  • Trying to download Illustrator CC, it tells me to sign in, then immediately signs me out???

    I just purchased the monthly Ilustrator CC subscription.  I already installed it, then when I go to open it in my download files, it tells me to sign in.  When I sign in, it immediately signs me out every time. Don't know what the problem is or how t