Tarun Chatterjee

Greenhorn
+ Follow
since Mar 07, 2005
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Tarun Chatterjee

In one of the testing environments where we were testing a request re-direction.

We have a Apache Server primarily for load balancing and acts as a gateway and we have a clustered WebLogic Server as an Web and App server.

When we try to redirect a request using HttpClient to an external system from the WebLogic Server, the requests goes to the Apache Server .
Is there any way i can directly hit the external system without going through the Apache Server.

I would want all incoming requests from Apache to WebLogic Server but outgoing requests from WebLogic to External system.
15 years ago
I have a WLI domain where i have created a JPD.Due to licensing issues the WLI domain cannot be used.Is it possible to deploy the JPDs(after creating an ear) in the WebLogic beehive domain.
15 years ago
We are trying to develop a java connector for peoplesoft 7.6. can anyone throw some light on what the approach should be and what technologies can we use to develop a connector ?.
Is there any 3rd party framework which can do that ?
Or do i ahve to write a custom component for grouping the Data ?
I have a generic query to retrieve the result from the Database
Once the result is returned back, I want to show the information in various formats eseentially group by different columns.
Is there any way i can do that in a Result set ?
Step 1. Create a Domain using a Configuration Wizard

Step 2. Create a Web application say create a folder called web
Inside that folder create a folder called WEB-INF and WEB-INF\classes
Put web.xml inside WEB-INF folder.
Write a JSP and u can put it under web folder or create a jsp folder under
web folder.
In WLS 9.1 open the WLS web console and deploy the application.
17 years ago
How can we get the List of User groups and Users from an WindowsNTAuthenticator in a Security Realm in weblogic 9.1 without using JMX?
17 years ago
Can anyone help me in suggesting the best way to cache Static XMls and where do i find the documentation about it.?
I am using weblogic and i have user group information.
How can i authorize( check for access control of a resource) by passing user group.?
17 years ago
Hello

I have a user group which has been passed to be from a java program.
How can i check the access control of that user group to access a resource programmatically.?

Kindly help, as this is Urgent?

Regards
Tarun
17 years ago
Thanks Paul.

I have used document(URI) for ther 2nd XML. Thats client side.
MY requirement says that I need to do it on server side.
I have a dynamic XML, 1 Error XML on server side which i need to merge.

ON client side i have to use Static XML in document(URI).

My issue is how do i use 2 XMLs on server side using Transformer.

Tarun
Can anyone suggest how to use 2 XMLs in XSLT to create a HTML from XSL.

I tried to use 1XML in XSL(client side) and other XML in the transformer(Server Side).

I want to use both the XMLs on server side

Can anyone suggest ?

Tarun
I have a XSLT and i am using Struts Tag in the XSL(To ensure that after the Page is rendered and the user enters the data we get the data in our form beans).
When i use a Transformer and create a JSP/HTML out of it and render that using Struts. I do not face any issues.

When i write the Transformer directly to Output Stream , then the Struts tags are not rendered.

For example if i write

transformer.transform(new StreamSource(new File(path+"/POC/jsp/index.xml")),
new StreamResult( new File(path+"/POC/jsp/index.jsp")));

This works perfectly fine.

when i do
transformer.transform(new StreamSource(new File(path+"/POC/jsp/index.xml")),
new StreamResult( response.getOutputStream()));

The widgets having struts tags are not shown in the UI.
I tried using Model2X using a servlet but no luck as well

Can anyone help me please.
17 years ago
Client is internal.
call to EJB is through a Service Abstraction Layer.
It has a Service Locator and through that we get the handle to the Remote Object and we call methods on that EJB.

My Problem is, I have a manula Authentication mechanism using a Database.
I want to use Weblogic Authorization to restrict access on EJB.

How do i set the Username/Password of the user accessing the EJB.?
17 years ago