| drackcom 2005-09-14, 9:37 am |
| i am sorry not speaking english
i have websphere 5.1 nad http serever 2.047 (6.02)
when I do a request http://localhost responds with the estatico content good to me but when in this content I make a request of this type action="/HomePageWeb/servlet "responds webspher to me but data of the process of servlet does not bring to me. But when I make a request http://localhost:9080/HomePageWeb/servlet responds to me well and it shows the dear data to me
WEBSPHERE/CONFIG/CELL/PLUGIN
?xml version="1.0" encoding="ISO-8859-1"?>
<Config ASDisableNagle="false" AcceptAllContent="false" IISDisableNagle="false" IgnoreDNSFailures="false" RefreshInterval="60" ResponseChunkSize="64">
<Log LogLevel="Error" Name="C:\Archivos de programa\WebSphere\AppServer/logs/http_plugin.log"/>
<Property Name="ESIEnable" Value="true"/>
<Property Name="ESIMaxCacheSize" Value="1024"/>
<Property Name="ESIInvalidationMonitor" Value="false"/>
<VirtualHostGroup Name="default_host">
<VirtualHost Name="*:9080"/>
<VirtualHost Name="*:80"/>
<VirtualHost Name="*:9443"/>
</VirtualHostGroup>
<ServerCluster CloneSeparatorChange="false" LoadBalance="Round Robin" Name="server1_PruebaWas_Cluster" PostSizeLimit="-1" RemoveSpecialHeaders="true" RetryInterval="60">
<Server ConnectTimeout="0" ExtendedHandshake="false" MaxConnections="-1" Name="PruebaWas_server1" WaitForContinue="false">
<Transport Hostname="localhost" Port="9080" Protocol="http"/>
<Transport Hostname="localhost" Port="9443" Protocol="https">
<Property Name="keyring" Value="C:\Archivos de programa\WebSphere\AppServer\etc\plugin-key.kdb"/>
<Property Name="stashfile" Value="C:\Archivos de programa\WebSphere\AppServer\etc\plugin-key.sth"/>
</Transport>
</Server>
<PrimaryServers>
<Server Name="PruebaWas_server1"/>
</PrimaryServers>
</ServerCluster>
<UriGroup Name=" default_host_server1_PruebaWas_Cluster_U
RIs">
<Uri AffinityCookie="JSESSIONID" AffinityURLIdentifier="jsessionid" Name="/HomePageWeb/servlet1"/>
<Uri AffinityCookie="JSESSIONID" AffinityURLIdentifier="jsessionid" Name="/HomePageWeb/*.jsp"/>
<Uri AffinityCookie="JSESSIONID" AffinityURLIdentifier="jsessionid" Name="/HomePageWeb/*.jsv"/>
<Uri AffinityCookie="JSESSIONID" AffinityURLIdentifier="jsessionid" Name="/HomePageWeb/*.jsw"/>
<Uri AffinityCookie="JSESSIONID" AffinityURLIdentifier="jsessionid" Name="/HomePageWeb/j_security_check"/>
<Uri AffinityCookie="JSESSIONID" AffinityURLIdentifier="jsessionid" Name="/HomePageWeb/ibm_security_logout"/>
<Uri AffinityCookie="JSESSIONID" AffinityURLIdentifier="jsessionid" Name="/HomePageWeb/servlet/*"/>
</UriGroup>
<Route ServerCluster="server1_PruebaWas_Cluster" UriGroup=" default_host_server1_PruebaWas_Cluster_U
RIs" VirtualHostGroup="default_host"/>
<RequestMetrics armEnabled="false" newBehavior="false" rmEnabled="false" traceLevel="HOPS">
<filters enable="false" type="URI">
<filterValues enable="false" value="/servlet/snoop"/>
<filterValues enable="false" value="/webapp/examples/HitCount"/>
</filters>
<filters enable="false" type="SOURCE_IP">
<filterValues enable="false" value="255.255.255.255"/>
<filterValues enable="false" value="254.254.254.254"/>
</filters>
</RequestMetrics>
</Config>
HTTP.CONF
Alias /HomePageWeb "C:\estatico/HomePageWeb"
…………………………………
………………..
DocumentRoot "C:/estatico"
………….
………..
LoadModule was_ap20_module "C:\Archivos de programa\WebSphere\AppServer/bin/mod_was_ap20_http.dll"
LoadModule was_ap20_module "C:\Archivos de programa\WebSphere\AppServer/bin/mod_was_ap20_http.dll"
WebSpherePluginConfig "C:\Archivos de programa\WebSphere\AppServer/config/cells/plugin-cfg.xml"
ESTATICO/INDEX.HTML
action="/HomePageWeb/servlet1" |