Getting error to access the JMS resouce.

I have confabulated 4 managed servers (des1, des2,des3 and des4) with JMS servers in a cluster on WebLogic 9.2. The servers des1 and des2 are located on same host of admin server installed(e.g. the hostname is adminhost). The servers des3 and des4 are located on anther host (remotehost). I have confabulated the JMS Connection Factory and Uniform Distributed Topic and target them to the cluster by using a subdeployment. I started the admin server on adminhost:7001.
I set the JMS provider URL to t3://adminhost:5010,adminhost:5020,remotehost:5010,remotehost:5020 in my java code to look up my JMS topic.
I can get the JMS topic from the adminhost's servers (des1 and des2). But on the remote host, if I don't start adminhost:5010, the server will get got error when try to get the JMS topic.
javax.naming.NameNotFoundException: While trying to lookup 'peoplesoft.crm.omk.jms.omkBroadcastTopic'
didn't find subcontext 'peoplesoft'. Resolved ''; remaining name 'peoplesoft/crm/omk/jms/omkBroadcastTopic'
     at weblogic.jndi.internal.BasicNamingNode.newNameNotFoundException(BasicNamingNode.java:1139)
The remote server will only can get the JMS topic when the adminhost:5010 is up and running, which is the first one listed in the JMS provider URL.
Can any one give me the idea that:
Q1: Why only the admin server's managed servers can access the JMS topic?(because the des2 does not rely on if the server on adminhost:5010 running).
Is there any way I can make it work on remote host?
Q2: Why only the first server is recognized in the JMS provider URL?
Q3: Why the JSM provider is singleton fail point?
Thank you in advance!
Lucy
Edited by: user710140 on Feb 20, 2009 3:27 PM

Here are my config.xml and jms.xml. Thank you for help!
config.xml
<?xml version='1.0' encoding='UTF-8'?>
<domain xmlns="http://www.bea.com/ns/weblogic/920/domain" xmlns:sec="http://www.bea.com/ns/weblogic/90/security" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:wls="http://www.bea.com/ns/weblogic/90/security/wls" xsi:schemaLocation="http://www.bea.com/ns/weblogic/90/security/xacml http://www.bea.com/ns/weblogic/90/security/xacml.xsd http://www.bea.com/ns/weblogic/90/security http://www.bea.com/ns/weblogic/90/security.xsd http://www.bea.com/ns/weblogic/920/domain http://www.bea.com/ns/weblogic/920/domain.xsd http://www.bea.com/ns/weblogic/90/security/wls http://www.bea.com/ns/weblogic/90/security/wls.xsd">
<name>omk</name>
<domain-version>9.2.0.0</domain-version>
<security-configuration>
<name>omk</name>
<realm>
<sec:authentication-provider xsi:type="wls:default-authenticatorType"></sec:authentication-provider>
<sec:authentication-provider xsi:type="wls:default-identity-asserterType">
<sec:active-type>AuthenticatedUser</sec:active-type>
</sec:authentication-provider>
<sec:role-mapper xmlns:xac="http://www.bea.com/ns/weblogic/90/security/xacml" xsi:type="xac:xacml-role-mapperType"></sec:role-mapper>
<sec:authorizer xmlns:xac="http://www.bea.com/ns/weblogic/90/security/xacml" xsi:type="xac:xacml-authorizerType"></sec:authorizer>
<sec:adjudicator xsi:type="wls:default-adjudicatorType"></sec:adjudicator>
<sec:credential-mapper xsi:type="wls:default-credential-mapperType"></sec:credential-mapper>
<sec:cert-path-provider xsi:type="wls:web-logic-cert-path-providerType"></sec:cert-path-provider>
<sec:cert-path-builder>WebLogicCertPathProvider</sec:cert-path-builder>
<sec:name>myrealm</sec:name>
</realm>
<default-realm>myrealm</default-realm>
<credential-encrypted>{3DES}DCrNeNp+kXrDhSu/xl1jSPlzzeCAUak9MRuA+ZvX8Ih/gYhSJAhEXNBeX92iiOAFcusvheIQMuMPAtQfFmG7UOSiq8Rm3q8s</credential-encrypted>
<node-manager-username>system</node-manager-username>
<node-manager-password-encrypted>{3DES}sDP3fr4NSp2l89H2BtwOoA==</node-manager-password-encrypted>
</security-configuration>
<server>
<name>crm9</name>
<ssl>
<name>crm9</name>
<enabled>true</enabled>
<hostname-verification-ignored>true</hostname-verification-ignored>
<listen-port>444</listen-port>
<two-way-ssl-enabled>false</two-way-ssl-enabled>
<server-private-key-alias>rfas010</server-private-key-alias>
<identity-and-trust-locations>KeyStores</identity-and-trust-locations>
</ssl>
<log>
<name>crm9</name>
<file-name>./logs/PIA_weblogic.log</file-name>
<log-file-severity>Info</log-file-severity>
</log>
<execute-queue>
<name>weblogic.kernel.Default</name>
<thread-count>50</thread-count>
</execute-queue>
<listen-port>7001</listen-port>
<web-server>
<name>crm9</name>
<web-server-log>
<name>crm9</name>
<file-name>./logs/PIA_access.log</file-name>
<logging-enabled>false</logging-enabled>
</web-server-log>
<https-keep-alive-secs>120</https-keep-alive-secs>
</web-server>
<iiop-enabled>false</iiop-enabled>
<listen-address></listen-address>
<staging-directory-name>./stage</staging-directory-name>
<upload-directory-name>./upload</upload-directory-name>
<staging-mode>nostage</staging-mode>
<graceful-shutdown-timeout>30</graceful-shutdown-timeout>
<msi-file-replication-enabled>true</msi-file-replication-enabled>
<custom-identity-key-store-file-name>keystore/pskey</custom-identity-key-store-file-name>
<custom-identity-key-store-type>JKS</custom-identity-key-store-type>
<custom-trust-key-store-file-name>keystore/pskey</custom-trust-key-store-file-name>
<custom-trust-key-store-type>JKS</custom-trust-key-store-type>
</server>
<server>
<name>proxyServer</name>
<ssl>
<enabled>false</enabled>
<listen-port>5011</listen-port>
</ssl>
<machine>rhas001</machine>
<listen-port>5010</listen-port>
<web-server>
<web-server-log>
<number-of-files-limited>false</number-of-files-limited>
</web-server-log>
</web-server>
<listen-address>10.138.120.154</listen-address>
</server>
<server>
<name>des1</name>
<ssl>
<enabled>false</enabled>
<listen-port>5011</listen-port>
</ssl>
<log>
<file-name>./logs/PIA_weblogic.log</file-name>
<log-file-severity>Info</log-file-severity>
</log>
<machine>rfas010</machine>
<listen-port>5010</listen-port>
<cluster>PsftOmkCluster</cluster>
<web-server>
<web-server-log>
<number-of-files-limited>false</number-of-files-limited>
</web-server-log>
</web-server>
<listen-address>10.138.121.100</listen-address>
<server-start>
<class-path>D:/PT849/webserv/omk/applications/crm/com.peoplesoft.crm.omk.jar;D:/PT849/webserv/omk/applications/crm/commons-fileupload-1.0.jar;D:/PT849/webserv/omk/applications/crm/commons-logging.jar;D:/PT849/webserv/omk/applications/crm/commons-net-1.2.2.jar;D:/PT849/webserv/omk/applications/crm/toplink.jar;D:/PT849/webserv/omk/applications/crm/xercesImpl.jar;D:/PT849/webserv/omk/applications/crm/xml-apis.jar;D:/PT849/webserv/omk/applications/crm/xmlparserv2.jar;D:/PT849/webserv/omk/applications/crm/xalan.jar;D:/PT849/webserv/omk/applications/crm/psjoa.jar;D:/PT849/webserv/omk/applications/crm/ptib.jar;D:/PT849/webserv/omk/lib/pluto-1.0.1.jar;D:/PT849/webserv/omk/lib/portlet-api-1.0.jar;D:/PT849/webserv/omk/lib/ps_patch.jar;D:/PT849/webserv/omk/lib/xerces.jar;C:/bea/weblogic92/platform/lib/p13n/p13n-schemas.jar;C:/bea/weblogic92/platform/lib/p13n/p13n_common.jar;C:/bea/weblogic92/platform/lib/p13n/p13n_system.jar;C:/bea/weblogic92/platform/lib/wlp/netuix_common.jar;C:/bea/weblogic92/platform/lib/wlp/netuix_schemas.jar;C:/bea/weblogic92/platform/lib/wlp/netuix_system.jar;C:/bea/weblogic92/platform/lib/wlp/wsrp-common.jar;c:/bea/JROCKI~1/jre/lib/tools.jar;C:/bea/weblogic92/server/lib/weblogic_sp.jar;C:/bea/weblogic92/server/lib/weblogic.jar;D:/PT849/webserv/omk/applications/crm/ojdbc14.jar</class-path>
<arguments>-server -Xms256m -Xmx512m -XX:MaxPermSize=128m -Dps_home=D:/PT849 -Dps_vault=D:/PT849/secvault/psvault -Djava.util.logging.config.file=D:/PT849/webserv/omk/applications/peoplesoft/logging.properties -Dtoplink.xml.platform=oracle.toplink.platform.xml.jaxp.JAXPPlatform -Djavax.net.ssl.trustStore=D:/PT849/webserv/omk/keystore/pskey -Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.Jdk14Logger</arguments>
<password-encrypted>{3DES}HbT3X8jahd4=</password-encrypted>
</server-start>
<jta-migratable-target>
<user-preferred-server>des1</user-preferred-server>
<cluster>PsftOmkCluster</cluster>
</jta-migratable-target>
</server>
<server>
<name>des2</name>
<ssl>
<enabled>false</enabled>
<listen-port>5021</listen-port>
</ssl>
<log>
<file-name>./logs/PIA_weblogic.log</file-name>
<log-file-severity>Info</log-file-severity>
</log>
<machine>rfas010</machine>
<listen-port>5020</listen-port>
<cluster>PsftOmkCluster</cluster>
<web-server>
<web-server-log>
<number-of-files-limited>false</number-of-files-limited>
</web-server-log>
</web-server>
<listen-address>10.138.121.100</listen-address>
<server-start>
<class-path>D:/PT849/webserv/omk/applications/crm/com.peoplesoft.crm.omk.jar;D:/PT849/webserv/omk/applications/crm/commons-fileupload-1.0.jar;D:/PT849/webserv/omk/applications/crm/commons-logging.jar;D:/PT849/webserv/omk/applications/crm/commons-net-1.2.2.jar;D:/PT849/webserv/omk/applications/crm/toplink.jar;D:/PT849/webserv/omk/applications/crm/xercesImpl.jar;D:/PT849/webserv/omk/applications/crm/xml-apis.jar;D:/PT849/webserv/omk/applications/crm/xmlparserv2.jar;D:/PT849/webserv/omk/applications/crm/xalan.jar;D:/PT849/webserv/omk/applications/crm/psjoa.jar;D:/PT849/webserv/omk/applications/crm/ptib.jar;D:/PT849/webserv/omk/lib/pluto-1.0.1.jar;D:/PT849/webserv/omk/lib/portlet-api-1.0.jar;D:/PT849/webserv/omk/lib/ps_patch.jar;D:/PT849/webserv/omk/lib/xerces.jar;C:/bea/weblogic92/platform/lib/p13n/p13n-schemas.jar;C:/bea/weblogic92/platform/lib/p13n/p13n_common.jar;C:/bea/weblogic92/platform/lib/p13n/p13n_system.jar;C:/bea/weblogic92/platform/lib/wlp/netuix_common.jar;C:/bea/weblogic92/platform/lib/wlp/netuix_schemas.jar;C:/bea/weblogic92/platform/lib/wlp/netuix_system.jar;C:/bea/weblogic92/platform/lib/wlp/wsrp-common.jar;c:/bea/JROCKI~1/jre/lib/tools.jar;C:/bea/weblogic92/server/lib/weblogic_sp.jar;C:/bea/weblogic92/server/lib/weblogic.jar;D:/PT849/webserv/omk/applications/crm/ojdbc14.jar</class-path>
<arguments>-server -Xms256m -Xmx512m -XX:MaxPermSize=128m -Dps_home=D:/PT849 -Dps_vault=D:/PT849/secvault/psvault -Djava.util.logging.config.file=D:/PT849/webserv/omk/applications/peoplesoft/logging.properties -Dtoplink.xml.platform=oracle.toplink.platform.xml.jaxp.JAXPPlatform -Djavax.net.ssl.trustStore=D:/PT849/webserv/omk/keystore/pskey -Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.Jdk14Logger</arguments>
<password-encrypted>{3DES}HbT3X8jahd4=</password-encrypted>
</server-start>
<jta-migratable-target>
<user-preferred-server>des2</user-preferred-server>
<cluster>PsftOmkCluster</cluster>
</jta-migratable-target>
</server>
<server>
<name>des3</name>
<ssl>
<enabled>false</enabled>
<listen-port>5011</listen-port>
</ssl>
<log>
<file-name>./logs/PIA_weblogic.log</file-name>
<log-file-severity>Info</log-file-severity>
</log>
<machine>rtas043</machine>
<listen-port>5010</listen-port>
<cluster>PsftOmkCluster</cluster>
<web-server>
<web-server-log>
<number-of-files-limited>false</number-of-files-limited>
</web-server-log>
</web-server>
<listen-address>10.138.123.106</listen-address>
<server-start>
<class-path>D:/PT849/webserv/omk/applications/crm/com.peoplesoft.crm.omk.jar;D:/PT849/webserv/omk/applications/crm/commons-fileupload-1.0.jar;D:/PT849/webserv/omk/applications/crm/commons-logging.jar;D:/PT849/webserv/omk/applications/crm/commons-net-1.2.2.jar;D:/PT849/webserv/omk/applications/crm/toplink.jar;D:/PT849/webserv/omk/applications/crm/xercesImpl.jar;D:/PT849/webserv/omk/applications/crm/xml-apis.jar;D:/PT849/webserv/omk/applications/crm/xmlparserv2.jar;D:/PT849/webserv/omk/applications/crm/xalan.jar;D:/PT849/webserv/omk/applications/crm/psjoa.jar;D:/PT849/webserv/omk/applications/crm/ptib.jar;D:/PT849/webserv/omk/lib/pluto-1.0.1.jar;D:/PT849/webserv/omk/lib/portlet-api-1.0.jar;D:/PT849/webserv/omk/lib/ps_patch.jar;D:/PT849/webserv/omk/lib/xerces.jar;C:/bea/weblogic92/platform/lib/p13n/p13n-schemas.jar;C:/bea/weblogic92/platform/lib/p13n/p13n_common.jar;C:/bea/weblogic92/platform/lib/p13n/p13n_system.jar;C:/bea/weblogic92/platform/lib/wlp/netuix_common.jar;C:/bea/weblogic92/platform/lib/wlp/netuix_schemas.jar;C:/bea/weblogic92/platform/lib/wlp/netuix_system.jar;C:/bea/weblogic92/platform/lib/wlp/wsrp-common.jar;c:/bea/JROCKI~1/jre/lib/tools.jar;C:/bea/weblogic92/server/lib/weblogic_sp.jar;C:/bea/weblogic92/server/lib/weblogic.jar;D:/PT849/webserv/omk/applications/crm/ojdbc14.jar</class-path>
<arguments>-server -Xms256m -Xmx512m -XX:MaxPermSize=128m -Dps_home=D:/PT849 -Dps_vault=D:/PT849/secvault/psvault -Djava.util.logging.config.file=D:/PT849/webserv/omk/applications/peoplesoft/logging.properties -Dtoplink.xml.platform=oracle.toplink.platform.xml.jaxp.JAXPPlatform -Djavax.net.ssl.trustStore=D:/PT849/webserv/omk/keystore/pskey -Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.Jdk14Logger</arguments>
<password-encrypted>{3DES}HbT3X8jahd4=</password-encrypted>
</server-start>
<jta-migratable-target>
<user-preferred-server>des3</user-preferred-server>
<cluster>PsftOmkCluster</cluster>
</jta-migratable-target>
</server>
<server>
<name>des4</name>
<ssl>
<enabled>false</enabled>
<listen-port>5021</listen-port>
</ssl>
<log>
<file-name>./logs/PIA_weblogic.log</file-name>
<log-file-severity>Info</log-file-severity>
</log>
<machine>rtas043</machine>
<listen-port>5020</listen-port>
<cluster>PsftOmkCluster</cluster>
<web-server>
<web-server-log>
<number-of-files-limited>false</number-of-files-limited>
</web-server-log>
</web-server>
<listen-address>10.138.123.106</listen-address>
<server-start>
<class-path>D:/PT849/webserv/omk/applications/crm/com.peoplesoft.crm.omk.jar;D:/PT849/webserv/omk/applications/crm/commons-fileupload-1.0.jar;D:/PT849/webserv/omk/applications/crm/commons-logging.jar;D:/PT849/webserv/omk/applications/crm/commons-net-1.2.2.jar;D:/PT849/webserv/omk/applications/crm/toplink.jar;D:/PT849/webserv/omk/applications/crm/xercesImpl.jar;D:/PT849/webserv/omk/applications/crm/xml-apis.jar;D:/PT849/webserv/omk/applications/crm/xmlparserv2.jar;D:/PT849/webserv/omk/applications/crm/xalan.jar;D:/PT849/webserv/omk/applications/crm/psjoa.jar;D:/PT849/webserv/omk/applications/crm/ptib.jar;D:/PT849/webserv/omk/lib/pluto-1.0.1.jar;D:/PT849/webserv/omk/lib/portlet-api-1.0.jar;D:/PT849/webserv/omk/lib/ps_patch.jar;D:/PT849/webserv/omk/lib/xerces.jar;C:/bea/weblogic92/platform/lib/p13n/p13n-schemas.jar;C:/bea/weblogic92/platform/lib/p13n/p13n_common.jar;C:/bea/weblogic92/platform/lib/p13n/p13n_system.jar;C:/bea/weblogic92/platform/lib/wlp/netuix_common.jar;C:/bea/weblogic92/platform/lib/wlp/netuix_schemas.jar;C:/bea/weblogic92/platform/lib/wlp/netuix_system.jar;C:/bea/weblogic92/platform/lib/wlp/wsrp-common.jar;c:/bea/JROCKI~1/jre/lib/tools.jar;C:/bea/weblogic92/server/lib/weblogic_sp.jar;C:/bea/weblogic92/server/lib/weblogic.jar;D:/PT849/webserv/omk/applications/crm/ojdbc14.jar</class-path>
<arguments>-server -Xms256m -Xmx512m -XX:MaxPermSize=128m -Dps_home=D:/PT849 -Dps_vault=D:/PT849/secvault/psvault -Djava.util.logging.config.file=D:/PT849/webserv/omk/applications/peoplesoft/logging.properties -Dtoplink.xml.platform=oracle.toplink.platform.xml.jaxp.JAXPPlatform -Djavax.net.ssl.trustStore=D:/PT849/webserv/omk/keystore/pskey -Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.Jdk14Logger</arguments>
<password-encrypted>{3DES}HbT3X8jahd4=</password-encrypted>
</server-start>
<jta-migratable-target>
<user-preferred-server>des4</user-preferred-server>
<cluster>PsftOmkCluster</cluster>
</jta-migratable-target>
</server>
<cluster>
<name>PsftOmkCluster</name>
<multicast-address>239.192.0.0</multicast-address>
<multicast-port>7009</multicast-port>
<multicast-ttl>2</multicast-ttl>
<number-of-servers-in-cluster-address>4</number-of-servers-in-cluster-address>
</cluster>
<embedded-ldap>
<name>omk</name>
<credential-encrypted>{3DES}6Sr2wTwijurtQum4aELROj7jVGCnAucX5/41CQo4NNw=</credential-encrypted>
</embedded-ldap>
<configuration-version>9.2.0.0</configuration-version>
<app-deployment>
<name>crm9</name>
<target>PsftOmkCluster</target>
<module-type>ear</module-type>
<source-path>applications/crm9</source-path>
<sub-deployment>
<name>/DCS</name>
<target>PsftOmkCluster</target>
</sub-deployment>
<deployment-order>1</deployment-order>
<security-dd-model>DDOnly</security-dd-model>
<staging-mode>nostage</staging-mode>
</app-deployment>
<app-deployment>
<name>proxyServer</name>
<target>proxyServer</target>
<module-type>war</module-type>
<source-path>C:\Temp\wlst\proxyApp.war</source-path>
<security-dd-model>DDOnly</security-dd-model>
</app-deployment>
<app-deployment>
<name>wlnav</name>
<target>crm9</target>
<module-type>war</module-type>
<source-path>D:\lucy\wlnav.war</source-path>
<security-dd-model>DDOnly</security-dd-model>
<staging-mode>stage</staging-mode>
</app-deployment>
<machine>
<name>rhas001</name>
<node-manager>
<nm-type>SSL</nm-type>
<listen-address>rhas001.us.oracle.com</listen-address>
<listen-port>5556</listen-port>
</node-manager>
</machine>
<machine>
<name>rfas010</name>
<node-manager>
<nm-type>SSL</nm-type>
<listen-address>rfas010.us.oracle.com</listen-address>
<listen-port>5556</listen-port>
</node-manager>
</machine>
<machine>
<name>rtas043</name>
<node-manager>
<nm-type>SSL</nm-type>
<listen-address>rtas043.us.oracle.com</listen-address>
<listen-port>5556</listen-port>
</node-manager>
</machine>
<jms-server>
<name>PsftOmkJMSServer1</name>
<target>des1</target>
</jms-server>
<jms-server>
<name>PsftOmkJMSServer2</name>
<target>des2</target>
</jms-server>
<jms-server>
<name>PsftOmkJMSServer3</name>
<target>des3</target>
</jms-server>
<jms-server>
<name>PsftOmkJMSServer4</name>
<target>des4</target>
</jms-server>
<migratable-target>
<name>des1 (migratable)</name>
<notes>This is a system generated default migratable target for a server. Do not delete manually.</notes>
<user-preferred-server>des1</user-preferred-server>
<cluster>PsftOmkCluster</cluster>
</migratable-target>
<migratable-target>
<name>des2 (migratable)</name>
<notes>This is a system generated default migratable target for a server. Do not delete manually.</notes>
<user-preferred-server>des2</user-preferred-server>
<cluster>PsftOmkCluster</cluster>
</migratable-target>
<migratable-target>
<name>des3 (migratable)</name>
<notes>This is a system generated default migratable target for a server. Do not delete manually.</notes>
<user-preferred-server>des3</user-preferred-server>
<cluster>PsftOmkCluster</cluster>
</migratable-target>
<migratable-target>
<name>des4 (migratable)</name>
<notes>This is a system generated default migratable target for a server. Do not delete manually.</notes>
<user-preferred-server>des4</user-preferred-server>
<cluster>PsftOmkCluster</cluster>
</migratable-target>
<jms-system-resource>
<name>PsftOmkJMSModule</name>
<target>PsftOmkCluster</target>
<sub-deployment>
<name>PsftOmkClusterSubdeployment</name>
<target>PsftOmkCluster</target>
</sub-deployment>
<descriptor-file-name>jms/psftomkjmsmodule-jms.xml</descriptor-file-name>
</jms-system-resource>
<admin-server-name>crm9</admin-server-name>
</domain>
jms
<?xml version='1.0' encoding='UTF-8'?>
<weblogic-jms xmlns="http://www.bea.com/ns/weblogic/90" xmlns:sec="http://www.bea.com/ns/weblogic/90/security" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:wls="http://www.bea.com/ns/weblogic/90/security/wls" xsi:schemaLocation="http://www.bea.com/ns/weblogic/920 http://www.bea.com/ns/weblogic/920.xsd">
<connection-factory name="omkBroadcaster">
<sub-deployment-name>PsftOmkClusterSubdeployment</sub-deployment-name>
<jndi-name>jms.connection.omkConFactory</jndi-name>
<load-balancing-params>
<server-affinity-enabled>false</server-affinity-enabled>
</load-balancing-params>
</connection-factory>
<uniform-distributed-topic name="omkBroadcastTopic">
<sub-deployment-name>PsftOmkClusterSubdeployment</sub-deployment-name>
<jndi-name>peoplesoft.crm.omk.jms.omkBroadcastTopic</jndi-name>
<load-balancing-policy>Round-Robin</load-balancing-policy>
</uniform-distributed-topic>
</weblogic-jms>
Edited by: user710140 on Feb 23, 2009 8:54 AM

Similar Messages

  • Getting Error while accessing the data using odata service

    Hi All,
    Iam new to SAP FIORI. 
    Iam getting the below error while accessing the data using odata service.
    "Failed to load resource: the server responded with a status of 404 (Not found)"
    "No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin "
    i have tried all the solutions like changing the url pattern "proxy/htttp".
    and disabled - security in chrome (Chrome is Updated version).
    i tried with IE still got the same problem.
    And installed all the required software in eclipse
    While installing GWPA plugin i got the following error.
    let me know if any one have idea.
    Thanks in advance.

    > Do you want to add and/or update the data in the already existing tables or do you want to replace the content completely?
    >
    > so in that way :
    > bot the options are fine what ever take less time.
    Sorry mate, but YOU have to know what you want here.
    I gave you an easy to follow set of steps.
    As you don't seam to mind the outcome, just might just use them...
    > I wanted to know weathe i can use the  loadercli for thie export import or not? if yes then is there any new steps to do before i do the export import?
    We had this discussion before...
    >
    > For that the easiest option would be just to drop the tables of SAPR3 and run the import again.
    >
    > For ease of use you could also just do:
    > - logon as superdba
    > - drop user SAPR3
    > - create user SAPR3 password SOMEPW not exclusive dba
    >
    > After these steps you can easily pump the data into the database again.
    >
    > So here in th above given steps , i am creating a new SAPR3 user and why it is not exclusive dba ?
    >  i already have that user SAPR3 can i use the same.
    Yes, you do have the SAPR3 user.
    But you don't seem to like to read documentation or learn about how the tools work or anything like that.
    Therefore I gave you s simple way to reach your goal.
    Of course it's possible to reuse the user.
    But then you would have to deal with already existing tables, already existing data etc.
    You don't seem to be able to do that. So, the easy steps might be better suited for your needs.
    regards,
    Lars

  • Getting error while accessing the OAF forms in ADF page.

    Hi ,
    I am trying to get/access the Oracle forms on ADF page.
    I am following http://static.commit-consulting.com/oraformsfaces developers guide for guidlines.
    while runnign my page getting the error in popup look like java script error.
    the pop up contente is :
    Failed to execute java script
    Check for JavaScript errors, if the Forms server is running and if your browser can download a javaScript from http://bdc6oracle001.gdnindia.com:8005/forms/frmservlet?config=OraFormsFaces
    http://bdc6oracle001.gdnindia.com:8005/forms/frmservlet?config=OraFormsFaces is my server EBS server where oracle forms exist.
    Please help me on this.
    Thanks,
    MadhavaReddy

    You're probably better off asking the OraFormsFaces people for help

  • HTTP/1.1: 10.4.5 404 Not Found Error while accessing the odsm url

    Hi experts,
    I 've installed OID 11.1.1.6 on weblogic server 10.6.. on Oracle linux 6.0
    The Installation went fine And I am able to lauch the odsm default url http:\\localhost:7005/odsm  and  even chnaged the cn=orcladmin User password.
    Also created few user and Groups using odsm,
    However when i tried to access the odsm url after restarting the Admin & managed server . I am unable to access the  odsm url. for that i tired to deploy the odsm.ear on Admin server but it failed  getting the following error.
    in the Adminserver.log file
    2013 8:33:59 AM IST> <Error> <Console> <idm.oracle.com> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <weblogic> <> <> <1371956639366> <BEA-240003> <Console encountered the following error weblogic.management.DeploymentException: [J2EE:160149]Error while processing library references. Unresolved application library references, defined in weblogic-application.xml: [Extension-Name: adf.oracle.domain, exact-match: false].
            at weblogic.application.internal.flow.CheckLibraryReferenceFlow.prepare(CheckLibraryReferenceFlow.java:26)
            at weblogic.application.internal.BaseDeployment$1.next(BaseDeployment.java:648)
            at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
            at weblogic.application.internal.BaseDeployment.prepare(BaseDeployment.java:191)
            at weblogic.application.internal.EarDeployment.prepare(EarDeployment.java:59)
            at weblogic.application.internal.DeploymentStateChecker.prepare(DeploymentStateChecker.java:154)
            at weblogic.deploy.internal.targetserver.AppContainerInvoker.prepare(AppContainerInvoker.java:60)
            at weblogic.deploy.internal.targetserver.operations.ActivateOperation.createAndPrepareContainer(ActivateOperation.java:208)
            at weblogic.deploy.internal.targetserver.operations.ActivateOperation.doPrepare(ActivateOperation.java:98)
            at weblogic.deploy.internal.targetserver.operations.AbstractOperation.prepare(AbstractOperati
    <Warning> <Deployer> <idm.oracle.com> <AdminServer> <[ACTIVE] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1371956639265> <BEA-149004> <Failures were detected while initiating deploy task for application 'odsm [Version=11.1.1.2.0]'.>
    ####<Jun 23, 2013 8:33:59 AM IST> <Warning> <Deployer> <idm.oracle.com> <AdminServer> <[ACTIVE] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1371956639268> <BEA-149078> <Stack trace for message 149004
    And in wls_ods1.log file got the following error
    <BEA-149265> <Failure occurred in the execution of deployment request with ID '1371955199392' for task '0'. Error is: 'weblogic.management.DeploymentException: [J2EE:160149]Error while processing library references. Unresolved application library references, defined in weblogic-application.xml: [Extension-Name: adf.oracle.domain, exact-match: false].'
    weblogic.management.DeploymentException: [J2EE:160149]Error while processing library references. Unresolved application library references, defined in weblogic-application.xml: [Extension-Name: adf.oracle.domain, exact-match: false].
            at weblogic.application.internal.flow.CheckLibraryReferenceFlow.prepare(CheckLibraryReferenceFlow.java:26)
            at weblogic.application.internal.BaseDeployment$1.next(BaseDeployment.java:648)
            at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
            at weblogic.application.internal.BaseDeployment.prepare(BaseDeployment.java:191)
        Than i tired to deploy the odsm.ear on managed server i.e wls_ods1 and later on both but got the same error.
       Also  There is no issue with the oidsrv or oidladpd proccess as with the start/stop of oid*  related proccesses using opmnctl
       Please see the following.
    e@idm stage]$ oidctl connect=OIDDB status -diag
    oidctl : INSTANCE_NAME   is not set, defaulting to inst1
    oidctl : COMPONENT_NAME  is not set, defaulting to oid1
    NLS_LANG not set in environment
    Setting NLS_LANG to AMERICAN_AMERICA.AL32UTF8
      +--------------------------------------------------------------------------+
      | Process      |  PID   |   InstName    |  CompName   |Inst#| Port | Sport |
      +--------------------------------------------------------------------------+
      | oidmon       |  25968 |      asinst_1 |        oid3 |    0|      |       |
      +--------------------------------------------------------------------------+
      | oidldapd disp|  26010 |      asinst_1 |        oid3 |    1| 3060 |  3131 |
      | oidldapd serv|  26021 |      asinst_1 |        oid3 |    1| 3060 |  3131 |
      | Config   DN  | cn=oid3,cn=osdldapd,cn=subconfigsubentry                  |
      +--------------------------------------------------------------------------+
      +--------------------------------------------------------------------------+
      |Printing LDAP Operation in progress status ...                          |
      +--------------------------------------------------------------------------+
        OIDLDAPD_PID: 26021 WorkerID: 9 DBSID: 263 DBPID: 26075 ==> IDLE
      +--------------------------------------------------------------------------+
        OIDLDAPD_PID: 26021 WorkerID: 11 DBSID: 527 DBPID: 26078 ==> IDLE
      +--------------------------------------------------------------------------+
        OIDLDAPD_PID: 26021 WorkerID: 8 DBSID: 8 DBPID: 26080 ==> IDLE
      +--------------------------------------------------------------------------+
        OIDLDAPD_PID: 26021 WorkerID: 13 DBSID: 133 DBPID: 26108 ==> IDLE
      +--------------------------------------------------------------------------+
        OIDLDAPD_PID: 26021 WorkerID: 10 DBSID: 526 DBPID: 26056 ==> IDLE
      +--------------------------------------------------------------------------+
        OIDLDAPD_PID: 26021 WorkerID: 12 DBSID: 650 DBPID: 26058 ==> IDLE
      +--------------------------------------------------------------------------+
              Cache Max Size                     : 209716224
              Max Entries configured             : 100000
              Max Entries cached                 : 0
              Num Entries in Cache               : 0
              Num Entries in GC                  : 0
              Page size                          : 102392
              Entry cache Hit count              : 0
              Entry cache Mis count              : 0
              Hash Area bytes used               : 13031472
              Hash Area blocks used              : 138
              ResultSet cache bytes used         : 0
              Resultset cache blocks used        : 0
              Entry cache bytes used             : 0
    Cache memory used          
    : 13031472
    [oracle@idm stage]$ opmnctl status -l
    Processes in Instance: asinst_1
    ---------------------------------+--------------------+---------+----------+------------+----------+-----------+------
    ias-component            
    | process-type
    |
    pid | status   |
    uid |  memused |
    uptime | ports
    ---------------------------------+--------------------+---------+----------+------------+----------+-----------+------
    ohs1                     
    | OHS        
    |   25970 | Alive
    |
    1803561142 |  2127440 |  38:11:26 | https:9999,https:4443,http:7777
    oid3                     
    | oidldapd   
    |   26021 | Alive
    |
    1803561144 |  1425784 |  38:11:26 | N/A
    oid3                     
    | oidldapd   
    |   26010 | Alive
    |
    1803561143 |   435572 |  38:11:26 | N/A
    oid3                     
    | oidmon     
    |   25968 | Alive
    |
    1803561141 |   888088 |  38:11:26 | LDAPS:3131,LDAP:3060
    EMAGENT                  
    | EMAGENT    
    |   25967 | Alive
    |
    1803561140 |   106100 |  38:11:26 | N/A
    $ netstat -an |grep 3060
    tcp
    0
    0 :::3060             
    LISTEN
    [oracle@idm stage]$ ps -ef |grep 3060
    oracle
    7368  2130  0 05:53 pts/0
    00:00:00 grep 3060
    oracle   26021
    1  9 Jun24 ?
    03:33:54 oidldapd
    control=26010 connect=oiddb debug=0 configset=0 instance=1 key=26748
    host=idm.oracle.com logchange=TRUE port=3060 sport=3131
    [oracle@idm stage]$ tnsping OIDDB
    TNS Ping Utility for Linux: Version 11.1.0.7.0 - Production on 26-JUN-2013
    05:53:20
    Copyright (c) 1997, 2008, Oracle.  All rights reserved.
    Used parameter files:
    /idm/Middleware/Oracle_IDM2/network/admin/sqlnet.ora
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact
    (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=idm.oracle.com)(PORT=1521))(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=idmoid.oracle.com)))
    OK (0 msec)
      Also I am able to access oracle HTTP server web page i.e
    http://idm.oracle.com:7777/
    Could anyone suggest as why after restarting the server am not able to access the odsm url and getting error in deploying the odsm.ear file.
    Also after struggling with this error for 3 days i tried to Reinstall the oid after completely uninstalling it. But as soon as i restarted the  server  The odsm url become inaccessible
    and getting the same Old error.
       Also one Important things that i observed that before restarting the Admin & managed server when the odsm url was accessible when i do grep the port 3060 i.e
    root@idm config]# netstat -an |grep 3060
    tcp        0      0 :::3060                     :::*
    LISTEN
    tcp        0      0 ::ffff:192.168.122.13:3060  ::ffff:192.168.122.13:24645
    ESTABLISHED
    tcp        0      0 ::ffff:192.168.122.13:24645 ::ffff:192.168.122.13:3060
    ESTABLISHED
    tcp        0      0 ::ffff:192.168.122.13:3060  ::ffff:192.168.122.13:58065
    ESTABLISHED
    tcp        0      0 ::ffff:192.168.122.13:58065 ::ffff:192.168.122.13:3060
    ESTABLISHED
      After the restart of server i got this  output of 3060 port
    $ netstat -an |grep 3060
    tcp   

    0 :::3060                
    LISTEN
    I could not understand why this truncated output of 3060 port even though  all opmn manged proccess working fine as it's obvious from the out put from
    $ oidctl connect=OIDDB status -diag And $ opmnctl status -l commands output which i 've posted above.
    and am able start/stop oid related proccess from opmnct command
    Please Help.  as am really struggling to work around the issue.
    Thanks & Regards
    Priya

    If what that guys said about it being :7001/em doesn't work, When you configured your domain did you check the box that says Oracle Enterprise Manager. We had the same thing happen to us one time and it's because we didn't install it you have to check that box for it to be installed.

  • Error  while accessing the application server file

    Hello,
    When I try to load the data from CSV file to PSA , I am getting following error message
    "Error  while accessing the application server file"
    "Errors in source system"
    I gave the right file path
    I am not sure about this error message.
    Thanks,

    Hi ram,
    if you have more than one application server running in your BI system (see at transaction SM51) be aware that your infopackage will be executed on the right one. Each application server has its own file system and your job need to run on the server your file is stored on.
    Also check if the os user of the SAP system itself (<sid>adm on Unix) has rights to read that file.
    Bye
    Frank

  • Webpart causing error while accessing the subsite.

    Hi
    I am getting an error message saying that webpart causes error in accessing the site in MOSS 2007.
    PFA of the error:
    Please someone help with the error webpart:
    how to find which custom webpart is affecting the site access error.
    Thanks,
    Badri

    Hi Badri ,
    According to your error message, the web part which cause error is the “RecentlyUpdatedSites” web part. For your issue, you can open the Web Part Maintenance page.
    For opening the Web Part Maintenance page by just adding the following query string to the page URL
    ?contents=1 So, if your page URL is 'http://servername/sitename/home.aspx' then after appending the query string it should look like ' http://servername/sitename/home.aspx?contents=1'
    Using this approach, we can open the web part maintenance page , close or delete these wrong web part.
    Reference:
    Opening Web Part Maintenance Page
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • Error: "Cannot access the web server" with BlazeDS Turnkey

    Help! I'm new to Flex and BlazeDS and Eclipse.  I was trying to setup a Flex Project using a BlazeDS/Tomcat server running from Eclipse on Windows XP per the example in flexbandit.com/archives/55#comment-269 and in (www.infoq.com/articles/blazeds-intro).   I am NOT using the Eclipse Flex plug-in.  I'm using Flex Builder for the Flex code.
    Here's what I've done:
    I installed BlazeDS and tested http://localhost:8400 - That worked.
    I setup Tomcat in Eclipse.  -  That seemed to work.
    I created a Dynamic Web Project in Eclipse - That seemed to work.
    I created the bare-bones BlazeDS Configuration under the Eclipse project and then created a basic HelloWorld java class.
    I added the destination in the “remoting-config.xml” file found in the c:/projects/workspace/ReportGenTool/WebContent/WEB-INF/flex” directory:
    <destination id="HelloWorld">   <properties>  <source>HelloWorld</source> </properties> </destination>
    When I started the application server by clicking on the server's green play button in Eclipse and then tried to open localhost:8400/ReportGenTool, I got the 404 error : The requested source (/ReportGenTool/) is not available which according to the instructions is fine.
    Next I created a Flex Project, but when I try to validate the new Flex project configuration, it gives me an error "Cannot access the web server. The server may not be running, or the web root folder or root URL may be invalid."
    When I validated the server was running after setting up the BlazeDs Turnkey, I saw the BlazeDS page.
    Now when I bring up http://localhost:8400 I get:
          Directory Listing for /
          Apache Tomcat/6.0.14
    My eclipse project is named ReportGenTool and I've overwritten the WebContent directory with the META-INF and WEB-INF directories from the BlazeDS installation (C:\blazeds\tomcat\webapps\blazeds).  According to Eclipse the server is running.
    My Flex project is named ReportGenTool and is located in another directory away from the Eclipse project directory.
         My root folder is: C:\Projects\workspace\ReportGenTool\WebContent
         Root URL: is http://localhost:8400/ReportGenTool/
         Context root is: /ReportGenTool/
    Any idea what might be wrong? What didn't I configure that needs to be configured?
    Thanks in advance.

    This is not working because your router has a direct to your web server that is not through the outside interface which is needed for nat to occur, for this to work you need to setup a loopback interface as nat outside and policy route traffic to there for your server traffic
    Bu if your server is internal why do you need nat at all? Can you not use bind with views that might be simpler
    M
    Sent from Cisco Technical Support iPad App

  • A reflection error occurred accessing the object.-- Error

    I am trying to update from default field value to some other value by using the script definition, however system is throwing the "A reflection error occurred accessing the object."
    If anyone has any idea/solution please help me.
    regards
    Sumanta

    Hi Devesh,
       I wrote a Field Validation Script and as per your guidelines i update the script,however got the different error.
    new changed script
    doc.getExtensionField("CURRENCY").get().setDisplayName("AOA");
    and also tried with
    doc.getExtensionField("CURRENCY").get().setDisplayName("-2147483442:601:AOA");
    and the error message received is like
    Error executing script: Sourced file: inline evaluation of: ``doc.getExtensionField("CURRENCY").get().setDisplayName("AOA"); . . . '' : target exception.
    It is not allowing to modify/update the existing field value by using script.
    Please let me know if you have any suggestion.
    Regards
    Sumanta

  • Getting error while creating the variable of Schema Element type

    Hi everybody,
    For creating a variable of schema element type I am doing the following steps...
    Select 'Variables' after right clicking on bpel process. IN this window, go to 'Create VAriable' then select 'Element' type. Now in Type Choose, I expanded the my imported schema files. And selected a element type, then click ok to create this variable... I am getting the message...
    IN ORDER TO SAVE IMPORTED WSDL/SCHEMA FILES, YOU MUST HAVE A PARTNER LINK LOCATED UNDER THE CURRENT PROJECT DIRECTORY.
    What is mean by that.
    I have imported the schema files in project. AFter that I have imported them into the WSDL also. Now why I am getting error while creating the variable. However I can create variable directly in .BPEL file then everything is fine. And it is working also. But what is mean with the above error? Why I am not able to create variable through GUI?
    Thanks.

    Hi,
    I have this same problem this morning, and I was going crazy, until I found this webpage on the internet:
    [http://technology.amis.nl/blog/1803/problem-importing-xml-schema-in-bpel-process|http://technology.amis.nl/blog/1803/problem-importing-xml-schema-in-bpel-process]
    The idea is that the jdeveloper is not very good working with directories with spaces on the directory name. If you move all your work to a directory without spaces, it will work smoothly. At least, it had worked for me.
    Regards,
    Nacho

  • Getting error while creating the Shopping cart.

    Hi ,
    I am getting error while creating the Shopping cart.
    a.Error in account assignment for item 1  (Item  Testing SC ) 
    b.Duplicates of Cost Centre T10063 are defined in SRM  (Item  Testing SC ) 
    Kindly provide the solutions.
    Thanks,
    Dev

    Try the following in the ERP backend system:
    Standard Hierarchy Inconsistencies
    Issue: one Cost Center is repeating in more than one node in Cost Center Standard Hierarchy.
    Update from SAP Global support, the following was the email received:
    in transaction KSH3 please run both the ambiguity and completeness check(Menu -> Extras -> Check and Help functions).
    If you think that your standard hierarchy is inconsistent you can check that as following:
    Run transaction Extras -> Hierarchy - Master data -> Test. The result shows you if there are in consistencies. If that is the case run also Extras -> Hierarchy - Master data -> Comparison.
    Alternatively, you can run the report 'RKCORRH1' (TN SE38).
    Run both the Hierarchy->Master data->test and the
    Hierarchy->Master data->comparison.
    As stated above inconsistency message showed after Test. Run the comparison and you get a similar message.
    Once the above two are run, again when you go to test, the inconsistency disappears.

  • I keep getting error messages on the calendar since downloading the new software on my IPAD2. It either says "cannont save event. That event does not belong to that event store" or I get an error message that says that no calendar "has been set".

    I keep getting error messages on the calendar since I downloaded the new software on my IPAD2.  When I try to add a new event it either says "That event does not belong to that event store" or it says "the calendar has not been set".  Does anyone know what these messages mean or how to address this?

    I'm getting the same issue on my ipad2...I set up a new calender and now I keep getting this error message....how do I fix this?

  • How to access the JMS queues in the XI J2EE Engine?

    Hi Gurus,
    Can anybody know how to access the jms dead message queues in the WAS J2EE Engine?
    I have read in the SAP documentation that we can use some JMS commands from the telnet. I don't know how to use those commands.
    Can anybody provide a step-by-step process to access these queues?
    Thanks
    Kalyan

    1) Open a command prompt
    2) type
    telnet localhost 50008
    where the port is the same as your http, but with 8 as last digit.
    3) Login
    4) Issue the following set of commands
            jump 0
            add jms
            jms list deadmsgs
    Check by man jms other possible options.
    HTH
    Peter

  • When computer boots I get error box stating "The procedure entry point _NSConcreteStackBlock could not be located in the dynamic link libray CoreFoundation.dll".  I have removed iTunes and all of it's components several times and re-loaded programs.

    When I boot my computer I get error box stating "The procedure entry point _NSConcreteStackBlock could not be located in the dynamic link library CoreFoundation.dll.  I have completely removed iTunes and related programs and reinstalled them several times.  Doesn't fix the issue.  Any ideas on how to fix this?

    You should have one copy of CoreFoundation.dll in C:\Program Files\Common Files\Apple Application Support or C:\Program Files (x68)\Common Files\Apple Application Support if this is a 64-bit Windows.
    The detailed file properties should be as shown.
    If the file you have is correct check to see if there is another copy in the main iTunes folder. If so delete it and see if that helps.
    Otherwise try uninstalling/deleting folders/reinstalling iTunes again. See Troubleshooting issues with iTunes for Windows updates for more details. Your issue looks a bit like it might be a variation of the issue in the first box.
    Also worth checking that you have uninstalled the MobileMe control panel and any third party software that might try to talk to iTunes.
    tt2

  • I keep getting error 586 in the console along with the following: 3/18/12 7:55:19 PM com.apple.launchd[1] (org.samba.smbd) Throttling respawn: Will start in 10 seconds  3/18/12 7:55:29 PM com.apple.launchd[1] (org.samba.smbd[1246]) Exited with exit code:

    I keep getting error 586 in the console along with the following:
    3/18/12 7:55:19 PM com.apple.launchd[1] (org.samba.smbd) Throttling respawn: Will start in 10 seconds  3/18/12 7:55:29 PM com.apple.launchd[1] (org.samba.smbd[1246]) Exited with exit code:
    The console shows thousands of these error messages and it's messed up many functions of my MacBook.
    I have VMFusion on my Mac because for work I need to use Windows.  Last night I tried installing Windows 7 but could not complete installation.  I got a message saying "can not locate driver".  Then I started getting the Error 586.
    Today I unistalled VMFusion hoping that would resolve the Error 586.  No such luck.
    Can anyone help me get rid of this constant error, plesase?

    I believe this has something to do with Mail. Are these frequently occurring errors? If so and you quit Mail do the errors cease?
    Google searching for "org.postfix.master" reveals quite a number of links that you might check for more information.

  • Great Problemes after installing Yosemite (10.10.2 ) with Photoshop CS6....The program crashes --last time 10 times during my work session..wacomtable doesnt work..it is slow...and get error messages about the graphic card....It s a Terror to work with my

    great Problemes after installing Yosemite (10.10.2 ) with Photoshop CS6....The program crashes --last time 10 times during my work session..wacomtable doesnt work..it is slow...and get error messages about the graphic card....It s a Terror to work with my beloved Photoshop!

    The Yosemite upgrade very often damages existing Photoshop installations.  Thank Apple for that.
    You need to uninstall and re-install Photoshop, then apply all the Photoshop upgrades from scratch.
    But first, give us details about your setup:
    BOILERPLATE TEXT:
    Note that this is boilerplate text.
    If you give complete and detailed information about your setup and the issue at hand,
    such as your platform (Mac or Win),
    exact versions of your OS, of Photoshop (not just "CS6", but something like CS6v.13.0.6) and of Bridge,
    your settings in Photoshop > Preference > Performance
    the type of file you were working on,
    machine specs, such as total installed RAM, scratch file HDs, total available HD space, video card specs, including total VRAM installed,
    what troubleshooting steps you have taken so far,
    what error message(s) you receive,
    if having issues opening raw files also the exact camera make and model that generated them,
    if you're having printing issues, indicate the exact make and model of your printer, paper size, image dimensions in pixels (so many pixels wide by so many pixels high). if going through a RIP, specify that too.
    A screen shot of your settings or of the image could be very helpful too,
    etc.,
    someone may be able to help you (not necessarily this poster, who is not a Windows user).
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

Maybe you are looking for

  • Inability to print or save and open certain PDF files

    I am using Adobe Reader XI with Mac OS 10.9.4 and Safari 7.0.6.  If I obtain a PDF file online  --  for example, an IRS confirmation letter when I obtain a taxpayer ID for a client - if I attempt to print it, it is blank.  If I save it on my desktop

  • Indices configuration for XML document analysis (indexing time problems)

    Hi all, I'm currently developing a tool for XML Document analysis using XQuery. We have a need to analyse the content of a large CMS dump, so I am adding all documents to a berkeley DB xml to be able to run xqueries against it. In my last run I've be

  • I get start up disc full.. purchased from previous owner..

    i did not remove "previous user".. and i'm seeing (whatsize) that her & her library are taking up 5 of the 9 GB... but i'm pretty sure my stuff is mixed with hers.. is there any way (short of reformatting) to remove the previous user stuff? thanks ju

  • Interface with LabView

    I am a very new to LabView-- We are developing a board to interface with LabView devices- (ideally, the board would have a GPIB connector).  We would like to use LabView to simulate various conditions on the Interface board by controlling switching (

  • Sum(ReportItems!..) in Matrix

    Hi , I have a detail field called Frames in matrix that does calculation with ReportItem and it'is the lowest group in the Matrix. count(Fields!Subscription_No_.Value)*ReportItems!Textbox141.Value I'd like to calculate Totals for Frames across parent