• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Ron McLeod
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

ERROR! Unable to find a transport

 
Greenhorn
Posts: 5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
Could anyone please tell me why I am not able to get to my servlet and get this error in my native.log
It says
ERROR ws_common: websphereFindTransport: Unable to find a transport
ERROR: ws_common: websphereHandleRequest: Failed to find a transport
 
Ranch Hand
Posts: 102
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator


Hi,
Could anyone please tell me why I am not able to get to my servlet and get this error in my native.log
It says
ERROR ws_common: websphereFindTransport: Unable to find a transport
ERROR: ws_common: websphereHandleRequest: Failed to find a transport


Check you plugin-cfg.xml in Websphere\Appserver\config\plugin-cfg.xml
Check that the Server tag in ServerGroup has a tag Transport in it. Look at the following
example
 
Kartik Shah
Ranch Hand
Posts: 102
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I didnt know why that didnt work.... trying again...
<ServerGroup Name="4gr8801/Default Server">
<Server CloneID="tjrubloc" Name="Default Server">
<Transport Hostname="4gr8801" Port="9080" Protocol="http"/>
</Server>
</ServerGroup>
 
Sun Muth
Greenhorn
Posts: 5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Kartik,
There is an entry for Transport but for the Default Server.
If I add an entry for my Application Server, is it ok.
What do I need to do after I modify this file.
Please let me know.
thanks
Sun
 
Kartik Shah
Ranch Hand
Posts: 102
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Please use admin console to do this changes.
1. Click on the application server where u want to make changes
2. On the right pane click on services tab.
3. In the service tab click on web services.
4. click on properties
5. click on second tab transport
6. Click on add
7. Add * , 9080, 50 in the first, second and third field.
8. Click on ok and apply the changes. ( do not forget to apply the changes)
9. Regenerate the plugin by right clicking on the node this application server was running
10. Re-start the application server instance.
11. You might need to restart your web server as well.
 
Sun Muth
Greenhorn
Posts: 5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks for your help.
I reinstalled the Apps and got it to work!
Sun
 
To avoid criticism do nothing, say nothing, be nothing. -Elbert Hubbard. Please critique this tiny ad:
Clean our rivers and oceans from home
https://www.kickstarter.com/projects/paulwheaton/willow-feeders
reply
    Bookmark Topic Watch Topic
  • New Topic