ziuek.blogspot.com
Rafal Ziolkowski, Software Development: ExtJS and .NET WebService - Remote domain access
http://ziuek.blogspot.com/2009/07/extjs-and-net-webservice-remote-domain.html
Rafal Ziolkowski, Software Development. Lotus Notes, Microsoft .NET, ASP.NET, Sharepoint, SQL Server. ExtJS and .NET WebService - Remote domain access. Author: Rafal Ziolkowski on 22:58. You will find answer for this question in this article. Let's take data from last article:. To make it to work with ExtJS ScriptTagProxy class we need to return data in format like this:. Hey, does it look like JavaScript function call with our data provided as parameter? In simple words: this is an aspx web page wich wi...
ziuek.blogspot.com
Rafal Ziolkowski, Software Development: How to set HTTP method in Ext.data.Store
http://ziuek.blogspot.com/2009/01/how-to-set-http-method-in-extdatastore.html
Rafal Ziolkowski, Software Development. Lotus Notes, Microsoft .NET, ASP.NET, Sharepoint, SQL Server. How to set HTTP method in Ext.data.Store. Author: Rafal Ziolkowski on 13:30. Normally if You declare store in ExtJS the default HTTP method is POST. Sometimes You need send data using GET method, so ExtJS is fortunatelly flexible enough to make it possible. You'll just need to create You own HttpProxy and change this proxy method to GET. Default way using POST method:. Url: 'some url.'.
ziuek.blogspot.com
Rafal Ziolkowski, Software Development: LotusDomino views and JSON
http://ziuek.blogspot.com/2009/08/lotusdomino-views-and-json.html
Rafal Ziolkowski, Software Development. Lotus Notes, Microsoft .NET, ASP.NET, Sharepoint, SQL Server. LotusDomino views and JSON. Author: Rafal Ziolkowski on 14:28. This gonna be really short post. It is easy to obtain data from view as XML string, but to get this data as JSON it seems to be hard work. not exactly :) I have just found really usefull parameter called Outputformat. Where we can set value JSON. Here is how does it look:. Http:/ your server here. Your data base here. Nsf/ your view here.
ziuek.blogspot.com
Rafal Ziolkowski, Software Development: Ext.ux.Chart.OFC.Panel, Internet Explorer and Error #2032
http://ziuek.blogspot.com/2009/03/extuxchartofcpanel-internet-explorer.html
Rafal Ziolkowski, Software Development. Lotus Notes, Microsoft .NET, ASP.NET, Sharepoint, SQL Server. ExtuxChart.OFC.Panel, Internet Explorer and Error #2032. Author: Rafal Ziolkowski on 12:27. While using Ext.ux.Chart.OFC.Panel I have encountered problems with statically delivered data (from js). I made panel embedding ofc panel, and I have created ofc panel in the simplest way (in my opinion):. ExtuxChart.OFC.Panel ({. MediaMask: 'Loading chart.'. 2 Your can add random value to URL pointing to SWF file.
ziuek.blogspot.com
Rafal Ziolkowski, Software Development: How to call secured Domino WebService from .NET application
http://ziuek.blogspot.com/2009/01/how-to-call-secured-domino-webservice.html
Rafal Ziolkowski, Software Development. Lotus Notes, Microsoft .NET, ASP.NET, Sharepoint, SQL Server. How to call secured Domino WebService from .NET application. Author: Rafal Ziolkowski on 15:36. This scenario is quite easy. It requires Internet access in Domino set to Basic Authentication. Create WebService proxy class instance. WebReference.WebServiceTestService service = new. ConnectDominoWSTest.WebReference.WebServiceTestService();. Service.PreAuthenticate = true. Service.Credentials = new. Request...
ziuek.blogspot.com
Rafal Ziolkowski, Software Development: ExtJS and .NET WebServices
http://ziuek.blogspot.com/2009/04/extjs-and-net-webservices.html
Rafal Ziolkowski, Software Development. Lotus Notes, Microsoft .NET, ASP.NET, Sharepoint, SQL Server. ExtJS and .NET WebServices. Author: Rafal Ziolkowski on 10:24. AgentID { get { return. AgentID; } set { agentID = value. FirstName { get { return. FirstName; } set { firstName= value. LastName { get { return. LastName; } set { lastName= value. AgentID = agentID;. Service : System.Web.Services.WebService. ScriptMethod(ResponseFormat = ResponseFormat.Json, UseHttpGet = true. List Agent GetAgents() {. Its v...
ziuek.blogspot.com
Rafal Ziolkowski, Software Development: Selecting uniqe text nodes from XML file using XPath
http://ziuek.blogspot.com/2009/12/selecting-uniqe-text-nodes-from-xml.html
Rafal Ziolkowski, Software Development. Lotus Notes, Microsoft .NET, ASP.NET, Sharepoint, SQL Server. Selecting uniqe text nodes from XML file using XPath. Author: Rafal Ziolkowski on 11:39. How to get list of unique text values from XML document, for example to build a kind of dictionary from these node values. Is name of node to select from. Axis get everything what is before start tag of selected node. It is also possible to use following. Not(= following: text() ]/text(). Any critique here is welcome!