Skip to content

Commit

Permalink
added a simple soap envelope scanner - will be used to improve our so…
Browse files Browse the repository at this point in the history
…ap api support
  • Loading branch information
EricWittmann committed Apr 1, 2016
1 parent 9c2c1c7 commit 5f72115
Show file tree
Hide file tree
Showing 4 changed files with 776 additions and 0 deletions.
@@ -0,0 +1,27 @@
/*
* Copyright 2016 JBoss Inc
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package io.apiman.gateway.engine.soap;

/**
* @author eric.wittmann@gmail.com
*/
public class SoapConstants {

public static final String ENVELOPE_NAMESPACE = "http://schemas.xmlsoap.org/soap/envelope"; //$NON-NLS-1$
public static final String ENCODING_NAMESPACE = "http://schemas.xmlsoap.org/soap/encoding"; //$NON-NLS-1$

}
@@ -0,0 +1,32 @@
/*
* Copyright 2016 JBoss Inc
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package io.apiman.gateway.engine.soap;

/**
* @author eric.wittmann@gmail.com
*/
public class SoapEnvelopeNotFoundException extends Exception {

private static final long serialVersionUID = -8122740345030129579L;

/**
* Constructor.
*/
public SoapEnvelopeNotFoundException() {
}

}

0 comments on commit 5f72115

Please sign in to comment.