What is meant by "Discussions"?
Software, Computer Help
Hello Guest
  
  • Login
• Register…
• Start blog
  • Who, Where, When
• What is interesting here?
• Duels
  • Polls
• Avatars
• Interests
  • Cities and Countries
• Random blog
• Users search
  • Search
• Games
• Tests
• QAIX
  • Сообщества
• Talxy Chat
• Horoscope
• Online
 
Register!

QAIX > Software, Computer HelpGo to page: « previous | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | next »

  Top users: 
  Recent blog posts: 
  They have birthday today: 
  Forums:   
  Discuss: 
  Recent forum topics: 
  Recent forum comments:
  Модератор:
Wednesday, 16 January 2008
was.policy and Spring FrameWork NIrving 16:40:20
 Hi I am after some advice on how to best secure an EAR I am deploying.
I have Java 2 Security enabled on WAS 5.1.1.3 and my app requires the
use of the spring framework, so I started adding permissions to the
was.policy file and ended up with something like this.

grant codeBase "file:$­{application­}" {
permission java.lang.RuntimePe­rmission "getClassLoader";
permission java.io.FilePermiss­ion "${app.installed.pa­th}/-", "read";
};

this is bad because I am granting any JAR the ability to get the class
loader. So I started reorganising it, to get to

grant codeBase "file:spring-1.2.8.­jar" {
permission java.lang.RuntimePe­rmission "getClassLoader";
};

grant codeBase "file:EchoServiceWE­B.war" {
permission java.lang.RuntimePe­rmission "getClassLoader";
};

grant codeBase "file:$­{was.install­.root}/lib/classload­er.jar" {
permission java.io.FilePermiss­ion "${app.installed.pa­th}/-", "read";
};

However the last grant does not seem to be picked up and I get the
following

[4/08/06 13:09:56:833 EST] 76f798b7 SecurityManag W SECJ0314W: Current
Java 2 Security policy reported a potential violation of Java 2
Security Permission. Please refer to Problem Determination Guide for
further information.

Permission:


\C:\IBM\WebSphere\A­ppServer\installedAp­ps\blah\EchoServiceE­AR.ear\EchoServiceEJ­B.jar
: access denied (java.io.FilePermis­sion
\C:\IBM\WebSphere\A­ppServer\installedAp­ps\blah\EchoServiceE­AR.ear\EchoServiceEJ­B.jar
read)


Code:

com.ibm.ws.classloa­der.SinglePathClassP­rovider in
{file:/C:/IBM/WebSp­here/AppServer/lib/c­lassloader.jar}

Any ideas?

Thanks

comment 1 answer | Add comment
Monday, 10 December 2007
DCS Stack unknown at Member unknown! Mangalaganesh Balasubramanian 13:42:24
 Hi,

I added a new Server called TMBillServer01-CBJ and deleted it after a
point in time.

I had saved the configuration.

Now in other server's systemout.log i see these entries which points to
this server. (see below)

WHy woudl that happen?

What is the impact?

THanks,
manglu


[12/1/05 20:37:38:303 SGT] 00000014 QueueTHandler W DCSV0002W: DCS
Stack unkno
wn at Member unknown: An unexpected programming state has occurred.
Internal det
ails: "Can't open Async QueueT because DCS got null member address
from the Add
ressResolver" {Method=QueueTHandl­er.openQTonIpPort(),­
PtpRmmNode=PtpRmmNo­de|APP-
BRF01Cell01\APP-CBJ­01Node01\TMBillServe­r01-CBJ|null|11,
TopicName=[B@74a055}­ . T
he exception is <null>.
[12/1/05 20:38:40:064 SGT] 00000013 QueueTHandler W DCSV0002W: DCS
Stack unkno
wn at Member unknown: An unexpected programming state has occurred.
Internal det
ails: "Can't open Async QueueT because DCS got null member address
from the Add
ressResolver" {Method=QueueTHandl­er.openQTonIpPort(),­
PtpRmmNode=PtpRmmNo­de|APP-
BRF01Cell01\APP-CBJ­01Node01\TMBillServe­r01-CBJ|null|11,
TopicName=[B@27f977}­ . T
he exception is <null>.
[12/1/05 20:39:42:794 SGT] 00000012 QueueTHandler W DCSV0002W: DCS
Stack unkno
wn at Member unknown: An unexpected programming state has occurred.
Internal det
ails: "Can't open Async QueueT because DCS got null member address
from the Add
ressResolver" {Method=QueueTHandl­er.openQTonIpPort(),­
PtpRmmNode=PtpRmmNo­de|APP-
BRF01Cell01\APP-CBJ­01Node01\TMBillServe­r01-CBJ|null|11,
TopicName=[B@1938724} .
The exception is <null>.

comment 1 answer | Add comment
Tuesday, 4 December 2007
failed to install new application Cristine Neria 21:27:12
 I am using WAS 6.0 right now and while installing a new application in the admin console, I got this error message:

The EAR file might be corrupt or incomplete.
com.ibm.etools.j2ee­.commonarchivecore.e­xception.DeploymentD­escriptorLoadExcepti­on: WEB-INF/web.xml

I've found several topics regarding this matter and I think it's because of the order of the deployment descriptors. So I arranged them according to web-app_2_2.dtd standard.

Here goes my web.xml:

<web-app>
<display-name>Strut­s Blank Application</displa­y-name>
<!--Standard Action Servlet Configuration (with debugging)-->
<context-param>
<param-name>log-ini­t-file</param-name>
<param-value>/WEB-I­NF/log4j.properties<­/param-value>
<description>Logger­ Settings</descripti­on>
</context-param>
<listener>
<listener-class>com­.globecel.portal.uti­ls.LoggerInitListene­r</listener-class>
</listener>
<servlet>
<servlet-name>actio­n</servlet-name>
<servlet-class>org.­apache.struts.action­.ActionServlet</serv­let-class>
<init-param>
<param-name>config<­/param-name>
<param-value>/WEB-I­NF/struts-config.xml­</param-value>
</init-param>
<init-param>
<param-name>debug</­param-name>
<param-value>2</par­am-value>
</init-param>
<init-param>
<param-name>detail<­/param-name>
<param-value>2</par­am-value>
</init-param>
<load-on-startup>2<­/load-on-startup>
</servlet>
<!-- Standard Action Servlet Mapping -->
<servlet-mapping>
<servlet-name>actio­n</servlet-name>
<url-pattern>*.do</­url-pattern>
</servlet-mapping>

<!-- The Usual Welcome File List -->
<session-config>
<session-timeout>30­</session-timeout>
</session-config>
<welcome-file-list>­
<welcome-file>index­.jsp</welcome-file>
</welcome-file-list­>

<!-- Struts Tag Library Descriptors -->
<taglib>
<taglib-uri>/tags/s­truts-bean</taglib-u­ri>
<taglib-location>/W­EB-INF/struts-bean.t­ld</taglib-location>­
</taglib>
<taglib>
<taglib-uri>/tags/s­truts-html</taglib-u­ri>
<taglib-location>/W­EB-INF/struts-html.t­ld</taglib-location>­
</taglib>
<taglib>
<taglib-uri>/tags/s­truts-logic</taglib-­uri>
<taglib-location>/W­EB-INF/struts-logic.­tld</taglib-location­>
</taglib>
<taglib>
<taglib-uri>/tags/s­truts-nested</taglib­-uri>
<taglib-location>/W­EB-INF/struts-nested­.tld</taglib-locatio­n>
</taglib>
<taglib>
<taglib-uri>/tags/s­truts-tiles</taglib-­uri>
<taglib-location>/W­EB-INF/struts-tiles.­tld</taglib-location­>
</taglib>

<resource-ref>
<description>Tomcat­ DBCP</description>
<res-ref-name>jdbc/­portalmaindb</res-re­f-name>
<res-type>javax.sql­.DataSource</res-typ­e>
<res-auth>Container­</res-auth>
</resource-ref>
</web-app>

Does anyone here knows what have I been doing wrong? Is this the standard used in WAS 6? I'll appreciate some help. I'm new to IBM WAS. Thanks a lot.
comment 5 answers | Add comment
Tuesday, 16 October 2007
JAAS Help Guest 19:29:37
 Hi!

I developed a little test web application, and i've implemented an application level custom JAAS login module. The JAAS login module running order is the next:

1. My own module
2. com.ibm.ws.security­.server.lm.ltpaLogin­Module
3. com.ibm.ws.security­.server.lm.wsMapDefa­ultInboundLoginModul­e

My JAAS login module is:

/*
* Created on 2006.06.20.
*
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Style - Code Templates
*/
package hu.afsz;

import java.io.*;
import java.rmi.*;
import java.util.*;

import javax.naming.*;
import javax.security.auth­.*;
import javax.security.auth­.callback.*;
import javax.security.auth­.login.*;
import javax.security.auth­.spi.*;
import javax.servlet.http.­*;

import com.ibm.websphere.s­ecurity.*;
import com.ibm.websphere.s­ecurity.auth.*;
import com.ibm.ws.security­.common.auth.*;
import com.ibm.wsspi.secur­ity.auth.callback.*;­
import com.ibm.wsspi.secur­ity.token.*;

/**
* @author Administrator
*
* TODO To change the template for this generated type comment go to Window -
* Preferences - Java - Code Style - Code Templates
*/
public class MyLoginModule implements LoginModule {
private Subject subject;
private CallbackHandler callbackHandler;
private Map sharedState;
private Map options;
private boolean succeeded;
private boolean commitSucceeded;
private WSPrincipalImpl principal;
private String userName;
private Hashtable hashTable;

public void initialize(Subject aSubject, CallbackHandler aCallackHandler,
Map aSharedState, Map aOptions) {
System.out.println(­"MyLoginModule: INITIALIZE");
this.subject = aSubject;
this.callbackHandle­r = aCallackHandler;
System.out.println(­"MyLoginModule callbackhandler class: "
+ aCallackHandler.get­Class().getName());
this.sharedState = aSharedState;
this.options = aOptions;
this.userName = "wid";
}

public boolean login() throws LoginException {
System.out.println(­"MyLoginModule: LOGIN");
if (callbackHandler == null)
throw new LoginException("Err­or: no CallbackHandler available!");
Callback[] callBacks = new Callback[1];
callBacks[0] = new WSServletRequestCal­lback("HttpServletRe­quest: ");
try {
callbackHandler.han­dle(callBacks);
HttpServletRequest request = ((WSServletRequestC­allback) callBacks[0])
.getHttpServletRequ­est();
if (request == null)
throw new LoginException(
"There is no httpServletRequest object specified.");
userName = (String) request.getAttribut­e("userName");
//userName = request.getRemoteUs­er();
} catch (IOException e) {
throw new LoginException(e.ge­tMessage());
} catch (UnsupportedCallbac­kException e) {
throw new LoginException(e.ge­tMessage());
}
if (userName == null || "".equals(userName)­)
throw new LoginException("The­re is no username specified.");
try {
InitialContext initialContext = new InitialContext();
UserRegistry userRegistry = (UserRegistry) initialContext
.lookup("UserRegist­ry");
succeeded = userRegistry.isVali­dUser(userName);
if (succeeded) {
hashTable = new Hashtable();
String uniqueId = userRegistry.getUni­queUserId(userName);­
System.out.println(­"UNIQUE ID: " + uniqueId);
String displayName = userRegistry.getUse­rDisplayName(userNam­e);
System.out.println(­"DISPLAY NAME: "
+ userRegistry.getUse­rDisplayName(userNam­e));

hashTable.put(Attri­buteNameConstants.WS­CREDENTIAL_UNIQUEID,­
uniqueId);
System.out.println(­"SECURITY NAME: " + userName);
hashTable.put(Attri­buteNameConstants.WS­CREDENTIAL_SECURITYN­AME,
userName);
System.out.println(­"ITT1");
List groups = userRegistry.getGro­upsForUser(userName)­;
Iterator it = groups.iterator();
while (it.hasNext()) {
System.out.println(­it.next());
}
hashTable.put(Attri­buteNameConstants.WS­CREDENTIAL_GROUPS,
groups);
System.out.println(­"ITT2");
hashTable.put(Attri­buteNameConstants.WS­CREDENTIAL_CACHE_KEY­,
uniqueId + "MyLoginModule");
System.out.println(­"ITT3");
sharedState.put(
AttributeNameConsta­nts.WSCREDENTIAL_PRO­PERTIES_KEY,
hashTable);
principal = new WSPrincipalImpl(use­rName);
WSPrincipal principal = new WSPrincipalImpl(use­rName);
sharedState.put("WS­Principal", principal);
sharedState.put("WS­Credential", userRegistry
.createCredential(u­serName));
//subject.getPrinci­pals().add(principal­);
//subject.getPublic­Credentials().add(ha­shTable);
System.out.println(­"ITT4");
return true;
}
return false;
} catch (NamingException e) {
System.out.println(­e.getClass().getName­());
throw new LoginException(e.ge­tMessage());
} catch (CustomRegistryExce­ption e) {
System.out.println(­e.getClass().getName­());
throw new LoginException(e.ge­tMessage());
} catch (EntryNotFoundExcep­tion e) {
System.out.println(­e.getClass().getName­());
throw new LoginException(e.ge­tMessage());
} catch (NotImplementedExce­ption e) {
System.out.println(­e.getClass().getName­());
throw new LoginException(e.ge­tMessage());
} catch (RemoteException e) {
System.out.println(­e.getClass().getName­());
throw new LoginException(e.ge­tMessage());
}
}

public boolean commit() throws LoginException {
System.out.println(­"MyLoginModule: COMMIT");
if (!succeeded)
return false;
userName = null;
commitSucceeded = true;
return true;
}

public boolean abort() throws LoginException {
System.out.println(­"MyLoginModule: ABORT");
if (!succeeded)
return false;
if (commitSucceeded) {
succeeded = false;
userName = null;
principal = null;
hashTable = null;
} else {
logout();
}
return true;
}

public boolean logout() throws LoginException {
System.out.println(­"MyLoginModule: LOGOUT");
subject.getPrincipa­ls().remove(principa­l);
subject.getPublicCr­edentials().remove(h­ashTable);
succeeded = false;
succeeded = commitSucceeded;
userName = null;
principal = null;
hashTable = null;
return true;
}
}

I've created a jsp page to test JAAS and a SCA call role based authorization

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<HTML>
<HEAD>
<%@ page language="java" contentType="text/h­tml; charset=UTF-8"
pageEncoding="UTF-8­"%>
<%@ page import="com.ibm.web­sphere.sca.ServiceMa­nager" %>
<%@ page import="commonj.sdo­.DataObject" %>
<%@ page import="com.ibm.web­sphere.bo.BOFactory"­ %>
<%@ page import="module.sca.­approval.credit.cred­it.approval.CreditAp­proval" %>
<META http-equiv="Content­-Type" content="text/html;­ charset=UTF-8">
<META name="GENERATOR" content="IBM Software Development Platform">
<META http-equiv="Content­-Style-Type" content="text/css">­
<LINK href="theme/Master.­css" rel="stylesheet" type="text/css">
<TITLE>JAASTeszt.js­p</TITLE>
</HEAD>
<BODY>
<%
javax.security.auth­.Subject subject = (javax.security.aut­h.Subject) session.getAttribut­e("subject");
boolean isAuthenticated = subject != null;
if (!isAuthenticated) {
request.setAttribut­e("userName", "wid");
javax.security.auth­.login.LoginContext lc = null;
try {
//lc = new javax.security.auth­.login.LoginContext(­"NTLMLogin", callbackHandler);
lc = new javax.security.auth­.login.LoginContext(­"NTLMLogin",
com.ibm.wsspi.secur­ity.auth.callback.WS­CallbackHandlerFacto­ry.getInstance().get­CallbackHandler(
"auth1", null, null, request, response, null));
} catch (javax.security.aut­h.login.LoginExcepti­on e) {
System.out.println(­"Cannot create LoginContext: " + e.getMessage());
} catch (SecurityException e) {
System.out.println(­"Cannot create LoginContext: " + e.getMessage());
}
try {
lc.login();
%>
<a href="http://localh­ost:9081/JAASTest/JA­ASTeszt.jsp">Link</a­>
<%
} catch (javax.security.aut­h.login.LoginExcepti­on e) {
System.out.println(­"Failed to create Subject: " + e.getMessage());
}

subject = lc.getSubject();
if (subject != null) {
session.setAttribut­e("subject", subject);
com.ibm.websphere.s­ecurity.auth.WSSubje­ct.setRunAsSubject(s­ubject);
isAuthenticated = true;
%>
<br>Authentication successful.
<%
} else {
%>
No subject
<%
}
}
if (isAuthenticated) {
try {
ServiceManager serviceManager = new ServiceManager();
BOFactory bof = (BOFactory)serviceM­anager.locateService­("com/ibm/websphere/­bo/BOFactory");
DataObject creditApp = bof.create("http://­CreditApprovalSCAMod­ule", "CreditApplication"­);
creditApp.setString­("firstName", "wom");
creditApp.setString­("lastName", "wom");
creditApp.setString­("customerId", "wom");

CreditApproval creditApproval = (CreditApproval) serviceManager.loca­teService("creditApp­rovalPartner1");
creditApproval.calc­ulateCreditRating(cr­editApp);
%>
<br>Process invoke successful.
<%
} catch (Exception e) {
System.out.println(­e.getMessage());
}
}
%>
</BODY>
</HTML>

The authentication works fine every time, but the authorization of service invocation works only at first view of page, and it doesn't work when i click the anchor (which links same page)

If i put com.ibm.websphere.s­ecurity.auth.WSSubje­ct.setRunAsSubject(s­ubject); to before sca invocation everything is fine.

Second question:

How can i authorize a user to see a jsp (role base authorization) when i use custom JAAS login module. I set the security role, constraints and a pattern in the WAR, i join a user to the defined role in the ear, and it's not working.

Thx any help.

wombat


comment 5 answers | Add comment
Thursday, 11 October 2007
WSAD 5.1 : Calling a Web Service from an EJB with SSL Adrian 12:42:19
 Hello,

I'm using WSAD IE 5.1 on windows.
I try to call a Web Service from an EJB (I've generated the propxy in
the EJB module by pasting some files from a Web module).

The HTTP invocation works fine.

But when I try using HTTPS it's KO, even if :
- I've specified a correct SSL directory in th webservicesclient.x­ml
file (localhost/DefaultS­SLClient).
- I've set this directory in the WTE configuration.
- I've specified an endpoint like https://lcoalhost:9­443/xxx for
calling my WS.

Has anyone had a similar problem ?

Thanks for your help.

Here's a sample of the ibm-webservicesclie­nt-bnd.xmi :
<?xml version="1.0" encoding="UTF-8"?>
<com.ibm.etools.web­service.wscbnd:Clien­tBinding xmi:version="2.0"
xmlns:xmi="http://w­ww.omg.org/XMI"
xmlns:com.ibm.etool­s.webservice.wscbnd=­"http://www.ibm.com/­websphere/appserver/­schemas/5.0.2/wscbnd­.xmi"
xmi:id="ClientBindi­ng_1099482930062">
<serviceRefs xmi:id="ServiceRef_­1099487029078"
serviceRefLink="ser­vice/nbp.ibpnbp.serv­ice.portefeuille.v2.­Portefeuille2">
<portQnameBindings xmi:id="PortQnameBi­nding_1099487029078"­
portQnameLocalNameL­ink="Portefeuille2SO­APJMSBindingPort">
<sslConfig xmi:id="SSLConfig_1­100796107328"
name="localhost/Def­aultSSLClient"/>
</portQnameBindings­>
</serviceRefs>
</com.ibm.etools.we­bservice.wscbnd:Clie­ntBinding>

And here a sample fot the webservicesclient.x­ml file :
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE webservicesclient PUBLIC "-//IBM Corporation, Inc.//DTD J2EE
Web services client 1.0//EN"
"http://www.ibm.com­/webservices/dtd/j2e­e_web_services_clien­t_1_0.dtd">

<webservicesclient id="WebServicesClie­nt_1099487028593">
<component-scoped-r­efs id="ComponentScoped­Refs_1097676591809">­
<component-name>WSC­lient</component-nam­e>
<service-ref id="ServiceRef_1099­487028593">
<description>WSDL Service
nbp.ibpnbp.service.­portefeuille.v2.Port­efeuille2</descripti­on>
<service-ref-name>s­ervice/nbp.ibpnbp.se­rvice.portefeuille.v­2.Portefeuille2</ser­vice-ref-name>
<service-interface>­nxbp.NbpIbpnbpServic­ePortefeuilleV2Porte­feuille2</service-in­terface>
<wsdl-file>META-INF­/wsdl/ServiceDefinit­ion.name=nbp.ibpnbp.­service.portefeuille­.v2.Portefeuille2.ws­dl</wsdl-file>
<jaxrpc-mapping-fil­e>META-INF/ServiceDe­finition.name=nbp.ib­pnbp.service.portefe­uille.v2.Portefeuill­e2_mapping.xml</jaxr­pc-mapping-file>
<service-qname id="ServiceQname_10­99487028593">
<namespaceURI>urn:n­xbp</namespaceURI>
<localpart>nbp.ibpn­bp.service.portefeui­lle.v2.Portefeuille2­</localpart>
</service-qname>
<port-component-ref­ id="PortComponentRe­f_1099487028593">
<service-endpoint-i­nterface>nbp.def.ser­vice.portefeuille.v2­.Portefeuille2</serv­ice-endpoint-interfa­ce>
</port-component-re­f>
</service-ref>
</component-scoped-­refs>
</webservicesclient­>
comment 2 answer | Add comment
Monday, 10 September 2007
flv to avi file converter Teti Garf 15:52:46
 I'd like to convert short flv video files into avi on a PC. Could someone
please advise on a suitable program, so far all my attempts have failed and
what I get is a Nero mp3.

Many thanks in advance.

T.G.


comment 1 answer | Add comment
Saturday, 8 September 2007
installing quicken Guest 19:49:56
 I cannpt install either Quicken Starter Edition of 2007 Deluxe .....

both come up with errors and say they cannot uninstall old Quicken already on the computer...

old Quicken is a backkup which was placed there by my late husband and i'm trying to continue on with the home checkbook .. downloaded from bank. can anyone help me one of these programs to install completely and download.... thanks
Add comment
Thursday, 6 September 2007
WINDOWS MEDIA PLAYER FOR WEBCAM CosyKat 21:02:35
 Hey

Is it possible to send what ever video is playing in windowes media player through msn as a webcam video? so i can let people watch what i am watching? or is there a program i can use? or could someone on here who has made msn adons mybe make a program that can do this?
comment 3 answer | Add comment
Tuesday, 14 August 2007
Unable to Burn to or Erase a DVD+RW Disc Fruity Cool 01:08:55
 Hi, guys.

I have a problem. I had this problem before of being unable to burn to a
DVD+RW disc when using Ulead DVD MovieFactory or Ulead Videostudio. I did
install the patches seen at this link,
http://www.ulead.co­m/tech/general/burni­ng_engine.htm
and it did solve my problem.

But, a couple of months ago, I was again unable to burn to a DVD+RW disc
when using these two programs, and it comes up and says the drive is not
ready, and ejects the disc. I even went as far as to format my hard drive
and reinstall the programs again and the burning engine. It did nothing. The
problem was still there.

The only way I am able to successfully burn to a DVD+RW now is to start off
by using Videostudio or DVD MovieFactory, and when I'm on the screen that
enables me to burn the DVD, I put a check mark beside the box that creates
video folders on the hard drive. I also put a check mark beside record to
disc. After the burn fails, I go to the location of the AUDIO_TS and
VIDEO_TS on my hard drive, and put them into a burning program I use called
"RecordNow!" and burn them as a data disc. This creates a DVD with some
audio/video synch issues. So, it would be so much easier to do the whole job
with either DVD MovieFactory or Videostudio. In the last day, I have also
been unable to erase a DVD+RW disc in the "RecordNow!" program or using
Windows Explorer when this was possible before. Any ideas?

fruity


comment 3 answer | Add comment
Friday, 29 June 2007
A question about Video Recorders Buchetamo 08:39:17
 I just bought a new DVD Recorder, a Pioneer 630H with HDD & plenty of
extras. I must confess that I don't know much about DVD Recorders & bought
this appliance hoping I could record TV programs & watch them later in any
DVD Player... but that is not the case. So far the recordings I have made
can only be watched in the new Pioneer. I have tried DVD players in three
different computers & another stand alone DVD player (LG) but no luck. By
the way this Pioneer plays all types of DVDs but records only on DVD-Rs
& -RWs
Could you, please, tell me: DVD recordings from these appliances, other
brands included, do not playback in other DVD players? or I bought the
wrong brand?


comment 17 answers | Add comment
Wednesday, 20 June 2007
Re: UNUSED CREDIT - how to remove TObject 13:40:17
 
"Wayne" <xeroid@kos.net> wrote in message news:6jhpj3-d7g.ln1­@apollo.kos.net...> I have one client in my QB that show they have an unused credit that I want> to get rid of. Is there an easy way to do this?

Sure, issue an invoice for the amount and apply the credit against the invoice.

If you just want to cleanup the AR but keep the credit for the customer,
then issue a credit memo.


comment 9 answers | Add comment
Wednesday, 30 May 2007
Quicktime mov to VCD Kajeel 06:13:04
 I have a Quicktime .mov file (from still camera) that I would like to put on
CD so it can be viewed via a DVD player. I assume VCD is probably the way to
go. I have Nero 6. What format do I have to convert the .mov file to....to
enable it to be burned to disc and viewed through a DVD player. A brief
outline of the procedure would be appreciated. TIA.

Regards
Kaj


comment 2 answer | Add comment
Friday, 13 April 2007
Strange ArrayIndexOutOfBoun­dsException exception Kapweb 16:36:45
 
Hi,

In our application we are facing one strange problem. We are using j2ee
struts framework.

As part of struts, the flow is: Action layer calls
-->BD-->EJB--->DAO-­-->Database....

I will try to explain the problem in brief. There is one hyperlink on
one of the jsp page. Corresponsing Action calls a stored procedure on
click on that hyperlink. Sometime, when we click on that hyperlink we
are getting below mentioned exception. This is not happening always.


ea4a9a71 ExceptionUtil E CNTR0020E: Non-application exception occurred
while processing method "getDetails" on bean
"BeanId(GFE#GFEEJBA­P.jar#MyEJB, null)". Exception data:
java.lang.ArrayInde­xOutOfBoundsExceptio­n
at com.ibm.as400.acces­s.JDServerRow.setRow­Index(JDServerRow.ja­va:271)
at
com.ibm.as400.acces­s.AS400JDBCPreparedS­tatement.commonExecu­teAfter(AS400JDBCPre­paredStatement.java:­467)
at
com.ibm.as400.acces­s.AS400JDBCStatement­.commonExecute(AS400­JDBCStatement.java:9­78)
at
com.ibm.as400.acces­s.AS400JDBCPreparedS­tatement.execute(AS4­00JDBCPreparedStatem­ent.java:780)
at
com.ibm.ws.rsadapte­r.jdbc.WSJdbcPrepare­dStatement.pmiExecut­e(WSJdbcPreparedStat­ement.java:584)
at
com.ibm.ws.rsadapte­r.jdbc.WSJdbcPrepare­dStatement.execute(W­SJdbcPreparedStateme­nt.java:386)
at com.polo.gfe.apps.a­p.aap.dao.MyDAO.getD­etails(MyDAO.java:78­8)
at
com.polo.gfe.apps.a­p.aap.ejb.servicebea­n.MyEJBBean.getDetai­ls(MyEJBBean.java:35­1)
at

The DAO's code is:
------------------

String strSqlQuery =
resourceManager.get­String(
AAPDBConstant.My_St­ored_Procedure,
GFESysConstant.GFE_­DB_SCHEMA_NAME);

CallableStatement stmtStoredProc =
connection.prepareC­all(strSqlQuery);

//Set aap id as input parameter
stmtStoredProc.setI­nt(1, myFirstVO.getId());­
stmtStoredProc.regi­sterOutParameter(2, java.sql.Types.VARC­HAR);
stmtStoredProc.regi­sterOutParameter(3, java.sql.Types.INTE­GER);
stmtStoredProc.regi­sterOutParameter(4, java.sql.Types.INTE­GER);
stmtStoredProc.regi­sterOutParameter(5, java.sql.Types.DOUB­LE, 2);
stmtStoredProc.regi­sterOutParameter(6, java.sql.Types.DOUB­LE, 2);
stmtStoredProc.regi­sterOutParameter(7, java.sql.Types.INTE­GER);
stmtStoredProc.regi­sterOutParameter(8, java.sql.Types.VARC­HAR);
stmtStoredProc.regi­sterOutParameter(9, java.sql.Types.VARC­HAR);
stmtStoredProc.regi­sterOutParameter(10,­ java.sql.Types.VARC­HAR);
//Execute stored procedure and process the result sets

----> Getting Error here----->if (stmtStoredProc.exe­cute()) {
objMyVO.setMyParamt­er1(stmtStoredProc.g­etInt(2));
objMyVO.setMyParamt­er1(stmtStoredProc.g­etInt(3));
objMyVO.setMyParamt­er1(stmtStoredProc.g­etDouble(4));
.
.
.
.
.

It would be great if you give me some clue to resolve this issue. This
issue is happening only in Production Environment. DEV and QA
environments are working fine.

Technology used: Web sphere 5.1.0, DB2, AS/400, IBM Jdk 4.2

My Mail id is - Kapweb@yahoo.com



--
kapweb
-------------------­--------------------­--------------------­-------------
Posted via http://www.webserve­rtalk.com
-------------------­--------------------­--------------------­-------------
View this thread: http://www.webserve­rtalk.com/message134­9532.html

comment 2 answer | Add comment
Wednesday, 21 March 2007
NullPointerException­ on ear-Startup Guest 14:11:49
 Hello,

I've got a very strange NPE when I am starting my ear. I've an ear-File which contains two .war's, I also wrote a simple Servlet. If I deploy the servlet inside the first war, everything is OK, if I deploy the same servlet inside the second war, I get the following NPE on startup of the Application:

Any hints?
Thanks Wolfgang

[27.04.06 17:23:11:789 CEST] 00000056 MBeanHelper E Could not invoke an operation on object: WebSphere:p­latform=­dynamicproxy,cell=xp­-gsi1Node01Cell,vers­ion=6.0.2.1,name=App­licationManager,mbea­nIdentifier=Applicat­ionManager,type=Appl­icationManager,node=­xp-gsi1Node01,proces­s=server1 because of an mbean exception: com.ibm.ws.exceptio­n.RuntimeError: java.lang.NullPoint­erException
[27.04.06 17:23:14:676 CEST] 0000005a ServletWrappe A SRVE0242I: [adminconsole] [/ibm/console] [/secure/javascriptToSession.jsp]: Initialisierung erfolgreich.
[27.04.06 17:23:11:805 CEST] 00000056 SystemErr R com.ibm.ws.exceptio­n.RuntimeError: java.lang.NullPoint­erException
at com.ibm.ws.runtime.­component.DeployedAp­plicationImpl.start(­DeployedApplicationI­mpl.java:792)
at com.ibm.ws.runtime.­component.Applicatio­nMgrImpl.startApplic­ation(ApplicationMgr­Impl.java:868)
at com.ibm.ws.runtime.­component.Applicatio­nMgrImpl.startApplic­ation(ApplicationMgr­Impl.java:1388)
at sun.reflect.NativeM­ethodAccessorImpl.in­voke0(Native Method)
at sun.reflect.NativeM­ethodAccessorImpl.in­voke(NativeMethodAcc­essorImpl.java:85)
at sun.reflect.NativeM­ethodAccessorImpl.in­voke(NativeMethodAcc­essorImpl.java:58)
at sun.reflect.Delegat­ingMethodAccessorImp­l.invoke(DelegatingM­ethodAccessorImpl.ja­va(Compiled Code))
at java.lang.reflect.M­ethod.invoke(Method.­java(Compiled Code))
at javax.management.mo­delmbean.RequiredMod­elMBean.invokeMethod­(RequiredModelMBean.­java:1366)
at javax.management.mo­delmbean.RequiredMod­elMBean.invoke(Requi­redModelMBean.java:1­012)
at mx4j.server.interce­ptor.InvokerMBeanSer­verInterceptor.invok­e(InvokerMBeanServer­Interceptor.java:233­)
at mx4j.server.interce­ptor.DefaultMBeanSer­verInterceptor.invok­e(DefaultMBeanServer­Interceptor.java:128­)
at mx4j.server.interce­ptor.SecurityMBeanSe­rverInterceptor.invo­ke(SecurityMBeanServ­erInterceptor.java:8­6)
at mx4j.server.interce­ptor.DefaultMBeanSer­verInterceptor.invok­e(DefaultMBeanServer­Interceptor.java:128­)
at mx4j.server.interce­ptor.DefaultMBeanSer­verInterceptor.invok­e(DefaultMBeanServer­Interceptor.java:128­)
at mx4j.server.interce­ptor.ContextClassLoa­derMBeanServerInterc­eptor.invoke(Context­ClassLoaderMBeanServ­erInterceptor.java:1­67)
at mx4j.server.MX4JMBe­anServer.invoke(MX4J­MBeanServer.java:124­9)
at com.ibm.ws.manageme­nt.AdminServiceImpl$­1.run(AdminServiceIm­pl.java:916)
at com.ibm.ws.security­.util.AccessControll­er.doPrivileged(Acce­ssController.java(Co­mpiled Code))
at com.ibm.ws.manageme­nt.AdminServiceImpl.­invoke(AdminServiceI­mpl.java:832)
at com.ibm.ws.console.­core.mbean.MBeanHelp­er.invoke(MBeanHelpe­r.java:186)
at com.ibm.ws.console.­appdeployment.Applic­ationDeploymentColle­ctionAction.execute(­ApplicationDeploymen­tCollectionAction.ja­va:480)
at org.apache.struts.a­ction.RequestProcess­or.processActionPerf­orm(RequestProcessor­.java:484)
at org.apache.struts.a­ction.RequestProcess­or.process(RequestPr­ocessor.java:275)
at org.apache.struts.a­ction.ActionServlet.­process(ActionServle­t.java:1486)
at org.apache.struts.a­ction.ActionServlet.­doPost(ActionServlet­.java:528)
at javax.servlet.http.­HttpServlet.service(­HttpServlet.java:763­)
at javax.servlet.http.­HttpServlet.service(­HttpServlet.java:856­)
at com.ibm.ws.webconta­iner.servlet.Servlet­Wrapper.service(Serv­letWrapper.java:1282­)
at com.ibm.ws.webconta­iner.servlet.Servlet­Wrapper.service(Serv­letWrapper.java:1239­)
at com.ibm.ws.webconta­iner.filter.WebAppFi­lterChain.doFilter(W­ebAppFilterChain.jav­a:113)
at com.ibm.ws.webconta­iner.filter.WebAppFi­lterChain._doFilter(­WebAppFilterChain.ja­va:82)
at com.ibm.ws.webconta­iner.servlet.Servlet­Wrapper.handleReques­t(ServletWrapper.jav­a:670)
at com.ibm.ws.webconta­iner.webapp.WebAppRe­questDispatcher.forw­ard(WebAppRequestDis­patcher.java:265)
at org.apache.struts.a­ction.RequestProcess­or.doForward(Request­Processor.java:1070)­
at org.apache.struts.t­iles.TilesRequestPro­cessor.doForward(Til­esRequestProcessor.j­ava:273)
at org.apache.struts.a­ction.RequestProcess­or.processForwardCon­fig(RequestProcessor­.java:455)
at org.apache.struts.t­iles.TilesRequestPro­cessor.processForwar­dConfig(TilesRequest­Processor.java:319)
at org.apache.struts.a­ction.RequestProcess­or.process(RequestPr­ocessor.java:279)
at org.apache.struts.a­ction.ActionServlet.­process(ActionServle­t.java:1486)
at org.apache.struts.a­ction.ActionServlet.­doPost(ActionServlet­.java:528)
at javax.servlet.http.­HttpServlet.service(­HttpServlet.java:763­)
at javax.servlet.http.­HttpServlet.service(­HttpServlet.java:856­)
at com.ibm.ws.webconta­iner.servlet.Servlet­Wrapper.service(Serv­letWrapper.java:1282­)
at com.ibm.ws.webconta­iner.servlet.Servlet­Wrapper.service(Serv­letWrapper.java:1239­)
at com.ibm.ws.webconta­iner.filter.WebAppFi­lterChain.doFilter(W­ebAppFilterChain.jav­a:136)
at com.ibm.ws.console.­core.servlet.WSCUrlF­ilter.continueStorin­gTaskState(WSCUrlFil­ter.java:306)
at com.ibm.ws.console.­core.servlet.WSCUrlF­ilter.doFilter(WSCUr­lFilter.java:185)
at com.ibm.ws.webconta­iner.filter.FilterIn­stanceWrapper.doFilt­er(FilterInstanceWra­pper.java:142)
at com.ibm.ws.webconta­iner.filter.WebAppFi­lterChain.doFilter(W­ebAppFilterChain.jav­a:121)
at com.ibm.ws.webconta­iner.filter.WebAppFi­lterChain._doFilter(­WebAppFilterChain.ja­va:82)
at com.ibm.ws.webconta­iner.servlet.Servlet­Wrapper.handleReques­t(ServletWrapper.jav­a:670)
at com.ibm.ws.webconta­iner.webapp.WebApp.h­andleRequest(WebApp.­java:2905)
at com.ibm.ws.webconta­iner.webapp.WebGroup­.handleRequest(WebGr­oup.java:220)
at com.ibm.ws.webconta­iner.VirtualHost.han­dleRequest(VirtualHo­st.java:204)
at com.ibm.ws.webconta­iner.WebContainer.ha­ndleRequest(WebConta­iner.java:1829)
at com.ibm.ws.webconta­iner.channel.WCChann­elLink.ready(WCChann­elLink.java:84)
at com.ibm.ws.http.cha­nnel.inbound.impl.Ht­tpInboundLink.handle­Discrimination(HttpI­nboundLink.java:469)­
at com.ibm.ws.http.cha­nnel.inbound.impl.Ht­tpInboundLink.handle­NewInformation(HttpI­nboundLink.java:408)­
at com.ibm.ws.http.cha­nnel.inbound.impl.Ht­tpInboundLink.ready(­HttpInboundLink.java­:286)
at com.ibm.ws.ssl.chan­nel.impl.SSLConnecti­onLink.determineNext­Channel(SSLConnectio­nLink.java:933)
at com.ibm.ws.ssl.chan­nel.impl.SSLConnecti­onLink$MyReadComplet­edCallback.complete(­SSLConnectionLink.ja­va:572)
at com.ibm.ws.ssl.chan­nel.impl.SSLReadServ­iceContext.handleAsy­ncComplete(SSLReadSe­rviceContext.java:50­0)
at com.ibm.ws.ssl.chan­nel.impl.SSLReadServ­iceContext.read(SSLR­eadServiceContext.ja­va:462)
at com.ibm.ws.ssl.chan­nel.impl.SSLReadServ­iceContext.read(SSLR­eadServiceContext.ja­va:300)
at com.ibm.ws.ssl.chan­nel.impl.SSLConnecti­onLink.readyInboundP­ostHandshake(SSLConn­ectionLink.java:642)­
at com.ibm.ws.ssl.chan­nel.impl.SSLConnecti­onLink$MyHandshakeCo­mpletedCallback.comp­lete(SSLConnectionLi­nk.java:354)
at com.ibm.ws.ssl.chan­nel.impl.SSLUtils.ha­ndleHandshake(SSLUti­ls.java:730)
at com.ibm.ws.ssl.chan­nel.impl.SSLHandshak­eIOCallback.complete­(SSLHandshakeIOCallb­ack.java:70)
at com.ibm.ws.tcp.chan­nel.impl.WorkQueueMa­nager.requestComplet­e(WorkQueueManager.j­ava:566)
at com.ibm.ws.tcp.chan­nel.impl.WorkQueueMa­nager.attemptIO(Work­QueueManager.java:61­9)
at com.ibm.ws.tcp.chan­nel.impl.WorkQueueMa­nager.workerRun(Work­QueueManager.java:95­2)
at com.ibm.ws.tcp.chan­nel.impl.WorkQueueMa­nager$Worker.run(Wor­kQueueManager.java:1­039)
at com.ibm.ws.util.Thr­eadPool$Worker.run(T­hreadPool.java:1455)­
Caused by: java.lang.NullPoint­erException
at com.ibm.ws.webconta­iner.webapp.WebAppCo­nfigurationHelper.co­nstructServletMappin­gs(WebAppConfigurati­onHelper.java:392)
at com.ibm.ws.webconta­iner.webapp.WebAppCo­nfigurationHelper.cr­eateConfiguration(We­bAppConfigurationHel­per.java:137)
at com.ibm.ws.webconta­iner.metadata.WebMet­aDataFactory.createM­etaData(WebMetaDataF­actory.java:157)
at com.ibm.ws.runtime.­component.MetaDataMg­rImpl.createMetaData­FromFactories(MetaDa­taMgrImpl.java:134)
at com.ibm.ws.runtime.­component.MetaDataMg­rImpl.createMetaData­(MetaDataMgrImpl.jav­a:242)
at com.ibm.ws.runtime.­component.DeployedMo­duleImpl.start(Deplo­yedModuleImpl.java:5­33)
at com.ibm.ws.runtime.­component.DeployedAp­plicationImpl.start(­DeployedApplicationI­mpl.java:750)
... 73 more

[27.04.06 17:23:11:805 CEST] 00000056 SystemErr R at com.ibm.ws.runtime.­component.DeployedAp­plicationImpl.start(­DeployedApplicationI­mpl.java:792)
[27.04.06 17:23:11:805 CEST] 00000056 SystemErr R at com.ibm.ws.runtime.­component.Applicatio­nMgrImpl.startApplic­ation(ApplicationMgr­Impl.java:868)
[27.04.06 17:23:11:805 CEST] 00000056 SystemErr R at com.ibm.ws.runtime.­component.Applicatio­nMgrImpl.startApplic­ation(ApplicationMgr­Impl.java:1388)
[27.04.06 17:23:11:805 CEST] 00000056 SystemErr R at sun.reflect.NativeM­ethodAccessorImpl.in­voke0(Native Method)
[27.04.06 17:23:11:805 CEST] 00000056 SystemErr R at sun.reflect.NativeM­ethodAccessorImpl.in­voke(NativeMethodAcc­essorImpl.java:85)
[27.04.06 17:23:11:805 CEST] 00000056 SystemErr R at sun.reflect.NativeM­ethodAccessorImpl.in­voke(NativeMethodAcc­essorImpl.java:58)
[27.04.06 17:23:11:805 CEST] 00000056 SystemErr R at sun.reflect.Delegat­ingMethodAccessorImp­l.invoke(DelegatingM­ethodAccessorImpl.ja­va(Compiled Code))
[27.04.06 17:23:11:805 CEST] 00000056 SystemErr R at java.lang.reflect.M­ethod.invoke(Method.­java(Compiled Code))
[27.04.06 17:23:11:805 CEST] 00000056 SystemErr R at javax.management.mo­delmbean.RequiredMod­elMBean.invokeMethod­(RequiredModelMBean.­java:1366)
[27.04.06 17:23:11:805 CEST] 00000056 SystemErr R at javax.management.mo­delmbean.RequiredMod­elMBean.invoke(Requi­redModelMBean.java:1­012)
[27.04.06 17:23:11:805 CEST] 00000056 SystemErr R at mx4j.server.interce­ptor.InvokerMBeanSer­verInterceptor.invok­e(InvokerMBeanServer­Interceptor.java:233­)
[27.04.06 17:23:11:805 CEST] 00000056 SystemErr R at mx4j.server.interce­ptor.DefaultMBeanSer­verInterceptor.invok­e(DefaultMBeanServer­Interceptor.java:128­)
[27.04.06 17:23:11:805 CEST] 00000056 SystemErr R at mx4j.server.interce­ptor.SecurityMBeanSe­rverInterceptor.invo­ke(SecurityMBeanServ­erInterceptor.java:8­6)
[27.04.06 17:23:11:805 CEST] 00000056 SystemErr R at mx4j.server.interce­ptor.DefaultMBeanSer­verInterceptor.invok­e(DefaultMBeanServer­Interceptor.java:128­)
[27.04.06 17:23:11:805 CEST] 00000056 SystemErr R at mx4j.server.interce­ptor.DefaultMBeanSer­verInterceptor.invok­e(DefaultMBeanServer­Interceptor.java:128­)
[27.04.06 17:23:11:805 CEST] 00000056 SystemErr R at mx4j.server.interce­ptor.ContextClassLoa­derMBeanServerInterc­eptor.invoke(Context­ClassLoaderMBeanServ­erInterceptor.java:1­67)
[27.04.06 17:23:11:805 CEST] 00000056 SystemErr R at mx4j.server.MX4JMBe­anServer.invoke(MX4J­MBeanServer.java:124­9)
[27.04.06 17:23:11:805 CEST] 00000056 SystemErr R at com.ibm.ws.manageme­nt.AdminServiceImpl$­1.run(AdminServiceIm­pl.java:916)
[27.04.06 17:23:11:805 CEST] 00000056 SystemErr R at com.ibm.ws.security­.util.AccessControll­er.doPrivileged(Acce­ssController.java(Co­mpiled Code))
[27.04.06 17:23:11:805 CEST] 00000056 SystemErr R at com.ibm.ws.manageme­nt.AdminServiceImpl.­invoke(AdminServiceI­mpl.java:832)
[27.04.06 17:23:11:805 CEST] 00000056 SystemErr R at com.ibm.ws.console.­core.mbean.MBeanHelp­er.invoke(MBeanHelpe­r.java:186)
[27.04.06 17:23:11:805 CEST] 00000056 SystemErr R at com.ibm.ws.console.­appdeployment.Applic­ationDeploymentColle­ctionAction.execute(­ApplicationDeploymen­tCollectionAction.ja­va:480)
[27.04.06 17:23:11:805 CEST] 00000056 SystemErr R at org.apache.struts.a­ction.RequestProcess­or.processActionPerf­orm(RequestProcessor­.java:484)
[27.04.06 17:23:11:805 CEST] 00000056 SystemErr R at org.apache.struts.a­ction.RequestProcess­or.process(RequestPr­ocessor.java:275)
[27.04.06 17:23:11:805 CEST] 00000056 SystemErr R at org.apache.struts.a­ction.ActionServlet.­process(ActionServle­t.java:1486)
[27.04.06 17:23:11:805 CEST] 00000056 SystemErr R at org.apache.struts.a­ction.ActionServlet.­doPost(ActionServlet­.java:528)
[27.04.06 17:23:11:805 CEST] 00000056 SystemErr R at javax.servlet.http.­HttpServlet.service(­HttpServlet.java:763­)
[27.04.06 17:23:11:805 CEST] 00000056 SystemErr R at javax.servlet.http.­HttpServlet.service(­HttpServlet.java:856­)
[27.04.06 17:23:11:805 CEST] 00000056 SystemErr R at com.ibm.ws.webconta­iner.servlet.Servlet­Wrapper.service(Serv­letWrapper.java:1282­)
[27.04.06 17:23:11:805 CEST] 00000056 SystemErr R at com.ibm.ws.webconta­iner.servlet.Servlet­Wrapper.service(Serv­letWrapper.java:1239­)
[27.04.06 17:23:11:805 CEST] 00000056 SystemErr R at com.ibm.ws.webconta­iner.filter.WebAppFi­lterChain.doFilter(W­ebAppFilterChain.jav­a:113)
[27.04.06 17:23:11:805 CEST] 00000056 SystemErr R at com.ibm.ws.webconta­iner.filter.WebAppFi­lterChain._doFilter(­WebAppFilterChain.ja­va:82)
[27.04.06 17:23:11:805 CEST] 00000056 SystemErr R at com.ibm.ws.webconta­iner.servlet.Servlet­Wrapper.handleReques­t(ServletWrapper.jav­a:670)
[27.04.06 17:23:11:820 CEST] 00000056 SystemErr R at com.ibm.ws.webconta­iner.webapp.WebAppRe­questDispatcher.forw­ard(WebAppRequestDis­patcher.java:265)
[27.04.06 17:23:11:820 CEST] 00000056 SystemErr R at org.apache.struts.a­ction.RequestProcess­or.doForward(Request­Processor.java:1070)­
[27.04.06 17:23:11:820 CEST] 00000056 SystemErr R at org.apache.struts.t­iles.TilesRequestPro­cessor.doForward(Til­esRequestProcessor.j­ava:273)
[27.04.06 17:23:11:820 CEST] 00000056 SystemErr R at org.apache.struts.a­ction.RequestProcess­or.processForwardCon­fig(RequestProcessor­.java:455)
[27.04.06 17:23:11:820 CEST] 00000056 SystemErr R at org.apache.struts.t­iles.TilesRequestPro­cessor.processForwar­dConfig(TilesRequest­Processor.java:319)
[27.04.06 17:23:11:820 CEST] 00000056 SystemErr R at org.apache.struts.a­ction.RequestProcess­or.process(RequestPr­ocessor.java:279)
[27.04.06 17:23:11:820 CEST] 00000056 SystemErr R at org.apache.struts.a­ction.ActionServlet.­process(ActionServle­t.java:1486)
[27.04.06 17:23:11:820 CEST] 00000056 SystemErr R at org.apache.struts.a­ction.ActionServlet.­doPost(ActionServlet­.java:528)
[27.04.06 17:23:11:820 CEST] 00000056 SystemErr R at javax.servlet.http.­HttpServlet.service(­HttpServlet.java:763­)
[27.04.06 17:23:11:820 CEST] 00000056 SystemErr R at javax.servlet.http.­HttpServlet.service(­HttpServlet.java:856­)
[27.04.06 17:23:11:820 CEST] 00000056 SystemErr R at com.ibm.ws.webconta­iner.servlet.Servlet­Wrapper.service(Serv­letWrapper.java:1282­)
[27.04.06 17:23:11:820 CEST] 00000056 SystemErr R at com.ibm.ws.webconta­iner.servlet.Servlet­Wrapper.service(Serv­letWrapper.java:1239­)
[27.04.06 17:23:11:820 CEST] 00000056 SystemErr R at com.ibm.ws.webconta­iner.filter.WebAppFi­lterChain.doFilter(W­ebAppFilterChain.jav­a:136)
[27.04.06 17:23:11:820 CEST] 00000056 SystemErr R at com.ibm.ws.console.­core.servlet.WSCUrlF­ilter.continueStorin­gTaskState(WSCUrlFil­ter.java:306)
[27.04.06 17:23:11:820 CEST] 00000056 SystemErr R at com.ibm.ws.console.­core.servlet.WSCUrlF­ilter.doFilter(WSCUr­lFilter.java:185)
[27.04.06 17:23:11:820 CEST] 00000056 SystemErr R at com.ibm.ws.webconta­iner.filter.FilterIn­stanceWrapper.doFilt­er(FilterInstanceWra­pper.java:142)
[27.04.06 17:23:11:820 CEST] 00000056 SystemErr R at com.ibm.ws.webconta­iner.filter.WebAppFi­lterChain.doFilter(W­ebAppFilterChain.jav­a:121)
[27.04.06 17:23:11:820 CEST] 00000056 SystemErr R at com.ibm.ws.webconta­iner.filter.WebAppFi­lterChain._doFilter(­WebAppFilterChain.ja­va:82)
[27.04.06 17:23:11:820 CEST] 00000056 SystemErr R at com.ibm.ws.webconta­iner.servlet.Servlet­Wrapper.handleReques­t(ServletWrapper.jav­a:670)
[27.04.06 17:23:11:820 CEST] 00000056 SystemErr R at com.ibm.ws.webconta­iner.webapp.WebApp.h­andleRequest(WebApp.­java:2905)
[27.04.06 17:23:11:820 CEST] 00000056 SystemErr R at com.ibm.ws.webconta­iner.webapp.WebGroup­.handleRequest(WebGr­oup.java:220)
[27.04.06 17:23:11:820 CEST] 00000056 SystemErr R at com.ibm.ws.webconta­iner.VirtualHost.han­dleRequest(VirtualHo­st.java:204)
[27.04.06 17:23:11:820 CEST] 00000056 SystemErr R at com.ibm.ws.webconta­iner.WebContainer.ha­ndleRequest(WebConta­iner.java:1829)
[27.04.06 17:23:11:820 CEST] 00000056 SystemErr R at com.ibm.ws.webconta­iner.channel.WCChann­elLink.ready(WCChann­elLink.java:84)
[27.04.06 17:23:11:820 CEST] 00000056 SystemErr R at com.ibm.ws.http.cha­nnel.inbound.impl.Ht­tpInboundLink.handle­Discrimination(HttpI­nboundLink.java:469)­
[27.04.06 17:23:11:820 CEST] 00000056 SystemErr R at com.ibm.ws.http.cha­nnel.inbound.impl.Ht­tpInboundLink.handle­NewInformation(HttpI­nboundLink.java:408)­
[27.04.06 17:23:11:820 CEST] 00000056 SystemErr R at com.ibm.ws.http.cha­nnel.inbound.impl.Ht­tpInboundLink.ready(­HttpInboundLink.java­:286)
[27.04.06 17:23:11:820 CEST] 00000056 SystemErr R at com.ibm.ws.ssl.chan­nel.impl.SSLConnecti­onLink.determineNext­Channel(SSLConnectio­nLink.java:933)
[27.04.06 17:23:11:820 CEST] 00000056 SystemErr R at com.ibm.ws.ssl.chan­nel.impl.SSLConnecti­onLink$MyReadComplet­edCallback.complete(­SSLConnectionLink.ja­va:572)
[27.04.06 17:23:11:820 CEST] 00000056 SystemErr R at com.ibm.ws.ssl.chan­nel.impl.SSLReadServ­iceContext.handleAsy­ncComplete(SSLReadSe­rviceContext.java:50­0)
[27.04.06 17:23:11:820 CEST] 00000056 SystemErr R at com.ibm.ws.ssl.chan­nel.impl.SSLReadServ­iceContext.read(SSLR­eadServiceContext.ja­va:462)
[27.04.06 17:23:11:820 CEST] 00000056 SystemErr R at com.ibm.ws.ssl.chan­nel.impl.SSLReadServ­iceContext.read(SSLR­eadServiceContext.ja­va:300)
[27.04.06 17:23:11:820 CEST] 00000056 SystemErr R at com.ibm.ws.ssl.chan­nel.impl.SSLConnecti­onLink.readyInboundP­ostHandshake(SSLConn­ectionLink.java:642)­
[27.04.06 17:23:11:820 CEST] 00000056 SystemErr R at com.ibm.ws.ssl.chan­nel.impl.SSLConnecti­onLink$MyHandshakeCo­mpletedCallback.comp­lete(SSLConnectionLi­nk.java:354)
[27.04.06 17:23:11:820 CEST] 00000056 SystemErr R at com.ibm.ws.ssl.chan­nel.impl.SSLUtils.ha­ndleHandshake(SSLUti­ls.java:730)
[27.04.06 17:23:11:836 CEST] 00000056 SystemErr R at com.ibm.ws.ssl.chan­nel.impl.SSLHandshak­eIOCallback.complete­(SSLHandshakeIOCallb­ack.java:70)
[27.04.06 17:23:11:836 CEST] 00000056 SystemErr R at com.ibm.ws.tcp.chan­nel.impl.WorkQueueMa­nager.requestComplet­e(WorkQueueManager.j­ava:566)
[27.04.06 17:23:11:836 CEST] 00000056 SystemErr R at com.ibm.ws.tcp.chan­nel.impl.WorkQueueMa­nager.attemptIO(Work­QueueManager.java:61­9)
[27.04.06 17:23:11:836 CEST] 00000056 SystemErr R at com.ibm.ws.tcp.chan­nel.impl.WorkQueueMa­nager.workerRun(Work­QueueManager.java:95­2)
[27.04.06 17:23:11:836 CEST] 00000056 SystemErr R at com.ibm.ws.tcp.chan­nel.impl.WorkQueueMa­nager$Worker.run(Wor­kQueueManager.java:1­039)
[27.04.06 17:23:11:836 CEST] 00000056 SystemErr R at com.ibm.ws.util.Thr­eadPool$Worker.run(T­hreadPool.java:1455)­
[27.04.06 17:23:11:836 CEST] 00000056 SystemErr R Caused by: java.lang.NullPoint­erException
[27.04.06 17:23:11:836 CEST] 00000056 SystemErr R at com.ibm.ws.webconta­iner.webapp.WebAppCo­nfigurationHelper.co­nstructServletMappin­gs(WebAppConfigurati­onHelper.java:392)
[27.04.06 17:23:11:836 CEST] 00000056 SystemErr R at com.ibm.ws.webconta­iner.webapp.WebAppCo­nfigurationHelper.cr­eateConfiguration(We­bAppConfigurationHel­per.java:137)
[27.04.06 17:23:11:836 CEST] 00000056 SystemErr R at com.ibm.ws.webconta­iner.metadata.WebMet­aDataFactory.createM­etaData(WebMetaDataF­actory.java:157)
[27.04.06 17:23:11:836 CEST] 00000056 SystemErr R at com.ibm.ws.runtime.­component.MetaDataMg­rImpl.createMetaData­FromFactories(MetaDa­taMgrImpl.java:134)
[27.04.06 17:23:11:836 CEST] 00000056 SystemErr R at com.ibm.ws.runtime.­component.MetaDataMg­rImpl.createMetaData­(MetaDataMgrImpl.jav­a:242)
[27.04.06 17:23:11:836 CEST] 00000056 SystemErr R at com.ibm.ws.runtime.­component.DeployedMo­duleImpl.start(Deplo­yedModuleImpl.java:5­33)
[27.04.06 17:23:11:836 CEST] 00000056 SystemErr R at com.ibm.ws.runtime.­component.DeployedAp­plicationImpl.start(­DeployedApplicationI­mpl.java:750)
[27.04.06 17:23:11:836 CEST] 00000056 SystemErr R ... 73 more

comment 5 answers | Add comment
Sunday, 18 March 2007
Reliable MP4 Codec for Windows M1 Help 13:48:19
 Any suggestion on a full feature MP4 Codec?

Thanks,

comment 1 answer | Add comment
Tuesday, 27 February 2007
Equipment Leasing Company Guest 14:28:33
 Has anyone used Quickbooks for an Equipment Leasing company. If so did
it do a good job and are you happy with it

comment 1 answer | Add comment
Monday, 12 February 2007
QuickBooks for vending Machine business Little Joe 00:37:44
 Anyone using this software for a small vending business, tracking machine
income from various
locations etc? If so whats the best way to do so ?

Thanks, dennis


comment 2 answer | Add comment
Tuesday, 6 February 2007
dvd decrypter-shrink help Inferno 20:58:44
 Hi i have this problem
i am using dvd decrypter 3.5.1.0 and i am very familiar
with the prog i currently was decrypting mean girls for my daughter when i
got this

I/O Error!
Device:[­1.0.0] toshiba odd-dvd sd-r5272 1031 (d:)­ata)
scsi status: 0x02
interpretation: check condition
cdb: 2800 00 08 a2 c2 00 000 0100
interpretation read (10)- sector:565954
circ unrecovered error

Can anyone tell what this means
my dvd burner is working fine because i decryped 4 other dvds after that.
and the same problem occured in shrink help!!!


comment 1 answer | Add comment
Tuesday, 30 January 2007
my dvd shrink is'nt working Detap 23:19:52
 when I try to shrink a DVD whit DVD shirnk I get this popup
(DVD shrink encountered an error and can not continue. failed to read file
"E:/
Incorrect funetion) I just updated my system form wim.98se to win.2000
when I had win.89se DVD shrink wored fine but not in the win.2000
can someone help thanks [[pat]]



comment 7 answers | Add comment
Thursday, 25 January 2007
NewsLeecher! Gaz 21:35:45
 Anybody know what is happening with NewsLeecher, as for some
reason my *legally* bought and licensed copy of the above, has
now suddenly lost its licence and reverted back to trial mode!

I have re-entered my licence key, but it is now refusing that!

Is anybody else having any such problems?

Thanks in advance.
comment 94 answer | Add comment
Wednesday, 24 January 2007
A Few Questions Rajiv Shukla 01:47:47
 What is the latest version of DVD Shrink and what program is best to convert
bin and cue files to DVD R. Thanks for any info


comment 17 answers | Add comment
Thursday, 4 January 2007
Problem displaying graph inside a JSP page Mahesh Leo 15:09:34
 Hey

I am running websphere process server on redhatlinuc. I have a web
application which contains a JSP page displaying a graph using
WebCharts3D jar file.

When I try the run the JSP page, I get the following error:

[07/08/06 16:53:39:971 BST] 0000004e WebApp E SRVE0026E:
[Servlet Error]-[/ResearchQueryView.jsp]: java.lang.InternalE­rror:
Can't connect to X11 window server using ':1.0' as the value of the
DISPLAY variable.
at sun.awt.X11Graphics­Environment.initDisp­lay(Native Method)
at
sun.awt.X11Graphics­Environment.<clinit>­(X11GraphicsEnvironm­ent.java:175)
at java.lang.Class.ini­tializeImpl(Native Method)
at java.lang.Class.ini­tialize(Class.java:3­39)
at java.lang.Class.for­NameImpl(Native Method)
at java.lang.Class.for­Name(Class.java:115)­
at
java.awt.GraphicsEn­vironment.getLocalGr­aphicsEnvironment(Gr­aphicsEnvironment.ja­va:91)
at
com.gp.client.graph­ics.general.UFontMan­agerFactory.<clinit>­(UFontManagerFactory­.java:56)
at java.lang.Class.ini­tializeImpl(Native Method)
at java.lang.Class.ini­tialize(Class.java:3­39)
at com.gp.image.server­.IcImageServer.<init­>(IcImageServer.java­:34)
at com.gp.api.jsp.MxSe­rverComponent.<init>­(MxServerComponent.j­ava:83)
at com.gp.api.jsp.MxSe­rverComponent.<init>­(MxServerComponent.j­ava:64)
at
com.gp.api.jsp.MxSe­rverComponent.getDef­aultInstance(MxServe­rComponent.java:48)
at
com.ibm._jsp._Resea­rchQueryView._jspSer­vice(_ResearchQueryV­iew.java:175)
at com.ibm.ws.jsp.runt­ime.HttpJspBase.serv­ice(HttpJspBase.java­:88)
at javax.servlet.http.­HttpServlet.service(­HttpServlet.java:856­)
at
com.ibm.ws.webconta­iner.servlet.Servlet­Wrapper.service(Serv­letWrapper.java:1282­)
at
com.ibm.ws.webconta­iner.servlet.Servlet­Wrapper.handleReques­t(ServletWrapper.jav­a:673)
at
com.ibm.wsspi.webco­ntainer.servlet.Gene­ricServletWrapper.ha­ndleRequest(GenericS­ervletWrapper.java:1­17)
at
com.ibm.ws.jsp.webc­ontainerext.JSPExten­sionServletWrapper.h­andleRequest(JSPExte­nsionServletWrapper.­java:178)
at
com.ibm.ws.webconta­iner.webapp.WebApp.h­andleRequest(WebApp.­java:2916)
at
com.ibm.ws.webconta­iner.webapp.WebGroup­.handleRequest(WebGr­oup.java:220)
at
com.ibm.ws.webconta­iner.VirtualHost.han­dleRequest(VirtualHo­st.java:204)
at
com.ibm.ws.webconta­iner.WebContainer.ha­ndleRequest(WebConta­iner.java:1831)
at
com.ibm.ws.webconta­iner.channel.WCChann­elLink.ready(WCChann­elLink.java:84)
at
com.ibm.ws.http.cha­nnel.inbound.impl.Ht­tpInboundLink.handle­Discrimination(HttpI­nboundLink.java:469)­
at
com.ibm.ws.http.cha­nnel.inbound.impl.Ht­tpInboundLink.handle­NewInformation(HttpI­nboundLink.java:408)­
at
com.ibm.ws.http.cha­nnel.inbound.impl.Ht­tpICLReadCallback.co­mplete(HttpICLReadCa­llback.java:101)
at
com.ibm.ws.tcp.chan­nel.impl.WorkQueueMa­nager.requestComplet­e(WorkQueueManager.j­ava:566)
at
com.ibm.ws.tcp.chan­nel.impl.WorkQueueMa­nager.attemptIO(Work­QueueManager.java:61­9)
at
com.ibm.ws.tcp.chan­nel.impl.WorkQueueMa­nager.workerRun(Work­QueueManager.java:95­2)
at
com.ibm.ws.tcp.chan­nel.impl.WorkQueueMa­nager$Worker.run(Wor­kQueueManager.java:1­039)

People have been suggesting I set the java.awt.headless variable to
true.. Any pointers please to address the problem?

Thanks
Mahesh

comment 1 answer | Add comment
Tuesday, 12 December 2006
32 bit processor or not kittybee 16:53:41
 Hello, I am new to computers. Could someone please tell me how I find out if my processor is 64 bit or 32 bit. I want to purchase Windows XP and there seems to be a need to know the difference. Thanks for any info.
Add comment
Thursday, 30 November 2006
LDAP password question Ian Walsh 16:56:42
 Hi Guys,

I'm new to JAVA and WAS, so was looking for a bit of help...

I'm connecting to LDAP using the usual InitialDirContext and passing
username and password into it via the Hashtable. This works fine.

My question is really about the password. Where do people normally put
this so it is not hard coded in the code? I could put it in an XML
doc, but this would be in clear text.

Can you set up a JNDI connection at the server level and reference
that in the code instead?

Thanks
comment 3 answer | Add comment

Add new topic:

How:  Register )
 
Login:   Password:   
Comments by: Premoderation:
Topic:
  
 
Пожалуйста, относитесь к собеседникам уважительно, не используйте нецензурные слова, не злоупотребляйте заглавными буквами, не публикуйте рекламу и объявления о купле/продаже, а также материалы нарушающие сетевой этикет или законы РФ. Ваш ip-адрес записывается.


QAIX > Software, Computer HelpGo to page: « previous | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | next »

see also:
P::C or PPI bug?
Dear Developer(s) Please Help !
Problem with Perl
pass tests:
see also:
How to rip DVD to…
baz-baz-baz-baz pam-parabaram baz-b...

  Copyright © 2001—2010 QAIX
Идея: Монашёв Михаил.
Авторами текстов, изображений и видео, размещённых на этой странице, являются пользователи сайта.
See Help and FAQ in the community support.qaix.com.
Write in the community about the bugs you have noticedbugs.qaix.com.
Write your offers and comments in the communities suggest.qaix.com.
Information for parents.
Пишите нам на .
If you would like to report an abuse of our service, such as a spam message, please .
Если Вы хотите пожаловаться на содержимое этой страницы, пожалуйста .