[Design of JBoss Portal] - Connect Apache with Tomcat/JBossPortal
by badock
Hello all,
I'm quite new to JBossPortal, and i don't know where to start to solve my problems, so please don't STFW/RTFM me ;)
I'm using JbossPortal (2.6.2), the bundled version, where all you need to have is a jdk, the portal deploys itsef without anything. I gathered it uses a Tomcat as a httpd.
I'd like to use Apache (2.2.3) to serve the Portal, meaning that when you connect on port 80 from a remote machine, you should be able to see what's happening on 127.0.0.1:8080.
I know i can do some reverse proxy port forwarding, but i'd like to use Apache for other purposes later, so i really need it to *connect* with JBossPortal.
So i'd like to know what i can do ? Can i connect Apache with the Tomcat that is deployed with JBossPortal ? If so, how can i do that ?
Or, should i start looking in another direction... ?
Thank you for your time.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4106266#4106266
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4106266
18 years, 4 months
[Design of POJO Server] - Annotation to metadata status
by scott.stark@jboss.org
I'm down to the just the javax.interceptor.AroundInvoke{METHOD},ExcludeClassInterceptors{METHOD},ExcludeDefaultInterceptors{TYPE, METHOD},Interceptors{TYPE, METHOD} needing processors.
Beyond that validating the Web25MetaDataCreator and creating a ApplicationClient5MetaDataCreator is needed. This should mostly leverage the existing EnvironmentRefsGroupMetaData related processors.
How I was thinking of creating a merged view of the spec metadata using a proxy that looked to the deployment MetaData for annotation was not really usable. Instead I just created another AnnotationMergedView utility class that creates the combined view. Its used by the AnnotationEjb3UnitTestCase.testXmlMerge. Just a simple case is being validated currently.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4106262#4106262
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4106262
18 years, 4 months
[Design of JBoss jBPM] - Re: [sim] problems with hibernate queries and dates
by tom.baeyens@jboss.com
"camunda" wrote : I had some more problems today. I now think of skipping hibernate and using native queries here, because some of the stuff would really be easier and better. And I get rid of some problems I have at the moment...
|
| I could provide mySQL and Oracle for the beginning, also HSQL shouldn't be hard. But f somebody needs more, he has to translate the queries himself.
|
| Any thoughts?
sorry for the late reply.
up to now, we didn't use anything outside hibernate to get the best possible portability. i didn't see a strategy here to get the same level of portability in what you want to do.
here are my first questions
do you intend to build all the queries for all the dbs ? do you intend to maintain them ? for different versions of the dbs ? do you know that you can't rely on the community for that ?
that is why we accepted the downside of staying within the hibernate boundaries. but feel free to challenge that.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4106260#4106260
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4106260
18 years, 4 months
[Design of JBoss Build System] - bootstraping a local repository
by scott.stark@jboss.org
Whenever I setup a new box with a local repository, I have to download the jboss parent contents to be able to build. otherwise I see this error. Is there a settings.xml setting that will allow everything to be bootstrapped from the jboss repo?
| Macintosh:trunk starksm$ mvn install
| [INFO] Scanning for projects...
| Downloading: http://repo1.maven.org/maven2/org/jboss/jboss-parent/3/jboss-parent-3.pom
| [INFO] ------------------------------------------------------------------------
| [ERROR] FATAL ERROR
| [INFO] ------------------------------------------------------------------------
| [INFO] Failed to resolve artifact.
|
| GroupId: org.jboss
| ArtifactId: jboss-parent
| Version: 3
|
| Reason: Unable to download the artifact from any repository
|
| org.jboss:jboss-parent:pom:3
|
| from the specified remote repositories:
| central (http://repo1.maven.org/maven2)
|
|
| [INFO] ------------------------------------------------------------------------
| [INFO] Trace
| org.apache.maven.reactor.MavenExecutionException: Cannot find parent: org.jboss:jboss-parent for project: org.jboss:jboss-metadata:jar:1.0.0-SNAPSHOT
| at org.apache.maven.DefaultMaven.getProjects(DefaultMaven.java:378)
| at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:290)
| at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:125)
| at org.apache.maven.cli.MavenCli.main(MavenCli.java:272)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java:315)
| at org.codehaus.classworlds.Launcher.launch(Launcher.java:255)
| at org.codehaus.classworlds.Launcher.mainWithExitCode(Launcher.java:430)
| at org.codehaus.classworlds.Launcher.main(Launcher.java:375)
| Caused by: org.apache.maven.project.ProjectBuildingException: Cannot find parent: org.jboss:jboss-parent for project: org.jboss:jboss-metadata:jar:1.0.0-SNAPSHOT
| at org.apache.maven.project.DefaultMavenProjectBuilder.assembleLineage(DefaultMavenProjectBuilder.java:1264)
| at org.apache.maven.project.DefaultMavenProjectBuilder.buildInternal(DefaultMavenProjectBuilder.java:749)
| at org.apache.maven.project.DefaultMavenProjectBuilder.buildFromSourceFileInternal(DefaultMavenProjectBuilder.java:479)
| at org.apache.maven.project.DefaultMavenProjectBuilder.build(DefaultMavenProjectBuilder.java:200)
| at org.apache.maven.DefaultMaven.getProject(DefaultMaven.java:537)
| at org.apache.maven.DefaultMaven.collectProjects(DefaultMaven.java:467)
| at org.apache.maven.DefaultMaven.getProjects(DefaultMaven.java:364)
| ... 11 more
| Caused by: org.apache.maven.project.ProjectBuildingException: POM 'org.jboss:jboss-parent' not found in repository: Unable to download the artifact from any repository
|
| org.jboss:jboss-parent:pom:3
|
| from the specified remote repositories:
| central (http://repo1.maven.org/maven2)
|
| at org.apache.maven.project.DefaultMavenProjectBuilder.findModelFromRepository(DefaultMavenProjectBuilder.java:573)
| at org.apache.maven.project.DefaultMavenProjectBuilder.assembleLineage(DefaultMavenProjectBuilder.java:1260)
| ... 17 more
| Caused by: org.apache.maven.artifact.resolver.ArtifactNotFoundException: Unable to download the artifact from any repository
|
| org.jboss:jboss-parent:pom:3
|
| from the specified remote repositories:
| central (http://repo1.maven.org/maven2)
|
| at org.apache.maven.artifact.resolver.DefaultArtifactResolver.resolve(DefaultArtifactResolver.java:197)
| at org.apache.maven.artifact.resolver.DefaultArtifactResolver.resolve(DefaultArtifactResolver.java:73)
| at org.apache.maven.project.DefaultMavenProjectBuilder.findModelFromRepository(DefaultMavenProjectBuilder.java:526)
| ... 18 more
| Caused by: org.apache.maven.wagon.ResourceDoesNotExistException: Unable to download the artifact from any repository
| at org.apache.maven.artifact.manager.DefaultWagonManager.getArtifact(DefaultWagonManager.java:324)
| at org.apache.maven.artifact.resolver.DefaultArtifactResolver.resolve(DefaultArtifactResolver.java:185)
| ... 20 more
| [INFO] ------------------------------------------------------------------------
| [INFO] Total time: < 1 second
| [INFO] Finished at: Mon Nov 19 18:17:27 PST 2007
| [INFO] Final Memory: 1M/2M
| [INFO] ------------------------------------------------------------------------
| Macintosh:trunk starksm$
|
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4106222#4106222
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4106222
18 years, 4 months