Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RegApp
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
KIT
reg-app
RegApp
Commits
43b5a8d1
Commit
43b5a8d1
authored
2 weeks ago
by
Michael Simon
Browse files
Options
Downloads
Plain Diff
Merge branch 'feature/ISSUE-234_upgrade-libraries' into 'main'
Resolve "Upgrade libraries" Closes
#234
See merge request
!106
parents
6b319c62
ec3066a8
No related branches found
Branches containing commit
No related tags found
1 merge request
!106
Resolve "Upgrade libraries"
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
pom.xml
+1
-1
1 addition, 1 deletion
pom.xml
regapp-saml/src/main/java/edu/kit/scc/webreg/service/saml/HttpSignableSoapClient.java
+0
-56
0 additions, 56 deletions
...u/kit/scc/webreg/service/saml/HttpSignableSoapClient.java
with
1 addition
and
57 deletions
pom.xml
+
1
−
1
View file @
43b5a8d1
...
...
@@ -19,7 +19,7 @@
<org.wildfly.version>
35.0.1.Final
</org.wildfly.version>
<org.drools.version>
10.0.0
</org.drools.version>
<javax.javaee.version>
10.0.0
</javax.javaee.version>
<org.opensaml.version>
5.
0.0
</org.opensaml.version>
<org.opensaml.version>
5.
1.4
</org.opensaml.version>
<org.apache.velocity>
2.4.1
</org.apache.velocity>
<vt-ldap.version>
3.3.9
</vt-ldap.version>
<org.slf4j.version>
1.7.2
</org.slf4j.version>
...
...
This diff is collapsed.
Click to expand it.
regapp-saml/src/main/java/edu/kit/scc/webreg/service/saml/HttpSignableSoapClient.java
deleted
100644 → 0
+
0
−
56
View file @
6b319c62
/*******************************************************************************
* Copyright (c) 2014 Michael Simon.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at
* http://www.gnu.org/licenses/gpl.html
*
* Contributors:
* Michael Simon - initial
******************************************************************************/
package
edu.kit.scc.webreg.service.saml
;
import
java.io.Serializable
;
import
org.apache.hc.client5.http.classic.HttpClient
;
import
org.opensaml.soap.client.http.HttpSOAPClient
;
import
org.slf4j.Logger
;
import
org.slf4j.LoggerFactory
;
import
net.shibboleth.shared.xml.ParserPool
;
public
class
HttpSignableSoapClient
extends
HttpSOAPClient
implements
Serializable
{
private
static
final
long
serialVersionUID
=
1L
;
private
static
Logger
logger
=
LoggerFactory
.
getLogger
(
HttpSignableSoapClient
.
class
);
public
HttpSignableSoapClient
(
HttpClient
client
,
ParserPool
parser
)
{
super
();
setHttpClient
(
client
);
setParserPool
(
parser
);
}
// @Override
// protected RequestEntity createRequestEntity(Envelope message, Charset charset) throws SOAPClientException {
// try {
// Marshaller marshaller = Configuration.getMarshallerFactory().getMarshaller(message);
// ByteArrayOutputStream arrayOut = new ByteArrayOutputStream();
//
// Element element = marshaller.marshall(message);
// try {
// Signer.signObject(signature);
// } catch (SignatureException e) {
// throw new SOAPClientException(e);
// }
//
// if (logger.isDebugEnabled()) {
// logger.debug("Outbound SOAP message is:\n" + SerializeSupport.prettyPrintXML(element));
// }
// SerializeSupport.writeNode(element, arrayOut);
// return new ByteArrayRequestEntity(arrayOut.toByteArray(), "text/xml");
// } catch (MarshallingException e) {
// throw new SOAPClientException("Unable to marshall SOAP envelope", e);
// }
// }
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment