This is the scenario, there is a JBoss server (S2) behind of Apache server 
(S1), connected through mod_jk. This Apache server it's again behind a CISCO 
SSL concentrator.
When I request https://www.site.com/app/ws1?wsdl the WSDL showed the next soap 
address location:
<service name="ServiceName">
  | <port binding="tns:ServiceNameBinding" name="ServiceNamePort">
  | <soap:address location="http://www.site.com:80/app/ws1?wsdl"/>
  | </port>
  | </service>
  | 
A change the file jboss.beans to:
<property name="webServiceHost">www.site.com</property>
  | <property name="webServiceSecurePort">443</property>
  | <property name="webServicePort">80</property>
  | <property name="alwaysModifySOAPAddress">true</property>

I need that soap address location showed in the WSDL generated be
<service name="ServiceName">
  | <port binding="tns:ServiceNameBinding" name="ServiceNamePort">
  | <soap:address location="https://www.site.com:443/app/ws1?wsdl"/>
  | </port>
  | </service>

Any idea are welcome..


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4123752#4123752

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4123752
_______________________________________________
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to