Stian Mikelsen | 26 Jul 09:20

Myproxy get failed, Mutual authentication failed

Hi,

 

I have an issue getting myproxy credentials created with Vine Toolkit.

 

I have an installation with Globus Toolkit 4.2.1, Gridsphere 3.2 and Vine toolkit 1.3.1. I have verified that myproxy works and I am able to start a server and issue new credentials. I did have to set MYPROXY_SERVER_DN in order to make this work.

 

However when I try to create a new credential in the vine portal I get more or less the same error I got before setting the MYPROXY_SERVER_DN variable, even though the tomcat server is started from a user with this variable in its environment. The error is:

 

MyProxy get failed. [Caused by: Mutual authentication failed
Expected target subject name="/CN=host/
tr-lx346491.tr.statoil.no"

Target returned subject name="/O=Grid/OU=GlobusTest/OU=simpleCA-tr-lx346491/CN=globus"]

 

I have my MYPROXY_SERVER_DN=/O=Grid/OU=GlobusTest/OU=simpleCA-tr-lx346491/CN=globus

 

Is there anything else I have to do in order to send this environment variable or could it be something else wrong?

 

Best Regards,

Stian Mikelsen

Summer Intern, Statoil


-------------------------------------------------------------------
The information contained in this message may be CONFIDENTIAL and is
intended for the addressee only. Any unauthorised use, dissemination of the
information or copying of this message is prohibited. If you are not the
addressee, please notify the sender immediately by return e-mail and delete
this message.
Thank you
_______________________________________________
Gridsphere-users mailing list
Gridsphere-users <at> gridsphere.org
http://lists.gridsphere.org/mailman/listinfo/gridsphere-users
globus world | 14 Jan 05:56
Picon

Re: Gridsphere-users Digest, Vol 46, Issue 3

Hi Ramil


how to use that file form .
i tried fileform but i dont know how to get that values of form in GridSphereServlet.jva
can u give me sample lines of code


On Fri, Jan 14, 2011 at 1:30 AM, <gridsphere-users-request <at> gridsphere.org> wrote:
Send Gridsphere-users mailing list submissions to
       gridsphere-users <at> gridsphere.org

To subscribe or unsubscribe via the World Wide Web, visit
       http://lists.gridsphere.org/mailman/listinfo/gridsphere-users
or, via email, send a message with subject or body 'help' to
       gridsphere-users-request <at> gridsphere.org

You can reach the person managing the list at
       gridsphere-users-owner <at> gridsphere.org

When replying, please edit your Subject line so it is more specific
than "Re: Contents of Gridsphere-users digest..."


Today's Topics:

  1. problem in upload (globus world)
  2. Re: [Gridsphere-dev] problem in upload (Ramil Manansala)


----------------------------------------------------------------------

Message: 1
Date: Thu, 13 Jan 2011 15:54:16 +0530
From: globus world <sagarglobusworld <at> gmail.com>
Subject: [Gridsphere-users] problem in upload
To: gridsphere-dev <at> gridsphere.org, gridsphere-users <at> gridsphere.org
Cc: sagarece2005 <at> gmail.com, arun <at> cdacb.ernet.in
Message-ID:
       <AANLkTi=RxQU=BzrwyrNMacHUR8vsDWj9iwRkhfGHU5-E <at> mail.gmail.com>
Content-Type: text/plain; charset="iso-8859-1"

Hi all,

                i am modifying gridsphere login page .while user login i m
checking user credentials are available or not in myproxy while login
only.If not available i m asking user to upload p12 file . when i m trying
to upload p12 file i m getting the following error

Exception========org.apache.commons.fileupload.FileUploadBase$InvalidContentTypeException:
the request doesn't contain a multipart/form-data or multipart/mixed stream,
content type header is application/x-www-form-urlencoded


my form is like this

<form  method="post"  name="f2" enctype="multipart/form-data">
<ui:table>
<ui:tablerow>
           <ui:tablecell width="100" >
               <div id="p12file" >
               <ui:text  key="P12_File" />
               </div>
           </ui:tablecell>
           <ui:tablecell width="60">
                       <!--<ui:fileinput name="P12" beanId="P12" size="20"
maxlength="20"/>-->
                       <input  type="file" name="P12"  value="Upload"
id="P12" size="20">
           </ui:tablecell>
           <ui:tablecell/>
</ui:tablerow>
</ui:table>
 <ui:table>
       <ui:tablerow>
           <ui:tablecell width="100%" align="center">
               <ui:actionsubmit action="<%= SportletProperties.P12UPLOAD%>"
key="P12_ACTION" >
               </ui:actionsubmit>
           </ui:tablecell>
           <ui:tablecell/>
       </ui:tablerow>
   </ui:table>
</form>

boolean isMultipart = PortletFileUpload.isMultipartContent(req); is always
returning false  either the enctype is "multipart/form data " or not
mentioned

please help me in this

Thanks in advance
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.gridsphere.org/pipermail/gridsphere-users/attachments/20110113/2a678cc5/attachment-0001.html

------------------------------

Message: 2
Date: Thu, 13 Jan 2011 11:08:17 -0800
From: Ramil Manansala <ramil <at> ncmir.ucsd.edu>
Subject: [Gridsphere-users] Re: [Gridsphere-dev] problem in upload
To: GridSphere Developers <gridsphere-dev <at> gridsphere.org>
Cc: gridsphere-users <at> gridsphere.org, sagarece2005 <at> gmail.com,
       arun <at> cdacb.ernet.in
Message-ID: <53158E8C-EDA4-4E85-9E6D-59DB633F28FC <at> ncmir.ucsd.edu>
Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes

Have you tried using fileform instead of form?
Cheers,
-RAmil




On Jan 13, 2011, at 2:24 AM, globus world wrote:

Hi all,

                 i am modifying gridsphere login page .while user
login i m checking user credentials are available or not in myproxy
while login only.If not available i m asking user to upload p12 file .
when i m trying to upload p12 file i m getting the following error

Exception========org.apache.commons.fileupload.FileUploadBase
$InvalidContentTypeException: the request doesn't contain a multipart/
form-data or multipart/mixed stream, content type header is
application/x-www-form-urlencoded


my form is like this

<form  method="post"  name="f2" enctype="multipart/form-data">
<ui:table>
<ui:tablerow>
            <ui:tablecell width="100" >
                <div id="p12file" >
                <ui:text  key="P12_File" />
                </div>
            </ui:tablecell>
            <ui:tablecell width="60">
                        <!--<ui:fileinput name="P12" beanId="P12"
size="20" maxlength="20"/>-->
                        <input  type="file" name="P12"
value="Upload" id="P12" size="20">
            </ui:tablecell>
            <ui:tablecell/>
</ui:tablerow>
</ui:table>
 <ui:table>
        <ui:tablerow>
            <ui:tablecell width="100%" align="center">
                <ui:actionsubmit action="<%=
SportletProperties.P12UPLOAD%>" key="P12_ACTION" >
                </ui:actionsubmit>
            </ui:tablecell>
            <ui:tablecell/>
        </ui:tablerow>
    </ui:table>
</form>

boolean isMultipart = PortletFileUpload.isMultipartContent(req); is
always returning false  either the enctype is "multipart/form data "
or not mentioned

please help me in this

Thanks in advance



_______________________________________________
Gridsphere-dev mailing list
Gridsphere-dev <at> gridsphere.org
http://lists.gridsphere.org/mailman/listinfo/gridsphere-dev



------------------------------

_______________________________________________
Gridsphere-users mailing list
Gridsphere-users <at> gridsphere.org
http://lists.gridsphere.org/mailman/listinfo/gridsphere-users


End of Gridsphere-users Digest, Vol 46, Issue 3
***********************************************

_______________________________________________
Gridsphere-users mailing list
Gridsphere-users <at> gridsphere.org
http://lists.gridsphere.org/mailman/listinfo/gridsphere-users
globus world | 13 Jan 11:24
Picon

problem in upload

Hi all,

                 i am modifying gridsphere login page .while user login i m checking user credentials are available or not in myproxy while login only.If not available i m asking user to upload p12 file . when i m trying to upload p12 file i m getting the following error

Exception========org.apache.commons.fileupload.FileUploadBase$InvalidContentTypeException: the request doesn't contain a multipart/form-data or multipart/mixed stream, content type header is application/x-www-form-urlencoded


my form is like this

<form  method="post"  name="f2" enctype="multipart/form-data">
<ui:table>
<ui:tablerow>
            <ui:tablecell width="100" >
                <div id="p12file" >
                <ui:text  key="P12_File" />
                </div>
            </ui:tablecell>
            <ui:tablecell width="60">
                        <!--<ui:fileinput name="P12" beanId="P12" size="20" maxlength="20"/>-->
                        <input  type="file" name="P12"  value="Upload" id="P12" size="20">
            </ui:tablecell>
            <ui:tablecell/>
</ui:tablerow>
</ui:table>
 <ui:table>
        <ui:tablerow>
            <ui:tablecell width="100%" align="center">
                <ui:actionsubmit action="<%= SportletProperties.P12UPLOAD%>" key="P12_ACTION" >
                </ui:actionsubmit>
            </ui:tablecell>
            <ui:tablecell/>
        </ui:tablerow>
    </ui:table>
</form>

boolean isMultipart = PortletFileUpload.isMultipartContent(req); is always returning false  either the enctype is "multipart/form data " or not mentioned

please help me in this

Thanks in advance



_______________________________________________
Gridsphere-users mailing list
Gridsphere-users <at> gridsphere.org
http://lists.gridsphere.org/mailman/listinfo/gridsphere-users
globus world | 20 Dec 11:51
Picon

is it possible to redirect welcome page of poratl after login to any portlet which i deployed

Hi all,

               i deployed gridsphere portal and some portlets . Now after i enter user name and password  need to go directly to my developed portlet page instead of going to welcome page of portal.

please help me in this  problem


Thanks and Regards
sagar

_______________________________________________
Gridsphere-users mailing list
Gridsphere-users <at> gridsphere.org
http://lists.gridsphere.org/mailman/listinfo/gridsphere-users
Alexander Koholka | 11 Nov 12:28
Picon

GridSphere 3.2 Release

Hello,

the GridSphere 3.2 release is ready.
You can get GridSphere 3.2 and a GridSphere 3.2 bundle (GridSphere 3.2 
and Tomcat 6).
Please visit www.gridsphere.org.
GridSphere 3.2 offers support for Tomcat 6 and single-sign-on with X.509 
certificates and Shibboleth.
Please read the appropriate text files.

Cheers
Alexander Koholka

--

-- 

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Alexander Koholka

MPI for Gravitational Physics (Albert Einstein Institute)

Tel: 0049-(0)331-567 7253
E-Mail: koholka <at> aei.mpg.de
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
globus world | 16 Jun 09:32
Picon

problem in pop up

Hi all,

           i am developing JSR 168 portlets with gridsphere-2.2.10 framework. in my portlet i need to open a pop up . when i am trying to open window.open("test.jsp") its opening a pop up window and giving the error message "page not found" .If i am opening through(ipadreess:port/FileManager/jsp/test.jsp") It's opening the jsp page properly . but the session is different.I want to maintain same session between the pop up and the portlet page .

please help me .

Thanks in advance

sagar

_______________________________________________
Gridsphere-users mailing list
Gridsphere-users <at> gridsphere.org
http://lists.gridsphere.org/mailman/listinfo/gridsphere-users
Naotaka YAMAMOTO | 6 Apr 11:02
Picon

Authentication modules for MyProxy/VOMS

Dear GridSphere folks,

We are pleased to announce a new software, authenticatoin modules on GridSphere for MyProxy.

We have implemented and released GridSphere authentication modules 
which allows clients to authenticate against a MyProxy and VOMS servers.
After a successful authentication, a delegation is retrieved and stored on the web server. 
JSR168 portlets code can make use of this delegation to perform operations on the client's behalf.

The client's MyProxy username and passphrase are passed in using GridSphere's
authentication module. Authentication module (gsgamat) sends the username and passphrase
to the server for verification ― so it is essential that connections to the web server
be secured (e.g. with SSL/TLS or IPsec). In addition, if you would like to 
user account control who can use the portal, it allows you to use VO management by VOMS server.

Usage Scenario:
It allows developers to write a JSR168 portlets using CoG-jGlobus 
that will access any Grid-enabled services, such as GRAM, GridFTP, DAI, etc.

If you are interested in this software, please visit
Tsukuba-GAMA site which includes interesting other functionalities
for MyProxy and VOMS.
http://devel.geogrid.org/TsukubaGAMA/GridSphereAuthModule
It supports both of GridSphere version 2 and 3.

Thank you,

---
Naotaka YAMAMOTO <at> AIST
Gayathri Namala | 10 Feb 23:12

Problem with filecopy in gridportlet application

Hello,

I am working on a portlet application that involves copying file from the host machine to a destination machine. I am using exactly the same function given in the examples for performing a copy operation. But I get a stack Overflow error when I try to implement it.  The stack trace from catalina.out is given below. I observed that I get the error message due to the sourceHost parameter that is sent as parameter value when callling the copy function. When I give the right parameter, the program enters an infinite loop.

This is the part of code in LocalHostBrowser.java that is leading to the provlem problem. The value of SrcLocalHost is always false, thought the value of srcResource.getHostName() is eric2.loni.org and the value returned in FileLocation.isLocalHost is eric2.

 public FileCopy copy(FileSet src, FileLocation dst)
            throws FileTaskException {
        // Check source resource
        FileResource srcResource = getFileResource(src);

        if (srcResource == null) {
            throw new FileTaskException("No file resource found for given source file set");
        }
        // If source resource is remote, use a remote browser to do the copy
        boolean isSrcLocalHost = FileLocation.isLocalHost(srcResource.getHostName());


        if (!isSrcLocalHost) {
            try {
                FileBrowser fileBrowser = srcResource.createFileBrowser(user);
                return fileBrowser.copy(src, dst);
            } catch (FileException e) {
                throw new FileTaskException("Unable to perform remote transfer " + e.getMessage());
            }
        }
     



If I give a different parameter, I get an error saying resource not found. Please advise.


Stack Trace:

java.lang.reflect.InvocationTargetException
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
.
.
.

        at java.lang.Thread.run(Thread.java:619)
Caused by: java.lang.StackOverflowError
 at java.lang.String.toUpperCase(String.java:2659)
        at org.hsqldb.Tokenizer.getToken(Unknown Source)
        at org.hsqldb.Tokenizer.getToken(Unknown Source)
        at org.hsqldb.Tokenizer.getString(Unknown Source)
        at org.hsqldb.Parser.read(Unknown Source)
        at org.hsqldb.Parser.readTerm(Unknown Source)
        at org.hsqldb.Parser.readFactor(Unknown Source)
        at org.hsqldb.Parser.readSum(Unknown Source)
        at org.hsqldb.Parser.readConcat(Unknown Source)
        at org.hsqldb.Parser.readCondition(Unknown Source)
        at org.hsqldb.Parser.readAnd(Unknown Source)
        at org.hsqldb.Parser.readOr(Unknown Source)
        at org.hsqldb.Parser.parseExpression(Unknown Source)
        at org.hsqldb.Parser.parseSelect(Unknown Source)
        at org.hsqldb.Parser.processSelect(Unknown Source)
        at org.hsqldb.Database.execute(Unknown Source)
        at org.hsqldb.jdbcConnection.executeStandalone(Unknown Source)
        at org.hsqldb.jdbcConnection.execute(Unknown Source)
        at org.hsqldb.jdbcStatement.fetchResult(Unknown Source)
        at org.hsqldb.jdbcStatement.executeQuery(Unknown Source)
        at org.hsqldb.jdbcPreparedStatement.executeQuery(Unknown Source)
        at net.sf.hibernate.impl.BatcherImpl.getResultSet(BatcherImpl.java:89)
        at net.sf.hibernate.loader.Loader.getResultSet(Loader.java:880)
        at net.sf.hibernate.loader.Loader.doQuery(Loader.java:273)
        at net.sf.hibernate.loader.Loader.doQueryAndInitializeNonLazyCollections(Loader.java:138)
        at net.sf.hibernate.loader.Loader.doList(Loader.java:1063)
        at net.sf.hibernate.loader.Loader.list(Loader.java:1054)
        at net.sf.hibernate.hql.QueryTranslator.list(QueryTranslator.java:854)
        at net.sf.hibernate.impl.SessionImpl.find(SessionImpl.java:1554)
        at net.sf.hibernate.impl.QueryImpl.list(QueryImpl.java:49)
        at org.gridlab.gridsphere.services.util.database.hibernate.SessionImpl.restore(SessionImpl.java:240)
        at org.gridlab.gridsphere.services.util.database.GridPortletsDatabase.restore(GridPortletsDatabase.java:59)
        at org.gridlab.gridsphere.services.resource.impl.ResourceRegistryServiceImpl.getResourceByDn(ResourceRegistryServiceImpl.java:237)
        at org.gridlab.gridsphere.services.file.tasks.impl.BaseFileBrowser.getFileResource(BaseFileBrowser.java:59)
        at org.gridlab.gridsphere.services.file.tasks.impl.BaseFileBrowser.createUrl(BaseFileBrowser.java:136)
        at org.gridlab.gridsphere.services.file.tasks.impl.BaseFileBrowser.createDirectoryLocation(BaseFileBrowser.java:156)
        at org.gridlab.gridsphere.services.file.tasks.impl.BaseFileBrowser.init(BaseFileBrowser.java:45)
        at org.gridlab.gridsphere.services.resources.system.LocalHostBrowser.init(LocalHostBrowser.java:51)
        at org.gridlab.gridsphere.services.resources.system.LocalHostResource.createFileBrowser(LocalHostResource.java:39)
        at org.gridlab.gridsphere.services.resources.system.LocalHostBrowser.copy(LocalHostBrowser.java:196)
        at org.gridlab.gridsphere.services.resources.system.LocalHostBrowser.copy(LocalHostBrowser.java:197)
 at org.gridlab.gridsphere.services.resources.system.LocalHostBrowser.copy(LocalHostBrowser.java:197)
        at org.gridlab.gridsphere.services.resources.system.LocalHostBrowser.copy(LocalHostBrowser.java:197)
        at org.gridlab.gridsphere.services.resources.system.LocalHostBrowser.copy(LocalHostBrowser.java:197)
        at org.gridlab.gridsphere.services.resources.system.LocalHostBrowser.copy(LocalHostBrowser.java:197)
        at org.gridlab.gridsphere.services.resources.system.LocalHostBrowser.copy(LocalHostBrowser.java:197)
        at org.gridlab.gridsphere.services.resources.system.LocalHostBrowser.copy(LocalHostBrowser.java:197)
        at org.gridlab.gridsphere.services.resources.system.LocalHostBrowser.copy(LocalHostBrowser.java:197)
        at org.gridlab.gridsphere.services.resources.system.LocalHostBrowser.copy(LocalHostBrowser.java:197)
        at org.gridlab.gridsphere.services.resources.system.LocalHostBrowser.copy(LocalHostBrowser.java:197)
        at org.gridlab.gridsphere.services.resources.system.LocalHostBrowser.copy(LocalHostBrowser.java:197)
        at org.gridlab.gridsphere.services.resources.system.LocalHostBrowser.copy(LocalHostBrowser.java:197)
        at org.gridlab.gridsphere.services.resources.system.LocalHostBrowser.copy(LocalHostBrowser.java:197)
        at org.gridlab.gridsphere.services.resources.system.LocalHostBrowser.copy(LocalHostBrowser.java:197)
        at org.gridlab.gridsphere.services.resources.system.LocalHostBrowser.copy(LocalHostBrowser.java:197)
        at org.gridlab.gridsphere.services.resources.system.LocalHostBrowser.copy(LocalHostBrowser.java:197)
        at org.gridlab.gridsphere.services.resources.system.LocalHostBrowser.copy(LocalHostBrowser.java:197)
        at org.gridlab.gridsphere.services.resources.system.LocalHostBrowser.copy(LocalHostBrowser.java:197)
        at org.gridlab.gridsphere.services.resources.system.LocalHostBrowser.copy(LocalHostBrowser.java:197)
        at org.gridlab.gridsphere.services.resources.system.LocalHostBrowser.copy(LocalHostBrowser.java:197)
        at org.gridlab.gridsphere.services.resources.system.LocalHostBrowser.copy(LocalHostBrowser.java:197)
        at org.gridlab.gridsphere.services.resources.system.LocalHostBrowser.copy(LocalHostBrowser.java:197)
        at org.gridlab.gridsphere.services.resources.system.LocalHostBrowser.copy(LocalHostBrowser.java:197)
        at org.gridlab.gridsphere.services.resources.system.LocalHostBrowser.copy(LocalHostBrowser.java:197)
        at org.gridlab.gridsphere.services.resources.system.LocalHostBrowser.copy(LocalHostBrowser.java:197)
        at org.gridlab.gridsphere.services.resources.system.LocalHostBrowser.copy(LocalHostBrowser.java:197)
        at org.gridlab.gridsphere.services.resources.system.LocalHostBrowser.copy(LocalHostBrowser.java:197)
        at org.gridlab.gridsphere.services.resources.system.LocalHostBrowser.copy(LocalHostBrowser.java:197)
        at org.gridlab.gridsphere.services.resources.system.LocalHostBrowser.copy(LocalHostBrowser.java:197)
        at org.gridlab.gridsphere.services.resources.system.LocalHostBrowser.copy(LocalHostBrowser.java:197)
        at org.gridlab.gridsphere.services.resources.system.LocalHostBrowser.copy(LocalHostBrowser.java:197)
        at org.gridlab.gridsphere.services.resources.system.LocalHostBrowser.copy(LocalHostBrowser.java:197)
        at org.gridlab.gridsphere.services.resources.system.LocalHostBrowser.copy(LocalHostBrowser.java:197)
        at org.gridlab.gridsphere.services.resources.system.LocalHostBrowser.copy(LocalHostBrowser.java:197)
        at org.gridlab.gridsphere.services.resources.system.LocalHostBrowser.copy(LocalHostBrowser.java:197)
        at org.gridlab.gridsphere.services.resources.system.LocalHostBrowser.copy(LocalHostBrowser.java:197)
...........



Thanks


Gayathri

_______________________________________________
Gridsphere-users mailing list
Gridsphere-users <at> gridsphere.org
http://lists.gridsphere.org/mailman/listinfo/gridsphere-users
Gayathri Namala | 23 Jan 00:02

java.sql.SQLException: Commit failed in gridportlets

Hello,

I am working with a project involving gridportlets. I tried creating a new project in gridportlets to make customized changes as it is mentioned in JobProfile guide. I wrote the required implementation and xml files and I tried to install the project I created, by running an ant install. But after I run the install, the gridportlets that I already deployed was also not available. I get the following error in catalina.out.

4137266:ERROR:(JDBCTransaction.java:commit:68)
< Commit failed >

java.sql.SQLException: File input/output error: /home/gayathri/apache-tomcat-5.5.27/webapps/gridportlets/WEB-INF/database/gridportlets.script in statement [COMMIT]
        at org.hsqldb.Trace.getError(Unknown Source)
        at org.hsqldb.jdbcResultSet.<init>(Unknown Source)
        at org.hsqldb.jdbcConnection.executeStandalone(Unknown Source)
        at org.hsqldb.jdbcConnection.execute(Unknown Source)
        at org.hsqldb.jdbcConnection.commit(Unknown Source)
        at net.sf.hibernate.transaction.JDBCTransaction.commit(JDBCTransaction.java:63)
        at org.gridlab.gridsphere.services.util.database.hibernate.TransactionImpl.commit(TransactionImpl.java:27)
        at org.gridlab.gridsphere.services.util.database.GridPortletsDatabase.restoreList(GridPortletsDatabase.java:72)
        at org.gridlab.gridsphere.services.resource.impl.ResourceRegistryServiceImpl.getNeededResources(ResourceRegistryServiceImpl.java:212)
        at org.gridlab.gridsphere.services.resource.impl.ResourceRegistryServiceImpl.getResources(ResourceRegistryServiceImpl.java:204)
        at org.gridlab.gridsphere.services.security.gss.CredentialAuthModule.checkAuthentication(CredentialAuthModule.java:78)
        at org.gridlab.gridsphere.servlets.GridSphereServlet.login(GridSphereServlet.java:687)
        at org.gridlab.gridsphere.servlets.GridSphereServlet.login(GridSphereServlet.java:504)
        at org.gridlab.gridsphere.servlets.GridSphereServlet.processRequest(GridSphereServlet.java:223)
        at org.gridlab.gridsphere.servlets.GridSphereServlet.doGet(GridSphereServlet.java:152)
        at org.gridlab.gridsphere.servlets.GridSphereServlet.doPost(GridSphereServlet.java:824)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:647)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
        at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:269)
        at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188)
        at org.gridlab.gridsphere.filters.GridSphereFilter.doFilter(GridSphereFilter.java:77)
        at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:215)
        at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188)
        at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
        at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:172)
        at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
        at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117)
        at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:108)
        at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:174)
        at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:875)
        at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:665)
        at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:528)
        at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:81)
        at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:689)
        at java.lang.Thread.run(Thread.java:619)

I am using gridsphere2.2.10 and apache-tomcat-5.5.27.

Can someone help me with this issue.

Thanks

Gayathri

_______________________________________________
Gridsphere-users mailing list
Gridsphere-users <at> gridsphere.org
http://lists.gridsphere.org/mailman/listinfo/gridsphere-users
Gayathri Namala | 11 Jan 19:16

Problem using Job Profile in gridportlets

Dear GridPortlet Users,

I have a question regarding the Job Profile in gridportlets. I am trying to integrate the Job Submission Portlet that I have written with the gridportlets Job Submission Portlet. For that I am following the Job Profile developer's guide (http://www.gridsphere.org/gridsphere/docs-GS-2.2.X/gridportlets/docbook/JobProfileGuide/JobProfileGuide.html).

I have all the methods for implementing the events triggered by jsps in a perticular class. To follow the steps in the JobProfile guide, I am making this class extend ActionCompnentPortlet class and implement ActionPage class. I am placing this class path in JobProfile.xml under the tag <job-spec-edit-page>  and also in ActionComponentTypes.xml.

But I am not able to view the portlets when I deploy. I get an error "Portlet not available in registry" for all the gridportlets.

I am able to display the porltets and the job Profiles, when I simply copy the already existing job profile and change only the description in JobProfiles.xml. But when I change the class I encounter this problem.

Please Advice. Thanks in Advance.

Gayathri

_______________________________________________
Gridsphere-users mailing list
Gridsphere-users <at> gridsphere.org
http://lists.gridsphere.org/mailman/listinfo/gridsphere-users
globus world | 20 Nov 08:43
Picon

Help needed in Regarding gridsphere

Hi all,

           i am using gridsphere2.2.10 . i installed successfully.I want to permit the users who have account in my linux machine.how can i validate that.please help me regarding this.

Thanks and Regards
sagar

_______________________________________________
Gridsphere-users mailing list
Gridsphere-users <at> gridsphere.org
http://lists.gridsphere.org/mailman/listinfo/gridsphere-users

Gmane