SSRS XML DataSource in SSRS Web Edition

Hi All,
I have a little (stupid) question : is it possible to have  XML as a data source on a SSRS Web Edition ? 
I can't seem to find any detailed information about this on the documentation...
Thanks in advance!
Greetings,
Nicky

Hi Katherine,
I have the following in the config file :
<Data>
<Extension Name="SQL" Type="Microsoft.ReportingServices.DataExtensions.SqlConnectionWrapper,Microsoft.ReportingServices.DataExtensions"/>
<Extension Name="SQLAZURE" Type="Microsoft.ReportingServices.DataExtensions.SqlAzureConnectionWrapper,Microsoft.ReportingServices.DataExtensions"/>
<Extension Name="SQLPDW" Type="Microsoft.ReportingServices.DataExtensions.SqlDwConnectionWrapper,Microsoft.ReportingServices.DataExtensions"/>
<Extension Name="OLEDB" Type="Microsoft.ReportingServices.DataExtensions.OleDbConnectionWrapper,Microsoft.ReportingServices.DataExtensions"/>
<Extension Name="OLEDB-MD" Type="Microsoft.ReportingServices.DataExtensions.AdoMdConnection,Microsoft.ReportingServices.DataExtensions"/>
<Extension Name="ORACLE" Type="Microsoft.ReportingServices.DataExtensions.OracleClientConnectionWrapper,Microsoft.ReportingServices.DataExtensions"/>
<Extension Name="ODBC" Type="Microsoft.ReportingServices.DataExtensions.OdbcConnectionWrapper,Microsoft.ReportingServices.DataExtensions"/>
<Extension Name="XML" Type="Microsoft.ReportingServices.DataExtensions.XmlDPConnection,Microsoft.ReportingServices.DataExtensions"/>
<Extension Name="SHAREPOINTLIST" Type="Microsoft.ReportingServices.DataExtensions.SharePointList.SPListConnection,Microsoft.ReportingServices.DataExtensions"/>
<Extension Name="SAPBW" Type="Microsoft.ReportingServices.DataExtensions.SapBw.SapBwConnection,Microsoft.ReportingServices.DataExtensions.SapBw"/>
<Extension Name="ESSBASE" Type="Microsoft.ReportingServices.DataExtensions.Essbase.EssbaseConnection,Microsoft.ReportingServices.DataExtensions.Essbase"/>
<Extension Name="TERADATA" Type="Microsoft.ReportingServices.DataExtensions.TeradataConnectionWrapper,Microsoft.ReportingServices.DataExtensions"/>
</Data>
So it was in the config file ... 

Similar Messages

  • SSRS Designer - XML Datasource - Parameter passing XML gets encoded, causes error on WS Request

    Hello,
    I am attempting to query a List from SharePoint using the XML Datasource. I am forced to use this datasource as our infrastructure team will not be upgrading our SSRS 2008 farm to SSRS 2008 R2 anytime soon. 2008 R2 has Native SharePoint
    List Datasources ( which works great FYI ). I already completed the report using the Native SP List DS, only to find out that my timing was not so great as 2008 R2 was not in production yet... /sigh, communication... anyways...
    I have successfully queried the List using the XML Datasource. It is only when I try to use the CAML query in the query parameter that it fails. So, here is my Query:
    <Query>
    <SoapAction>http://schemas.microsoft.com/sharepoint/soap/GetListItems</SoapAction>
    <Method Namespace="http://schemas.microsoft.com/sharepoint/soap/" Name="GetListItems">
    <Parameters>
    <Parameter Name="listName">
    <DefaultValue>{DD3DE881-1F9D-4016-AD73-F7E1D9340880}</DefaultValue>
    </Parameter>
    <Parameter Name="query">
    <DefaultValue>
    <Query>
    <Where>
    <Gt>
    <FieldRef Name="Modified" />
    <Value Type="DateTime">2011-03-01</Value>
    </Gt>
    </Where>
    </Query>
    </DefaultValue>
    </Parameter>
    </Parameters>
    </Method>
    <ElementPath IgnoreNamespaces="True">*</ElementPath>
    </Query>
    I will be replacing that hard date with something like =DateAdd("d",-7,Now()) later, but focusing on the task at hand...
    Here is the error ( trimmed so you don't need to read the whole stack ):
    <soap:Body>
    <soap:Fault>
    <faultcode>soap:Server</faultcode>
    <faultstring>Exception of type 'Microsoft.SharePoint.SoapServer.SoapServerException' was thrown.</faultstring>
    <detail>
    <errorstring xmlns="http://schemas.microsoft.com/sharepoint/soap/">Element &lt;Query&gt; of parameter query is missing or invalid.</errorstring>
    <errorcode xmlns="http://schemas.microsoft.com/sharepoint/soap/">0x82000000</errorcode>
    </detail>
    </soap:Fault>
    </soap:Body>
    The key to that error is:  Element &lt;Query&gt; of parameter query is missing or invalid.
    So I see that it is being encoded, so I decided to capture the actual Webservice request with Fiddler:
    <?xml version="1.0" encoding="utf-8"?>
    <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
    <soap:Body>
    <GetListItems xmlns="http://schemas.microsoft.com/sharepoint/soap/">
    <query>
    &lt;Query&gt;
    &lt;Where&gt;
    &lt;Gt&gt;
    &lt;FieldRef Name="Modified" /&gt;
    &lt;Value Type="DateTime"&gt;2011-03-01&lt;/Value&gt;
    &lt;/Gt&gt;
    &lt;/Where&gt;
    &lt;/Query&gt;
    </query>
    <listName>{DD3DE881-1F9D-4016-AD73-F7E1D9340880}</listName>
    </GetListItems>
    </soap:Body>
    </soap:Envelope>
    So now that we know that somehow the XML parameter of "query" is being encoded. How do I tell the SSRS designer that for this XML datasource's dataset query, I do not wish to encode that parameter?  I have searched all day today and came up with
    very little. I found a few posts with a simliar question, but no solution was ever mentioned.
    The closest to a likely solution was this Post :
    http://social.msdn.microsoft.com/Forums/en-US/sqlreportingservices/thread/8a9ba2fc-26cd-423e-bbbf-a16b5c9722f5/
    in particular this phrase interested me:
    "Query parameters of type Msxml2.DOMDocument30 are passed as XML. Parameters of type String which happen to contain XML are passed as strings and are XML encoded in the SOAP message. The function CXml(String) converts a string
    into an Msxml2.DOMDocument30 and can be used in query parameter expressions."
    Similar to the poster of that question, I also cannot find a way to define the parameter as an XML type or the use of this mysterious CXML() function in the expression builder...
    I'm looking for a Microsoft resource to tell me whats going on here, but if anyone else has a workaround or an idea, I would be happy to try it out.
    Regards,
    -Ryan, Solution Architect

    Hi Ryan,
    Thanks for your question, from your statement, it seems that you want to give a default value for the parameter named query, right? If so I would recommend you achieve this requirement in report level, please follow these:
    1. Create a parameter named Date, select Date/Time as data type.
    2. Move to Default values tab, then click Add button ->type in  =DateAdd("d",-7,Now())  as defult value's expression.
    3. Right-cilck the dataset, and then select DataSet properties.
    4. Move to Filters tab, click add button to add a filter.
    5. In the drop-down list of Expression, select Modified datefield with Date/Time datatype.
    6. Type in =Parameters!Date.Value in value's textbox.
    Similar thread, please get a reference from this
    http://social.technet.microsoft.com/Forums/en-US/sqlreportingservices/thread/24d30b00-139e-4487-9fb1-02f460b432f9
    If you have any question, please feel free to ask.
    Thanks,
    Challen Fu 
    Please remember to mark the replies as answers if they help and unmark them if they provide no help.

  • Fields missing from webservice datasource in SSRS

    We are using a XML webservice as a datasource for SSRS. The webservice is returning  the hierarchy of departments of our company.
    The data is consumed by SSRS but some fields are missing.
    This is (simplified) what is returned by the webservice:
    <department>
      <nr>1</nr>
      <name>name1/name>
    </department>
    <department>
      <nr>2</nr>
      <name>name2/name>
      <parentdepartment>1</parentdepartment>
    </department>
    etc
    The field parentdepartment is missing from the fieldlist, even if I add it by hand it will be empty.
    At this forum I found that fields are even skipped when the first item has an empty value for a certain field so the absence of a field in the first item must certainly be the
    problem. Nr 1 has no parentdepartment field.
    Is there a way around this like skipping the first department, we don't need it, or forcing the SSRS-datasource to add the parentdepartment field.
    As it is used by many applications we prefer not to change the webservice to skip the first or add dummy values to the first item.

    Typically if the field doesn't show up the CR can't figure out what type it is which means when we query the DB for the field type the client/server returns the wrong type or some type that CR doesn't support.
    How is the field defined on the server?
    Thank you
    Don

  • Sql Server Web Edition Reporting Services errors when trying to connect to Windows Azure SQL

    I am using a preconfigured image from the Azure VM Gallery to create a VM.
    --> Sql Server 2012 SP1 Web running under Windows Server 2008 R2
    After configuring Reporting Services I get the following error when trying to run a report that connects to my Azure SQL db.
    An error has occurred during report processing. (rsProcessingAborted)
    An attempt has been made to use a data extension 'SQLAZURE' that is either not registered for this report server or is not supported in this edition of Reporting Services. (rsDataExtensionNotFound)
    On the VM using SSMS I can connect to the Azure SQL db.  On the VM in Report Builder when I define a connection I get a similar error to the one above when I test that connection.  I am using Microsoft Azure SQL as the data source type. 
    Interestingly in Report Builder, if I proceed past the connection definition, I can see the tables from my Azure SQL db in the dataset definition page.
    One more note.  If I use a different image from the Gallery (Sql Server 2012 Standard SP1 on Windows Server 2012) my report builder connection works and the reports run fine.  I believe that the Azure documentation says that Sql Server Web edition
    is an acceptable choice for the SSRS on VM for reporting.
    Any thoughts or suggestions?
    Thanks -- Tom Reilly

    Hello,
    A VM with SQL Server 2008 R2 or 2012 supports all Reporting Services features, including all supported data sources, customization and extensibility, and scheduled report execution and delivery.
    Did you run the report in Report Manager,or preview the report in Report Builder? Which version of the Report Builder you installed in the Windows Azure VM? SQL Reporting does not support reports created from Report Builder 1.0 or 2.0. You can create reports
    using Report Builder 3.0 and then upload the reports.
    What's more, please also check the database source credential of the report.
    Regards,
    Fanny Liu
    If you have any feedback on our support, please click here.
    Fanny Liu
    TechNet Community Support

  • Is anybody successfully migrated SSRS 2005 SP2 to SSRS 2014?

    what I was doing:  Try to migrate the ssrs 2005 sp2 in a old web server to SSRS 2014 in a new server (native mode)
    1. old SSRS web server:  SSRS 2005 SP2 enterprise edition with window server 2003  (server 1)
    2. New SSRS web server:  window server 2012 R2, installed sql server 2014 database engine and SSRS. (server 2)
    3. backup configuration files, encryption key, we have no custom assamblies from the old SSRS web Server (server 1)
    4. Backup the report server databases from the existing old database server. (server 3)  (our SSRS web server and SSRS report server databases are in different servers)
    5. Created the RSExecRole and grantd all the permissions according to the documentation in the sql server 2014 database server (server 4)
    6. Restore the databases to the new database server that is in sql server 2014. (server 4)
    7. Go to server 2 to configure the reporting service using the configuration Manager
     I successfully pointed to new databases, but when test the url, I got the error:  The version of the report server database is either in a format that is not valid or it can not be read.  The found version is '143' and the expected version
    is '162'
    I worked with Microsoft technician, and he said I have to upgrade my old SSRS from 2005 SP2 to 2005 SP4 first then do the migration.   But I saw some article saying that I can migrate the SSRS from 2005 SP2 to SSRS 2014.   Any help is
    very much appreciated.  
    Li-hui Chen

    Thank you Katherine for your reply!  I was able to bring up the reports in my new Report web server when I restore the RS databases onto a sql server 2008 server.  I got the version conflict error when I restore the databases directly onto a sql
    server 2014 server.  Our goal is migrating the SSRS 2005 SP2 to SSRS 2014 with databases in sql server 2014. Therefore, I will have to migrate the SSRS 2005 to 2014 but host the Reporting server databases in sql server 2008 R2 first, then
    upgrade Reporting Server databases to sql Sql server 2014. 
    Below steps are what I have done so far to migrate the SSRS from 2005 to 2014:
    1. install sql server 2014 on a new server (RS server 2- SSRS 2014)
    2. backup up config files, encryption key, application files in old reporting server(RS server 1 - SSRS 2005 SP2)
    3. backup the reporting server databases from old database server  (in sql server 2005 sp4) (RS databases server 1)
    4. Move config files and encryption key backup files to new RS server 2.   
    5. Move databases backup files to another server (in Sql server 2008 R2 (RS databases server 2) 
    6. Restore the backup files to (RS databases server 2)
    7. Configure the Reporting services in new server (RS server 2 - SSRS 2014)
        a. configure URL
        b. change databases connection
        c. Restore the encryption key
    8. Check the reports.
    Now, I am able to see all the reports in my new web server(SSRS 2014) and the databases are in the server that is in SQL Server 2008 R2 version. 
    My collegue will upgrade the database server 2 including the report server databases and some other databases (currently in sql server 2008 R2 version with some other databases). 
    1. When she upgrades the database server 2 from sql server 2008 R2 to sql server 2014, do I need to do anything on the new reporting service web server?
    2. I was thinking about that I will need to do the RS databases backup and encryption key backup  before my colleuge do the sql server 2014 upgrade, and after she finish the upgrade, I will then go to new SSRS web server to do the reporting
    service configuration using the configuration manager tool.  I will do the database set up and restore the encryption key.  Am I right? 
    Any comment and suggestion will be great appriciated! Have a nice day!
    Li-hui Chen

  • XML Datasource Supported?

    I was wondering if Crystal Reports for Eclipse supports an XML Datasource?  If so how do you use it?

    <p>This is really a yes and no answer (much like the Stored Procedures and JDBC-ODBC questions I have been getting on the forum). Our full blown Crystal Reports Designer does support connecting to and designing reports off of XML and Web Service data sources. Our Java engine also supports reporting off of these data sources, which means you will have no problem editing or previewing an existing report that has the XML data source already added. The problem with CR4E specifically lies around the connection wizards we supply with the product. We did not want to "re-invent the wheel" when it came to defining how users will connect to data sources. Instead we used the existing Eclipse view which Developers are already using to handle their data source needs. Unfortunately, the Database Explorer does not currently provide all of the data source options our designer supports so we are forced to have a parity gap between what the engine can support at runtime and what the user is able to design against. Potentially, the possibility exists for a user to write their own data source connection wizard and create a drop-handler for the CR4E designer which may eliminate some of these issues. However, I have to look into this option a little more. I think there may be a way to write a simple class to add the XML file at runtime. Once the file has been added the report could be saved and opened in the editor. The key point that is missing today is that there is no UI available in CR4E to connect to XML. Once the XML data source gets in the report we should have no problem editing it. Anyway, let me look into this and get back to you on some possible work-arounds. </p><p>Regards,<br />Sean Johnson (CR4E Product Manager) </p>

  • Dynamic xml datasource

    Post Author: ililal
    CA Forum: Data Connectivity and SQL
    This is a java web application  using:jdk 1.4.12crystal reports xi r2sun application server  8.2Here's the problem:I would like to generate a dynamic XML document as the datasource. (This XML datasource is a result set from a query.  I've completed and tested the XML file; it works.) Using this new XML datasource as the driver for the Crystal Report, my reports should display in a web environment.BTW, I created the Crystal Report rpt file by first selecting XML.  Created a second report with the Database  files option.  They both worked with in the Crystal report view section; however, they didn't work in the application.this is the error:com.crystaldecisions.sdk.occa.report.lib.ReportSDKException: No database connector has been specified.---- Error code :-2147467259 Error code name:failedI've searched the net with no luck.Hereu2019s my source code:ReportClientDocument reportClientDoc = new ReportClientDocument();reportClientDoc.open("Report1.rpt", 0);             IXMLDataSet xmlDS = new XMLDataSet(new ByteArray(bytesFromFile(XMLFileLocation)), new ByteArray(bytesFromFile(XMLFileLocation)));// Change the XML datasource to the new XML datasource reportClientDoc.getDatabaseController().setDataSource(xmlDS, "", "");

    Post Author: ililal
    CA Forum: Data Connectivity and SQL
    I spoke directly with Business Objects. They said,"Sun Application Server 8.2 is not supported."

  • XML Datasource

    Hello:
    I am trying to change a datasource at runtime using java.  The datasource is an XML file located on the local machine.  The original and new XML datasource are the same format from a tag perspective.
    I convert the XML file and pass it to the setDatasource() method of the dbcontroller.
    The following exception is then thrown:
    Exception caught: com.crystaldecisions.sdk.occa.report.lib.ReportSDKLogonException: Logon failed.
    Error in File C:\WINDOWS\TEMP\TRW_Test {6BA2425C-D38F-43BA-B394-0382CA1AF83F}.rpt:
    Unable to connect: incorrect log on parameters.---- Error code:-2147217393 Error code name:dbLogonFailed
    It appears the RAS is trying to logon to this temporary report or datasource.  I'm not sure.
    What do I need to do to get around this?
    I'm assuming I need to logon into something.
    Many thanks
    TRW

    Hi Praveen,
               I found this following procedure in the sap library. They r also said that 'Choose Delta Process Initialization mode on the Update tab page and select Initialization without Data Transfer'
              Thatz why I asked..I am confused now...please help.
    Procedure
    To activate data transfer to the delta queue, create an InfoPackage for your XML DataSource in order to initialize without a data request.
           1.      In the Modeling InfoSource tree of the Administrator Workbench , choose InfoSources ®Your Application Component ® Your InfoSource for Requesting XML Data ® myself BW System ® Create InfoPackage
           2.      Enter a description for your InfoPackage in the following dialog box. Select the XML DataSource and confirm your entries.
           3.      Edit the tab pages for the InfoPackage. Choose Delta Process Initialization mode on the Update tab page and select Initialization without Data Transfer.
           4.      Schedule the InfoPackage.
    Regards,
    Vithul

  • Unable to add replication feature in sql server 2012 web edition

    Hi All,
    We are using SQL Server 2012, Web edition and when it was installed replication is not an added feature so I tried to add this feature but getting below error.
    Error: There are no SQL Server instances or shared features that can be updated on this computer.
    Description: The version of SQL Server instance MSSQLSERVER does not match the version expected by the SQL Server update. The installed SQL Server product version is 11.1.3000.0, and the expected SQL Server version is 11.0.2100.60
    And also please let me know how to identify the default file location of the setup file 'setup.exe' for SQL Server 2012 (Webedition, 64bit) Grateful to your time and support.
    I'm using "C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\Update Cache\KB2777772\QFE\setup.exe" to add replication feature, please correct me if I'm wrong.
    Thank You.
    Regards,
    Kalyan
    ----Learners Curiosity Never Ends----

    It looks like you are trying to add Replication Components, however, you are using the Cumulative update package 5 setup, which is wrong.
    Note that you will not find the setup file for SQL Server on your file system, it will be on your installation media.
    To install SQL Server Replication Components, locate your installation media and run Setup.exe.  Select the add features to an existing instance option, select your instance, and add replication components.
    Brandon Williams (blog |
    linkedin)

  • Ssrs 2008 r2 or ssrs 2012 place moving graphics in report while it is executing

    In a new ssrs 2008 r2 or ssrs 2012 report application, I want to add some graphics to
    the report(s). I know that you can embedded a graphic in the ssrs report. However I would like to be able to do one or more of the items I am listing below:
    1. In one or two spots, I would like to have the pictures change. The picture would display for 5 to 60 seconds and then a new graphic would show up.
    2.  I would like the possibility of one graphic being displayed while the entire ssrs report is executing. The next time the report is executing, a new graphic would be displayed.
    3. I would like a 'slideshow' of graphics being displayed. The slideshow would be dsiplayed in in the same sequence.
    4. I would like to obtain the graphics from an open show (free) location for a non profit public school system.
    Thus can you tell me if any of the options I listed above are possibly? If so, can  you tell me what option I can embed in a report and how to accomplish the goal in the ssrs report?
    Also if you have any other ideas about graphics in the report, can you tell me what thse option(s) are and how would I accomplish this goal?

    Hi wendy,
    In Reporting Services, if we want to only display one graphic in some time, and display other graphics in other times in a report. So that the all graphics are alternatively displayed in the report. In this scenario, we can set the AutoRefresh property of
    the report to x number of seconds for the changes to occur, then set the visibility property of graphics based on AutoRefresh length we have set. For more details, please see the steps below:
    Set the AutoRefresh property of the report to 15 seconds (supposing there are 4 graphics in the report (60/4=15)).
    Insert all graphics in the report.
    Use the following expressions to control the visibility of graphics.
    Graphic 1:=IIf(Second(Now()) < 15, False, True) the first graphic will show if the AutoRefresh occurred during the first 15 second block of the current minute, all other times during that minute it will be hidden.
    Graphic 2:=IIf(Second(Now()) >= 15 AND Second(Now()) < 30, False, True) the second graphic will show if the AutoRefresh occurred during the second 15 second block of the current minute, all other times during that minute it will
    be hidden.
    Graphic 3:=IIf(Second(Now()) >= 30 AND Second(Now()) < 45, False, True) the third graphic will will show if the AutoRefresh occurred during the third 15 second block of the current minute, all other times during that minute it will
    be hidden.
    Graphic 4:=IIf(Second(Now()) >= 45, False, True) the fourth graphic will show if the AutoRefresh occurred during the fourth 15 second block of the current minute, all other times during that minute it will be hidden.
    Besides, we cannot display the image with dynamic form by using External Image Option, it will be replaced with static form. So if we want to show slideshow in the report, we can also refer to the following thread:
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/62b0317b-1458-4d91-9fdd-00c4bbe791f7/ssrs-report-slideshow-on-autorefrsh?forum=sqlreportingservices
    Hope this helps.
    Thanks,
    Katherine Xiong
    If you have any feedback on our support, please click
    here.
    Katherine Xiong
    TechNet Community Support

  • Is there any way to read XML directly from a Web Page ??

    i have a url, which on sending request, shows XML in browser.
    Now i need to read this XML in browser and then manipulate it according to my need and display it on another page.
    actually the process is. :
    1) i have to first retrieve an xml from other site. (XML will only be shown in browser)
    2.)then i have to read the Xml and show it in according to my requirements.
    Is there any way to read XML directly from a Web Page ??
    is their logic to accomplish this.
    e.g in Servlet i can do somewhat like this :
    String wholeXml=Somemethod(url);
    Please Advice

    the average Java XML parser will accept an InputStream, so just open an URLConnection to the webpage, get the inputstream from it and feed that inputstream to the XML parser. If the URL has valid XML data, it will get parsed without problems.

  • The format of XML file returned from web service

    Hi everyone,
    My web service (build in asp.net 2.0 with C#) returns the
    following xml file which is not what I want.
    <Root>
    <Root2>
    <Person> .... </Person>
    <Person> .... </Person>
    <Person> .... </Person>
    </Root2>
    </Root>
    But I want my web service to return the following xml file.
    How can I get the following xml file instead of the above xml file
    ? Thanks.
    <Root>
    <Person> .... </Person>
    <Person> .... </Person>
    <Person> .... </Person>
    </Root>

    Thanks for everyone's reply!
    Sorry, I don't know where to set resultFormat="e4x". Below is
    my code. And LINE 111 gives error. And the error message is below.
    And the xml returned from the web service is below.
    Error: Error #2093: The Proxy class does not implement
    getDescendants. It must be overridden by a subclass.
    at Error$/throwError()
    at flash.utils::Proxy/
    http://www.adobe.com/2006/actionscript/flash/proxy::getDescendants()
    at
    LogIn/loginHandler()[P:\JIMMY-FLEX\Flex_LogIn\LogIn.mxml:58]
    at flash.events::EventDispatcher/dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at
    mx.rpc::AbstractService/dispatchEvent()[E:\dev\3.0.x\frameworks\projects\rpc\src\mx\rpc\A bstractService.as:232]
    at mx.rpc::AbstractOperation/
    http://www.adobe.com/2006/flex/mx/internal::dispatchRpcEvent()[E:\dev\3.0.x\frameworks\pro jects\rpc\src\mx\rpc\AbstractOperation.as:193
    at mx.rpc::AbstractInvoker/
    http://www.adobe.com/2006/flex/mx/internal::resultHandler()[E:\dev\3.0.x\frameworks\projec ts\rpc\src\mx\rpc\AbstractInvoker.as:191
    at
    mx.rpc::Responder/result()[E:\dev\3.0.x\frameworks\projects\rpc\src\mx\rpc\Responder.as:4 1]
    at
    mx.rpc::AsyncRequest/acknowledge()[E:\dev\3.0.x\frameworks\projects\rpc\src\mx\rpc\AsyncR equest.as:74]
    at
    DirectHTTPMessageResponder/completeHandler()[E:\dev\3.0.x\frameworks\projects\rpc\src\mx\ messaging\channels\DirectHTTPChannel.as:381]
    at flash.events::EventDispatcher/dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at flash.net::URLLoader/onComplete()
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Canvas xmlns:mx="
    http://www.adobe.com/2006/mxml"
    width="100%" height="100%" xmlns:ns1="*">
    <mx:Script>
    <![CDATA[
    import mx.rpc.events.ResultEvent;
    namespace FaciNS = "
    http://FaciNet.com/";
    import mx.rpc.events.FaultEvent;
    import mx.rpc.events.ResultEvent;
    import mx.rpc.soap.WebService;
    //public var __xmlResult:XML;
    public var ws:WebService;
    public function Log_In(UN:String, PW:String):void
    ws.Login(UN, PW);
    public function getLoginData():void {
    loadWSDL();
    Log_In(UN.text, PW.text);
    public function loadWSDL():void
    ws = new mx.rpc.soap.WebService();
    ws.wsdl = "
    http://localhost:50779/VS2008_LogIn/Service.asmx?wsdl"
    ws.useProxy = false;
    ws.addEventListener("fault", faultHandler);
    ws.addEventListener("result", loginHandler);
    ws.loadWSDL();
    public function loginHandler(e:ResultEvent):void {
    var wkSouID:String = e.result[0]..SouID; // LINE 111
    trace(wkSouID);
    public function faultHandler(event:FaultEvent):void
    dispatchEvent(new Event("Error"));
    public function checkUser(UName:String, PWord:String):void {
    getLoginData();
    ]]>
    </mx:Script>
    <mx:Panel id="loginPanel" horizontalScrollPolicy="off"
    verticalScrollPolicy="off" width="400" height="200" x="97"
    y="66">
    <mx:Form id="loginForm" width="100%" height="100%">
    <mx:FormItem label="Username:" color="red">
    <mx:TextInput id="UN" />
    </mx:FormItem>
    <mx:FormItem label="Password:" color="red">
    <mx:TextInput id="PW"/>
    </mx:FormItem>
    </mx:Form>
    <mx:ControlBar>
    <mx:Spacer width="100%" id="spacer1"/>
    <mx:Button label="Login" id="loginButton"
    click="checkUser(UN.text, PW.text)" />
    </mx:ControlBar>
    </mx:Panel>
    </mx:Canvas>
    <?xml version="1.0" encoding="utf-8" ?>
    - <ArrayOfLogIn xmlns:xsi="
    http://www.w3.org/2001/XMLSchema-instance"
    xmlns:xsd="
    http://www.w3.org/2001/XMLSchema"
    xmlns="
    http://tempuri.org/">
    - <LogIn>
    <SouID>2</SouID>
    <LogInUserID>3</LogInUserID>
    <LogInUserName>samlam</LogInUserName>
    <Password>abc123</Password>
    <DialectID>4</DialectID>
    <CreatedByUserID>5</CreatedByUserID>
    <UpdatedByUserID>5</UpdatedByUserID>
    </LogIn>
    - <LogIn>
    <SouID>3</SouID>
    <LogInUserID>4</LogInUserID>
    <LogInUserName>samlam</LogInUserName>
    <Password>abc123</Password>
    <DialectID>4</DialectID>
    <CreatedByUserID>5</CreatedByUserID>
    <UpdatedByUserID>5</UpdatedByUserID>
    </LogIn>
    </ArrayOfLogIn>

  • Error in jbosscmp-jdbc.xml : datasource-mapping Pointbase not found

    Hi I'm having problems deploying my EJBs using the Pointbase Database.
    This is what I'm working with:
    standardjbosscmp-jdbc.xml:
    <jbosscmp-jdbc>
       <defaults>
          <datasource>java:/PointbaseDS</datasource>
          <datasource-mapping>Pointbase</datasource-mapping>pointbase-ds.xml:
    <datasources>
         <local-tx-datasource>
              <jndi-name>PointbaseDS</jndi-name>
    <connection-url>jdbc:pointbase:server://localhost:19092/sample</connection-url>
              <driver-class>com.pointbase.jdbc.jdbcUniversalDriver</driver-class>
              <user-name>jboss</user-name>
              <password>password</password>
         </local-tx-datasource>
    </datasources>jbosscmp-jdbc.xml:
    <jbosscmp-jdbc>
         <defaults>
              <datasource>java:/PointbaseDS</datasource>
              <datasource-mapping>Pointbase</datasource-mapping>
         </defaults>I keep getting the error message:
    org.jboss.deployment.DeploymentException: Error in jbosscmp-jdbc.xml : datasource-mapping Pointbase not found
    Any ideas why?
    Thanks.

    By the way I'm using JBoss server.

  • XML DataSource delivers no mare data after upgrade from 7.01 to 7.31

    Dear all,
    we have an XML DataSource (BW DataSource with SOAP Connection) that worked fine till our upgrade from BW 7.01 to 7.31.
    Now the delta infopackage is (still) succesfull but doesn't deliver any data.
    In our XI system there is this error:
    28.05.2014 08:01:05.399
    Information
    SOAP: call completed
    28.05.2014 08:01:05.400
    Information
    The message was successfully retrieved from the send queue.
    28.05.2014 08:01:05.402
    Information
    Executing request mapping "http://XXXXXXX/kam03/kampagne/reporting/visitorhistory/pi/CampaignVHOB2BWCampaignVHIB" (SWCV a2b526801e5111e0858eea100a375191)
    28.05.2014 08:01:05.402
    Information
    The message status was set to DLNG.
    28.05.2014 08:01:06.092
    Information
    Delivering to channel: SOAP_XI_RCV
    28.05.2014 08:01:06.092
    Information
    MP: entering1
    28.05.2014 08:01:06.092
    Information
    MP: processing local module localejbs/sap.com/com.sap.aii.af.soapadapter/XISOAPAdapterBean
    28.05.2014 08:01:06.092
    Information
    SOAP: request message entering the adapter with user J2EE_GUEST
    28.05.2014 08:01:06.470
    Fehler
    SOAP: call failed: java.lang.NullPointerException: while trying to invoke the method com.sap.aii.af.sdk.xi.mo.xmb.XMBMessageHeader.getMessageId() of an object loaded from local variable messageHeader
    28.05.2014 08:01:06.472
    Fehler
    Adapter Framework caught exception: java.lang.NullPointerException: while trying to invoke the method com.sap.aii.af.sdk.xi.mo.xmb.XMBMessageHeader.getMessageId() of an object loaded from local variable 'messageHeader'
    28.05.2014 08:01:06.472
    Fehler
    MP: exception caught with cause com.sap.engine.interfaces.messaging.api.exception.MessagingException: java.lang.NullPointerException: while trying to invoke the method com.sap.aii.af.sdk.xi.mo.xmb.XMBMessageHeader.getMessageId() of an object loaded from local variable 'messageHeader'
    28.05.2014 08:01:06.472
    Fehler
    SOAP: error occured: com.sap.engine.interfaces.messaging.api.exception.MessagingException: java.lang.NullPointerException: while trying to invoke the method com.sap.aii.af.sdk.xi.mo.xmb.XMBMessageHeader.getMessageId() of an object loaded from local variable messageHeader
    28.05.2014 08:01:06.472
    Information
    SOAP: sending a delivery error ack ...
    28.05.2014 08:01:06.472
    Information
    SOAP: sent a delivery error ack
    28.05.2014 08:01:06.476
    Fehler
    Transmitting the message to endpoint <local> using connection SOAP_http://sap.com/xi/XI/System failed, due to: com.sap.engine.interfaces.messaging.api.exception.MessagingException: java.lang.NullPointerException: while trying to invoke the method com.sap.aii.af.sdk.xi.mo.xmb.XMBMessageHeader.getMessageId() of an object loaded from local variable 'messageHeader'.
    28.05.2014 08:01:06.493
    Information
    The asynchronous message was successfully scheduled to be delivered at Wed May 28 08:06:06 CEST 2014.
    28.05.2014 08:01:06.493
    Information
    The message status was set to WAIT.
    28.05.2014 08:06:06.482
    Information
    The message status was set to TBDL.
    28.05.2014 08:06:06.783
    Information
    The message was successfully retrieved from the send queue.
    28.05.2014 08:06:06.783
    Information
    Retrying to send message. Retry: 1
    Does anybody have a clue and know what's wrong?
    Thanks in advance.
    Best regards,
    Nicole

    Hi Nicole,
    First of all I am afraid that I am not an expert in this area. My impression is that the HTTP destination type is created on the receiver side (i.e. BW). If that is the case, then I think t/code SM59 is the right place where you can also create other connection types than ABAP (please refer to paragraph 4.1 of the document which was mentioned in the other discussion).
    However, I suggest to involve a basis/system administrator and if possible also an XI consultant to come to a solution. My gut feeling says that it's a connection problem which has to be solved in either the BW system, XI system or in both systems.
    Best regards,
    Sander

  • How to enable Full text search feature in Azure SQL DB - Web Edition

    I have created an instance of Azure SQL DB web edition (basic), using the BizSpark a/c, for one of my global search feature, I need to enable/install full-text search , I don't find this option in Azure SQL DB web edition that I installed , would
    appreciate any help on this.

    Unfortunately full text search is not supported in Azure SQL DB.  
    Cotega - Azure SQL DB Monitoring, Notification and Scheduling service

Maybe you are looking for

  • Display won't go to sleep and freezes

    hey guys, my macbook retina wont go to sleep when I leave it idle, I set it to go to sleep after 1 minute in energy saver preferences but nothing happens..the screen stays on , if I try to manually make it sleep, than the computer screen turns black

  • How do i fix screen resolution message

    Your screen resolution is set below our minimum recommendation of 1024 x 600 pixels. my screen resolution is already set at it's highest: There is a screen resolution problem Your screen resolution is set below our minimum recommendation of 1024 x 60

  • What format should I use to archive camcorder videos.

    I've seen many different variations of my question on the forums, but nothing answering all my questions. So, here goes. I have a minidv camcorder and I've been ripping the video to dv files using imovie hd 6. I then put together the clips that shoul

  • HT1379 PRAM reset not working as it is described in the Apple Help

    I tried the reset several times but there is never a second start up sound! I really tried specifically holding command - option (alt)- and P and R-before the grey secreen came up--- no second start up sound. Any clue? This is an IMAC ... I was given

  • Bluetooth sharing/streaming to tv

    I have a samsung tablet that allows me to stream through bluetooth from it to my panasonic viera smart tv which is supported by bluetooth with video display.  I'm wondering if I can use the bluetooth on my macbook to do the same thing.  Is there a wa