JBoss webservice behind Reverse Proxy, https to httpJBossAS 6 & Riftsaw: “No context found for request” when loading WSDLProxy JBoss HTTP with Apache HTTPSJava web service works on http but not on httpsApache reverse proxy root with jbossReverse Proxy and requested URL aware tomcatJBoss application behind apache ajp proxy with subdomain - duplicated contextForward proxy for webservices with SSL client certsIncluding Port number in HTTP HOST header causes Service Unavailable errormod_rewrite to serve static file based on specific query string with mod_proxyApache mod_cluster 1.2.6 and jboss 6: All workers are in error state for only one jboss web-application
My large rocket is still flipping over
Why does sound not move through a wall?
What are the advantages of luxury car brands like Acura/Lexus over their sibling non-luxury brands Honda/Toyota?
Does running exec do anything?
Sheared off exhasut pipe: How to fix without a welder?
What is a common way to tell if an academic is "above average," or outstanding in their field? Is their h-index (Hirsh index) one of them?
Page count conversion from single to double-space for submissions
Gerrymandering Puzzle - Rig the Election
Motion-trail-like lines
As a GM, is it bad form to ask for a moment to think when improvising?
All superlinear runtime algorithms are asymptotically equivalent to convex function?
Why would a military not separate its forces into different branches?
Some Russian letters overlap the next line of text when used in drop caps
Meaning of the (idiomatic?) expression "seghe mentali"
How do I allocate more memory to an app on Sheepshaver running Mac OS 9?
Can full drive backup be used instead of MSSQL database backup?
What does にとり mean?
Is there an age requirement to play in Adventurers League?
Why are the capacitors necessary for a quartz crystal?
GitLab account hacked and repo wiped
Drawing an hexagonal cone in TikZ 2D
Piano: quaver triplets in RH v dotted quaver and semiquaver in LH
The Adventures of a Chocolate Cookie
no sense/need/point
JBoss webservice behind Reverse Proxy, https to http
JBossAS 6 & Riftsaw: “No context found for request” when loading WSDLProxy JBoss HTTP with Apache HTTPSJava web service works on http but not on httpsApache reverse proxy root with jbossReverse Proxy and requested URL aware tomcatJBoss application behind apache ajp proxy with subdomain - duplicated contextForward proxy for webservices with SSL client certsIncluding Port number in HTTP HOST header causes Service Unavailable errormod_rewrite to serve static file based on specific query string with mod_proxyApache mod_cluster 1.2.6 and jboss 6: All workers are in error state for only one jboss web-application
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I have deployed a JAX-WS web service hosted in a JBoss 7.1.1. The webservice is acceded by a reverse proxy. To access the service from the public internet, it has to be done by the https protocol, but the communication between the reverse proxy and the JBoss is in http. So the host present in the wsdl file is http <soap:address location="http://example.com/WS"/>and it has to be <soap:address location="https://example.com/WS"/>.
The JBoss configuration is as follows:
modify-wsdl-addres = true
wsdl-host = jbossws.undefined.host
Here is the reference for the webservices configuration:
https://docs.jboss.org/author/display/AS71/Web+services+configuration
But I can find where to force the protocol to be https in the soap addres.
jboss web-services wsdl
add a comment |
I have deployed a JAX-WS web service hosted in a JBoss 7.1.1. The webservice is acceded by a reverse proxy. To access the service from the public internet, it has to be done by the https protocol, but the communication between the reverse proxy and the JBoss is in http. So the host present in the wsdl file is http <soap:address location="http://example.com/WS"/>and it has to be <soap:address location="https://example.com/WS"/>.
The JBoss configuration is as follows:
modify-wsdl-addres = true
wsdl-host = jbossws.undefined.host
Here is the reference for the webservices configuration:
https://docs.jboss.org/author/display/AS71/Web+services+configuration
But I can find where to force the protocol to be https in the soap addres.
jboss web-services wsdl
Duplicate of stackoverflow.com/questions/32913933/…?
– shonky linux user
Nov 2 '15 at 3:55
add a comment |
I have deployed a JAX-WS web service hosted in a JBoss 7.1.1. The webservice is acceded by a reverse proxy. To access the service from the public internet, it has to be done by the https protocol, but the communication between the reverse proxy and the JBoss is in http. So the host present in the wsdl file is http <soap:address location="http://example.com/WS"/>and it has to be <soap:address location="https://example.com/WS"/>.
The JBoss configuration is as follows:
modify-wsdl-addres = true
wsdl-host = jbossws.undefined.host
Here is the reference for the webservices configuration:
https://docs.jboss.org/author/display/AS71/Web+services+configuration
But I can find where to force the protocol to be https in the soap addres.
jboss web-services wsdl
I have deployed a JAX-WS web service hosted in a JBoss 7.1.1. The webservice is acceded by a reverse proxy. To access the service from the public internet, it has to be done by the https protocol, but the communication between the reverse proxy and the JBoss is in http. So the host present in the wsdl file is http <soap:address location="http://example.com/WS"/>and it has to be <soap:address location="https://example.com/WS"/>.
The JBoss configuration is as follows:
modify-wsdl-addres = true
wsdl-host = jbossws.undefined.host
Here is the reference for the webservices configuration:
https://docs.jboss.org/author/display/AS71/Web+services+configuration
But I can find where to force the protocol to be https in the soap addres.
jboss web-services wsdl
jboss web-services wsdl
asked Oct 2 '15 at 20:10
Nicolás PiquerezNicolás Piquerez
63
63
Duplicate of stackoverflow.com/questions/32913933/…?
– shonky linux user
Nov 2 '15 at 3:55
add a comment |
Duplicate of stackoverflow.com/questions/32913933/…?
– shonky linux user
Nov 2 '15 at 3:55
Duplicate of stackoverflow.com/questions/32913933/…?
– shonky linux user
Nov 2 '15 at 3:55
Duplicate of stackoverflow.com/questions/32913933/…?
– shonky linux user
Nov 2 '15 at 3:55
add a comment |
1 Answer
1
active
oldest
votes
The web and webservices subsystem configurations work together to provide the endpoint URL (and also URLs for xs:import statements).
In the webservices configuration add the following line
<wsdl-port>443</wsdl-port>
In the web configuration change the scheme of the http connector from http to https and add proxy-port="443"
So it will look like this:
<subsystem xmlns="urn:jboss:domain:web:2.2" default-virtual-server="default-host" native="false">
<connector name="http" protocol="HTTP/1.1" scheme="https" socket-binding="http"
secure="true" proxy-port="443"/>
...
</subsystem>
<subsystem xmlns="urn:jboss:domain:webservices:1.2">
<modify-wsdl-address>true</modify-wsdl-address>
<wsdl-host>jbossws.undefined.host</wsdl-host>
<wsdl-port>443</wsdl-port>
...
</subsystem>
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "2"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f726378%2fjboss-webservice-behind-reverse-proxy-https-to-http%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
The web and webservices subsystem configurations work together to provide the endpoint URL (and also URLs for xs:import statements).
In the webservices configuration add the following line
<wsdl-port>443</wsdl-port>
In the web configuration change the scheme of the http connector from http to https and add proxy-port="443"
So it will look like this:
<subsystem xmlns="urn:jboss:domain:web:2.2" default-virtual-server="default-host" native="false">
<connector name="http" protocol="HTTP/1.1" scheme="https" socket-binding="http"
secure="true" proxy-port="443"/>
...
</subsystem>
<subsystem xmlns="urn:jboss:domain:webservices:1.2">
<modify-wsdl-address>true</modify-wsdl-address>
<wsdl-host>jbossws.undefined.host</wsdl-host>
<wsdl-port>443</wsdl-port>
...
</subsystem>
add a comment |
The web and webservices subsystem configurations work together to provide the endpoint URL (and also URLs for xs:import statements).
In the webservices configuration add the following line
<wsdl-port>443</wsdl-port>
In the web configuration change the scheme of the http connector from http to https and add proxy-port="443"
So it will look like this:
<subsystem xmlns="urn:jboss:domain:web:2.2" default-virtual-server="default-host" native="false">
<connector name="http" protocol="HTTP/1.1" scheme="https" socket-binding="http"
secure="true" proxy-port="443"/>
...
</subsystem>
<subsystem xmlns="urn:jboss:domain:webservices:1.2">
<modify-wsdl-address>true</modify-wsdl-address>
<wsdl-host>jbossws.undefined.host</wsdl-host>
<wsdl-port>443</wsdl-port>
...
</subsystem>
add a comment |
The web and webservices subsystem configurations work together to provide the endpoint URL (and also URLs for xs:import statements).
In the webservices configuration add the following line
<wsdl-port>443</wsdl-port>
In the web configuration change the scheme of the http connector from http to https and add proxy-port="443"
So it will look like this:
<subsystem xmlns="urn:jboss:domain:web:2.2" default-virtual-server="default-host" native="false">
<connector name="http" protocol="HTTP/1.1" scheme="https" socket-binding="http"
secure="true" proxy-port="443"/>
...
</subsystem>
<subsystem xmlns="urn:jboss:domain:webservices:1.2">
<modify-wsdl-address>true</modify-wsdl-address>
<wsdl-host>jbossws.undefined.host</wsdl-host>
<wsdl-port>443</wsdl-port>
...
</subsystem>
The web and webservices subsystem configurations work together to provide the endpoint URL (and also URLs for xs:import statements).
In the webservices configuration add the following line
<wsdl-port>443</wsdl-port>
In the web configuration change the scheme of the http connector from http to https and add proxy-port="443"
So it will look like this:
<subsystem xmlns="urn:jboss:domain:web:2.2" default-virtual-server="default-host" native="false">
<connector name="http" protocol="HTTP/1.1" scheme="https" socket-binding="http"
secure="true" proxy-port="443"/>
...
</subsystem>
<subsystem xmlns="urn:jboss:domain:webservices:1.2">
<modify-wsdl-address>true</modify-wsdl-address>
<wsdl-host>jbossws.undefined.host</wsdl-host>
<wsdl-port>443</wsdl-port>
...
</subsystem>
answered Nov 2 '15 at 3:55
shonky linux usershonky linux user
693711
693711
add a comment |
add a comment |
Thanks for contributing an answer to Server Fault!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f726378%2fjboss-webservice-behind-reverse-proxy-https-to-http%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Duplicate of stackoverflow.com/questions/32913933/…?
– shonky linux user
Nov 2 '15 at 3:55