[flexcoders] Re: How to Access Microsoft Reporting Services (RS) Webservices (reportservice2005.asmx?wsdl)

2009-04-16 Thread valdhor
Can you post the WSDL? Or location of one on the net? --- In flexcoders@yahoogroups.com, Baz wrote: > > I would like to build a flex front-end to Microsoft Reporting Services (RS) > using the provided webservice at > http://mydomain/reportserver/reportservice2005.asmx?wsdl. I am able to view > t

[flexcoders] Re: How to Access Microsoft Reporting Services (RS) Webservices (reportservice2005.asmx?wsdl)

2009-04-16 Thread valdhor
Nope, the WSDL should show the operations and data types the service uses. It is just an XML file so you should be able to copy and paste it. Also, is there an API reference for Microsoft Reporting Services (RS) webservice? --- In flexcoders@yahoogroups.com, Baz wrote: > > Valdhor, thanks for

[flexcoders] Re: How to Access Microsoft Reporting Services (RS) Webservices (reportservice2005.asmx?wsdl)

2009-04-16 Thread valdhor
The thing is, a web service is a very low level thing. You post XML to it and it responds in XML. Authentication is usually done in a SOAP header or less often as parameters in the SOAP body. Generally there is no other mechanism (Except maybe HTTP Auth). I can't see how you would use a .NET ser

[flexcoders] Re: How to Access Microsoft Reporting Services (RS) Webservices (reportservice2005.asmx?wsdl)

2009-04-20 Thread markgoldin_2000
Can you run SQL reports in your Flex application? That way you won't have any problems with RS Web Services. --- In flexcoders@yahoogroups.com, Baz wrote: > > I would like to build a flex front-end to Microsoft Reporting Services (RS) > using the provided webservice at > http://mydomain/reportse

Re: [flexcoders] Re: How to Access Microsoft Reporting Services (RS) Webservices (reportservice2005.asmx?wsdl)

2009-04-16 Thread Baz
Valdhor, thanks for the response. Unfortunately the server is behind my corporate firewall. Is there anything I can do and send you the results for? Baz On Thu, Apr 16, 2009 at 12:18 PM, valdhor wrote: > > > Can you post the WSDL? Or location of one on the net? > > > --- In flexcoders@yahoogroup

Re: [flexcoders] Re: How to Access Microsoft Reporting Services (RS) Webservices (reportservice2005.asmx?wsdl)

2009-04-16 Thread Baz
I have read the wsdl and imported it into my ide so that is could provide code insight on whats available. There are no problems there, the issue arises when running the code. I get an authorization denied (or similar) error. Googling about I noticed that .net has some special functions for opening

Re: [flexcoders] Re: How to Access Microsoft Reporting Services (RS) Webservices (reportservice2005.asmx?wsdl)

2009-04-20 Thread f3l
This is SO microsoft trying to vendor locking by creating "special auth mechanisms" so much for WS* On Thu, Apr 16, 2009 at 2:57 PM, valdhor wrote: > > > The thing is, a web service is a very low level thing. You post XML to it > and it responds in XML. Authentication is usually done in a SOAP