修改soa as 默认启动配置和修改soa http 端口

1默认启动soa as 配置修改
soahome\j2ee\oc4j_soa\config 文件default-web-sit.xml
<web-app application="ascontrol" name="ascontrol" load-on-startup="true" root="/em" ohs-routing="true" />
soahome\j2ee\oc4j_soa\config 文件server.xml
<application name="ascontrol" path="../../home/applications/ascontrol.ear" parent="system" start="true" />


2修改soa http 端口

soahome\Apache\Apache\conf httpd.conf 和 httpd.conf.default

# Port: The port to which the standalone server listens.  Certain firewall
# products must be configured before Apache can listen to a specific port.
# Other running httpd servers will also interfere with this port.  Disable
# all firewall, security, and other services if you encounter problems.
# To help diagnose problems use the Windows NT command NETSTAT -a
#
Port 7777  
Listen 7777
#
# ServerAdmin: Your address, where problems with the server should be
# e-mailed.  This address appears on some server-generated pages, such
# as error documents.



Modify BPEL to use new Port Number
BPEL needs to know the port number it is listening on in order to construct SOAP endpoint addresses for use in WSDL and callbacks.  We need to tell BPEL that the port number has changed.

    * Go to BPEL Admin 'http://localhost/BPELAdmin'
    * Log in as 'oc4jadmin'
    * Change the following entries to have port 80
          o soapServerUrl
          o soapCallbackUrl
          o clusterName
    * Click 'apply'

I don't think you really need to change clusterName but it will confuse the heck out of you if you don't!  I would bounce SOA Suite again to make sure the change get picked up.

你可能感兴趣的:(apache,xml,windows,SOAP,SOA)