WSDL  problem !!

Hi,
I am creating the Web service Callable object and my WSDL url is:
http://www.webservicex.net/WeatherForecast.asmx?WSDL
But when i enter this url, i am getting this error:
Could not load WSDL:  GenericServiceFactory initialization problem when trying to load Web service model for WSDL: http://www.webservicex.net/WeatherForecast.asmx?WSDL
Please if anyone can help me,
Help will be highly appreciated.
Thanks in advance
regards,
Ameya

Hi,
I ahbe set the proxy in webcontainer in configtool,Is there any other thing i need to do?But please tell me what does the error means,<b>GenericServiceFactory error</b>?
waiting for your reply,
Regards,
Ameya

Similar Messages

  • Web service wsdl problem

    I have a very simple web service cfc file that uses another cfc component in the returntype. Both cfc files are on the same directory in the server. It fails to register (wsdl) on the CF server. If I change the returntype of the web service call to "any" it would work. Anyone has any idea? Below is the code:
    authentication_wsapi.cfc
        <cfcomponent>
          <cffunction name="getManagers"
                  access="remote"
                  returntype="User"
                  output="no">
                <cfobject component="User" name="ret">
                <cfreturn ret>
          </cffunction>
        </cfcomponent>
    User.cfc
        <cfcomponent>
          <cfproperty name="loginName" type="string">
        </cfcomponent>
    url to test:
    http://wsapi.my.com/authentication_wsapi.cfc?wsdl
    Error I got:
    AXIS error
    Sorry, something seems to have gone wrong... here are the details:
    Exception - java.lang.NoClassDefFoundError: user
    java.lang.NoClassDefFoundError: user
        at java.lang.Class.getDeclaredMethods0(Native Method)
        at java.lang.Class.privateGetDeclaredMethods(Class.java:2427)
        at java.lang.Class.getDeclaredMethod(Class.java:1935)
        at org.apache.axis.description.JavaServiceDesc.loadServiceDescByIntrospection(JavaServiceDes c.java:863)
    If I modify authentication_wsapi.cfc as below (only difference is the returntype) it will work:
            <cfcomponent>
          <cffunction name="getManagers"
                  access="remote"
                  returntype="any"                        <----- changed from "User" to "any"
                  output="no">
                <cfobject component="User" name="ret">
                <cfreturn ret>
          </cffunction>
        </cfcomponent>
    It seems authentication_wsapi.cfc can not see the User.cfc on the same dir. BUT the "cfobject" call to create the User component is not complaining though. Any help will be apprecriated!

    bkbk,
    I tried as you suggested and found some interesting things, but problem still exists...
    I created the test.cfm page as you suggested:
    test.cfm
    <cftry>
    <cfobject component="User" name="testUser">
    <cfobject component="authentication_wsapi" name="wsapi">
    <cfcatch type="any">
       <cfdump var="#cfcatch#">
       <cfabort>
    </cfcatch>
    </cftry>
    Done creating.
    and hit it at url:
    http://wsapi.my.com/test.cfm
    There was no error, it shows "Done creating.".
    Just to make sure, I modified my authentication_wsapi.cfc to be:
    authentication_wsapi.cfc
        <cfcomponent>
          <cffunction name="getManagers"
                  access="remote"
                  returntype="User_non_exist"
                  output="no">
                <cfobject component="User_non_exist" name="ret">
                <cfreturn ret>
          </cffunction>
        </cfcomponent>
    and hit it with the test.cfm url, still no error. Strange!
    So I modified test.cfm like this:
    test.cfm
    <cftry>
    <cfobject component="User" name="testUser">
    <cfobject component="authentication_wsapi" name="wsapi">
    <cfset a = wsapi.getManagers()>
    <cfcatch type="any">
       <cfdump var="#cfcatch#">
       <cfabort>
    </cfcatch>
    </cftry>
    Done creating.
    Now I see an error complaining the User_non_exist component not exist.
    So I changed the authentication_wsapi.cfc back to it's correct form, and with the new test.cfm, and hit the url, there was no error.
    Now I hit the wsdl url, it still gave me the original error.
    I think the wsdl compiler or some sort in CF server can not see the component inside the authentication_wsapi.cfc.
    I am using Coldfusion 9, 64 bit, enterprise version, on a Windows server 2008, with IIS 6.0.
    In the IIS web site I defined the "physical path" (is this the web root?) to
       C:\Savvi\Websites\CCD\WSAPI
    and both .cfc exist in
       C:\Savvi\Websites\CCD\WSAPI
    There are several other web sites co-exist in the same server, with different "physical path". I do not have a "/" mapping defined in the CF server.

  • Wsdl problem - why do i need to name output vars?

    I have a web service that is working (WSDL:
    http://getanagram.com/wsdevel.wsdl).
    I can access it from ColdFusion but not in the standard way. See
    below for examples. The problem is that I don't want to specify the
    output variables up front inside the call to the web service. I
    want the two output variables to go into a single struct like all
    the coldfusion documentation implies.
    I'd like to be able to access it this way:
    <cfinvoke
    webservice="
    http://getanagram.com/wsdevel.wsdl"
    method="GetTypeScores"
    returnvariable="foo">
    <cfinvokeargument name="text" value="123 456 7890"/>
    </cfinvoke>
    Output: <cfoutput>#foo#</cfoutput>
    But I get the error "Web service operation "GetTypeScores"
    with parameters {text={123 456 7890}} could not be found."
    Accessing it this way works PERFECTLY without errors but
    requires I name the output variables in the call, which I do not
    want:
    <cfscript>
    ws = CreateObject("webservice", "
    http://getanagram.com/wsdevel.wsdl");
    ws.GetTypeScores(text='123 456
    7890',ContactScore="ContactScore",EventScore="EventScore");
    </cfscript>
    Contact Score: <cfdump var="#ContactScore#"
    /><br>
    Event Score: <cfdump var="#EventScore#" />
    Exactly why is this happening?

    aparsons wrote:
    > I have a web service that is working (WSDL:
    >
    http://getanagram.com/wsdevel.wsdl).
    I can access it from ColdFusion but not in
    > the standard way. See below for examples. The problem is
    that I don't want to
    > specify the output variables up front inside the call to
    the web service. I
    > want the two output variables to go into a single struct
    like all the
    > coldfusion documentation implies.
    >
    > I'd like to be able to access it this way:
    >
    > <cfinvoke
    > webservice="
    http://getanagram.com/wsdevel.wsdl"
    > method="GetTypeScores"
    > returnvariable="foo">
    > <cfinvokeargument name="text" value="123 456
    7890"/>
    > </cfinvoke>
    > Output: <cfoutput>#foo#</cfoutput>
    The web service requires those parameters so you need to send
    them
    (nothing wrong with CF here):
    <element name="TypeScores">
    <complexType>
    <sequence>
    <element name="ContactScore" type="xsd:int" minOccurs="1"
    maxOccurs="1"/>
    <element name="EventScore" type="xsd:int" minOccurs="1"
    maxOccurs="1"/>
    </sequence>
    </complexType>
    </element>
    <mack />

  • Three partners interaction, wsdl problem

    Hi…
    I'm doing a three partners (buyer-seller-producer) interaction, but I'm having problems with it.
    This scenario is an extension of 109CorrelationSets.
    The buyer's wsdl defines the customer-buyer relation.
    The seller's wsdl defines the buyer-seller relation.
    The producer's wsdl defined the seller-producer relation.
    And that is working.
    Now I add the relation buyer-producer, and my first try has to put those definitions on the producer.wsdl. But I receive the error that de wsdl don't support four portTypes.
    So a used a second wsdl file BuyerProducer.wsdl with the definitions of that relation. But the server doesn’t recognize more than one wsdl file, as from http://GENETRON2:9700/orabpel/default/Producer/xxx?wsdl the only wsdl file I get is the Producer.wsdl, for any xxx.
    So the buyer don't get the http://.../Producer/BuyerProducer?wsdl, that he needs.
    Am I doing it right??
    Any suggestions will be appreciated
    Teofilo

    Hi Edwin...
    No, I haven’t.
    But, now I have.
    And now I finish an all-connect-to-all global process with 3 partners.
    Thanks for the hint.
    I have one thing that puzzles me:
         Why do we need to put all income operations (from all partners) on the same port type?
    To me it is much more natural to separate the operations, like PortTypeA with PartnerA operations, PortTypeB with PartnerB operations, and so on…
    An operation with a bpel process is characterized by: partnerlink, porttype and operation. Every partnerlink links to a partnerlinktype. So in a bpel process, if we just have one porttype in a role of a partnerlinktype, then the operation is full referenced by partnerlink (as it link to a role in a partnerlinktype) and the operation.
    Thanks again
    Teofilo

  • Wsimport multiple wsdl problem

    Hello,
    I have been using wsimport successfully to generate a class library based on a wsdl file. The application hits 2 different web services on the same server which I have no control over, and each of these web services use a common xsd. Therefore the wsdl for each web service has some definitions in common, because these definitions are being generated based on the xsd.
    I have just started using JDK 1.6.0_04. In previous releases of the JDK, I had to write a program to merge two wsdl files together and then run wsimport against the merged file. This is partly because wsimport would only handle one wsdl file.
    Now I see that wsimport allows me to specify multiple wsdl files. When I run it, I get a lot of errors like the following:
    [ERROR] 'TaskStatus' is already defined
    line 41 of file:/C:/genTest/ReferenceQueries.wsdl
    This is because both of these files have many of the same elements defined, because they both use the same xsd.
    Is there any plan to handle this situation for future releases, or will I have to continue using my merging program?
    Does anyone know how to overcome this situation without doing any extra work to merge the two wsdls?
    By the way, I noticed that wsimport in the 1.6.0_04 release does now correctly handle inheritance, and it adds @xmlSeeAlso tags. This project seems to be moving in the right direction, so I hope there is some effort to add support for my situation.
    Thanks,
    Andrew

    The problem is that there isn't any specific error code. Model generator on the Netweaver dev studio just gives exception saying the generation failed when adding the operation parameters (can't check now the exact exception).
    I would need 3rd party libraries since the WS interface client is built using them and will of course give ClassDefNotFoundException if I do not deploy the 3rd party jars too. I tried using External library DC to deploy the jars and everything seemed fine until I checked the deployment using SDM. Even though the deployment seems to work through the NWDS, the lib is not deployed on the J2EE engine and there's not even any error message explaining why the jars fail to deploy.
    I can't understand why it has been made this difficult. Why not just give the possibility to deploy standard jars or use library paths for J2EE engine?

  • Aqualogic WSDL problem!

    Hi,
    We have registered few proxy services in Aqualogic Service Bus. We can access then and get their WSDL by URL.
    http://<myserver>:7001/services/service1?wsdl
    The biggest problem is this: some of services do not return HTTP Content-Type header, but some do. And when we enter URL address to WSDL file in client software, it throws exception - not content type set.
    For instance:
    WebService1 returns:
    Date: Mon, 14 Jul 2008 16:18:05 GMT
    Transfer-Encoding: chunked
    Content-Type: text/xml
    X-Powered-By: Servlet/2.5 JSP/2.1
    200 OK
    WebService2 returns:
    Date: Mon, 14 Jul 2008 16:18:56 GMT
    Transfer-Encoding: chunked
    X-Powered-By: Servlet/2.5 JSP/2.1
    200 OK
    I have exceptions with WebSercice2. Is this a bug og Aqualogic service bus or must I configure something to return Content-type? If I enter direct URL to service WSDL file, not to a proxy service WSDL file, content type is returned correctly...
    Please help me to fix this problem.

    Hello,
    What kind of exception did you get?
    Is it null pointer exception for syncProvider or you have just missed line of code for syncProvider initialization?
    Dmitry

  • WSDL Problem - Bind Method to URL

    Hi Everybody!
    I have problem concerning WSDL.
    I have created a small webservice and used to Java2WSDL to generate the WSDL from the interfaces.
    Now I can call a specific method via "http://localhost/myWebservice?method=requestSummary/paramA=...
    What I want to do, is alter the WSDL in a way, so that I can call the same method via "http://localhost/myWebservice/requestSummary?paramA=...
    How can I achive this goal?
    I know that it must have something to do with binding - <http:operation location=...>, but I do not get it to work.
    Please help!
    Thanks in Advance!
    Stef

    No one?
    I can't believe it! ;)
    Nevertheless, if anyone has an idea, please tell me!

  • WSDL Problems

    Hi
    We have a Webservice generated in ABAP. When we try to open the WSDL in Crystal Reports we don't get the fields service porttype method and can't log in.
    We tried to save the WSDL local. No change.
    The strange fact is on one PC all this is working. Same Version of Crystal.
    Is there any log or something so we can see, what crystal is trying to do, or what the error is.
    Another strange fact is, we have a WSDL File for testing generated some time ago, which is working.
    We don't know where we should look for errors, or what we can test or change to see any improvements.
    Maybe you have any ideas, or questions to claryfy the problem.
    Thank you in advance
    Andreas
    Edited by: Andreas Gschwendt on Sep 14, 2009 12:01 PM

    Hello Andreas,
    I am having a similar problem with WSDLs in that I cannot use them in e.g. SoapUI or soap4r, as they don't see any services, regardless of whether I specify document-style or RPC-style (although maybe you should give that a try).
    Using WSDLs from older releases, e.g. 6.40, however, is no problem.
    Did you manage to resolve your issue?
    Thanks,
    Martin

  • WSDL problems with webservices deployment

    First, the problem: I need either to 1) be able to include a WSDL file as part of my ear-file deployment and have that WSDL be presented to consumers if they seek to browse the wsdl, or 2) get the dynamic WSDL generation to show public, https urls for schemaLocation and soap:address locations in the dynamically-generated WSDL.
    Configuration: Apache 2.2.3 proxy server receiving https requests and passing them back to a WebLogic 10.3.5 instance running on the internal network. The WebLogic instance has several applications running on it, and these applications make SOAP web service invocations between each other. Use case: public consumer makes https web service invocation to a publically-available url to invoke Service A, which in turn invokes a web service, Service B, running on the same WebLogic instance. The invocation from Service A to Service B is a localhost invocation since it's behind the firewall.
    What I'm seeing: if I browse the WSDL for Service A from the public area, the wsdl displays the server name and port in the schemaLocation and soap:address urls in the wsdl file. I, of course, don't want this, as I want the wsdl to display the publicly-browseable values (e.g. "https://www.seenbypublic.com:443/ws/UtilityService..."). So, I configure the server via the WebLogic admin console and specify a "Frontend Host" of www.seenbypublic.com, and a Frontend HTTPS Port of 443. I set the "WebLogic Plugin Enabled" flag via domain > Web Applications. I configure Apache (which already has the WL module installed) to use the following parameter "RequestHeader set WL-Proxy-SSL true" and restart everything. The server location changes in the dynamically-generated wsdl, but the server port does not (i.e. the urls in the wsdl are now http://www.seenbypublic.com:80/ws/UtilityService... (note the lack of SSL designation). Another problem is that now my same-server web service invocations that were taking placing using "localhost" are now using "www.seenbypublic.com" so instead of a local-box invocation, the request is coming out into the public domain and then back to the server, which is highly inefficient.
    So.... ideally, I'd be able to leave all the WebLogic "Frontend" settings alone, not mess with the WL plugin in Apache, and simply provide a wsdl url to my application to display when generating it's wsdls (or just let me provide the entire wsdl file as a resource). Is there any way to do that?
    Assuming no, what do I need to do to get the proper reflection of SSL designation in a dynamically-generated wsdl file? And - how can I tell WL to leave the "localhost" invocations alone?
    How's that for a Friday-afternoon problem?

    Hello,
    thank you for your answer. It was my mistake, I discribe the problem very bad.
    When i call the function get_frob(). Netbeans goes in the function and run through the end but nothing happened
    onMouseClicked: function( e: MouseEvent ):Void {
                         test=Authentikation_Frob.get_frob();and in my if clausel there will be a wrong output! After the output my programm go back to the function get_frob() and then make the request and go back to the if clausel. Now everything ist correct. But why does my programm need 2 runs ????thats not correct!!
    Thank you!!
    if (test==true)
                             var Authentikation_Link:HTTP_Authentication_Link=new HTTP_Authentication_Link();
                            link=Authentikation_Link.get_link();
                            var uri = new java.net.URI("{link}");
                             var desktopClazz = java.lang.Class.forName("java.awt.Desktop");
                             var getDesktopMethod = desktopClazz.getMethod("getDesktop");
                             var desktop = getDesktopMethod.invoke(null);
                             var browseMethod = desktopClazz.getMethod("browse", [uri.getClass()] as java.lang.Class[]);
                              browseMethod.invoke(desktop, uri);
                         else
                             fehler_ausgabe.visible=true;
                             fehler_ausgabe.content="Fehler {Authentikation_Frob.frob_fehler} {Authentikation_Frob.frob_hilfe}";
                         }Edited by: Esco24 on Aug 10, 2009 1:02 AM

  • Wsdl problem with jwsc generated webservice

    Hi,
    I am generating a new webservice with the jwsc command and annotations (only one method at this point, "getDescripteurCourt"). The war file is correctly generated and I can deploy it without problenmes in WLS 10.0
    However, when use the webservice test page, I receive the following error
    http://localhost:7001/communWS/communwebservices?WSDL
    failed due to org.jdom.IllegalAddException: The namespace xmlns:="http://saac.ssq.local/commun" could not be added as content to "getDescripteurCourt": The namespace prefix "" collides with the element namespace prefix
    Here is my wsdl file generated by the jwsc command
    <?xml version='1.0' encoding='ISO-8859-1'?>
    <s0:definitions name="communwebservicesDefinitions" targetNamespace="http://saac.ssq.local/commun" xmlns="" xmlns:s0="http://schemas.xmlsoap.org/wsdl/" xmlns:s1="http://saac.ssq.local/commun" xmlns:s2="http://schemas.xmlsoap.org/wsdl/soap/">
    <s0:types>
    <xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="http://saac.ssq.local/commun" xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:element name="getDescripteurCourt">
    <xs:complexType>
    <xs:sequence>
    <xs:element name="nomPhysique" type="xs:string"/>
    <xs:element name="codeValeur" type="xs:string"/>
    <xs:element name="env" type="xs:string"/>
    <xs:element name="lang" type="xs:string"/>
    <xs:element name="owner" type="xs:string"/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="getDescripteurCourtResponse">
    <xs:complexType>
    <xs:sequence>
    <xs:element name="return" type="xs:string"/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    </xs:schema>
    </s0:types>
    <s0:message name="getDescripteurCourt">
    <s0:part element="s1:getDescripteurCourt" name="parameters"/>
    </s0:message>
    <s0:message name="getDescripteurCourtResponse">
    <s0:part element="s1:getDescripteurCourtResponse" name="parameters"/>
    </s0:message>
    <s0:portType name="communwebservices">
    <s0:operation name="getDescripteurCourt" parameterOrder="parameters">
    <s0:input message="s1:getDescripteurCourt"/>
    <s0:output message="s1:getDescripteurCourtResponse"/>
    </s0:operation>
    </s0:portType>
    <s0:binding name="communwebservicesSoapBinding" type="s1:communwebservices">
    <s2:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
    <s0:operation name="getDescripteurCourt">
    <s2:operation soapAction="" style="document"/>
    <s0:input>
    <s2:body parts="parameters" use="literal"/>
    </s0:input>
    <s0:output>
    <s2:body parts="parameters" use="literal"/>
    </s0:output>
    </s0:operation>
    </s0:binding>
    <s0:service name="communwebservices">
    <s0:port binding="s1:communwebservicesSoapBinding" name="communwebservices">
    <s2:address location="http://localhost:7001/commun/communwebservices"/>
    </s0:port>
    </s0:service>
    </s0:definitions>
    Can anyone help me with this? I dont understand where this exception is coming from.
    I you need more informaion, just ask I will be glad to provide you more details.
    Thank you very much
    Jean-Philippe Leblond

    webservice.operation.lastResult["return"];
    If you are doing that in a result handler, do not use
    lastResult, which is intended for binding espressions only. Use
    event.result.
    Tracy

  • WSDL Problem (Sender WebService)

    Hi,
         Our scenario is Webservice to SAP, recently as per the new requirement 2 new fields were added to structure. Earlier WSDL was given from ID(Tools --> Define Webservice) , now similarily after addition of 2 fields in structure a new WSDL was generated from ID again & was given to client.
    While generating WSDL i had used URL for Integration Engine, bypassed adapter engine , first WSDL was also given in similar way.
    Now while testing this scenario two new feilds are not getting populated in payload. Webservices system is sending that values but not getting reflected in PI.
    Already tried refreshing cache, complete cache refresh but no use.
    Can anyone give some suggestions, it will be helpful in resolving issue ..
    Regards,
    Vinod.

    Couple of hints.
    After generating the WSDL with new fields added, check whether those two new fields are reflected in the wsdl. If so, then your WSDL generation is right.
    Remove the old versions and maintain one wsdl always. Also tell your partner to reference the latest WSDL.
    Test using SOAPUI or XMLSPY loading the lastest WSDL and see whether you see latest request or response structure.
    If you are using version PI 7.1 or above , the easy way to do is go to sender agreement and pick display wsdL option and generate it. You dont manually input all the interface name, namespace details.
    Hope this help.

  • Ws:webservices, variable wsdl problem

    Hi all.
    I pass a url variable when i call my swf. like this
    quote:
    myfile.swy?wsdlurl=http://......
    and I get back the value in my flex app by :
    quote:
    [Bindable]public var urlwsdl:String;
    urlwsdl = mx.core.Application.application.parameters.wsdlurl;
    When I make a Alert whis the value of urlwsdl, i have the
    good URL
    I call it in my webservices call like this :
    quote:
    <mx:WebService id="WS" wsdl="{urlwsdl}" ...
    And thats no work.
    But if i put directely the value and no the variable, all
    work fine ..
    Some idea ?

    if i define my urlwsdl varaible like this :
    quote:
    [Bindable]public var wsdlurl:String;
    urlwsdl = 'url....';
    wsdl="{urlwsdl}"
    thats not work
    If i define it like this :
    quote:
    [Bindable]public var wsdlurl:String = 'url...';
    wsdl="{urlwsdl}"
    Thats work .....
    I realy dont understand ... why ...
    pff .. impossible to make wsdl dynamic ?

  • Web service wsdl problem with wsimport

    I tried running wsimport on a wsdl my company is using for other services, and i get an error
    wsimport -keep -p client https://url/View/EntityViews.svc?wsdland i get this:
    error: operation "Logon": more than one part bound to bodyI'm a lil new to web services, can someone add a lil clarity as to what this means?

    I tried running wsimport on a wsdl my company is using for other services, and i get an error
    wsimport -keep -p client https://url/View/EntityViews.svc?wsdland i get this:
    error: operation "Logon": more than one part bound to bodyI'm a lil new to web services, can someone add a lil clarity as to what this means?

  • Problem with WSDL

    Hai,
    I created an EJB Project , I created web services for Session beans . I deployed it . this web services are working very fine in navigator. but when i use this web services in a third party tool its giving problem.
    in that tool it recognize only one wsdl file. but in my case webAS is generating 3 wsdls
    - one WSDL that defines the concrete endpoint
    - one WSDL that defines the binding
    - one WSDL that defines the abstract interface (with operations and
    My requirement is to generate a singlw wsdl file using those 3 wsdls . please help me out to solve this problem.
    regards,
    Naga Raju

    Hi John,
    I don't have a direct solution for your problem.
    But, using Axis in conjunction with Castor, for serialisation/deserialisation, it was mandatory to server just the types schema to Castor (in a separate file) and import them into the everything encompassing wsdl. A, then used xml import statement follows, and might be useful to indirectly solve your wsdl problem too:
    <xsd:import namespace="urn:x.y.com"schemaLocation="file:///C:/projects/ws/x.y.xsd"/>
    Best Regards
    Gregor

  • Webservice Proxy from WSDL creates faulty XSLT

    Hi,
    I have a WSDL which generates a webservice Proxy in SE80 just fine.
    When I run the webservice the request is formed properly and I get a response from the webservice. The problem is that the generated XSLT seems to be wrong. When I use the testing tool of the proxy class I can see "original response" and "response".
    "response" was parsed by the XSLT I guess which gives me an empty XML-structure while the "original response" looks good.
    How can I fix this? The XSLT is quite complicated and Im not sure what I can do.
    Is it a WSDL-problem?

    Did you solve this ? I seem to have a similar problem after changing the weservice defintion I have a repsonse and Original response in the test tab. The Original response is filled and the response stays empty.
    However when I call the webservice in an ABAP program the response is empty.
    Addition.
    I have found the cause of this and will mention it here for anyone who has the same problem.
    In my case the reason for this behavior was a data element that was generated as type XSDDATETIME_Z. Once I changed it to XSDDATETIME_ISO everything was working OK again.

Maybe you are looking for