error: cannot find symbol when call JAXB class's methods with Cyrillic symbol












0















I have an XSD schema with a mistake - in one method first symbol in utf-8 'с'



<xsd:attribute name="сreationDate" type="xsd:dateTime" use="required">


I generate Java classes from this XSD. But when I call this method in project for example:



quittanceType.setСreationDate(stringToXMLGregorianCalendar(new Date));


My project does not compile and I get error:




error: cannot find symbol




    quittanceType.setСreationDate(stringToXMLGregorianCalendar(paymentsToCharge.getCreationDateStr()));
^
symbol: method setСreationDate(XMLGregorianCalendar)
location: variable quittanceType of type QuittanceType


But on Macbook this project compiles successfully. What should I do? Everything seems to be normal encodings.










share|improve this question

























  • Note that sticking to ASCII method names is probably better, see the discussion here : stackoverflow.com/questions/61615/…

    – Arnaud
    Nov 22 '18 at 14:33













  • I know actually. You should not think that I took and specially wrote one character in another encoding. I got such a scheme, and it's too late to correct the symbol. And I have no right to do it.

    – ip696
    Nov 22 '18 at 14:43
















0















I have an XSD schema with a mistake - in one method first symbol in utf-8 'с'



<xsd:attribute name="сreationDate" type="xsd:dateTime" use="required">


I generate Java classes from this XSD. But when I call this method in project for example:



quittanceType.setСreationDate(stringToXMLGregorianCalendar(new Date));


My project does not compile and I get error:




error: cannot find symbol




    quittanceType.setСreationDate(stringToXMLGregorianCalendar(paymentsToCharge.getCreationDateStr()));
^
symbol: method setСreationDate(XMLGregorianCalendar)
location: variable quittanceType of type QuittanceType


But on Macbook this project compiles successfully. What should I do? Everything seems to be normal encodings.










share|improve this question

























  • Note that sticking to ASCII method names is probably better, see the discussion here : stackoverflow.com/questions/61615/…

    – Arnaud
    Nov 22 '18 at 14:33













  • I know actually. You should not think that I took and specially wrote one character in another encoding. I got such a scheme, and it's too late to correct the symbol. And I have no right to do it.

    – ip696
    Nov 22 '18 at 14:43














0












0








0








I have an XSD schema with a mistake - in one method first symbol in utf-8 'с'



<xsd:attribute name="сreationDate" type="xsd:dateTime" use="required">


I generate Java classes from this XSD. But when I call this method in project for example:



quittanceType.setСreationDate(stringToXMLGregorianCalendar(new Date));


My project does not compile and I get error:




error: cannot find symbol




    quittanceType.setСreationDate(stringToXMLGregorianCalendar(paymentsToCharge.getCreationDateStr()));
^
symbol: method setСreationDate(XMLGregorianCalendar)
location: variable quittanceType of type QuittanceType


But on Macbook this project compiles successfully. What should I do? Everything seems to be normal encodings.










share|improve this question
















I have an XSD schema with a mistake - in one method first symbol in utf-8 'с'



<xsd:attribute name="сreationDate" type="xsd:dateTime" use="required">


I generate Java classes from this XSD. But when I call this method in project for example:



quittanceType.setСreationDate(stringToXMLGregorianCalendar(new Date));


My project does not compile and I get error:




error: cannot find symbol




    quittanceType.setСreationDate(stringToXMLGregorianCalendar(paymentsToCharge.getCreationDateStr()));
^
symbol: method setСreationDate(XMLGregorianCalendar)
location: variable quittanceType of type QuittanceType


But on Macbook this project compiles successfully. What should I do? Everything seems to be normal encodings.







java encoding xsd jaxb






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 22 '18 at 21:42









Thomas Fritsch

5,336122133




5,336122133










asked Nov 22 '18 at 14:27









ip696ip696

1,24321238




1,24321238













  • Note that sticking to ASCII method names is probably better, see the discussion here : stackoverflow.com/questions/61615/…

    – Arnaud
    Nov 22 '18 at 14:33













  • I know actually. You should not think that I took and specially wrote one character in another encoding. I got such a scheme, and it's too late to correct the symbol. And I have no right to do it.

    – ip696
    Nov 22 '18 at 14:43



















  • Note that sticking to ASCII method names is probably better, see the discussion here : stackoverflow.com/questions/61615/…

    – Arnaud
    Nov 22 '18 at 14:33













  • I know actually. You should not think that I took and specially wrote one character in another encoding. I got such a scheme, and it's too late to correct the symbol. And I have no right to do it.

    – ip696
    Nov 22 '18 at 14:43

















Note that sticking to ASCII method names is probably better, see the discussion here : stackoverflow.com/questions/61615/…

– Arnaud
Nov 22 '18 at 14:33







Note that sticking to ASCII method names is probably better, see the discussion here : stackoverflow.com/questions/61615/…

– Arnaud
Nov 22 '18 at 14:33















I know actually. You should not think that I took and specially wrote one character in another encoding. I got such a scheme, and it's too late to correct the symbol. And I have no right to do it.

– ip696
Nov 22 '18 at 14:43





I know actually. You should not think that I took and specially wrote one character in another encoding. I got such a scheme, and it's too late to correct the symbol. And I have no right to do it.

– ip696
Nov 22 '18 at 14:43












1 Answer
1






active

oldest

votes


















0














You should better specify the Java property name using binding file.



<jaxb:bindings
version="1.0"
xmlns:jaxb="http://java.sun.com/xml/ns/jaxb"
xmlns:xs="http://www.w3.org/2001/XMLSchema">

<jaxb:bindings
schemaLocation=".../myschema.xsd"
node="/xs:schema">

<jaxb:bindings node="xs:complexType[@name='SomeType']/xs:attribute[@name='сreationDate']">
<jaxb:property name="creationDate"/>
</jaxb:bindings>
</jaxb:bindings>

</jaxb:bindings>


I'd also notified the schema authors - in case they would want to correct this.






share|improve this answer























    Your Answer






    StackExchange.ifUsing("editor", function () {
    StackExchange.using("externalEditor", function () {
    StackExchange.using("snippets", function () {
    StackExchange.snippets.init();
    });
    });
    }, "code-snippets");

    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "1"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53433099%2ferror-cannot-find-symbol-when-call-jaxb-classs-methods-with-cyrillic-symbol%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    You should better specify the Java property name using binding file.



    <jaxb:bindings
    version="1.0"
    xmlns:jaxb="http://java.sun.com/xml/ns/jaxb"
    xmlns:xs="http://www.w3.org/2001/XMLSchema">

    <jaxb:bindings
    schemaLocation=".../myschema.xsd"
    node="/xs:schema">

    <jaxb:bindings node="xs:complexType[@name='SomeType']/xs:attribute[@name='сreationDate']">
    <jaxb:property name="creationDate"/>
    </jaxb:bindings>
    </jaxb:bindings>

    </jaxb:bindings>


    I'd also notified the schema authors - in case they would want to correct this.






    share|improve this answer




























      0














      You should better specify the Java property name using binding file.



      <jaxb:bindings
      version="1.0"
      xmlns:jaxb="http://java.sun.com/xml/ns/jaxb"
      xmlns:xs="http://www.w3.org/2001/XMLSchema">

      <jaxb:bindings
      schemaLocation=".../myschema.xsd"
      node="/xs:schema">

      <jaxb:bindings node="xs:complexType[@name='SomeType']/xs:attribute[@name='сreationDate']">
      <jaxb:property name="creationDate"/>
      </jaxb:bindings>
      </jaxb:bindings>

      </jaxb:bindings>


      I'd also notified the schema authors - in case they would want to correct this.






      share|improve this answer


























        0












        0








        0







        You should better specify the Java property name using binding file.



        <jaxb:bindings
        version="1.0"
        xmlns:jaxb="http://java.sun.com/xml/ns/jaxb"
        xmlns:xs="http://www.w3.org/2001/XMLSchema">

        <jaxb:bindings
        schemaLocation=".../myschema.xsd"
        node="/xs:schema">

        <jaxb:bindings node="xs:complexType[@name='SomeType']/xs:attribute[@name='сreationDate']">
        <jaxb:property name="creationDate"/>
        </jaxb:bindings>
        </jaxb:bindings>

        </jaxb:bindings>


        I'd also notified the schema authors - in case they would want to correct this.






        share|improve this answer













        You should better specify the Java property name using binding file.



        <jaxb:bindings
        version="1.0"
        xmlns:jaxb="http://java.sun.com/xml/ns/jaxb"
        xmlns:xs="http://www.w3.org/2001/XMLSchema">

        <jaxb:bindings
        schemaLocation=".../myschema.xsd"
        node="/xs:schema">

        <jaxb:bindings node="xs:complexType[@name='SomeType']/xs:attribute[@name='сreationDate']">
        <jaxb:property name="creationDate"/>
        </jaxb:bindings>
        </jaxb:bindings>

        </jaxb:bindings>


        I'd also notified the schema authors - in case they would want to correct this.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 23 '18 at 21:23









        lexicorelexicore

        31.4k883155




        31.4k883155
































            draft saved

            draft discarded




















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53433099%2ferror-cannot-find-symbol-when-call-jaxb-classs-methods-with-cyrillic-symbol%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Xamarin.iOS Cant Deploy on Iphone

            Glorious Revolution

            Dulmage-Mendelsohn matrix decomposition in Python