SOAP VERSION Issues

Hi,
We are using Coldfison 8/IIS 6.0/Windows 2003 server. We are
invoking a third party web services which are hosted in Internet.
When we invoke the web service, Coldfusion is using SOAP1.1
and the generated SOAp is in version 1.1
But the web service is expecting the request in SOAP 1.2
format. Hence getting a Server exception from AXIS server
We narrowed down the problem to the below:
The generated SOAP request has the following security tag in
SOAP header
<wsse:Security soapenv:actor="" soapenv:mustUnderstand="1"
xmlns:wsse="
http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
soapenv:actor="" attribute is from SOAP1.1, SOAP1.2 do not
support it anymore. SOAP1.2 uses role attribute instead
Can some body help me configuring Coldfusion to use SOAP 1.2
by default

Hi,
We are using Coldfison 8/IIS 6.0/Windows 2003 server. We are
invoking a third party web services which are hosted in Internet.
When we invoke the web service, Coldfusion is using SOAP1.1
and the generated SOAp is in version 1.1
But the web service is expecting the request in SOAP 1.2
format. Hence getting a Server exception from AXIS server
We narrowed down the problem to the below:
The generated SOAP request has the following security tag in
SOAP header
<wsse:Security soapenv:actor="" soapenv:mustUnderstand="1"
xmlns:wsse="
http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
soapenv:actor="" attribute is from SOAP1.1, SOAP1.2 do not
support it anymore. SOAP1.2 uses role attribute instead
Can some body help me configuring Coldfusion to use SOAP 1.2
by default

Similar Messages

  • SOAP version for B2B HTTP inbound message in SOA Suite 11.1.1.7

    Is there a way to find out the SOAP version supported by B2B HTTP inbound message in SOA Suite 11.1.1.7? Has there been a upgrade of SOAP version to SOAP 1.2?
    The reason behind this assumption is because we are facing following error when an external service posts an XML message enclosed in SOAP envelope (SOAP 1.1) to B2B Sync Receiver Servlet:
    Mime Header Content-Type: text/xml requires SOAP envelope namespace
    Since SOAP headers are already added in the message we are not expecing to face such issue. As per my understanding this issue maybe seen when there is a SOAP version mismatch.
    Moreover, this issue is not seen when this external service posts the same SOAP message to B2B Sync Receiver of SOA suite 11.1.1.6.
    Any help would be highly appreciated.
    Thanks,

    I resolved the issue by myself, The connection factory which I was referring was duplicated. Hence messages were not dequeueing.
    I would be able to found the issues by creating a similar test case scenario.
    Cheers,
    B

  • Error Calling Web Service - VersionMismatch Wrong SOAP Version

    Hello,
    I am attempting to create a web service from a function module, and to call this web service from outside of SAP.
    I used the Web Service Creation Wizard to create a web service from BAPI_CURRENCY_GETLIST, and tested it using the Web Service Homepage button from transaction WSADMIN. Everything seems to work OK so far.
    To test calling the web service, I copied the SOAP envelope from the web service homepage into a vbscript file:
    Const HOST = "http://<server>.<domain>:<port>"
    Const URL = "/sap/bc/srt/rfc/sap/ZWSD_Currency?sap-client=<nnn>"
    ' Create the HTTP object
    Set xmlhttp = CreateObject("Microsoft.XMLHTTP")
    Dim Request
    Request = "<?xml version=""1.0"" encoding=""UTF-8"" ?>" & _
              "<SOAP-ENV:Envelope xmlns:SOAP-ENV=""http://schemas.xmlsoap.org/soap/envelope"" xmlns:xsi=""http://www.w3.org/2001/XMLSchema"" xmlns:xs=""http://www.w3.org/2001/XMLSchema-instance"">" & _
              "<SOAP-ENV:Header>" & _
              "<sapsess:Session xmlns:sapsess=""http://www.sap.com/webas/630/soap/features/session/"">" & _
              "<enableSession>true</enableSession>" & _
              "</sapsess:Session>" & _
              "</SOAP-ENV:Header>" & _
              "<SOAP-ENV:Body>" & _
              "<ns1:CurrencyGetlist xmnls:ns1='urn:sap-com:document:sap:soap:functions:mc-style'>" & _
              "<CurrencyList><item>" & _
              "<CURRENCY></CURRENCY>" & _
              "<CURRENCY_ISO></CURRENCY_ISO>" & _
              "<ALT_CURR></ALT_CURR>" & _
              "<VALID_TO></VALID_TO>" & _
              "<LONG_TEXT></LONG_TEXT>" & _
              "</item></CurrencyList>" & _
              "</ns1:CurrencyGetlist>" & _
              "</SOAP-ENV:Body>" & _
              "</SOAP-ENV:Envelope>"
    xmlhttp.open "POST", HOST & URL, False
    xmlhttp.send (request)
    MsgBox (xmlhttp.responseXML.xml)
    When I execute the vbscript, the response is
    <soap-env:Envelope xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelop/">
    <soap-env:Body>
      <soap-env:Fault>
        <faultcode>
          soap-env:VersionMismatch
        </faultcode>
        <faultstring xml:lang="en">
          Wrong SOAP Version
        </faultstring>
      </soap-env:Fault>
    </soap-env:Body>
    </soap-env:Envelope>
    The system log (transaction SM21) contains the messages:
    SOAP Runtime: SOAP Fault exception occurred in program CL_SOAP_MESSAGE===============CP in include CL_SOAP_ME SSAGE===============CM00X at position 34
    SOAP Runtime: Exception message: Severe processing error; SOAP fault handling required
    In the RFC trace (transaction SM59) I see
    XRFC> INFO 14:25:10: SOAP Transport Binding CL_SOAP_TRANSPORT_BINDING     <
    XRFC> ROOT->IFSOAP_TRANSPORT_BINDING~RESPONSE() Try to create response  <
    XRFC> message                                                             <
    XRFC>                                                                     <
    XRFC> INFO 14:25:10: SOAP Transport Binding CL_SOAP_TRANSPORT_BINDING     <
    XRFC> ROOT->IFSOAP_TRANSPORT_BINDING~RESPONSE() Response message        <
    XRFC> created                                                             <
    XRFC>                                                                     <
    XRFC> INFO 14:25:10: SOAP Transport binding CL_SOAP_HTTP_TPBND_ROOT       <
    XRFC> ->IF_SOAP_TRANSPORT_BINDING~RECEIVE() Try to receive message        <
    XRFC>                                                                     <
    XRFC> 20071218 142510 00037640: SOAP Fault Exception caught: : Wrong      <
    XRFC> SOAP Version                                                        <
    XRFC>                                                                     <
    XRFC>                                                                     
    XRFC> End of user trace                                                   
    How can I tell what version(s) of SOAP the NetWeaver 2004 platform supports? Has anyone seen and resolved this error?
    Thanks in advance,
    Mark

    Hi Anton,
    Thanks for the helpful suggestion. I did try setting SOAPAction using xmlhttp.setRequestHeader, but that didn't seem to make any difference. I may not have formatted the SOAP header correctly, however.
    What I noticed is that if I added a slash at the end of the xmlns:soap tag in the SOAP envelope, I got a different error message (SOAP Processing failure, error id = 112).
    I downloaded version 2.0 of the .NET framework and the SOAPSonar tool. SOAPSonar was able to format the SOAP envelope from the WSDL. When I pasted the SOAP envelope from SOAPSonar into my vbscript file, it worked. So, the vbscript looks like this:
    Const HOST = "http://nwr051.nwenergy:1080"
    Const URL = "/sap/bc/srt/rfc/sap/ZWSD_Currency?sap-client=100"
    Const FORMAT = "dd-MMM-yy"
    ' Create the HTTP object
    Set xmlhttp = CreateObject("Microsoft.XMLHTTP")
    Dim Request
    Request = "<?xml version=""1.0"" encoding=""utf-8""?>" & _
              "<soap:Envelope xmlns:soap=""http://schemas.xmlsoap.org/soap/envelope/"" xmlns:xsi=""http://www.w3.org/2001/XMLSchema-instance"" xmlns:xsd=""http://www.w3.org/2001/XMLSchema"" xmlns:tns=""urn:sap-com:document:sap:soap:functions:mc-style"">" & _
              " <soap:Body>" & _
              "    <tns:CurrencyGetlist>" & _
              "      <CurrencyList>" & _
              "      </CurrencyList>" & _
              "    </tns:CurrencyGetlist>" & _
              "  </soap:Body>" & _
              "</soap:Envelope>"
    xmlhttp.open "POST", HOST & URL, False
    xmlhttp.send (request)
    MsgBox (xmlhttp.responseXML.xml)
    Again, thanks for taking the time to read through this and offer your insight.
    Regards,
    Mark

  • Qmaster not using all computers in cluster, is it a version issue?

    hi i'm new to cluster compressing. I just set up a cluster and a compressor batch. the batch is running fine, however it's only using two of the three computers in the cluster. I rechecked the qmaster settings on the offedning computer and they are correct. It shows up on the qadminstrator of the controlling computer as well, but always remains idle. the computer that it's not using is an older version of compressor (and presumably qmaster). is it a version issue I'm experiencing? I'd love to get this 3rd computer working on the cluster as is has the fastest processor of the bunch.

    Hi Gordon,
    Thanks for your response. Actually I have already asked my work buddies not to use manager for a while so I can address the problem.
    BTW, I also want to know if there is a way to monitor that kind of session in SAP. I will post it in another thread.
    Thanks,
    Lan

  • Determinations Server - SOAP version

    I have generated a java client from my WSDL file (http://localhost:9000/determinations-server9000/interview/soap/MyRuleBase?wsdl) using JAX-WS wsimport.
    However when I attempted to use the Java client, I get the following run time exception.
    SEVERE: SAAJ0140: No NamespaceURI, SOAP requires faultcode content to be a QName
    javax.xml.ws.WebServiceException: com.sun.xml.internal.messaging.saaj.SOAPExceptionImpl: No NamespaceURI, SOAP requires faultcode content to be a QName
    After a bit of googling, I found that the my JAX-WS client is using SOAP1.2 whereas the Determinations server is using SOAP 1.1?
    How do I force my JAX-WS client to use SOAP 1.1?
    I understand that I can generate a client using Axis2 as well- but my preference would be to use JAX-WS.

    Actually I don't think this has anything to do with the soap version that jax-ws uses.
    In some 10.2 versions of the Determination Server a fault was being incorrectly returned as "SOAP-ENVClient" instead of "SOAP-ENV:Client". This is probably causing the error you are seeing.
    This bug was fixed in 10.3 which has just been released as General Availability and you can get it from Oracle E-Delivery (https://edelivery.oracle.com/)
    Also, the fact that you are getting a soap fault means that you are sending wrong information to the determinations server. I suggest using a tool like tcpmon to trap the request and response so you can see what the error is.

  • Adobe Version Issue

    Hi,
    I am trying to use the following blog so that I can send a mail.
    http://www.sdn.sap.com/irj/scn/weblogs;jsessionid=(J2EE3417400)ID1415835150DB20085339665800400921End?blog=/pub/wlg/6676
    I believe there is some restriction on ADOBE VERSION. I am not able to ascertain it.
    PLease let me know is there any problem with Adobe Reader version. I am currently using Reader 8.1.5.
    Regards,
    Aditya Deshpande

    Hi Otto,
    I have implemented the same code.
    When i use ADobe Acorobat 9 pro, it works there.
    When I use adobe reader 8.0 or reader 8.13 or 8.1.5.
    It does not work.
    I have SAP FORMS as my plug ins i.e ACF.
    Hence it should be reader version issue.
    Since acrobat is costlier version I wanted to be sure whether or not it can used any version below.
    Regards,
    Aditya Deshpande
    Edited by: Aditya Deshpande on Dec 9, 2009 9:59 AM

  • CC version issue

    We are having a serious version issue with CC. There are 6 people on my team. One person signed up for CC a couple of weeks after the rest of us, and his version is 17, while ours is 16.0.4. We cannot open his files without them being corrupted. I just downloaded the latest CC updates this morning, and that didn't resolve the issue. My version still shows 16.0.4.
    He is having to downsave all his files for us to open. Thoughts?
    Thanks in advance for any advice.

    Catmarsh which Adobe software title in specific are you referring too?  Also which operating system are you using?

  • Safari locks up on stock streamer due to Java Version issue

    I bought a MacBook for personal use when I travel. My company expressly forbids any personal use of their laptop.
    When I use Safari with my wireless network at home it works fine. In this hotel I cannot access the stock streamer on TD Ameritrade when working over a wireless connection. TD Ameritrade "help" indicates a Java Version problem. I upgraded to the latest version of Java. TD still indicates a Java Version issue. This really does not make sense since the streamer works fine at home. I used my business laptop (XP with Internet Explorer) just to check the streamer and it works fine at the hotel.
    I checked the Safari Plug-ins. The Java Plug-ins listed say;
    Java Plug-in for Cocoa
    Java Switchable Plug-in (Cocoa) - from file "JavaPluginCocoa.bundle".
    Java Plug-in
    Java 1.3.1 Plug-in - from file "Java Applet.plugin".
    Java Plug-in (CFM)
    Java 1.3.1 Plug-in (CFM) - from file "Java Applet Plugin Enabler".
    I tried to download and reinstall Java 1.4.2. The system indicated there was already a newer version of Java 1.4 installed and terminated the install.
    Any suggestions will be tried.
    I am hoping that after all my years on PCs I will not regret trying to switch to Apple.
    MacBook   Mac OS X (10.4.7)   Java Version 5 not indicated in plug-in wndow

    Welcome to Apple Discussions and Mac Computing
    Do you have J2SE 5.0 installed in your Utilities>Java folder? Given your machine is new it ought to be there. If not, go to Software Update in your System Preferences and install it.
    If it is installed: inside the J2SE5.0 folder is Java Preferences.app and Java Cache Viewer. Double click the Pref. app. Upon opening, the ensuing panel indicates the "priority" for Java - mine says J2SE 5.0, then J2SE 1.4.2. If it isn't in that order, reverse the order by dragging one of them to the proper place. Select "save".
    Next, clear the 1.4.2 cache file by opening Java 1.4.2 Plugin Settings.app, selecting cache, then "clear". Quit the app. and restart your computer/Safari.
    Post back.
    iMac G5 Rev C 20" 2.5gb RAM 250 gb HD/iBook G4 1.33 ghz 1.5gb RAM 40 gb HD   Mac OS X (10.4.8)   LaCie 160gb d2 HD Canon i960 printer

  • Version issues/compatability

    Hello, we have 2 guys using version 11.5 CR Developer, we have been using for years and not had any issues. We have 2 other guys now on the latest version of SAP CR Developer version 14.0.4.738.
    Problem
    When we run the reports using the newer version it returns lower figures that the older version which are correct, I have tried changing this and that including saved data and 2 separate reports for each version with the exact same setup but still the newer version are much lower than the other versions. It simply does not make sense unless the newer version is reading differently to the other version. One other thing is when I read using any viewer I get the correct data returned, so this is the SAP 14.0.4 version issue.
    Can anyone advise on this one?
    Thanks
    S

    Hi Steve,
    This could an issue with the DB Client you are using, lots of changes to both CR and the DB clients between then and now.
    What database are you using and how are you connecting and which DB Clients are you using?
    The syntax of the SQL, case sensitivity, Null value handling are 2 I think of off the top...
    Don

  • How to change the SOAP version from 1.0 to 1.2 while registering to ESB

    Hi All,
    I have problem here,
    Is there any possibility to change the soap version from 1.0 to 1.2 for oracle ESB.
    Because it is using SOAP1.1 while registering any service to ESB, Is there any possiblity to change it.
    Hi guys is there any solution for this...........:-(
    OR Will SOA suite 10.1.3.4 supports SOAP 1.2 ?
    Cheers,
    Kalyan.P

    Hi,
    The current version of ESB does not support SOAP 1.2. You need to make sure your message contains the correct SOAP 1.1 namespace so ESB uses the correct SOAP version:
    SOAP 1.1: http://schemas.xmlsoap.org/soap/envelope/
    SOAP 1.2: http://www.w3.org/2003/05/soap-envelope
    For SOAP 1.2 you have to wait until 11g SOA Suite is released.
    Kind Regards,
    Andre Jochems

  • Any issues using Apache's SOAP version 2 with Weblogic

    Hi,
    The Weblogic sever is not one in the list of servers that have been tried
    succesfully with Apache's SOAP. This is the list:
    Apache Tomcat v3.1
    IBM WebSphere v3.02
    JRun vx.y.z
    Microsoft Internet Information Server
    Has anyone tried SOAP with Weblogic?
    A recent thread mentions some problems (and solutions) with Weblogic and Xerces 1.1.2.
    SOAP requires Xerces 1.1.3. Therefore, I would also like to know if there is any issue
    using Weblogic with Xerces 1.1.3. I am using Weblogic 4.5 but I would try 5.1 if necessary
    for this.
    Thanks in advance,
    Javier

    In the apache soap binary download, there is a soap web application ( in the
    form of an exploded war file ). Just copy and paste this directory in the
    domain's "applications" directory. You will need to add a servlet-mapping
    element in the web.xml file, which could be something like this
    <servlet-mapping>
    <servlet-name>rpcrouter</servlet-name>
    <url-pattern>/rpcrouter/*</url-pattern>
    </servlet-mapping>
    Cheers
    Sandeep
    "Jan-Paul" <[email protected]> wrote in message
    news:[email protected]...
    Do you have something similar for the BEA Weblogic 6.0?
    "Sudhir Kolli" <[email protected]> wrote in message
    news:[email protected]...
    You might want to take look at this:
    David Jian <[email protected]> wrote in message
    news:[email protected]...
    Gavin:
    I did the same thing except for servlet register. soap is webapp to WLS,so
    I add:
    weblogic.httpd.webApp.soap=D:/foo/soap-2_0/webapps/soap
    to weblogic.properties. Because sopa20 has a web.xml file in
    /foo/soap-2_0/webapp/soap/web-inf, I can only edit it to registerrpcrouter
    and keep the default webapp as the same. Otherwise, how do you add thesoap
    to you myserver/public_html? Unfortunately, it does not recognize the
    URL
    when I click the Visit link on soap admin page.
    I edit my web.xml as
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!DOCTYPE web-app
    PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN"
    "http://java.sun.com/j2ee/dtds/web-app_2.2.dtd">
    <web-app>
    <servlet>
    <servlet-name>
    rpcrouter
    </servlet-name>
    <servlet-class>
    org.apache.soap.server.http.RPCRouterServlet
    </servlet-class>
    <init-param>
    <param-name>ServicesStore</param-name>
    <param-value>DeployedServices.ds</param-value>
    </init-param>
    </servlet>
    </web-app>
    Can you try this? How did you add your rpcrouter servlet to the defualt
    webapp?
    Thanks
    DJ
    "Gavin Hyde" <[email protected]> wrote in message
    news:[email protected]...
    After several painstaking hours I finally was able to get Apache Soap
    v2.0
    to work with weblogic. The version of weblogic I'm using is 4.51.
    You
    can
    get Apaceh soap from http://www.apache.org/soap. This version of Soap
    requires xerces v 1.2.1 which you can get from
    http://www.apache.org/xerces-j. To make it work with weblogic you
    have
    to
    first place the soap.jar file included with Apache soap and thexerces.jar
    file in both the classpath AND WEBLOGIC_CLASSPATH. Don't ask me why
    but
    I
    wasn't able to get it to work without it in both. Next you have to
    add
    the
    directory that your class files reside in to the classpath. Next you
    have
    to register the RCPRouter servlet in weblogic. The line to do thislooks
    like this:
    weblogic.httpd.register.rpcrouter=org.apache.soap.server.http.RPCRouterServl
    et
    where rpcrouter can be any name you want to use to call the routerservlet.
    That's all I had to do to set it up to view the stock quote example
    and
    the
    address book. The calculator is giving me a few other probems at the
    moment. Don't forget to deploy the different services but the command
    for
    that is given in the readme file for each example. For the router URL
    I
    used http://localhost:7001/rpcrouter which is that servlet you
    registered
    above.
    Gavin
    "Javier Deniz" <[email protected]> wrote in message
    news:[email protected]...
    Hi,
    The Weblogic sever is not one in the list of servers that have been
    tried
    succesfully with Apache's SOAP. This is the list:
    Apache Tomcat v3.1
    IBM WebSphere v3.02
    JRun vx.y.z
    Microsoft Internet Information Server
    Has anyone tried SOAP with Weblogic?
    A recent thread mentions some problems (and solutions) with Weblogic
    and
    Xerces 1.1.2.
    SOAP requires Xerces 1.1.3. Therefore, I would also like to know if
    there
    is any issue
    using Weblogic with Xerces 1.1.3. I am using Weblogic 4.5 but I
    would
    try
    5.1 if necessary
    for this.
    Thanks in advance,
    Javier

  • SAP PI 7.31 / Sender SOAP Channel Issue with XML tag Main/@versionMajor has incorrect value 000; expected value is 003

    Hi PI Experts,
    We are on SAP PI 7.31 SP 10.
    We are in the process of integrating ARIBA P2P solution using SOAP Adapter as sender to connect Ariba with our PI system.
    We have configured all required components in ESR and ID(Most of them are content provided by Ariba).When we try to post a message into PI using SOAP UI we are ending with below error.

    http://<host name> : <port name> /XISOAPAdapter/MessageServlet?channel= <party name> : <service name> : <channel name>
    For the above issue we had configured SOAP Sender channel as above,and the URL we are using to hit PI is as above screenshot.
    We have followed the note on this topic with out any luck.
    1378872
    We are not sure where is problem.As the issue is not reaching to PI not able to see the messages in SXMB_MONI.
    and in the SXMB_ADM PI has been configured as Integration Server.
    I had even tried to change the message protocol as XI3.0 in SOAP sender channel and noluck.
    I have tried to ximessage=true query also in URL and noticed that not working.This is clear that the message we are trying to send from Ariba is not compatible with XI3.0 protocol,Ariba is not having any option to change at their end as it is a cloud application and many customers have been using same with out any issues.
    We have tried maintain the Java System properties in NWA as XPI.Adapter.Version.Major = 3 but no luck.
    Can some one provide us the solution to get rid of this issue?

  • Web service SOAP response issue

    Hi,*
    We are upgrading system from ECC 5.0 to ECC 6.0. All of our webservices were created in new system with SOAManager configuration.
    When the consumer systsem is trying to consume one of the webservice the XML response is different when compared with the one tested from ECC 5.0.
    ECC 6.0 is returning different XML for the same web service. The consuming system "Cold Fusion' is expecting the SOAP XML in different place.
    When we tested the same webservice in WS navigator it did gave the response. Also the issue is with this webservice only.
    We have re created the webservice again and tested from cold fusion and the same response.
    The issue is with only this webservice.
    Regards,
    Prashanth.

    Christoph,
    Firstly LiveCycle Designer 8.2 is still not supported to develop forms as per my knowledge. The latest version compatible for SAP Interactive Forms is ALD 8.0.
    There is a difference between Acrobat based forms and LiveCycle forms and based on your coding it looks to me  that you are trying to create a LiveCycle based form with coding of Acrobat which is not supported in LiveCycle Desginer, which is why you may be getting the error.
    I hope that does not confuse you, so may check this [link|http://www.acrobatusers.com/articles/2006/08/designer_or_forms/index.php] for some clear information on what point I was trying to make.
    Chintan

  • SOAP Version Mismatch

    Hi,
    I too facing the issue with web services.
    Previously, My web servieces are deployed in 32bit server now its moved to 64bit server.
    Any further details you are looking for, let me know.
    Thanks,
    Krishna
    Error: SOAP Response Version Mismatch
    at mx.rpc.soap::SOAPDecoder/decodeEnvelope()[C:\autobuild\3.3.0\frameworks\project s\rpc\src\mx\rpc\soap\SOAPDecoder.as:266]
    at mx.rpc.soap::SOAPDecoder/decodeResponse()[C:\autobuild\3.3.0\frameworks\project s\rpc\src\mx\rpc\soap\SOAPDecoder.as:236]
    at mx.rpc::AsyncResponder/result()[C:\autobuild\3.4.0\frameworks\projects\rpc\src\mx\rpc\Asy ncResponder.as:80]
    at mx.rpc::AsyncRequest/acknowledge()[C:\autobuild\3.4.0\frameworks\projects\rpc\src\mx\rpc\ AsyncRequest.as:74]
    at DirectHTTPMessageResponder/completeHandler()[C:\autobuild\3.4.0\frameworks\projects\rpc\s rc\mx\messaging\channels\DirectHTTPChannel.as:409]
    at flash.events::EventDispatcher/dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at flash.net::URLLoader/onComplete()

    I got answered myself, there was a mismatch in the web
    service URL.
    Where i managed to change the same.
    Now its working fine.
    Thanks

  • Multiple Version Issue. data not matching

    Dear all,
    pleas help me in this issue..
    we have the Apo (DP) Cube.  we are running the reports on this cube..
    when we run the query we are giving the Verion ( means week)  in the selections.. data is coming but.not matching with Apo..data..
    we  assumed that data is coming more. beacuse it might taking the data of previous year also.
    so we included the Calyear and aksed user to selct both, vesrion as well as year.. because their req is for multiple version with historical data.
    They want to see the data for multiple versions with historical data...  even though data  is not matching..
    what we had done is again deleting all the data from Cube and dso an datasource , again loading... this time we asked user to run the report and match it    the data is matching.. with vesrion
    But when we go for historical data with mutiple version. its not matching ,
    pleas help me out where to find out this probelm , what could be the cause ,.
    how to chek
    Awaiting your valuble fedback. its an uregnt issue.
    if any thing else required pls let me know

    Txs for your valuble reply..
    We had checked that .
    but when we unload and again loaded  data this time it is matching on giving the version...
    Where as in case of Multiplr versions . data is coming more.. donno wheather it is mixing up the duplicate data . or what not able to underand.
    can you pls tell me steps how to analyse with your patiency...
    Where and all we need to chek ....
    Awaiting Your reply.

Maybe you are looking for

  • Error in the SOAP   Receiver communication channel

    Hi ,         My scenario is RFC - to -SOAP (synchronous )   i have  specified the TARGET URL inthe   SOAP receiver  comminication chanel.. but  while testing  the interface   by providing the test  data from R/3 ..  I'm not getting any Respose.. .. I

  • Where can I go to learn about scaling voltage readings from different AI devices?

    Ex. I have a Vaisala HMP 60 RHT sensor. How do I know what to scale the voltage readings to get the correct RH? I have seen values (such as 20 in the linear range for the Vaisala HMT 100), but I don't know where it comes from or why it is chosen. In

  • F4 help for a Input Field

    Hi Experts, I am New to web Dyn Pro Java. I have a requirement in which  I need to impplement F4 help for a input Field. For this I should not use the Back end. I am suppose to hard code the values that will appear in the F4 help. Can I implement it

  • SSRS Reporting: Can I make a rectangle that truly hide

    I have a report at the bottom of which has an optional section.  This optional section is entirely contained in a rectangle.  My problem is, when I set this rectangle's hidden property to true i.e. to display it on last page only, it is hidden but th

  • Is QT DVD Player different on Windows and MAC?

    I have both Mac and PC computers. QT 7.1.3 is installed on both. I can view both commercial (Hollywood) and non-commercial mp2 content on the Mac but not the PC. Can anyone tell me what the difference is and why? Mac and PC   Mac OS X (10.3.9)   Win