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
0
votes
1 answer

AMQP AmqpBinding IIS/WAS problems?

The setup at the current employer has one set of back office functions on a Java platform and another group of functions on two separate .NET-based platforms. There is no overall architect. The Java guys decided to go for Apache QPID and AMQP for…
Sentinel
  • 3,582
  • 1
  • 30
  • 44
0
votes
1 answer

NServiceBus Transport is NULL when using a custom ServiceHostFactory, WAS

We are currently trying to implement NServiceBus 3.0 in our WCF services. We use a custom ServiceHostFactory to initialize our services in WAS. We use net.tcp to access the services and the following code to set it up: public class…
Bjorn Bailleul
  • 3,055
  • 1
  • 20
  • 25
-1
votes
1 answer

Separate the AWS IAM policy and reference and attach it in a different folder via Terraform

I have sample code below which creates an IAM role, a policy document, attachment of policy document and then the attachment of that policy to role. resource "aws_iam_role" "aws_snsANDsqsTeam" { name = "aws_snsANDsqsTeam" …
-1
votes
1 answer

How do I solve net::ERR_SSL_PROTOCOL_ERROR error when I put nginx in front of Tomcat?

How do I fix net::ERR_SSL_PROTOCOL_ERROR error when I put nginx in front of Tomcat? #user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid logs/nginx.pid; events { …
-1
votes
1 answer

React needs web server? How do the web application server and react communicate?

I'm a student who study web development by myself. I'm developing a shopping mall site as my personal project and I've got some elemental questions when I tried to make a login page. First of all, I will tell you about the main concepts of my…
GOLDFISH
  • 33
  • 1
  • 5
-1
votes
1 answer

EMF2DOMAdapterImpl_ERROR_0 Websphere Application Server WAS (V8.5) DeploymentDescriptorLoadException: WEB-INF/web.xml

Websphere Application Server V 8.5 fails to startup with certain web.xml structure. Current DOCTYPE uses http://java.sun.com/dtd/web-app_2_3.dtd .
-1
votes
2 answers

why in the systemout.log of websphere i see wrong operating system information?

This is the start of my SystemOut.log of my WAS. Why i see a wrong operating system? i have windows server 2012 and not win srv 2008. Do you know where websphere take this information? ************ Start Display Current Environment…
ankel88
  • 19
  • 3
-1
votes
1 answer

AWS CLI issues with connecting from local mac

I am trying to run AWS command from my local MAC, but the connection keeps timing out and traceroute is unable to get to my s3.us-east.amazonaws.com. I have run aws configure, on both my local mac and my ec2. It works on ec2 (not surprising), but…
DenisMP
  • 973
  • 2
  • 16
  • 31
-1
votes
1 answer

How to pass argument from bash to wsadmin

So basically i have .sh script which includes some bash and then ./wsadmin.sh launching some .py scripts which i've made. I need to somehow pass the argument of script from bash to .py script. As example i have now test.sh $1: cd…
lamiuks
  • 17
  • 4
-1
votes
3 answers

I need to find whether my Websphere servers are running on version 6 or version 8 currently?

I have got two versions installed in WebSphere Application Server ( version 6 and version 8 ). I need to find whether my Websphere servers are active on version 6 or version 8 currently from backend ( UNIX ) ? Please don't suggest ps -ef | grep…
Atul Dureja
  • 27
  • 10
-1
votes
1 answer

Error : Index was outside the bounds of the array in c#

I'm trying write small program using c# interface concept for the area of circle & square.While Giving specific condition if (args[0] == "S") there is an error IndexOutOfRangeException: if (args[0]=="S") fig = new Square(); if (args[0]=="C") …
Vijay
  • 1
  • 1
-1
votes
2 answers

haproxy statistics page crashes continues

I'm using haproxy for load balance, it works very happily. I setup a statistics page, this page return "the connection was reset" while I refresh it sometimes. listen status 0.0.0.0:8080 stats enable stats refresh 5s stats uri /admin Is this…
1 2 3
12
13