was

EJB JNDI lookup on different WebSphere servers

I have two separate installs of WebSphere. (Actually one is WebSphere Application Server V6.1 with EJB 3.0 and Web Services feature packs, and the other server is WebSphere ESB Server V6.2). However, I know that ESB is really built on top of WAS, so it has all the configuration settings that a regualr WAS server has. In my ESB server,...

How to host a WCF service in a web application with netNamedPipeBinding and WAS on Windows Vista

I am trying to host a WCF service with netNamedPipeBinding in a web applicaion on a Vista machine. I enabled the non-HTTP service activation as described in this article: http://msdn.microsoft.com/en-us/library/ms731053.aspx I configured the service as follows: <endpoint address="net.pipe://myservice" binding="netNamedPipeBinding" bi...

Where can I obtain an Eclipse server adapter for WebSphere Application Server Version 7?

I need to set up an Eclipse WTP project pointing to a WAS V7 instance but I can't find the server adapter to work with version 7. Version 6 is supported. ...

WebSphere Application Server EJB Optimization

We are working on developing a Java EE based application. Our application is Java 1.5 compatible and will be deployed to WAS ND 6.1.0.21 with EBJ 3.0 and Web Services feature packs. The configuration is currently one cell with two clusters. Each cluster will have two nodes. Our application, or our system, as I should rather say, comes i...

Does javax.jms.ExceptionListener delay the onException callback when network connection goes down?

I'm using Websphere Application Server (WAS) 6.1's default messaging provider for JMS. My remote client application creates a connection, then does a setExceptionListener to register the callback. When I simply stop the messaging engine using the WAS Integrated Solutions Console, my app behaves as expected, i.e., onException is called ...

WebSphere Portal portlet crazy threading

Hello, We are dealing with an issue in our WebSphere Portal solution. It's a stand-alone application server, running WebSphere Portal on top of WebSphere 6.0 and all the stack is installed by another IBM product: WCL - Workplace Collaborative Learning (an e-learning plataform). It's a Windows Server 2003 install, btw. The issue is that...

Hosting WCF service in IIS 7 (WAS) with net.tcp binding on TWO tcp ports

By default IIS 7 Web site has net.tcp binding with "808:" binding information string. If i add another net.tcp binding with "xxx:" exception occurs: This collection already contains an address with scheme net.tcp. There can be at most one address per scheme in this collection. Parameter name: item How can i solve this problem and li...

JMS createQueue Trouble

Hi I am having trouble using the createQueue in JMS. I can create a queue successfully but right after I try to do the following and it fails. Any ideas? Thanks. QueueSender mySender = mySession.createSender(myQueue); With the error: javax.jms.InvalidDestinationException: CWSIA0062E: Failed to create a MessageProducer for queue://...

Host WCF in WAS or IIS7?

We have a server application that has one module installed on a separate server, and want to use WCF for the two modules to communicate with each other. I've narrowed it down to hosting the WCF either in IIS7/WAS or in WAS without IIS. The main purpose of the primary application is actually to serve as a tcp/ip sockets based server tha...

Windows Process Activation Service (WAS) installed but NetMsmqActivator is missing

Windows Process Activation Service is installed under features on my Windows 2008 server running IIS7. Should i be able to see the NetMsmqActivator (Net.Msmq Listener Adapter) in the services list? I don't see it there. My messages are sitting in the queue unprocessed so i went to see if the NetMsmqActivator is running as its supposed...

IIS WCF service hosting vs Windows Service

Hi, We developped a WCF service and we're looking to deploy it. Our clients will be using it with basicHttpBinding but our internal team will be using it with namedPipesBinding. We are wondering if is it better to host it in IIS 7 or with a Windows Service ? We ran some tests and we found out that when we're adding bindings in IIS, it ...

Set WAS Process Definition Environment Entries using Jython?

Is it possible to add custom Process Definition environment entry in a WebSphere Application Server using a jython script? I see that the existing properties in the server.xml are assigned auto-generated IDs, is it possible to retrieve those prop without knowing their ID? <environment xmi:id="Property_1248356598212" name="<my_prop>" v...

RAD7 WAS 6.1.1 Issue with single server/JVM and 2 app with diff versions

Hi, I have a unique problem in RAD7 (WAS 6.1.1). We have two same applications but different versions, running on the same server(deployed two ear's). When a user logs in both the application simultaneously and tries some action, the functionality(ies) of older version and newer versions are combined and it behaves randomly. Is it somet...

singleton pattern in Windows Activation Service

Hello I have a few WCF services that are currently being self hosted, in a very basic NT Service. I want to expand my application to add provisioning of WCF Services, and updates, as well as isolation (I want each WCF Service to be in its own AppDomain). These WCF Services contain logic that needs to be run on a regular basis, pinging...

websphere application server license?

Hi I am using IBM Websphere application Server 7.0 trial version and the priod was expired. So please let me know how to get the licensed version for the same? Thanks in advance!!! ...

WCF via SSL connectivity problems

Hello, I am hosting a WCF service from inside a Windows service using WAS. When I set the service to listen on 127.0.0.1, I have connectivity from my local machine as well as from my network. However, when I set it to listen on my outbound interface port 443, I can no longer even see the wsdl by connecting with a browser. Strangely, ...

Deploying .war file in Websphere application server 6.1?

When i was trying to install new application in WAS 6.1, I have given the .war file i've created for SampleApplication. The SampleApplication.war is successfully running in Tomcat server, but when i tried to deploy it in WAS 6.1, following error was shown. The exception **IWAE0022E** Exception occurred loading deployment descriptor fo...

WAS net.msmq service messages stuck in retry queue

We are hosting a net.msmq service in IIS7. The queue is transactional. Messages arrive in the queue and are picked up correctly by the service. If an exception occurs, message is put into the retry queue. The retry delay is set to 1 hour, however when this time elapses the message is not "re-tried". If we browse to the .svc or send an...

how can i deploy my war file created in eclipse to internet so that i can access the site from another computer.

how can i deploy my war file created in eclipse to internet so that i can access the site from another computer. i have created an aplication which uses a jdbc connection to db2 database.the database server is running on my pc.and i have deployed the war on was ce server.i can connect to it through http://localhost:8080/LimsWeb but i w...

How to access application.xml file of an EAR deployed to IBM WebSphere 6.1

I am deploying an EAR file to the IBM WebSpehre server 6.1 - I want to be able to access the EAR application name which is stored in the deployment file under 'display-name'. Looking through stack overflow posts on related subjects, I've been able to gather that this is possible via the Java MBean API - or IBM's WAS API - Problem is I c...