kuji-cube 1.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.document +5 -0
- data/.gitignore +53 -0
- data/.rspec +2 -0
- data/Gemfile +15 -0
- data/Gemfile.lock +82 -0
- data/LICENSE.txt +20 -0
- data/README.md +69 -0
- data/Rakefile +38 -0
- data/kuji-cube.gemspec +28 -0
- data/lib/cube/cube.rb +154 -0
- data/lib/cube/olap_result.rb +13 -0
- data/lib/cube/version.rb +3 -0
- data/lib/cube/xmla.rb +9 -0
- data/lib/cube.rb +2 -0
- data/lib/wsdl/xmla.xml +104 -0
- data/spec/cassettes/.yml +40 -0
- data/spec/cassettes/formatted_values.yml +183 -0
- data/spec/cassettes/kvartovi_u_recima.yml +167 -0
- data/spec/cassettes/kvatovi_u_koloni.yml +169 -0
- data/spec/cassettes/member_query.yml +331 -0
- data/spec/cassettes/mondrian_broj_intervencija.yml +269 -0
- data/spec/cassettes/mondrian_jedan_red_odgovor.yml +171 -0
- data/spec/cassettes/mondrian_nula_redaka.yml +159 -0
- data/spec/cassettes/mondrian_scalar_value.yml +166 -0
- data/spec/cassettes/mondrian_vrati_samo_jedan_broj.yml +166 -0
- data/spec/cassettes/razlog_prijave_i_kvart.yml +219 -0
- data/spec/cube_spec.rb +143 -0
- data/spec/spec_helper.rb +53 -0
- metadata +112 -0
@@ -0,0 +1,183 @@
|
|
1
|
+
---
|
2
|
+
- !ruby/struct:VCR::HTTPInteraction
|
3
|
+
request: !ruby/struct:VCR::Request
|
4
|
+
method: :post
|
5
|
+
uri: http://localhost:8383/mondrian/xmla
|
6
|
+
body: ! "<?xml version=\"1.0\" encoding=\"UTF-8\"?><env:Envelope xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"
|
7
|
+
xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:wsdl=\"http://tempuri.org/wsdl/\"
|
8
|
+
xmlns:env=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:ins0=\"http://tempuri.org/type\"><env:Body><Execute
|
9
|
+
xmlns=\"urn:schemas-microsoft-com:xml-analysis\"> <Command>\n <Statement>
|
10
|
+
<![CDATA[ SELECT { [Measures].[Scope 1 Carbon] } on COLUMNS,\n {
|
11
|
+
[Category].[Energy].Children } on ROWS\n FROM [Carbon]\n WHERE
|
12
|
+
[Date].[Year].[2009]\n ]]> </Statement> \n </Command>\n <Properties>\n
|
13
|
+
\ <PropertyList> \n <Catalog>GOSJAR</Catalog>\n <Format>Multidimensional</Format>
|
14
|
+
\n <AxisFormat>TupleFormat</AxisFormat>\n </PropertyList> \n </Properties>\n</Execute></env:Body></env:Envelope>"
|
15
|
+
headers:
|
16
|
+
soapaction:
|
17
|
+
- ! '"urn:schemas-microsoft-com:xml-analysis:Execute"'
|
18
|
+
content-type:
|
19
|
+
- text/xml;charset=UTF-8
|
20
|
+
content-length:
|
21
|
+
- '849'
|
22
|
+
response: !ruby/struct:VCR::Response
|
23
|
+
status: !ruby/struct:VCR::ResponseStatus
|
24
|
+
code: 200
|
25
|
+
message: OK
|
26
|
+
headers:
|
27
|
+
server:
|
28
|
+
- Apache-Coyote/1.1
|
29
|
+
content-type:
|
30
|
+
- text/xml
|
31
|
+
transfer-encoding:
|
32
|
+
- chunked
|
33
|
+
date:
|
34
|
+
- Wed, 16 May 2012 15:27:42 GMT
|
35
|
+
body: ! "<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>\n<SOAP-ENV:Envelope xmlns:SOAP-ENV=\"http://schemas.xmlsoap.org/soap/envelope/\"
|
36
|
+
SOAP-ENV:encodingStyle=\"http://schemas.xmlsoap.org/soap/encoding/\" >\n<SOAP-ENV:Header>\n</SOAP-ENV:Header>\n<SOAP-ENV:Body>\n<cxmla:ExecuteResponse
|
37
|
+
xmlns:cxmla=\"urn:schemas-microsoft-com:xml-analysis\">\n <cxmla:return>\n
|
38
|
+
\ <root xmlns=\"urn:schemas-microsoft-com:xml-analysis:mddataset\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"
|
39
|
+
xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:EX=\"urn:schemas-microsoft-com:xml-analysis:exception\">\n
|
40
|
+
\ <xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" targetNamespace=\"urn:schemas-microsoft-com:xml-analysis:mddataset\"
|
41
|
+
xmlns=\"urn:schemas-microsoft-com:xml-analysis:mddataset\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"
|
42
|
+
xmlns:sql=\"urn:schemas-microsoft-com:xml-sql\" elementFormDefault=\"qualified\">\n
|
43
|
+
\ <xsd:complexType name=\"MemberType\">\n <xsd:sequence>\n <xsd:element
|
44
|
+
name=\"UName\" type=\"xsd:string\"/>\n <xsd:element name=\"Caption\"
|
45
|
+
type=\"xsd:string\"/>\n <xsd:element name=\"LName\" type=\"xsd:string\"/>\n
|
46
|
+
\ <xsd:element name=\"LNum\" type=\"xsd:unsignedInt\"/>\n <xsd:element
|
47
|
+
name=\"DisplayInfo\" type=\"xsd:unsignedInt\"/>\n <xsd:sequence maxOccurs=\"unbounded\"
|
48
|
+
minOccurs=\"0\">\n <xsd:any processContents=\"lax\" maxOccurs=\"unbounded\"/>\n
|
49
|
+
\ </xsd:sequence>\n </xsd:sequence>\n <xsd:attribute
|
50
|
+
name=\"Hierarchy\" type=\"xsd:string\"/>\n </xsd:complexType>\n <xsd:complexType
|
51
|
+
name=\"PropType\">\n <xsd:attribute name=\"name\" type=\"xsd:string\"/>\n
|
52
|
+
\ </xsd:complexType>\n <xsd:complexType name=\"TupleType\">\n <xsd:sequence
|
53
|
+
maxOccurs=\"unbounded\">\n <xsd:element name=\"Member\" type=\"MemberType\"/>\n
|
54
|
+
\ </xsd:sequence>\n </xsd:complexType>\n <xsd:complexType
|
55
|
+
name=\"MembersType\">\n <xsd:sequence maxOccurs=\"unbounded\">\n <xsd:element
|
56
|
+
name=\"Member\" type=\"MemberType\"/>\n </xsd:sequence>\n <xsd:attribute
|
57
|
+
name=\"Hierarchy\" type=\"xsd:string\"/>\n </xsd:complexType>\n <xsd:complexType
|
58
|
+
name=\"TuplesType\">\n <xsd:sequence maxOccurs=\"unbounded\">\n <xsd:element
|
59
|
+
name=\"Tuple\" type=\"TupleType\"/>\n </xsd:sequence>\n </xsd:complexType>\n
|
60
|
+
\ <xsd:complexType name=\"CrossProductType\">\n <xsd:sequence>\n
|
61
|
+
\ <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n <xsd:element
|
62
|
+
name=\"Members\" type=\"MembersType\"/>\n <xsd:element name=\"Tuples\"
|
63
|
+
type=\"TuplesType\"/>\n </xsd:choice>\n </xsd:sequence>\n
|
64
|
+
\ <xsd:attribute name=\"Size\" type=\"xsd:unsignedInt\"/>\n </xsd:complexType>\n
|
65
|
+
\ <xsd:complexType name=\"OlapInfo\">\n <xsd:sequence>\n <xsd:element
|
66
|
+
name=\"CubeInfo\">\n <xsd:complexType>\n <xsd:sequence>\n
|
67
|
+
\ <xsd:element name=\"Cube\" maxOccurs=\"unbounded\">\n <xsd:complexType>\n
|
68
|
+
\ <xsd:sequence>\n <xsd:element name=\"CubeName\"
|
69
|
+
type=\"xsd:string\"/>\n </xsd:sequence>\n </xsd:complexType>\n
|
70
|
+
\ </xsd:element>\n </xsd:sequence>\n </xsd:complexType>\n
|
71
|
+
\ </xsd:element>\n <xsd:element name=\"AxesInfo\">\n <xsd:complexType>\n
|
72
|
+
\ <xsd:sequence>\n <xsd:element name=\"AxisInfo\"
|
73
|
+
maxOccurs=\"unbounded\">\n <xsd:complexType>\n <xsd:sequence>\n
|
74
|
+
\ <xsd:element name=\"HierarchyInfo\" minOccurs=\"0\"
|
75
|
+
maxOccurs=\"unbounded\">\n <xsd:complexType>\n <xsd:sequence>\n
|
76
|
+
\ <xsd:sequence maxOccurs=\"unbounded\">\n <xsd:element
|
77
|
+
name=\"UName\" type=\"PropType\"/>\n <xsd:element
|
78
|
+
name=\"Caption\" type=\"PropType\"/>\n <xsd:element
|
79
|
+
name=\"LName\" type=\"PropType\"/>\n <xsd:element
|
80
|
+
name=\"LNum\" type=\"PropType\"/>\n <xsd:element
|
81
|
+
name=\"DisplayInfo\" type=\"PropType\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n
|
82
|
+
\ </xsd:sequence>\n <xsd:sequence>\n
|
83
|
+
\ <xsd:any processContents=\"lax\" minOccurs=\"0\"
|
84
|
+
maxOccurs=\"unbounded\"/>\n </xsd:sequence>\n </xsd:sequence>\n
|
85
|
+
\ <xsd:attribute name=\"name\" type=\"xsd:string\"
|
86
|
+
use=\"required\"/>\n </xsd:complexType>\n </xsd:element>\n
|
87
|
+
\ </xsd:sequence>\n <xsd:attribute
|
88
|
+
name=\"name\" type=\"xsd:string\"/>\n </xsd:complexType>\n
|
89
|
+
\ </xsd:element>\n </xsd:sequence>\n </xsd:complexType>\n
|
90
|
+
\ </xsd:element>\n <xsd:element name=\"CellInfo\">\n <xsd:complexType>\n
|
91
|
+
\ <xsd:sequence>\n <xsd:sequence minOccurs=\"0\"
|
92
|
+
maxOccurs=\"unbounded\">\n <xsd:choice>\n <xsd:element
|
93
|
+
name=\"Value\" type=\"PropType\"/>\n <xsd:element name=\"FmtValue\"
|
94
|
+
type=\"PropType\"/>\n <xsd:element name=\"BackColor\" type=\"PropType\"/>\n
|
95
|
+
\ <xsd:element name=\"ForeColor\" type=\"PropType\"/>\n
|
96
|
+
\ <xsd:element name=\"FontName\" type=\"PropType\"/>\n <xsd:element
|
97
|
+
name=\"FontSize\" type=\"PropType\"/>\n <xsd:element name=\"FontFlags\"
|
98
|
+
type=\"PropType\"/>\n <xsd:element name=\"FormatString\"
|
99
|
+
type=\"PropType\"/>\n <xsd:element name=\"NonEmptyBehavior\"
|
100
|
+
type=\"PropType\"/>\n <xsd:element name=\"SolveOrder\"
|
101
|
+
type=\"PropType\"/>\n <xsd:element name=\"Updateable\"
|
102
|
+
type=\"PropType\"/>\n <xsd:element name=\"Visible\" type=\"PropType\"/>\n
|
103
|
+
\ <xsd:element name=\"Expression\" type=\"PropType\"/>\n
|
104
|
+
\ </xsd:choice>\n </xsd:sequence>\n <xsd:sequence
|
105
|
+
maxOccurs=\"unbounded\" minOccurs=\"0\">\n <xsd:any processContents=\"lax\"
|
106
|
+
maxOccurs=\"unbounded\"/>\n </xsd:sequence>\n </xsd:sequence>\n
|
107
|
+
\ </xsd:complexType>\n </xsd:element>\n </xsd:sequence>\n
|
108
|
+
\ </xsd:complexType>\n <xsd:complexType name=\"Axes\">\n <xsd:sequence
|
109
|
+
maxOccurs=\"unbounded\">\n <xsd:element name=\"Axis\">\n <xsd:complexType>\n
|
110
|
+
\ <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n <xsd:element
|
111
|
+
name=\"CrossProduct\" type=\"CrossProductType\"/>\n <xsd:element
|
112
|
+
name=\"Tuples\" type=\"TuplesType\"/>\n <xsd:element name=\"Members\"
|
113
|
+
type=\"MembersType\"/>\n </xsd:choice>\n <xsd:attribute
|
114
|
+
name=\"name\" type=\"xsd:string\"/>\n </xsd:complexType>\n </xsd:element>\n
|
115
|
+
\ </xsd:sequence>\n </xsd:complexType>\n <xsd:complexType
|
116
|
+
name=\"CellData\">\n <xsd:sequence>\n <xsd:element name=\"Cell\"
|
117
|
+
minOccurs=\"0\" maxOccurs=\"unbounded\">\n <xsd:complexType>\n
|
118
|
+
\ <xsd:sequence maxOccurs=\"unbounded\">\n <xsd:choice>\n
|
119
|
+
\ <xsd:element name=\"Value\"/>\n <xsd:element
|
120
|
+
name=\"FmtValue\" type=\"xsd:string\"/>\n <xsd:element name=\"BackColor\"
|
121
|
+
type=\"xsd:unsignedInt\"/>\n <xsd:element name=\"ForeColor\"
|
122
|
+
type=\"xsd:unsignedInt\"/>\n <xsd:element name=\"FontName\"
|
123
|
+
type=\"xsd:string\"/>\n <xsd:element name=\"FontSize\" type=\"xsd:unsignedShort\"/>\n
|
124
|
+
\ <xsd:element name=\"FontFlags\" type=\"xsd:unsignedInt\"/>\n
|
125
|
+
\ <xsd:element name=\"FormatString\" type=\"xsd:string\"/>\n
|
126
|
+
\ <xsd:element name=\"NonEmptyBehavior\" type=\"xsd:unsignedShort\"/>\n
|
127
|
+
\ <xsd:element name=\"SolveOrder\" type=\"xsd:unsignedInt\"/>\n
|
128
|
+
\ <xsd:element name=\"Updateable\" type=\"xsd:unsignedInt\"/>\n
|
129
|
+
\ <xsd:element name=\"Visible\" type=\"xsd:unsignedInt\"/>\n
|
130
|
+
\ <xsd:element name=\"Expression\" type=\"xsd:string\"/>\n
|
131
|
+
\ </xsd:choice>\n </xsd:sequence>\n <xsd:attribute
|
132
|
+
name=\"CellOrdinal\" type=\"xsd:unsignedInt\" use=\"required\"/>\n </xsd:complexType>\n
|
133
|
+
\ </xsd:element>\n </xsd:sequence>\n </xsd:complexType>\n
|
134
|
+
\ <xsd:element name=\"root\">\n <xsd:complexType>\n <xsd:sequence
|
135
|
+
maxOccurs=\"unbounded\">\n <xsd:element name=\"OlapInfo\" type=\"OlapInfo\"/>\n
|
136
|
+
\ <xsd:element name=\"Axes\" type=\"Axes\"/>\n <xsd:element
|
137
|
+
name=\"CellData\" type=\"CellData\"/>\n </xsd:sequence>\n </xsd:complexType>\n
|
138
|
+
\ </xsd:element>\n </xsd:schema>\n <OlapInfo>\n <CubeInfo>\n
|
139
|
+
\ <Cube>\n <CubeName>Carbon</CubeName>\n </Cube>\n
|
140
|
+
\ </CubeInfo>\n <AxesInfo>\n <AxisInfo name=\"Axis0\">\n
|
141
|
+
\ <HierarchyInfo name=\"Measures\">\n <UName name=\"[Measures].[MEMBER_UNIQUE_NAME]\"/>\n
|
142
|
+
\ <Caption name=\"[Measures].[MEMBER_CAPTION]\"/>\n <LName
|
143
|
+
name=\"[Measures].[LEVEL_UNIQUE_NAME]\"/>\n <LNum name=\"[Measures].[LEVEL_NUMBER]\"/>\n
|
144
|
+
\ <DisplayInfo name=\"[Measures].[DISPLAY_INFO]\"/>\n </HierarchyInfo>\n
|
145
|
+
\ </AxisInfo>\n <AxisInfo name=\"Axis1\">\n <HierarchyInfo
|
146
|
+
name=\"Category\">\n <UName name=\"[Category].[MEMBER_UNIQUE_NAME]\"/>\n
|
147
|
+
\ <Caption name=\"[Category].[MEMBER_CAPTION]\"/>\n <LName
|
148
|
+
name=\"[Category].[LEVEL_UNIQUE_NAME]\"/>\n <LNum name=\"[Category].[LEVEL_NUMBER]\"/>\n
|
149
|
+
\ <DisplayInfo name=\"[Category].[DISPLAY_INFO]\"/>\n </HierarchyInfo>\n
|
150
|
+
\ </AxisInfo>\n <AxisInfo name=\"SlicerAxis\">\n <HierarchyInfo
|
151
|
+
name=\"Date\">\n <UName name=\"[Date].[MEMBER_UNIQUE_NAME]\"/>\n
|
152
|
+
\ <Caption name=\"[Date].[MEMBER_CAPTION]\"/>\n <LName
|
153
|
+
name=\"[Date].[LEVEL_UNIQUE_NAME]\"/>\n <LNum name=\"[Date].[LEVEL_NUMBER]\"/>\n
|
154
|
+
\ <DisplayInfo name=\"[Date].[DISPLAY_INFO]\"/>\n </HierarchyInfo>\n
|
155
|
+
\ </AxisInfo>\n </AxesInfo>\n <CellInfo>\n <Value
|
156
|
+
name=\"VALUE\"/>\n <FmtValue name=\"FORMATTED_VALUE\"/>\n <FormatString
|
157
|
+
name=\"FORMAT_STRING\"/>\n </CellInfo>\n </OlapInfo>\n <Axes>\n
|
158
|
+
\ <Axis name=\"Axis0\">\n <Tuples>\n <Tuple>\n <Member
|
159
|
+
Hierarchy=\"Measures\">\n <UName>[Measures].[Scope 1 Carbon]</UName>\n
|
160
|
+
\ <Caption>Scope 1 Carbon</Caption>\n <LName>[Measures].[MeasuresLevel]</LName>\n
|
161
|
+
\ <LNum>0</LNum>\n <DisplayInfo>0</DisplayInfo>\n
|
162
|
+
\ </Member>\n </Tuple>\n </Tuples>\n </Axis>\n
|
163
|
+
\ <Axis name=\"Axis1\">\n <Tuples>\n <Tuple>\n <Member
|
164
|
+
Hierarchy=\"Category\">\n <UName>[Category].[Energy].[Electricity]</UName>\n
|
165
|
+
\ <Caption>Electricity</Caption>\n <LName>[Category].[Category
|
166
|
+
ID]</LName>\n <LNum>1</LNum>\n <DisplayInfo>0</DisplayInfo>\n
|
167
|
+
\ </Member>\n </Tuple>\n <Tuple>\n <Member
|
168
|
+
Hierarchy=\"Category\">\n <UName>[Category].[Energy].[Natural
|
169
|
+
Gas]</UName>\n <Caption>Natural Gas</Caption>\n <LName>[Category].[Category
|
170
|
+
ID]</LName>\n <LNum>1</LNum>\n <DisplayInfo>131072</DisplayInfo>\n
|
171
|
+
\ </Member>\n </Tuple>\n </Tuples>\n </Axis>\n
|
172
|
+
\ <Axis name=\"SlicerAxis\">\n <Tuples>\n <Tuple>\n
|
173
|
+
\ <Member Hierarchy=\"Date\">\n <UName>[Date].[2009]</UName>\n
|
174
|
+
\ <Caption>2009</Caption>\n <LName>[Date].[Year]</LName>\n
|
175
|
+
\ <LNum>0</LNum>\n <DisplayInfo>4</DisplayInfo>\n
|
176
|
+
\ </Member>\n </Tuple>\n </Tuples>\n </Axis>\n
|
177
|
+
\ </Axes>\n <CellData>\n <Cell CellOrdinal=\"0\">\n <Value
|
178
|
+
xsi:type=\"xsd:double\">3813012</Value>\n <FmtValue>3,813,012</FmtValue>\n
|
179
|
+
\ <FormatString/>\n </Cell>\n <Cell CellOrdinal=\"1\">\n
|
180
|
+
\ <Value xsi:type=\"xsd:double\">3046551</Value>\n <FmtValue>3,046,551</FmtValue>\n
|
181
|
+
\ <FormatString/>\n </Cell>\n </CellData>\n </root>\n
|
182
|
+
\ </cxmla:return>\n</cxmla:ExecuteResponse>\n</SOAP-ENV:Body>\n</SOAP-ENV:Envelope>\n"
|
183
|
+
http_version: '1.1'
|
@@ -0,0 +1,167 @@
|
|
1
|
+
---
|
2
|
+
- !ruby/struct:VCR::HTTPInteraction
|
3
|
+
request: !ruby/struct:VCR::Request
|
4
|
+
method: :post
|
5
|
+
uri: http://localhost:8282/icCube/xmla
|
6
|
+
body: ! "<?xml version=\"1.0\" encoding=\"UTF-8\"?><env:Envelope xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"
|
7
|
+
xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:wsdl=\"http://tempuri.org/wsdl/\"
|
8
|
+
xmlns:env=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:ins0=\"http://tempuri.org/type\"><env:Body><Execute
|
9
|
+
xmlns=\"urn:schemas-microsoft-com:xml-analysis\"><Command> <Statement> <![CDATA[
|
10
|
+
select [Measures].[Broj] on COLUMNS, non empty topcount( [Lokacija].[Kvart].children,
|
11
|
+
100, [Measures].[Broj]) on ROWS from [GOSJAR] ]]> </Statement> </Command> <Properties>
|
12
|
+
<PropertyList> <Catalog>GOSJAR</Catalog>\n <Format>Multidimensional</Format>
|
13
|
+
<AxisFormat>TupleFormat</AxisFormat> </PropertyList> </Properties></Execute></env:Body></env:Envelope>"
|
14
|
+
headers:
|
15
|
+
soapaction:
|
16
|
+
- ! '"urn:schemas-microsoft-com:xml-analysis:Execute"'
|
17
|
+
content-type:
|
18
|
+
- text/xml;charset=UTF-8
|
19
|
+
content-length:
|
20
|
+
- '754'
|
21
|
+
response: !ruby/struct:VCR::Response
|
22
|
+
status: !ruby/struct:VCR::ResponseStatus
|
23
|
+
code: 200
|
24
|
+
message: OK
|
25
|
+
headers:
|
26
|
+
expires:
|
27
|
+
- Thu, 01-Jan-1970 00:00:00 GMT
|
28
|
+
set-cookie:
|
29
|
+
- JSESSIONID=1opxb53awsku11g53txru21jz5;Path=/
|
30
|
+
content-type:
|
31
|
+
- text/xml; charset=utf-8
|
32
|
+
transfer-encoding:
|
33
|
+
- chunked
|
34
|
+
server:
|
35
|
+
- Jetty(6.1.25)
|
36
|
+
body: ! '<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"><soap:Header><Session
|
37
|
+
SessionId="f5089506-8b43-4869-a618-536502ba3cca" xmlns="urn:schemas-microsoft-com:xml-analysis"/></soap:Header><soap:Body><ExecuteResponse
|
38
|
+
xmlns="urn:schemas-microsoft-com:xml-analysis"><return><root xmlns="urn:schemas-microsoft-com:xml-analysis:mddataset"
|
39
|
+
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><xs:schema
|
40
|
+
targetNamespace="urn:schemas-microsoft-com:xml-analysis:mddataset" elementFormDefault="qualified"
|
41
|
+
xmlns="urn:schemas-microsoft-com:xml-analysis:mddataset" xmlns:xs="http://www.w3.org/2001/XMLSchema"> <xs:complexType
|
42
|
+
name="MemberType"> <xs:sequence> <xs:any namespace="##targetNamespace"
|
43
|
+
minOccurs="0" maxOccurs="unbounded" processContents="skip"/> </xs:sequence> <xs:attribute
|
44
|
+
name="Hierarchy" type="xs:string"/> </xs:complexType> <xs:complexType
|
45
|
+
name="PropType"> <xs:sequence> <xs:element name="Default"
|
46
|
+
minOccurs="0"/> </xs:sequence> <xs:attribute name="name" type="xs:string"
|
47
|
+
use="required"/> <xs:attribute name="type" type="xs:QName"/> </xs:complexType> <xs:complexType
|
48
|
+
name="TupleType"> <xs:sequence> <xs:element name="Member"
|
49
|
+
type="MemberType" maxOccurs="unbounded"/> </xs:sequence> </xs:complexType> <xs:complexType
|
50
|
+
name="MembersType"> <xs:sequence> <xs:element name="Member"
|
51
|
+
type="MemberType" minOccurs="0" maxOccurs="unbounded"/> </xs:sequence> <xs:attribute
|
52
|
+
name="Hierarchy" type="xs:string" use="required"/> </xs:complexType> <xs:complexType
|
53
|
+
name="TuplesType"> <xs:sequence> <xs:element name="Tuple"
|
54
|
+
type="TupleType" minOccurs="0" maxOccurs="unbounded"/> </xs:sequence> </xs:complexType> <xs:group
|
55
|
+
name="SetType"> <xs:choice> <xs:element name="Members" type="MembersType"/> <xs:element
|
56
|
+
name="Tuples" type="TuplesType"/> <xs:element name="CrossProduct"
|
57
|
+
type="SetListType"/> <xs:element name="Union"> <xs:complexType> <xs:group
|
58
|
+
ref="SetType" minOccurs="0" maxOccurs="unbounded"/> </xs:complexType> </xs:element> </xs:choice> </xs:group> <xs:complexType
|
59
|
+
name="SetListType"> <xs:group ref="SetType" minOccurs="0" maxOccurs="unbounded"/> <xs:attribute
|
60
|
+
name="Size" type="xs:unsignedInt"/> </xs:complexType> <xs:complexType
|
61
|
+
name="OlapInfo"> <xs:sequence> <xs:element name="CubeInfo"> <xs:complexType> <xs:sequence> <xs:element
|
62
|
+
name="Cube" maxOccurs="unbounded"> <xs:complexType> <xs:sequence> <xs:element
|
63
|
+
name="CubeName" type="xs:string"/> <xs:element
|
64
|
+
name="LastDataUpdate" minOccurs="0" type="xs:dateTime"/> <xs:element
|
65
|
+
name="LastSchemaUpdate" minOccurs="0" type="xs:dateTime"/> </xs:sequence> </xs:complexType> </xs:element> </xs:sequence> </xs:complexType> </xs:element> <xs:element
|
66
|
+
name="AxesInfo"> <xs:complexType> <xs:sequence> <xs:element
|
67
|
+
name="AxisInfo" maxOccurs="unbounded"> <xs:complexType> <xs:sequence> <xs:element
|
68
|
+
name="HierarchyInfo" minOccurs="0" maxOccurs="unbounded"> <xs:complexType> <xs:sequence> <xs:any
|
69
|
+
namespace="##targetNamespace" minOccurs="0" maxOccurs="unbounded" processContents="skip"/> </xs:sequence> <xs:attribute
|
70
|
+
name="name" type="xs:string" use="required"/> </xs:complexType> </xs:element> </xs:sequence> <xs:attribute
|
71
|
+
name="name" type="xs:string"/> </xs:complexType> </xs:element> </xs:sequence> </xs:complexType> </xs:element> <xs:element
|
72
|
+
name="CellInfo"> <xs:complexType> <xs:choice
|
73
|
+
minOccurs="0" maxOccurs="unbounded"> <xs:any namespace="##targetNamespace"
|
74
|
+
minOccurs="0" maxOccurs="unbounded" processContents="skip"/> </xs:choice> </xs:complexType> </xs:element> </xs:sequence> </xs:complexType> <xs:complexType
|
75
|
+
name="Axes"> <xs:sequence> <xs:element name="Axis" maxOccurs="unbounded"> <xs:complexType> <xs:group
|
76
|
+
ref="SetType" minOccurs="0" maxOccurs="unbounded"/> <xs:attribute
|
77
|
+
name="name" type="xs:string"/> </xs:complexType> </xs:element> </xs:sequence> </xs:complexType> <xs:complexType
|
78
|
+
name="CellData"> <xs:sequence> <xs:element name="Cell" minOccurs="0"
|
79
|
+
maxOccurs="unbounded"> <xs:complexType> <xs:sequence> <xs:any
|
80
|
+
namespace="##targetNamespace" minOccurs="0" maxOccurs="unbounded" processContents="skip"/> </xs:sequence> <xs:attribute
|
81
|
+
name="CellOrdinal" type="xs:unsignedInt" use="required"/> </xs:complexType> </xs:element> </xs:sequence> </xs:complexType> <xs:element
|
82
|
+
name="root"> <xs:complexType> <xs:sequence> <xs:any
|
83
|
+
namespace="http://www.w3.org/2001/XMLSchema" processContents="strict" minOccurs="0"/> <xs:element
|
84
|
+
name="OlapInfo" type="OlapInfo" minOccurs="0"/> <xs:element name="Axes"
|
85
|
+
type="Axes" minOccurs="0"/> <xs:element name="CellData" type="CellData"
|
86
|
+
minOccurs="0"/> </xs:sequence> </xs:complexType> </xs:element></xs:schema>
|
87
|
+
|
88
|
+
<OlapInfo><CubeInfo><Cube><CubeName>GOSJAR</CubeName><LastDataUpdate xmlns="http://schemas.microsoft.com/analysisservices/2003/engine">2012-02-09T09:45:32</LastDataUpdate><LastSchemaUpdate
|
89
|
+
xmlns="http://schemas.microsoft.com/analysisservices/2003/engine">2012-02-09T09:45:32</LastSchemaUpdate></Cube></CubeInfo><AxesInfo><AxisInfo
|
90
|
+
name="Axis0"><HierarchyInfo name="[Measures]"><UName name="[Measures].[MEMBER_UNIQUE_NAME]"
|
91
|
+
type="xsd:string"/><Caption name="[Measures].[MEMBER_CAPTION]" type="xsd:string"/><LName
|
92
|
+
name="[Measures].[LEVEL_UNIQUE_NAME]" type="xsd:string"/><LNum name="[Measures].[LEVEL_NUMBER]"
|
93
|
+
type="xsd:int"/><DisplayInfo name="[Measures].[DISPLAY_INFO]" type="xsd:unsignedInt"/></HierarchyInfo></AxisInfo><AxisInfo
|
94
|
+
name="Axis1"><HierarchyInfo name="[Lokacija].[Kvart]"><UName name="[Lokacija].[Kvart].[MEMBER_UNIQUE_NAME]"
|
95
|
+
type="xsd:string"/><Caption name="[Lokacija].[Kvart].[MEMBER_CAPTION]" type="xsd:string"/><LName
|
96
|
+
name="[Lokacija].[Kvart].[LEVEL_UNIQUE_NAME]" type="xsd:string"/><LNum name="[Lokacija].[Kvart].[LEVEL_NUMBER]"
|
97
|
+
type="xsd:int"/><DisplayInfo name="[Lokacija].[Kvart].[DISPLAY_INFO]" type="xsd:unsignedInt"/></HierarchyInfo></AxisInfo><AxisInfo
|
98
|
+
name="SlicerAxis"><HierarchyInfo name="[Vrsta].[Vrsta]"><UName name="[Vrsta].[Vrsta].[MEMBER_UNIQUE_NAME]"
|
99
|
+
type="xsd:string"/><Caption name="[Vrsta].[Vrsta].[MEMBER_CAPTION]" type="xsd:string"/><LName
|
100
|
+
name="[Vrsta].[Vrsta].[LEVEL_UNIQUE_NAME]" type="xsd:string"/><LNum name="[Vrsta].[Vrsta].[LEVEL_NUMBER]"
|
101
|
+
type="xsd:int"/><DisplayInfo name="[Vrsta].[Vrsta].[DISPLAY_INFO]" type="xsd:unsignedInt"/></HierarchyInfo><HierarchyInfo
|
102
|
+
name="[Razlog prijave].[Razlog]"><UName name="[Razlog prijave].[Razlog].[MEMBER_UNIQUE_NAME]"
|
103
|
+
type="xsd:string"/><Caption name="[Razlog prijave].[Razlog].[MEMBER_CAPTION]"
|
104
|
+
type="xsd:string"/><LName name="[Razlog prijave].[Razlog].[LEVEL_UNIQUE_NAME]"
|
105
|
+
type="xsd:string"/><LNum name="[Razlog prijave].[Razlog].[LEVEL_NUMBER]" type="xsd:int"/><DisplayInfo
|
106
|
+
name="[Razlog prijave].[Razlog].[DISPLAY_INFO]" type="xsd:unsignedInt"/></HierarchyInfo><HierarchyInfo
|
107
|
+
name="[Ulica].[ulica]"><UName name="[Ulica].[ulica].[MEMBER_UNIQUE_NAME]" type="xsd:string"/><Caption
|
108
|
+
name="[Ulica].[ulica].[MEMBER_CAPTION]" type="xsd:string"/><LName name="[Ulica].[ulica].[LEVEL_UNIQUE_NAME]"
|
109
|
+
type="xsd:string"/><LNum name="[Ulica].[ulica].[LEVEL_NUMBER]" type="xsd:int"/><DisplayInfo
|
110
|
+
name="[Ulica].[ulica].[DISPLAY_INFO]" type="xsd:unsignedInt"/></HierarchyInfo><HierarchyInfo
|
111
|
+
name="[Produkt].[Produkt]"><UName name="[Produkt].[Produkt].[MEMBER_UNIQUE_NAME]"
|
112
|
+
type="xsd:string"/><Caption name="[Produkt].[Produkt].[MEMBER_CAPTION]" type="xsd:string"/><LName
|
113
|
+
name="[Produkt].[Produkt].[LEVEL_UNIQUE_NAME]" type="xsd:string"/><LNum name="[Produkt].[Produkt].[LEVEL_NUMBER]"
|
114
|
+
type="xsd:int"/><DisplayInfo name="[Produkt].[Produkt].[DISPLAY_INFO]" type="xsd:unsignedInt"/></HierarchyInfo></AxisInfo></AxesInfo><CellInfo><Value
|
115
|
+
name="VALUE"/><FmtValue name="FORMATTED_VALUE" type="xsd:string"/><CellOrdinal
|
116
|
+
name="CELL_ORDINAL" type="xsd:unsignedInt"/></CellInfo></OlapInfo><Axes><Axis
|
117
|
+
name="Axis0"><Tuples><Tuple><Member Hierarchy="[Measures]"><UName>[Measures].[Broj]</UName><Caption>Broj</Caption><LName>[Measures].[MeasuresLevel]</LName><LNum>0</LNum><DisplayInfo>0</DisplayInfo></Member></Tuple></Tuples></Axis><Axis
|
118
|
+
name="Axis1"><Tuples><Tuple><Member Hierarchy="[Lokacija].[Kvart]"><UName>[Lokacija].[kvar].&[15]</UName><Caption>GORNJA
|
119
|
+
DUBRAVA</Caption><LName>[Lokacija].[Kvart].[kvar]</LName><LNum>1</LNum><DisplayInfo>0</DisplayInfo></Member></Tuple><Tuple><Member
|
120
|
+
Hierarchy="[Lokacija].[Kvart]"><UName>[Lokacija].[kvar].&[20]</UName><Caption>SESVETE</Caption><LName>[Lokacija].[Kvart].[kvar]</LName><LNum>1</LNum><DisplayInfo>131072</DisplayInfo></Member></Tuple><Tuple><Member
|
121
|
+
Hierarchy="[Lokacija].[Kvart]"><UName>[Lokacija].[kvar].&[11]</UName><Caption>NOVI
|
122
|
+
ZAGREB – ZAPAD</Caption><LName>[Lokacija].[Kvart].[kvar]</LName><LNum>1</LNum><DisplayInfo>131072</DisplayInfo></Member></Tuple><Tuple><Member
|
123
|
+
Hierarchy="[Lokacija].[Kvart]"><UName>[Lokacija].[kvar].&[8]</UName><Caption>MAKSIMIR</Caption><LName>[Lokacija].[Kvart].[kvar]</LName><LNum>1</LNum><DisplayInfo>131072</DisplayInfo></Member></Tuple><Tuple><Member
|
124
|
+
Hierarchy="[Lokacija].[Kvart]"><UName>[Lokacija].[kvar].&[10]</UName><Caption>NOVI
|
125
|
+
ZAGREB – ISTOK</Caption><LName>[Lokacija].[Kvart].[kvar]</LName><LNum>1</LNum><DisplayInfo>131072</DisplayInfo></Member></Tuple><Tuple><Member
|
126
|
+
Hierarchy="[Lokacija].[Kvart]"><UName>[Lokacija].[kvar].&[13]</UName><Caption>TRESNJEVKA
|
127
|
+
- JUG</Caption><LName>[Lokacija].[Kvart].[kvar]</LName><LNum>1</LNum><DisplayInfo>131072</DisplayInfo></Member></Tuple><Tuple><Member
|
128
|
+
Hierarchy="[Lokacija].[Kvart]"><UName>[Lokacija].[kvar].&[18]</UName><Caption>PODSUSED
|
129
|
+
– VRAPČE</Caption><LName>[Lokacija].[Kvart].[kvar]</LName><LNum>1</LNum><DisplayInfo>131072</DisplayInfo></Member></Tuple><Tuple><Member
|
130
|
+
Hierarchy="[Lokacija].[Kvart]"><UName>[Lokacija].[kvar].&[6]</UName><Caption>GORNJI
|
131
|
+
GRAD – MEDVEŠČAK</Caption><LName>[Lokacija].[Kvart].[kvar]</LName><LNum>1</LNum><DisplayInfo>131072</DisplayInfo></Member></Tuple><Tuple><Member
|
132
|
+
Hierarchy="[Lokacija].[Kvart]"><UName>[Lokacija].[kvar].&[7]</UName><Caption>TRNJE</Caption><LName>[Lokacija].[Kvart].[kvar]</LName><LNum>1</LNum><DisplayInfo>131072</DisplayInfo></Member></Tuple><Tuple><Member
|
133
|
+
Hierarchy="[Lokacija].[Kvart]"><UName>[Lokacija].[kvar].&[9]</UName><Caption>PEŠČENICA
|
134
|
+
- ŽITNJAK</Caption><LName>[Lokacija].[Kvart].[kvar]</LName><LNum>1</LNum><DisplayInfo>131072</DisplayInfo></Member></Tuple><Tuple><Member
|
135
|
+
Hierarchy="[Lokacija].[Kvart]"><UName>[Lokacija].[kvar].&[14]</UName><Caption>ČRNOMEREC</Caption><LName>[Lokacija].[Kvart].[kvar]</LName><LNum>1</LNum><DisplayInfo>131072</DisplayInfo></Member></Tuple><Tuple><Member
|
136
|
+
Hierarchy="[Lokacija].[Kvart]"><UName>[Lokacija].[kvar].&[17]</UName><Caption>STENJEVEC</Caption><LName>[Lokacija].[Kvart].[kvar]</LName><LNum>1</LNum><DisplayInfo>131072</DisplayInfo></Member></Tuple><Tuple><Member
|
137
|
+
Hierarchy="[Lokacija].[Kvart]"><UName>[Lokacija].[kvar].&[12]</UName><Caption>TREŠNJEVKA
|
138
|
+
– SJEVER</Caption><LName>[Lokacija].[Kvart].[kvar]</LName><LNum>1</LNum><DisplayInfo>131072</DisplayInfo></Member></Tuple><Tuple><Member
|
139
|
+
Hierarchy="[Lokacija].[Kvart]"><UName>[Lokacija].[kvar].&[5]</UName><Caption>DONJI
|
140
|
+
GRAD</Caption><LName>[Lokacija].[Kvart].[kvar]</LName><LNum>1</LNum><DisplayInfo>131072</DisplayInfo></Member></Tuple><Tuple><Member
|
141
|
+
Hierarchy="[Lokacija].[Kvart]"><UName>[Lokacija].[kvar].&[16]</UName><Caption>DONJA
|
142
|
+
DUBRAVA</Caption><LName>[Lokacija].[Kvart].[kvar]</LName><LNum>1</LNum><DisplayInfo>131072</DisplayInfo></Member></Tuple><Tuple><Member
|
143
|
+
Hierarchy="[Lokacija].[Kvart]"><UName>[Lokacija].[kvar].&[19]</UName><Caption>PODSLJEME
|
144
|
+
</Caption><LName>[Lokacija].[Kvart].[kvar]</LName><LNum>1</LNum><DisplayInfo>131072</DisplayInfo></Member></Tuple></Tuples></Axis><Axis
|
145
|
+
name="SlicerAxis"><Tuples><Tuple><Member Hierarchy="[Vrsta].[Vrsta]"><UName>[Vrsta].[Vrsta
|
146
|
+
prijave]</UName><Caption>Vrsta prijave</Caption><LName>[Vrsta].[Vrsta].[All-L]</LName><LNum>0</LNum><DisplayInfo>5</DisplayInfo></Member><Member
|
147
|
+
Hierarchy="[Razlog prijave].[Razlog]"><UName>[Razlog prijave].[Razlog prijave].[Razlog]</UName><Caption>Razlog</Caption><LName>[Razlog
|
148
|
+
prijave].[Razlog].[Razlog prijave]</LName><LNum>0</LNum><DisplayInfo>82</DisplayInfo></Member><Member
|
149
|
+
Hierarchy="[Ulica].[ulica]"><UName>[Ulica].[Ulice].[Ulica]</UName><Caption>Ulica</Caption><LName>[Ulica].[ulica].[Ulice]</LName><LNum>0</LNum><DisplayInfo>5092</DisplayInfo></Member><Member
|
150
|
+
Hierarchy="[Produkt].[Produkt]"><UName>[Produkt].[All-M]</UName><Caption>All-M</Caption><LName>[Produkt].[Produkt].[All-L]</LName><LNum>0</LNum><DisplayInfo>15</DisplayInfo></Member></Tuple></Tuples></Axis></Axes><CellData><Cell
|
151
|
+
CellOrdinal="0"><Value xsi:type="xsd:long">3602</Value><FmtValue>3602</FmtValue></Cell><Cell
|
152
|
+
CellOrdinal="1"><Value xsi:type="xsd:long">3186</Value><FmtValue>3186</FmtValue></Cell><Cell
|
153
|
+
CellOrdinal="2"><Value xsi:type="xsd:long">2829</Value><FmtValue>2829</FmtValue></Cell><Cell
|
154
|
+
CellOrdinal="3"><Value xsi:type="xsd:long">2733</Value><FmtValue>2733</FmtValue></Cell><Cell
|
155
|
+
CellOrdinal="4"><Value xsi:type="xsd:long">2607</Value><FmtValue>2607</FmtValue></Cell><Cell
|
156
|
+
CellOrdinal="5"><Value xsi:type="xsd:long">2607</Value><FmtValue>2607</FmtValue></Cell><Cell
|
157
|
+
CellOrdinal="6"><Value xsi:type="xsd:long">2327</Value><FmtValue>2327</FmtValue></Cell><Cell
|
158
|
+
CellOrdinal="7"><Value xsi:type="xsd:long">2259</Value><FmtValue>2259</FmtValue></Cell><Cell
|
159
|
+
CellOrdinal="8"><Value xsi:type="xsd:long">2148</Value><FmtValue>2148</FmtValue></Cell><Cell
|
160
|
+
CellOrdinal="9"><Value xsi:type="xsd:long">2004</Value><FmtValue>2004</FmtValue></Cell><Cell
|
161
|
+
CellOrdinal="10"><Value xsi:type="xsd:long">1945</Value><FmtValue>1945</FmtValue></Cell><Cell
|
162
|
+
CellOrdinal="11"><Value xsi:type="xsd:long">1696</Value><FmtValue>1696</FmtValue></Cell><Cell
|
163
|
+
CellOrdinal="12"><Value xsi:type="xsd:long">1611</Value><FmtValue>1611</FmtValue></Cell><Cell
|
164
|
+
CellOrdinal="13"><Value xsi:type="xsd:long">1422</Value><FmtValue>1422</FmtValue></Cell><Cell
|
165
|
+
CellOrdinal="14"><Value xsi:type="xsd:long">1356</Value><FmtValue>1356</FmtValue></Cell><Cell
|
166
|
+
CellOrdinal="15"><Value xsi:type="xsd:long">1228</Value><FmtValue>1228</FmtValue></Cell></CellData></root></return></ExecuteResponse></soap:Body></soap:Envelope>'
|
167
|
+
http_version: '1.1'
|
@@ -0,0 +1,169 @@
|
|
1
|
+
---
|
2
|
+
- !ruby/struct:VCR::HTTPInteraction
|
3
|
+
request: !ruby/struct:VCR::Request
|
4
|
+
method: :post
|
5
|
+
uri: http://localhost:8282/icCube/xmla
|
6
|
+
body: ! "<?xml version=\"1.0\" encoding=\"UTF-8\"?><env:Envelope xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"
|
7
|
+
xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:wsdl=\"http://tempuri.org/wsdl/\"
|
8
|
+
xmlns:env=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:ins0=\"http://tempuri.org/type\"><env:Body><Execute
|
9
|
+
xmlns=\"urn:schemas-microsoft-com:xml-analysis\"><Command> <Statement> <![CDATA[
|
10
|
+
select [Lokacija].[Kvart].children on COLUMNS, [Measures].[Broj] on ROWS from
|
11
|
+
[GOSJAR] ]]> </Statement> </Command> <Properties> <PropertyList> <Catalog>GOSJAR</Catalog>\n
|
12
|
+
\ <Format>Multidimensional</Format> <AxisFormat>TupleFormat</AxisFormat>
|
13
|
+
</PropertyList> </Properties></Execute></env:Body></env:Envelope>"
|
14
|
+
headers:
|
15
|
+
soapaction:
|
16
|
+
- ! '"urn:schemas-microsoft-com:xml-analysis:Execute"'
|
17
|
+
content-type:
|
18
|
+
- text/xml;charset=UTF-8
|
19
|
+
content-length:
|
20
|
+
- '708'
|
21
|
+
response: !ruby/struct:VCR::Response
|
22
|
+
status: !ruby/struct:VCR::ResponseStatus
|
23
|
+
code: 200
|
24
|
+
message: OK
|
25
|
+
headers:
|
26
|
+
expires:
|
27
|
+
- Thu, 01-Jan-1970 00:00:00 GMT
|
28
|
+
set-cookie:
|
29
|
+
- JSESSIONID=sta1a8lnxhqg1qo4d7cadlngi;Path=/
|
30
|
+
content-type:
|
31
|
+
- text/xml; charset=utf-8
|
32
|
+
transfer-encoding:
|
33
|
+
- chunked
|
34
|
+
server:
|
35
|
+
- Jetty(6.1.25)
|
36
|
+
body: ! '<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"><soap:Header><Session
|
37
|
+
SessionId="64950790-61e9-46b7-8818-688da8356ec4" xmlns="urn:schemas-microsoft-com:xml-analysis"/></soap:Header><soap:Body><ExecuteResponse
|
38
|
+
xmlns="urn:schemas-microsoft-com:xml-analysis"><return><root xmlns="urn:schemas-microsoft-com:xml-analysis:mddataset"
|
39
|
+
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><xs:schema
|
40
|
+
targetNamespace="urn:schemas-microsoft-com:xml-analysis:mddataset" elementFormDefault="qualified"
|
41
|
+
xmlns="urn:schemas-microsoft-com:xml-analysis:mddataset" xmlns:xs="http://www.w3.org/2001/XMLSchema"> <xs:complexType
|
42
|
+
name="MemberType"> <xs:sequence> <xs:any namespace="##targetNamespace"
|
43
|
+
minOccurs="0" maxOccurs="unbounded" processContents="skip"/> </xs:sequence> <xs:attribute
|
44
|
+
name="Hierarchy" type="xs:string"/> </xs:complexType> <xs:complexType
|
45
|
+
name="PropType"> <xs:sequence> <xs:element name="Default"
|
46
|
+
minOccurs="0"/> </xs:sequence> <xs:attribute name="name" type="xs:string"
|
47
|
+
use="required"/> <xs:attribute name="type" type="xs:QName"/> </xs:complexType> <xs:complexType
|
48
|
+
name="TupleType"> <xs:sequence> <xs:element name="Member"
|
49
|
+
type="MemberType" maxOccurs="unbounded"/> </xs:sequence> </xs:complexType> <xs:complexType
|
50
|
+
name="MembersType"> <xs:sequence> <xs:element name="Member"
|
51
|
+
type="MemberType" minOccurs="0" maxOccurs="unbounded"/> </xs:sequence> <xs:attribute
|
52
|
+
name="Hierarchy" type="xs:string" use="required"/> </xs:complexType> <xs:complexType
|
53
|
+
name="TuplesType"> <xs:sequence> <xs:element name="Tuple"
|
54
|
+
type="TupleType" minOccurs="0" maxOccurs="unbounded"/> </xs:sequence> </xs:complexType> <xs:group
|
55
|
+
name="SetType"> <xs:choice> <xs:element name="Members" type="MembersType"/> <xs:element
|
56
|
+
name="Tuples" type="TuplesType"/> <xs:element name="CrossProduct"
|
57
|
+
type="SetListType"/> <xs:element name="Union"> <xs:complexType> <xs:group
|
58
|
+
ref="SetType" minOccurs="0" maxOccurs="unbounded"/> </xs:complexType> </xs:element> </xs:choice> </xs:group> <xs:complexType
|
59
|
+
name="SetListType"> <xs:group ref="SetType" minOccurs="0" maxOccurs="unbounded"/> <xs:attribute
|
60
|
+
name="Size" type="xs:unsignedInt"/> </xs:complexType> <xs:complexType
|
61
|
+
name="OlapInfo"> <xs:sequence> <xs:element name="CubeInfo"> <xs:complexType> <xs:sequence> <xs:element
|
62
|
+
name="Cube" maxOccurs="unbounded"> <xs:complexType> <xs:sequence> <xs:element
|
63
|
+
name="CubeName" type="xs:string"/> <xs:element
|
64
|
+
name="LastDataUpdate" minOccurs="0" type="xs:dateTime"/> <xs:element
|
65
|
+
name="LastSchemaUpdate" minOccurs="0" type="xs:dateTime"/> </xs:sequence> </xs:complexType> </xs:element> </xs:sequence> </xs:complexType> </xs:element> <xs:element
|
66
|
+
name="AxesInfo"> <xs:complexType> <xs:sequence> <xs:element
|
67
|
+
name="AxisInfo" maxOccurs="unbounded"> <xs:complexType> <xs:sequence> <xs:element
|
68
|
+
name="HierarchyInfo" minOccurs="0" maxOccurs="unbounded"> <xs:complexType> <xs:sequence> <xs:any
|
69
|
+
namespace="##targetNamespace" minOccurs="0" maxOccurs="unbounded" processContents="skip"/> </xs:sequence> <xs:attribute
|
70
|
+
name="name" type="xs:string" use="required"/> </xs:complexType> </xs:element> </xs:sequence> <xs:attribute
|
71
|
+
name="name" type="xs:string"/> </xs:complexType> </xs:element> </xs:sequence> </xs:complexType> </xs:element> <xs:element
|
72
|
+
name="CellInfo"> <xs:complexType> <xs:choice
|
73
|
+
minOccurs="0" maxOccurs="unbounded"> <xs:any namespace="##targetNamespace"
|
74
|
+
minOccurs="0" maxOccurs="unbounded" processContents="skip"/> </xs:choice> </xs:complexType> </xs:element> </xs:sequence> </xs:complexType> <xs:complexType
|
75
|
+
name="Axes"> <xs:sequence> <xs:element name="Axis" maxOccurs="unbounded"> <xs:complexType> <xs:group
|
76
|
+
ref="SetType" minOccurs="0" maxOccurs="unbounded"/> <xs:attribute
|
77
|
+
name="name" type="xs:string"/> </xs:complexType> </xs:element> </xs:sequence> </xs:complexType> <xs:complexType
|
78
|
+
name="CellData"> <xs:sequence> <xs:element name="Cell" minOccurs="0"
|
79
|
+
maxOccurs="unbounded"> <xs:complexType> <xs:sequence> <xs:any
|
80
|
+
namespace="##targetNamespace" minOccurs="0" maxOccurs="unbounded" processContents="skip"/> </xs:sequence> <xs:attribute
|
81
|
+
name="CellOrdinal" type="xs:unsignedInt" use="required"/> </xs:complexType> </xs:element> </xs:sequence> </xs:complexType> <xs:element
|
82
|
+
name="root"> <xs:complexType> <xs:sequence> <xs:any
|
83
|
+
namespace="http://www.w3.org/2001/XMLSchema" processContents="strict" minOccurs="0"/> <xs:element
|
84
|
+
name="OlapInfo" type="OlapInfo" minOccurs="0"/> <xs:element name="Axes"
|
85
|
+
type="Axes" minOccurs="0"/> <xs:element name="CellData" type="CellData"
|
86
|
+
minOccurs="0"/> </xs:sequence> </xs:complexType> </xs:element></xs:schema>
|
87
|
+
|
88
|
+
<OlapInfo><CubeInfo><Cube><CubeName>GOSJAR</CubeName><LastDataUpdate xmlns="http://schemas.microsoft.com/analysisservices/2003/engine">2012-02-09T09:45:32</LastDataUpdate><LastSchemaUpdate
|
89
|
+
xmlns="http://schemas.microsoft.com/analysisservices/2003/engine">2012-02-09T09:45:32</LastSchemaUpdate></Cube></CubeInfo><AxesInfo><AxisInfo
|
90
|
+
name="Axis0"><HierarchyInfo name="[Lokacija].[Kvart]"><UName name="[Lokacija].[Kvart].[MEMBER_UNIQUE_NAME]"
|
91
|
+
type="xsd:string"/><Caption name="[Lokacija].[Kvart].[MEMBER_CAPTION]" type="xsd:string"/><LName
|
92
|
+
name="[Lokacija].[Kvart].[LEVEL_UNIQUE_NAME]" type="xsd:string"/><LNum name="[Lokacija].[Kvart].[LEVEL_NUMBER]"
|
93
|
+
type="xsd:int"/><DisplayInfo name="[Lokacija].[Kvart].[DISPLAY_INFO]" type="xsd:unsignedInt"/></HierarchyInfo></AxisInfo><AxisInfo
|
94
|
+
name="Axis1"><HierarchyInfo name="[Measures]"><UName name="[Measures].[MEMBER_UNIQUE_NAME]"
|
95
|
+
type="xsd:string"/><Caption name="[Measures].[MEMBER_CAPTION]" type="xsd:string"/><LName
|
96
|
+
name="[Measures].[LEVEL_UNIQUE_NAME]" type="xsd:string"/><LNum name="[Measures].[LEVEL_NUMBER]"
|
97
|
+
type="xsd:int"/><DisplayInfo name="[Measures].[DISPLAY_INFO]" type="xsd:unsignedInt"/></HierarchyInfo></AxisInfo><AxisInfo
|
98
|
+
name="SlicerAxis"><HierarchyInfo name="[Vrsta].[Vrsta]"><UName name="[Vrsta].[Vrsta].[MEMBER_UNIQUE_NAME]"
|
99
|
+
type="xsd:string"/><Caption name="[Vrsta].[Vrsta].[MEMBER_CAPTION]" type="xsd:string"/><LName
|
100
|
+
name="[Vrsta].[Vrsta].[LEVEL_UNIQUE_NAME]" type="xsd:string"/><LNum name="[Vrsta].[Vrsta].[LEVEL_NUMBER]"
|
101
|
+
type="xsd:int"/><DisplayInfo name="[Vrsta].[Vrsta].[DISPLAY_INFO]" type="xsd:unsignedInt"/></HierarchyInfo><HierarchyInfo
|
102
|
+
name="[Razlog prijave].[Razlog]"><UName name="[Razlog prijave].[Razlog].[MEMBER_UNIQUE_NAME]"
|
103
|
+
type="xsd:string"/><Caption name="[Razlog prijave].[Razlog].[MEMBER_CAPTION]"
|
104
|
+
type="xsd:string"/><LName name="[Razlog prijave].[Razlog].[LEVEL_UNIQUE_NAME]"
|
105
|
+
type="xsd:string"/><LNum name="[Razlog prijave].[Razlog].[LEVEL_NUMBER]" type="xsd:int"/><DisplayInfo
|
106
|
+
name="[Razlog prijave].[Razlog].[DISPLAY_INFO]" type="xsd:unsignedInt"/></HierarchyInfo><HierarchyInfo
|
107
|
+
name="[Ulica].[ulica]"><UName name="[Ulica].[ulica].[MEMBER_UNIQUE_NAME]" type="xsd:string"/><Caption
|
108
|
+
name="[Ulica].[ulica].[MEMBER_CAPTION]" type="xsd:string"/><LName name="[Ulica].[ulica].[LEVEL_UNIQUE_NAME]"
|
109
|
+
type="xsd:string"/><LNum name="[Ulica].[ulica].[LEVEL_NUMBER]" type="xsd:int"/><DisplayInfo
|
110
|
+
name="[Ulica].[ulica].[DISPLAY_INFO]" type="xsd:unsignedInt"/></HierarchyInfo><HierarchyInfo
|
111
|
+
name="[Produkt].[Produkt]"><UName name="[Produkt].[Produkt].[MEMBER_UNIQUE_NAME]"
|
112
|
+
type="xsd:string"/><Caption name="[Produkt].[Produkt].[MEMBER_CAPTION]" type="xsd:string"/><LName
|
113
|
+
name="[Produkt].[Produkt].[LEVEL_UNIQUE_NAME]" type="xsd:string"/><LNum name="[Produkt].[Produkt].[LEVEL_NUMBER]"
|
114
|
+
type="xsd:int"/><DisplayInfo name="[Produkt].[Produkt].[DISPLAY_INFO]" type="xsd:unsignedInt"/></HierarchyInfo></AxisInfo></AxesInfo><CellInfo><Value
|
115
|
+
name="VALUE"/><FmtValue name="FORMATTED_VALUE" type="xsd:string"/><CellOrdinal
|
116
|
+
name="CELL_ORDINAL" type="xsd:unsignedInt"/></CellInfo></OlapInfo><Axes><Axis
|
117
|
+
name="Axis0"><Tuples><Tuple><Member Hierarchy="[Lokacija].[Kvart]"><UName>[Lokacija].[kvar].&[5]</UName><Caption>DONJI
|
118
|
+
GRAD</Caption><LName>[Lokacija].[Kvart].[kvar]</LName><LNum>1</LNum><DisplayInfo>0</DisplayInfo></Member></Tuple><Tuple><Member
|
119
|
+
Hierarchy="[Lokacija].[Kvart]"><UName>[Lokacija].[kvar].&[6]</UName><Caption>GORNJI
|
120
|
+
GRAD – MEDVEŠČAK</Caption><LName>[Lokacija].[Kvart].[kvar]</LName><LNum>1</LNum><DisplayInfo>131072</DisplayInfo></Member></Tuple><Tuple><Member
|
121
|
+
Hierarchy="[Lokacija].[Kvart]"><UName>[Lokacija].[kvar].&[7]</UName><Caption>TRNJE</Caption><LName>[Lokacija].[Kvart].[kvar]</LName><LNum>1</LNum><DisplayInfo>131072</DisplayInfo></Member></Tuple><Tuple><Member
|
122
|
+
Hierarchy="[Lokacija].[Kvart]"><UName>[Lokacija].[kvar].&[8]</UName><Caption>MAKSIMIR</Caption><LName>[Lokacija].[Kvart].[kvar]</LName><LNum>1</LNum><DisplayInfo>131072</DisplayInfo></Member></Tuple><Tuple><Member
|
123
|
+
Hierarchy="[Lokacija].[Kvart]"><UName>[Lokacija].[kvar].&[9]</UName><Caption>PEŠČENICA
|
124
|
+
- ŽITNJAK</Caption><LName>[Lokacija].[Kvart].[kvar]</LName><LNum>1</LNum><DisplayInfo>131072</DisplayInfo></Member></Tuple><Tuple><Member
|
125
|
+
Hierarchy="[Lokacija].[Kvart]"><UName>[Lokacija].[kvar].&[10]</UName><Caption>NOVI
|
126
|
+
ZAGREB – ISTOK</Caption><LName>[Lokacija].[Kvart].[kvar]</LName><LNum>1</LNum><DisplayInfo>131072</DisplayInfo></Member></Tuple><Tuple><Member
|
127
|
+
Hierarchy="[Lokacija].[Kvart]"><UName>[Lokacija].[kvar].&[11]</UName><Caption>NOVI
|
128
|
+
ZAGREB – ZAPAD</Caption><LName>[Lokacija].[Kvart].[kvar]</LName><LNum>1</LNum><DisplayInfo>131072</DisplayInfo></Member></Tuple><Tuple><Member
|
129
|
+
Hierarchy="[Lokacija].[Kvart]"><UName>[Lokacija].[kvar].&[12]</UName><Caption>TREŠNJEVKA
|
130
|
+
– SJEVER</Caption><LName>[Lokacija].[Kvart].[kvar]</LName><LNum>1</LNum><DisplayInfo>131072</DisplayInfo></Member></Tuple><Tuple><Member
|
131
|
+
Hierarchy="[Lokacija].[Kvart]"><UName>[Lokacija].[kvar].&[13]</UName><Caption>TREŠNJEVKA
|
132
|
+
– JUG</Caption><LName>[Lokacija].[Kvart].[kvar]</LName><LNum>1</LNum><DisplayInfo>131072</DisplayInfo></Member></Tuple><Tuple><Member
|
133
|
+
Hierarchy="[Lokacija].[Kvart]"><UName>[Lokacija].[kvar].&[14]</UName><Caption>ČRNOMEREC</Caption><LName>[Lokacija].[Kvart].[kvar]</LName><LNum>1</LNum><DisplayInfo>131072</DisplayInfo></Member></Tuple><Tuple><Member
|
134
|
+
Hierarchy="[Lokacija].[Kvart]"><UName>[Lokacija].[kvar].&[15]</UName><Caption>GORNJA
|
135
|
+
DUBRAVA</Caption><LName>[Lokacija].[Kvart].[kvar]</LName><LNum>1</LNum><DisplayInfo>131072</DisplayInfo></Member></Tuple><Tuple><Member
|
136
|
+
Hierarchy="[Lokacija].[Kvart]"><UName>[Lokacija].[kvar].&[16]</UName><Caption>DONJA
|
137
|
+
DUBRAVA</Caption><LName>[Lokacija].[Kvart].[kvar]</LName><LNum>1</LNum><DisplayInfo>131072</DisplayInfo></Member></Tuple><Tuple><Member
|
138
|
+
Hierarchy="[Lokacija].[Kvart]"><UName>[Lokacija].[kvar].&[17]</UName><Caption>STENJEVEC</Caption><LName>[Lokacija].[Kvart].[kvar]</LName><LNum>1</LNum><DisplayInfo>131072</DisplayInfo></Member></Tuple><Tuple><Member
|
139
|
+
Hierarchy="[Lokacija].[Kvart]"><UName>[Lokacija].[kvar].&[18]</UName><Caption>PODSUSED
|
140
|
+
– VRAPČE</Caption><LName>[Lokacija].[Kvart].[kvar]</LName><LNum>1</LNum><DisplayInfo>131072</DisplayInfo></Member></Tuple><Tuple><Member
|
141
|
+
Hierarchy="[Lokacija].[Kvart]"><UName>[Lokacija].[kvar].&[19]</UName><Caption>PODSLJEME
|
142
|
+
</Caption><LName>[Lokacija].[Kvart].[kvar]</LName><LNum>1</LNum><DisplayInfo>131072</DisplayInfo></Member></Tuple><Tuple><Member
|
143
|
+
Hierarchy="[Lokacija].[Kvart]"><UName>[Lokacija].[kvar].&[20]</UName><Caption>SESVETE</Caption><LName>[Lokacija].[Kvart].[kvar]</LName><LNum>1</LNum><DisplayInfo>131072</DisplayInfo></Member></Tuple><Tuple><Member
|
144
|
+
Hierarchy="[Lokacija].[Kvart]"><UName>[Lokacija].[kvar].&[21]</UName><Caption>SVE
|
145
|
+
ČETVRTI</Caption><LName>[Lokacija].[Kvart].[kvar]</LName><LNum>1</LNum><DisplayInfo>131072</DisplayInfo></Member></Tuple></Tuples></Axis><Axis
|
146
|
+
name="Axis1"><Tuples><Tuple><Member Hierarchy="[Measures]"><UName>[Measures].[Broj]</UName><Caption>Broj</Caption><LName>[Measures].[MeasuresLevel]</LName><LNum>0</LNum><DisplayInfo>0</DisplayInfo></Member></Tuple></Tuples></Axis><Axis
|
147
|
+
name="SlicerAxis"><Tuples><Tuple><Member Hierarchy="[Vrsta].[Vrsta]"><UName>[Vrsta].[Vrsta
|
148
|
+
prijave]</UName><Caption>Vrsta prijave</Caption><LName>[Vrsta].[Vrsta].[All-L]</LName><LNum>0</LNum><DisplayInfo>5</DisplayInfo></Member><Member
|
149
|
+
Hierarchy="[Razlog prijave].[Razlog]"><UName>[Razlog prijave].[Razlog prijave].[Razlog]</UName><Caption>Razlog</Caption><LName>[Razlog
|
150
|
+
prijave].[Razlog].[Razlog prijave]</LName><LNum>0</LNum><DisplayInfo>82</DisplayInfo></Member><Member
|
151
|
+
Hierarchy="[Ulica].[ulica]"><UName>[Ulica].[Ulice].[Ulica]</UName><Caption>Ulica</Caption><LName>[Ulica].[ulica].[Ulice]</LName><LNum>0</LNum><DisplayInfo>5092</DisplayInfo></Member><Member
|
152
|
+
Hierarchy="[Produkt].[Produkt]"><UName>[Produkt].[All-M]</UName><Caption>All-M</Caption><LName>[Produkt].[Produkt].[All-L]</LName><LNum>0</LNum><DisplayInfo>15</DisplayInfo></Member></Tuple></Tuples></Axis></Axes><CellData><Cell
|
153
|
+
CellOrdinal="0"><Value xsi:type="xsd:long">1422</Value><FmtValue>1422</FmtValue></Cell><Cell
|
154
|
+
CellOrdinal="1"><Value xsi:type="xsd:long">2259</Value><FmtValue>2259</FmtValue></Cell><Cell
|
155
|
+
CellOrdinal="2"><Value xsi:type="xsd:long">2148</Value><FmtValue>2148</FmtValue></Cell><Cell
|
156
|
+
CellOrdinal="3"><Value xsi:type="xsd:long">2733</Value><FmtValue>2733</FmtValue></Cell><Cell
|
157
|
+
CellOrdinal="4"><Value xsi:type="xsd:long">2004</Value><FmtValue>2004</FmtValue></Cell><Cell
|
158
|
+
CellOrdinal="5"><Value xsi:type="xsd:long">2607</Value><FmtValue>2607</FmtValue></Cell><Cell
|
159
|
+
CellOrdinal="6"><Value xsi:type="xsd:long">2829</Value><FmtValue>2829</FmtValue></Cell><Cell
|
160
|
+
CellOrdinal="7"><Value xsi:type="xsd:long">1611</Value><FmtValue>1611</FmtValue></Cell><Cell
|
161
|
+
CellOrdinal="8"><Value xsi:type="xsd:long">2581</Value><FmtValue>2581</FmtValue></Cell><Cell
|
162
|
+
CellOrdinal="9"><Value xsi:type="xsd:long">1945</Value><FmtValue>1945</FmtValue></Cell><Cell
|
163
|
+
CellOrdinal="10"><Value xsi:type="xsd:long">3602</Value><FmtValue>3602</FmtValue></Cell><Cell
|
164
|
+
CellOrdinal="11"><Value xsi:type="xsd:long">1356</Value><FmtValue>1356</FmtValue></Cell><Cell
|
165
|
+
CellOrdinal="12"><Value xsi:type="xsd:long">1696</Value><FmtValue>1696</FmtValue></Cell><Cell
|
166
|
+
CellOrdinal="13"><Value xsi:type="xsd:long">2327</Value><FmtValue>2327</FmtValue></Cell><Cell
|
167
|
+
CellOrdinal="14"><Value xsi:type="xsd:long">1228</Value><FmtValue>1228</FmtValue></Cell><Cell
|
168
|
+
CellOrdinal="15"><Value xsi:type="xsd:long">3186</Value><FmtValue>3186</FmtValue></Cell></CellData></root></return></ExecuteResponse></soap:Body></soap:Envelope>'
|
169
|
+
http_version: '1.1'
|