Skip to content

Commit

Permalink
Commit patch 3150694, "SSAS 2000 XML/A compatibility". (Patch contrib…
Browse files Browse the repository at this point in the history
…uted by sjoynt.)

git-svn-id: https://olap4j.svn.sourceforge.net/svnroot/olap4j/trunk@399 c6a108a4-781c-0410-a6c6-c2d559e19af0
  • Loading branch information
julianhyde committed Jan 10, 2011
1 parent 9a3b7d8 commit 99a5541
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/org/olap4j/driver/xmla/proxy/XmlaOlap4jHttpProxy.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// This software is subject to the terms of the Eclipse Public License v1.0
// Agreement, available at the following URL:
// http://www.eclipse.org/legal/epl-v10.html.
// Copyright (C) 2007-2010 Julian Hyde
// Copyright (C) 2007-2011 Julian Hyde
// All Rights Reserved.
// You must accept the terms of that agreement to use this software.
*/
Expand Down Expand Up @@ -77,13 +77,13 @@ public byte[] getResponse(URL url, String request)
{
urlConnection.setRequestProperty(
"SOAPAction",
"urn:schemas-microsoft-com:xml-analysis:Discover");
"\"urn:schemas-microsoft-com:xml-analysis:Discover\"");
} else if (request.contains(
"<Execute xmlns=\"urn:schemas-microsoft-com:xml-analysis\""))
{
urlConnection.setRequestProperty(
"SOAPAction",
"urn:schemas-microsoft-com:xml-analysis:Execute");
"\"urn:schemas-microsoft-com:xml-analysis:Execute\"");
}

// Encode credentials for basic authentication
Expand Down

0 comments on commit 99a5541

Please sign in to comment.