Questions tagged [was]

The Windows Process Activation Service (WAS) manages the activation and lifetime of the worker processes that contain applications that host WCF services. For Websphere AS, please use [websphere] tag.

Excerpt from MSDN: Hosting in Windows Process Activation Service:

"The Windows Process Activation Service (WAS) manages the activation and lifetime of the worker processes that contain applications that host Windows Communication Foundation (WCF) services. The WAS process model generalizes the IIS 6.0 process model for the HTTP server by removing the dependency on HTTP. This allows WCF services to use both HTTP and non-HTTP protocols, such as Net.TCP, in a hosting environment that supports message-based activation and offers the ability to host a large number of applications on a given machine."

This allows for the development, hosting and lifetime management of services that implement a wide range of transport channels. For example, Tibco EMS messaging.

192 questions
1
vote
0 answers

Hosting WCF in WAS(Web Garden) -> control WorkerProcess lifetime

I'm trying to host my WCF service in WAS but have been struggling for a few hours already to accomplish the following scenario: There is a single client and many WCF 'servers'. Based on the address of the endpoint, the client requests(or some other…
Ventsyslav Raikov
  • 6,882
  • 1
  • 25
  • 28
1
vote
1 answer

Can I tell WAS to start the new AppPool after a recycle?

I have this administration site that is using (Fluent) NHibernate for data access. As has been stated elsewhere the initialization of the SessionFactory is slow due to creation of the Configuration object. The suggested solution is to serialize the…
Gaute Løken
  • 7,522
  • 3
  • 20
  • 38
1
vote
0 answers

IBM WAS 8.5.5 ND configurations that need to restart the environment

I have applied some WAS configuration but I don´t know in which cases I have to restart it. I want to know in which cases I have to restart the entire environment. I know when JNDI and dataq sources are configured the restart is needed but no…
Ismael Gtz
  • 11
  • 1
1
vote
0 answers

The exception which was received is javax.jms.JMSException: MQJMS2008: failed to open MQ queue ESB.DOC.TRANSPORT.BL.RS

i have my application running on WAS 6.1.0.47 and im getting below error in the logs. Few documents are passing successful and few are failing with below error can someone throw some light on what is causing the issue and what is the fix [6/6/22…
Puli Gowda
  • 21
  • 1
1
vote
2 answers

Is Windows Activation Service + WCF a replacement for COM+

WAS Features Application Pooling Recycling Idle time management Identity Management Isolation Sounds a lot like COM+ but hosted in IIS 7. Anybody out there using this technology and am I correct comparing the two?
Ryu
  • 8,641
  • 10
  • 65
  • 98
1
vote
1 answer

WAS hosting of queues

I read that when hosting a queue endpoint all these names need to match: Hosted in IIS at: http://localhost/MyService.svc service endpoint address: http://localhost/private/MyService.svc queue: .\private$\MyService.svc So I wonder, how can you…
user80855
  • 1,414
  • 2
  • 12
  • 21
1
vote
3 answers

KEYBOARD_DOM_ERROR

I'm trying to make a virtual keyboard in my angular app, And i found Simple-keyboard package so that i decided to install it and customize it but i get some error like ".simple-keyboard" was not found in the DOM. what's the problem? Someone can help…
1
vote
2 answers

Boto3 - How to keep session alive

I have a process that is supposed to run forever and needs to updates data on a S3 bucket on AWS. I am initializing the session using boto3: session = boto3.session.Session() my_s3 = session.resource( "s3", …
user1315621
  • 3,044
  • 9
  • 42
  • 86
1
vote
0 answers

com/ibm/xml/xlxp2/api/wssec/WSSXMLStreamReader cause out of memory issue

Good day, 2 years ago, my application hit OOME issue, I analyze the heap dump and found that its cause by com/ibm/xml/xlxp2/api/wssec/WSSXMLStreamReader, I tried to google around and found this IBM…
Panadol Chong
  • 1,793
  • 13
  • 54
  • 119
1
vote
0 answers

How to fill in the AWS data for storage.yml

I want to push a Ruby on Rails app to heroku. But it gets stuck. remote: Running: bundle install --without development:test --path vendor/bundle --binstubs vendor/bundle/bin -j4 --deployment remote: Some gems seem to be missing from…
1
vote
2 answers

WAS gets hung WSVR0605W due to jdbc preparedstatement execute WCS

I'm trying to execute three different prepared statements inside a function which basically does an insert in three different tables. File registration.java public String regPoints(Timestamp time2, String usersID2) throws PDHException{ …
Shiva
  • 55
  • 6
1
vote
1 answer

Hosting TCP based WCF service on the same ports as IIS (via Windows Activation Service) in Azure WebRole

How should one configure an Azure Webrole when using a TCP-based WCF on the same ports as IIS? An on-premise solution would typically use WAS activation, however this usually involved setting permissions on the HTTP ports etc. In Windows Azure this…
makerofthings7
  • 60,103
  • 53
  • 215
  • 448
1
vote
1 answer

Is it possible to have a WCF/WAS service using net.tcp port 80 and IIS on the same port?

Does the TCPPortSharing service permit me to have a WAS activated TCP-Based service on the same port as IIS's port 80? The picture below shows net.tcp at port 808. Can I change this to port 80? If the answer is "no" then am I misunderstanding the…
makerofthings7
  • 60,103
  • 53
  • 215
  • 448
1
vote
1 answer

Where can I download Rational Application Developer (RAD) 7 and WebSphere Application Server (WAS) 7?

I have been searching for RAD 7 and WAS 7 from IBM but could not find the relevant installers. I have an application that requires this version and I still have not been able to open it. I clarify that I need the specific version and not a different…
1
vote
2 answers

"Object was open" error for large result sets?

I am getting an error 'Object was open' when executing a stored procedure with large amounts of data. This procedure runs from a VB 6.00 application on SQL 2005. When running the script in SQL there is no problem rs.Open cmd,…