WLS 5.1 to 6.1 porting issue: RequiresNew & ORA-01002 error

Repost from the EJB group
Environment:
WLS 6.1.2 on WINNT w/SP6a
java: 1.3.1 that ships with WLS 6.1
DB: Oracle 8.1.6 (using TRANSACTION_READ_COMMITTED exclusively)
I'm currently upgrading our application from 5.1 (ejb 1.1) to
6.1 (ejb 2.0). I've also consolidated our 55 separate ejb jars
into a single jar (with all 55 ejbs). Because of 1.1 entity bean
issues, currently all our ejbs are SessionBeans. Everything works
under 5.1 with our test Oracle instance, the 6.1 test environment
is using the same database instance.
I'm seeing several problems.
Here's #1
With the same TCUSecurityDataAccessSessionBean::updateIfNeeded
source code and same database instance. 5.1 updates correctly,
6.1 throws this SQLException. So, I figure its got to be a WLS 6.1 issue or
my configuration. - I alway suspect me ;)
ERROR - ORA-01002: fetch out of sequence
(com.eoriginal.engine.core.session.basicAccess.TCUSecurityDataAccessSessionB
ean_ridhfi_Impl::updateIfNeeded)
java.sql.SQLException: ORA-01002: fetch out of sequence
This method should be configured with transaction context of: RequiresNew
Has the 6.1 handling of RequiresNew changed that radically?
I'm looking for suggestions on how to debug this further.
TIA
Gordon
------------- ejb-jar.xml (edited) ------------------------
<ejb-jar>
<small-icon>images/green-cube.gif</small-icon>
<enterprise-beans>
<!-- TCUSecurityDataAccessSession -->
<session>
<small-icon>images/orange-cube.gif</small-icon>
<ejb-name>TCUSecurityDataAccessSession</ejb-name>
<home>com.eoriginal.engine.core.session.basicAccess.TCUSecurityDataAccessSes
sionHome</home>
<remote>com.eoriginal.engine.core.session.basicAccess.TCUSecurityDataAccessS
ession</remote>
<ejb-class>com.eoriginal.engine.core.session.basicAccess.TCUSecurityDataAcce
ssSessionBean</ejb-class>
<session-type>Stateless</session-type>
<transaction-type>Container</transaction-type>
</session>
</enterprise-beans>
<assembly-descriptor>
<method-permission>
<description></description>
<role-name>****</role-name> <!-- deleted for security -->
<method>
<ejb-name>TCUSecurityDataAccessSession</ejb-name>
<method-name>*</method-name>
</method>
</method-permission>
<!-- TCUSecurityDataAccessSession -->
<container-transaction>
<method>
<ejb-name>TCUSecurityDataAccessSession</ejb-name>
<method-name>updateIfNeeded</method-name>
</method>
<trans-attribute>RequiresNew</trans-attribute>
</container-transaction>
<container-transaction>
<method>
<ejb-name>TCUSecurityDataAccessSession</ejb-name>
<method-name>peek</method-name>
</method>
<trans-attribute>Supports</trans-attribute>
</container-transaction>
</assembly-descriptor>
</ejb-jar>
------------- weblogic-ejb-jar.xml (uninteresting) ------------------------
------------- config.xml (edited) ------------------------
<JDBCConnectionPool CapacityIncrement="5"
DriverName="oracle.jdbc.driver.OracleDriver"
InitialCapacity="10" MaxCapacity="100" Name="d2Pool"
Password="*****
Properties="user=d2engine;STATEMENT_CACHE_SIZE=200"
Targets="myserver" URL="jdbc:oracle:thin:@*****"/>
<JDBCTxDataSource JNDIName="jdbc/d2Pool" Name="jdbc/d2Pool"
PoolName="d2Pool" Targets="myserver"/>
ORA-01002 fetch out of sequence
Cause: In a host language program, a FETCH call was issued out of sequence.
A successful parse-and-execute call must be issued before a fetch.
This can occur if an attempt was made to FETCH from an active set after
all records have been fetched.
This may be caused by fetching from a SELECT FOR UPDATE cursor after a
commit.
A PL/SQL cursor loop implicitly does fetches and may also cause this error.
Action: Parse and execute a SQL statement before attempting to fetch the
data.

Solved.
The 8.1.6 driver wasn't the problem.
It turned out that our ConnectionPool utility class wasn't configured
properly
and when I thought that I was going TxDatasource, I was actually only
getting
a straight Connection. No Tx, so Oracle didn't have one open for the "FOR
UPDATE"
clause. Now if someone could help on my classloader question in the EJB
group ;)
- Gordon
"Slava Imeshev" <[email protected]> wrote in message
news:[email protected]...
Gordon,
Oracle 8.1.6 driver proved to be buggy and unstable.
Can you update your oracle thin driver to the newest
one? It's available from the otn.oracle.com.
Could you also post the questionable code here, especially
in the part related to obtaining connection, executing
stataments, fetching results and obtaining TXs, if any?
Regards,
Slava Imeshev
"Gordon Twaddell" <[email protected]> wrote in message
news:[email protected]...
Sree,
I didn't mention that I'm using the Oracle thin JDBC driver
(8.1.6.1)
and its in the CLASSPATH.
Slava,
I tried the stmt.setFetchSize(). I got the same result.
Gordon
"Sree Bodapati" <[email protected]> wrote in message
news:[email protected]...
Hi Gordon,
One possibility is the environment variable PATH might be pointing to
an
older version of the library files for the WebLogic jDriver forOracle.
Check if the PATH is set to point to the right weblogicoci37.dll (inthe
<WL_HOME for 6.1>\bin\oci817_8) and make sure your oracle_home is setto
point to the right folders as well.
hth
sree
"Gordon Twaddell" <[email protected]> wrote in message
news:[email protected]...
Repost from the EJB group
Environment:
WLS 6.1.2 on WINNT w/SP6a
java: 1.3.1 that ships with WLS 6.1
DB: Oracle 8.1.6 (using TRANSACTION_READ_COMMITTED exclusively)
I'm currently upgrading our application from 5.1 (ejb 1.1) to
6.1 (ejb 2.0). I've also consolidated our 55 separate ejb jars
into a single jar (with all 55 ejbs). Because of 1.1 entity bean
issues, currently all our ejbs are SessionBeans. Everything works
under 5.1 with our test Oracle instance, the 6.1 test environment
is using the same database instance.
I'm seeing several problems.
Here's #1
With the same TCUSecurityDataAccessSessionBean::updateIfNeeded
source code and same database instance. 5.1 updates correctly,
6.1 throws this SQLException. So, I figure its got to be a WLS 6.1
issue
or
my configuration. - I alway suspect me ;)
ERROR - ORA-01002: fetch out of sequence
(com.eoriginal.engine.core.session.basicAccess.TCUSecurityDataAccessSessionB
ean_ridhfi_Impl::updateIfNeeded)
java.sql.SQLException: ORA-01002: fetch out of sequence
This method should be configured with transaction context of:RequiresNew
Has the 6.1 handling of RequiresNew changed that radically?
I'm looking for suggestions on how to debug this further.
TIA
Gordon
------------- ejb-jar.xml (edited) ------------------------
<ejb-jar>
<small-icon>images/green-cube.gif</small-icon>
<enterprise-beans>
<!-- TCUSecurityDataAccessSession -->
<session>
<small-icon>images/orange-cube.gif</small-icon>
<ejb-name>TCUSecurityDataAccessSession</ejb-name>
<home>com.eoriginal.engine.core.session.basicAccess.TCUSecurityDataAccessSes
sionHome</home>
<remote>com.eoriginal.engine.core.session.basicAccess.TCUSecurityDataAccessS
ession</remote>
<ejb-class>com.eoriginal.engine.core.session.basicAccess.TCUSecurityDataAcce
ssSessionBean</ejb-class>
<session-type>Stateless</session-type>
<transaction-type>Container</transaction-type>
</session>
</enterprise-beans>
<assembly-descriptor>
<method-permission>
<description></description>
<role-name>****</role-name> <!-- deleted for security -->
<method>
<ejb-name>TCUSecurityDataAccessSession</ejb-name>
<method-name>*</method-name>
</method>
</method-permission>
<!-- TCUSecurityDataAccessSession -->
<container-transaction>
<method>
<ejb-name>TCUSecurityDataAccessSession</ejb-name>
<method-name>updateIfNeeded</method-name>
</method>
<trans-attribute>RequiresNew</trans-attribute>
</container-transaction>
<container-transaction>
<method>
<ejb-name>TCUSecurityDataAccessSession</ejb-name>
<method-name>peek</method-name>
</method>
<trans-attribute>Supports</trans-attribute>
</container-transaction>
</assembly-descriptor>
</ejb-jar>
------------- weblogic-ejb-jar.xml(uninteresting) ------------------------
------------- config.xml (edited) ------------------------
<JDBCConnectionPool CapacityIncrement="5"
DriverName="oracle.jdbc.driver.OracleDriver"
InitialCapacity="10" MaxCapacity="100" Name="d2Pool"
Password="*****
Properties="user=d2engine;STATEMENT_CACHE_SIZE=200"
Targets="myserver" URL="jdbc:oracle:thin:@*****"/>
<JDBCTxDataSource JNDIName="jdbc/d2Pool" Name="jdbc/d2Pool"
PoolName="d2Pool" Targets="myserver"/>
ORA-01002 fetch out of sequence
Cause: In a host language program, a FETCH call was issued out ofsequence.
A successful parse-and-execute call must be issued before a fetch.
This can occur if an attempt was made to FETCH from an active set
after
all records have been fetched.
This may be caused by fetching from a SELECT FOR UPDATE cursor
after
a
commit.
A PL/SQL cursor loop implicitly does fetches and may also cause
this
error.
Action: Parse and execute a SQL statement before attempting to fetch
the
data.

Similar Messages

  • WLS 5.1 to 6.1 porting issue: ClassLoader (sometimes)

    Environment:
    WLS 6.1.2 on WINNT w/SP6a
    java: 1.3.1 that ships with WLS 6.1
    DB: Oracle 8.1.6, Oracle's thin JDBC driver
    I'm currently upgrading our application from 5.1 (ejb 1.1) to
    6.1 (ejb 2.0). I've also consolidated our 55 separate ejb jars
    into a single jar (with all 55 ejbs). Because of 1.1 entity bean
    issues, currently all our ejbs are SessionBeans. Everything works
    under 5.1 with our test Oracle instance, the 6.1 test environment
    is using the same database instance.
    I'm seeing several problems.
    Here's #2
    I receive the exception:
    <EJB Exception during invocation from home:
    com.eoriginal.engine.core.session.basicAccess.OrgUserSessionBean_w9wvk9_Home
    Impl@5ec3be threw exception:
    java.lang.NoClassDefFoundError:
    com.eoriginal.engine.core.session.basicAccess.OrgUserDataAccessSessionHome>
    Two interesting things
    1) An earlier call to a different session bean found
    OrgUserDataAccessSession and
    executed several of its methods successfully!
    DEBUG - Enter Method
    (com.eoriginal.engine.core.session.basicAccess.OrgUserDataAccessSessionBean_
    rngrwj_Impl::findUserAccountInfo)
    rmark
    eorginc>
    DEBUG - Exit Method
    (com.eoriginal.engine.core.session.basicAccess.OrgUserDataAccessSessionBean_
    rngrwj_Impl::findUserAccountInfo)
    com.eoriginal.engine.common.EOInternalUserAccountObject@4ea26e>
    2) I've verified that the class
    com.eoriginal.engine.core.session.basicAccess.OrgUserDataAccessSessionHome
    is in THE single ejb jar inside my EAR.
    3) Attempts at adding the appropriate <reference-descriptor> to
    weblogic-ejb-jar.xml
    have had no effect.
    4) All EJBs share a base class method that does the Home lookup.
    5) The calling paths from EJB to EJB that work, always work. The ones that
    fail, always fail.
    So even though all EJBs are in one JAR, when I call a method from
    one EJB the OrgUserDataAccessSession is found, but when I call a method
    from a different EJB a get the exception!
    Could this be an EJBC problem? (our EAR was built with Ant 1.4.1)
    Is there a subtle difference with the 6.1 classloader behavior that I'm
    missing?
    TIA
    Gordon

    Environment:
    WLS 6.1.2 on WINNT w/SP6a
    java: 1.3.1 that ships with WLS 6.1
    DB: Oracle 8.1.6, Oracle's thin JDBC driver
    I'm currently upgrading our application from 5.1 (ejb 1.1) to
    6.1 (ejb 2.0). I've also consolidated our 55 separate ejb jars
    into a single jar (with all 55 ejbs). Because of 1.1 entity bean
    issues, currently all our ejbs are SessionBeans. Everything works
    under 5.1 with our test Oracle instance, the 6.1 test environment
    is using the same database instance.
    I'm seeing several problems.
    Here's #2
    I receive the exception:
    <EJB Exception during invocation from home:
    com.eoriginal.engine.core.session.basicAccess.OrgUserSessionBean_w9wvk9_Home
    Impl@5ec3be threw exception:
    java.lang.NoClassDefFoundError:
    com.eoriginal.engine.core.session.basicAccess.OrgUserDataAccessSessionHome>
    Two interesting things
    1) An earlier call to a different session bean found
    OrgUserDataAccessSession and
    executed several of its methods successfully!
    DEBUG - Enter Method
    (com.eoriginal.engine.core.session.basicAccess.OrgUserDataAccessSessionBean_
    rngrwj_Impl::findUserAccountInfo)
    rmark
    eorginc>
    DEBUG - Exit Method
    (com.eoriginal.engine.core.session.basicAccess.OrgUserDataAccessSessionBean_
    rngrwj_Impl::findUserAccountInfo)
    com.eoriginal.engine.common.EOInternalUserAccountObject@4ea26e>
    2) I've verified that the class
    com.eoriginal.engine.core.session.basicAccess.OrgUserDataAccessSessionHome
    is in THE single ejb jar inside my EAR.
    3) Attempts at adding the appropriate <reference-descriptor> to
    weblogic-ejb-jar.xml
    have had no effect.
    4) All EJBs share a base class method that does the Home lookup.
    5) The calling paths from EJB to EJB that work, always work. The ones that
    fail, always fail.
    So even though all EJBs are in one JAR, when I call a method from
    one EJB the OrgUserDataAccessSession is found, but when I call a method
    from a different EJB a get the exception!
    Could this be an EJBC problem? (our EAR was built with Ant 1.4.1)
    Is there a subtle difference with the 6.1 classloader behavior that I'm
    missing?
    TIA
    Gordon

  • ORA-01002 fetch out of sequence issue

    Hi,
    I am facing a weird ORA-01002 issue where I am passing the payload by opening a cursor to a separate package which has the merge statement. This fails with ORA-01002 error when there are multiple updates for a single record on target. I read through the Oracle documentation which states "MERGE is a deterministic statement. That is, you cannot update the same row of the target table multiple times in the same MERGE statement."
    My use case is such that there can be multiple updates in a day for an account and I have to maintain history for this on the target and I have a merge to do this. I am implementing SCD using triggers. What do you guys suggest to implement this solution? I need to update the same target table record multiple times in the same MERGE statement.
    Calling procedure:
    declare
    acct load_<package>.account_list;
    begin
    OPEN acct FOR
            SELECT DISTINCT<cols>
          FROM <table> where action_type='UPDATE' order by account_updatedate;
            load_<package>.<proc>(acct);
        CLOSE acct;
    end;
    Merge package/procedure:
    PROCEDURE merge_<proc(acct IN account_list)
      AS
      BEGIN
        MERGE INTO <target_table> d USING (
          SELECT DISTINCT *
          FROM TABLE(<pipelined_proc>(acct))
        ) s
        ON (<condition>   
        WHEN NOT MATCHED THEN INSERT (
          <cols>
          ) VALUES (
    <cols>      );
        COMMIT;
      END;
    Thanks,
    Vikram

    The thread title's ORA-01002: fetch out of sequence error is potentially from the merge statement restarting to get a consistent view of the data.
    It looks like "acct" is a REF CURSOR. If the merge decides to restart, the cursor cannot be restarted, so you will get a ORA-01002: fetch out of sequence error. That's a problem with using a ref cursor inside a SQL statement that modifies data - the statement can restart.
    E.g. see AskTom: Ask Tom &amp;quot;BEFORE Triggers Fired Multiple Times &amp;quot;
    The current URL for the statement
    If the triggering statement of a BEFORE statement trigger is an UPDATE or DELETE statement that conflicts with an UPDATE statement that is running, then the database does a transparent ROLLBACK to SAVEPOINT and restarts the triggering statement. The database can do this many times before the triggering statement completes successfully. Each time the database restarts the triggering statement, the trigger fires. The ROLLBACK to SAVEPOINTdoes not undo changes to package variables that the trigger references. To detect this situation, include a counter variable in the package.
    is PL/SQL Triggers

  • Any known 'porting' issues between 8.2.2 and 9.0 ??

    Hi all,
    we are in the process of evaluating LS ES2 (9.0) and would like to know if there are any 'porting' issues between the two versions.   Asked another way, are there any issues in deploying a 8.2.2. LCA onto 9.0 ?
    Dan

    8.2 LCA's will run fine in 9.0 if they are just deployed into it.  But in 9.0 a new application model has been introduced, so in order to make changes to anything after you've migrated it you'll need to create an application and migrate your processes and resources into it.  You may want to take a look at the Leveraging Legacy Solution document available online.  Here's the link:  http://help.adobe.com/en_US/livecycle/9.0/workbenchHelp/help.htm?content=leveragingLegacy. html .
    Chris

  • Airport Extreme Skype works, but not mail or Safari? Port issue?

    So I have a weird issue with my AE.
    Often the internet will just go away...Safari will not work, iChat will not work and mail will not work. Today when it happened I noticed Skype was still logged in and working. I hadn't noticed this previously since I just this week installed Skype. When I am having an issue with my MacBookPro the MacBook in the house also has the same issue so it can't be my computer.
    I also don't think its comcast because of the whole Skype working fine thing. Also when I "borrow" someone elses wifi connection everything works...mail works, Safari, etc...
    So it must be something with my Airport Extreme. The only thing I can think of is some port issue. The AE has the lastest firmware from a month ago or so...
    This tends to happen about once a week for a few hours and then it suddenly gets better for no apparent reason. The AE is in a cabinet in the entertainment center so it gets a bit warm in there sometimes but this morning it was pretty cool in the house and it still did it so I don't think its heat related...
    Any other thoughts?

    naw i'm back in the states now so it's pretty much no longer an issue. thanks though! If you know anything about mirror agent and logout issues you could look at my other question in using mac OSX Tiger called "mirror agent & failed logout -- HELP!"
    thanks!!

  • Is 10.9.4 having USB port issues?

    Is 10.9.4 having USB port issues? I'm noticing copying files to USB ports on my Mac Pro (the front two anyway) seems to be like molasses and give me the pinwheel of death.
    Anyone?

    Try resetting SMC.
      Reset SMC.     http://support.apple.com/kb/HT3964
      Choose the appropriate method.
      "Resetting SMC on portables with a battery you should not remove on your own".

  • MSI Gaming 5 USB ports issue

    Hello everyone,
    I apologize if I posted this in the wrong section, so as the title says it, sorta of a huge USB ports issue just happened after installing the motherboard / windows / all drivers, even restarted a few times
    then tested the processor and video card.
    Everything ok to that point, I left the pc opened for 3 hours, shut it down, the next day..I couldn't type the windows password.
    Alright restart, that maybe one of those kinks that goes away on it's own I guess..Switched each device in different ports..nothing, tried only one device..still nothing.
    Tried only usb2.0 ports then 3.0 port > a a little panic kicked in :D
    So, in my bios I was seeing 2 keyboards 2 mice..ok...got a bios update from msi site..latest one..flash ..reboot..still nothing.
    Strange part was..they were working just fine in bios and everything prior to windows loading, even after that mouse was showing power ( led was ok )but no functionality.
    Safe mode didn't help..the miracle of last known good config saved the day.
    BUT after choosing the option..ok it started working....randomly..I was typing the windows pass...and right in the middle ...it stopped again..mouse was working...tried again..stopped at 75% of the password.
    Tried again...it worked > Reinstalled every driver.. seems stable for now, though being day 2 of this whole deal.
    So if anyone honors me with enough time to read the story and maybe relate I would glady appreciate it.
    Guys if anyone had any usb related incidents with any of the Z97Gaming boards please share
    If I missed anything, please ask.
    Thank you

    Hello everyone,
    Sorry for the delay in all of this and thank you for the input.
    Specs are below, and this is something currently in the process of being upgraded.
    I7 4790k / MSI Gaming 5 / Sirtec 500W / 8 gb ram  Corsair Vengeance / AMD sapphire 7970 GHZ / one single HDD 1 GB
    The Windows installation went fine on 2 other colleagues from work.
    For the moment stable, I removed and reinstalled all USB related drivers.
    It was a weird one though..

  • Charging port issues

    So I see almost everyone that has the Incredible 2 has had a charging port issue. I love it how one Verizon store told me it was a known issue and another store said it wasn't. It seems like it is well known and Verizon nor HTC wants to own up to it. Everyone that has this issue should not have to pay the $99 out of warranty fee for a refurbish phone. I got to wait a month to get my upgrade. The only way my phone charges is through my laptop usb cord which is weird but not my wall charger. To be honest, I might have to switch to a different brand or maybe even go to a different carrier.

    Well, when you see how many people are on here writing the same issue and a Verizon rep replying to trying to take care of it, its going to be a known issue. Even called HTC to see how much to fix through them. The gentleman has had calls in the past and recently about people complaining about the same issue. I know Verizon stores don't fix these issues in the store, but I expect better from a smartphone. All of my phones in the past never had this issue.
    Regarding the service, Verizon still has the best in my area.
    When you work retail, you should help a customer try to fix there issue by at least mentioning someone who can fix it.
    Not just trying to sell another product. That isn't good customer service.

  • IPhone 5c Orange EE PORTING ISSUES/SMS Problems

    Hi,
    I upgraded from Orange to EE a year ago and opted to keep my original phone number.
    The day I had the phone I restored all my settings from the cloud. Everything worked fine apart from SMS messaging to non-iPhones.
    I found out that I only had the email selected on the send and receive section of the settings, at the time my was greyed out and I could not select it, this has now disappeared completely!
    I rung EE customer services and we went through EVERYTHING to try and fix this phone so I could send SMS messages. They told me it was a porting issue and it would be resolved in a week or so, but a year on, I'm still brother getting my SMS service.
    Also although iMessage works, it still says waiting to connect in both message and face time settings.
    I've tried everything with this phone and not even EE could solve it.
    What's going on?

    Hello 
    Welcome to the EE Community! Wow, you're a patient one! Waiting a whole year is a very long time - I'd definitely advise you contact the team again to get this put on the radar again. Here's how to get in touch with the EE Customer Service team:
    If you're on Twitter, you can tweet them @EE, however If you'd prefer to talk to someone, you can dial:
    150 from your EE mobile phone
    If you're ringing from another phone, it's 01707 315000
    For handy text codes & more, check out this page: http://ee.co.uk/help/get-in-touch Cheers,
    Titanium
    Was my post helpful? Please take 2 seconds to hit the 'Kudos' button below

  • Mac Mail issues: Slow load/frequent errors

    Hi Gang! I've had some amazing help here, and hope to get some again.
    I've been using Mac Mail since it was first created, and I have a LOT of email addresses. Some from private servers, some from gmail. I also have these files on my iPhone.
    What's been happening is my Mail program is starting to have strange issues. 
    First issue. Private server email. I started creating a standard POP, then when that stopped working, switched to SMTP. That worked for awhile, then the port started having problems, so I switched the port around.. then that worked for awhile.. but started loading the mail slowly. Almost like it waited six hours or more, or if I follwed a thread, then the emails started to appear.
    Second issue. Outbox is starting to fill up with messages i've already sent, in strange incomplete version of emails.
    Third Issue. Gmail messages start to trickle in slowly too, also taking time to load sometimes.
    Fourth issue. Changing port issues from outgoing email, randomly shutting down and forcing me to reenter it and change it. So bizarre.
    Can these be rememdies by deleting prefernce files?
    Lawrence

    I do have an application that I use on my own computer but the one time I didn't take my computer with me and I have trouble. I am trying to access my account on the apple.com site.
    I just don't know why I can't access my account and I'm wondering if there is another way to access the mac.com site without having to go through the apple.com site?
    Do you think that would make a difference...
    I'm frustrated. I just read someone else was having this same problem and they stated that there were 2 computers on the same network and one computer gave them the same error message I'm getting but when they went to the other computer on the same network they were able to access the site?
    Sounds like it might be a cookie problem? I tried to clear my cookies and there still is no change. Any other suggestions would be so appreciated!
    mel

  • Issue with OWA (404 error)

    Issue with OWA (404 error)
    From the server itself i can use IPv6 https://[fe80::feef:ff56:c498:1f0]/owa - this opens the mailbox.
    https://127.0.0.1/owa - this opens the mailbox
    https://localhost/owa - this results in 404 - File or directory not found
    using https://servername/owa - this results in 404 - file or directory not found
    using https://192.168.10.10 - this results in 404 - file or directory not found
    is this an issue with IIS bindings?
    thanks in advance

    Hi,
    I think you can check the authentication settings in IIS for exchange virtual directories.
    Thanks,
    James

  • I am trying to reinstall Dreamweaver CS3 from the CD after having computer issues.  Now getting error "You can only install one Adobe product at a time.  Please complete the other installation before attempting to install ......."  There is no other Adobe

    I am trying to reinstall Dreamweaver CS3 from the CD after having computer issues.  Now getting error "You can only install one Adobe product at a time.  Please complete the other installation before attempting to install ......."  There is no other Adobe product installing.  I have used the Adobe Cleaner Tool many times and uninstalled other Adobe Products but neither has worked.  I have uninstalled/reinstalled this CD version of Dreamweaver several times when changing computers and after having computer issues. A google search of the problem suggested it may be an error related to the number of times I can reinstall this product due to licensing issues.  Please help.

    A google search of the problem suggested it may be an error related to the number of times I can reinstall this product due to licensing issues.
    Absolutely not. You are misinterpreting things. The activation check never happens when just running the installer, only much later. It means what it says - there is another "install" pending/ active on your system, meaning somewhere there is an (invisible) process still blocking things. Either way, since you haven't provided any real technical info, we can't advise specifically. if you are on Windows, you may want to check your task manager and terminate any setup.exe and msiexec.exe processes plus potentially may need to manually fix/ delete some registry keys. For anything beyond that you will have to be much more specific.
    Mylenium

  • Open port issues with Direct Print functionality

    Hi, I have been fighting with HP call support about the Photosmart 7525 printer.
    Originally I setup and had performed all the functions to enable both web support and WIFI.
    Within an hour the printer would not respond to wireless communication, though it had its wireless indecator showing it was connected.
    I was told by HP support that the issue will be resolved in March, as there will be a firmware update to fix the issue.
    Now that I had the printer install the new firmware I still get the issue.
    Though I found through some sniffing, that there are a number of ports enabled and open that are over and beyond print requirements.
    Funny thing I can send my printer into instant lockup with all lights flashing with a simple UDP ping sniff. I would think I can do this with other new HP printers using Eprint functions. I will find HP web based printers that are open for public printing and test my theory that HP Eprinters are open to hacking and denyal of service attempts.  My Hp print app on andriod list three in my area, and one is at my local Walmart. This would be cool to find this, as I am usually not the first to point such matters out.
    I assume some are for Apple devices to print.
    Here is my sniffing report:
    Starting Nmap 6.40 ( http://nmap.org ) at 2014-03-21 07:57 Central Daylight TimeNSE: Loaded 110 scripts for scanning.NSE: Script Pre-scanning.Initiating ARP Ping Scan at 07:57Scanning 192.168.223.1 [1 port]Completed ARP Ping Scan at 07:57, 0.23s elapsed (1 total hosts)Initiating Parallel DNS resolution of 1 host. at 07:57Completed Parallel DNS resolution of 1 host. at 07:58, 16.50s elapsedInitiating SYN Stealth Scan at 07:58Scanning 192.168.223.1 [1000 ports]Discovered open port 445/tcp on 192.168.223.1Discovered open port 139/tcp on 192.168.223.1Discovered open port 80/tcp on 192.168.223.1Discovered open port 443/tcp on 192.168.223.1Discovered open port 8080/tcp on 192.168.223.1Discovered open port 9220/tcp on 192.168.223.1Discovered open port 6839/tcp on 192.168.223.1Discovered open port 631/tcp on 192.168.223.1Discovered open port 7435/tcp on 192.168.223.1Discovered open port 8089/tcp on 192.168.223.1Discovered open port 9100/tcp on 192.168.223.1Completed SYN Stealth Scan at 07:58, 1.71s elapsed (1000 total ports)Initiating UDP Scan at 07:58Scanning 192.168.223.1 [1000 ports]Discovered open port 5353/udp on 192.168.223.1Completed UDP Scan at 07:58, 1.82s elapsed (1000 total ports)Initiating Service scan at 07:58Scanning 20 services on 192.168.223.1Discovered open port 161/udp on 192.168.223.1Discovered open|filtered port 161/udp on 192.168.223.1 is actually open
    Starting Nmap 6.40 ( http://nmap.org ) at 2014-03-21 07:51 Central Daylight TimeNmap scan report for 192.168.223.1Host is up (0.0025s latency).Not shown: 93 closed portsPORT     STATE SERVICE     VERSION80/tcp   open  http        HP Photosmart 7520 series printer http config (Serial TH3AS711XZ05YZ)139/tcp  open  tcpwrapped443/tcp  open  ssl/http    HP Photosmart 7520 series printer http config (Serial TH3AS711XZ05YZ)445/tcp  open  netbios-ssn631/tcp  open  http        HP Photosmart 7520 series printer http config (Serial TH3AS711XZ05YZ)8080/tcp open  http        HP Photosmart 7520 series printer http config (Serial TH3AS711XZ05YZ)9100/tcp open  jetdirect?MAC Address: A03:C1:BD:C8:34 (Unknown)Device type: printer|general purposeRunning: HP embedded, Wind River VxWorksOS CPE: cpe:/h:hp:laserjet_cm1415fnw cpe:/h:hp:laserjet_cp1525nw cpe:/h:hp:laserjet_1536dnf cpe:/o:windriver:vxworksOS details: HP LaserJet CM1415fnw, CP1525nw, or 1536dnf printer, VxWorksNetwork Distance: 1 hopService Info: Device: printer; CPE: cpe:/h:hphotosmart_7520OS and Service detection performed. Please report any incorrect results at http://nmap.org/submit/ .Nmap done: 1 IP address (1 host up) scanned in 34.11 seconds

    OK now I am able to run a full scan on TCP ports without causing a lock up of the printer.
    I found that having the printer connect to a router that has been setup to use channel 5, 6 or 7 will cause port scanning issues with the printer.
    It is obvious that there are 18 ports that are seen as open, whether they are used or not. Two of which are active but have no service connected to them. Some are just dead like port 25, but over half are active enough to recieve data and lock network connectivity within the printer.
    As the firmware states some other laser jets may be affected depending on how the configuration can be set.
    I moved my routers channel to channel 1 as it is the only other option I have in a highly congested location. It is not as good as channel 6, but the printer seems to have channel 6 locked in for direct printing.
    Here is the latest full scan with UDP enabled, it is the furthest and most complete scan I am able to complete, with UDP ports enabled. The TCP port scan has a bit more and I have placed a simple list below the information given here:
    Starting Nmap 6.40 ( http://nmap.org ) at 2014-03-21 13:27 Central Daylight Time
    NSE: Loaded 110 scripts for scanning.
    NSE: Script Pre-scanning.
    Initiating ARP Ping Scan at 13:27
    Scanning 192.168.1.211 [1 port]
    Completed ARP Ping Scan at 13:27, 0.44s elapsed (1 total hosts)
    Initiating Parallel DNS resolution of 1 host. at 13:27
    Completed Parallel DNS resolution of 1 host. at 13:27, 0.03s elapsed
    Initiating SYN Stealth Scan at 13:27
    Scanning 192.168.1.211 [1000 ports]
    Discovered open port 443/tcp on 192.168.1.211
    Discovered open port 80/tcp on 192.168.1.211
    Discovered open port 139/tcp on 192.168.1.211
    Discovered open port 8080/tcp on 192.168.1.211
    Discovered open port 445/tcp on 192.168.1.211
    Discovered open port 631/tcp on 192.168.1.211
    Discovered open port 9100/tcp on 192.168.1.211
    Discovered open port 7435/tcp on 192.168.1.211
    Discovered open port 9220/tcp on 192.168.1.211
    Discovered open port 6839/tcp on 192.168.1.211
    Completed SYN Stealth Scan at 13:27, 5.25s elapsed (1000 total ports)
    Initiating UDP Scan at 13:27
    Scanning 192.168.1.211 [1000 ports]
    Discovered open port 137/udp on 192.168.1.211
    Completed UDP Scan at 13:27, 4.46s elapsed (1000 total ports)
    Initiating Service scan at 13:27
    Scanning 16 services on 192.168.1.211
    Discovered open port 161/udp on 192.168.1.211
    Discovered open|filtered port 161/udp on 192.168.1.211 is actually open
    Completed Service scan at 13:29, 82.51s elapsed (17 services on 1 host)
    Initiating OS detection (try #1) against 192.168.1.211
    NSE: Script scanning 192.168.1.211.
    Initiating NSE at 13:29
    Completed NSE at 13:30, 82.29s elapsed
    Nmap scan report for 192.168.1.211
    Host is up (0.023s latency).
    Not shown: 1983 closed ports
    PORT     STATE         SERVICE      VERSION
    80/tcp   open          http         HP Photosmart 7520 series printer http config (Serial TH3AS711XZ05YZ)
    |_http-favicon: Unknown favicon MD5: 76C6E492CB8CC73A2A50D62176F205C9
    | http-methods: GET POST PUT DELETE
    | Potentially risky methods: PUT DELETE
    |_See http://nmap.org/nsedoc/scripts/http-methods.html
    |_http-title: Site doesn't have a title (text/html).
    139/tcp  open          tcpwrapped
    443/tcp  open          ssl/http     HP Photosmart 7520 series printer http config (Serial TH3AS711XZ05YZ)
    |_http-favicon: Unknown favicon MD5: 76C6E492CB8CC73A2A50D62176F205C9
    | http-methods: GET POST PUT DELETE
    | Potentially risky methods: PUT DELETE
    |_See http://nmap.org/nsedoc/scripts/http-methods.html
    |_http-title: Site doesn't have a title (text/html).
    | ssl-cert: Subject: commonName=HPPS7525/organizationName=HP/stateOrProvinceName=Washington/countryName=US
    | Issuer: commonName=HPPS7525/organizationName=HP/stateOrProvinceName=Washington/countryName=US
    | Public Key type: rsa
    | Public Key bits: 1024
    | Not valid before: 2014-02-25T10:12:24+00:00
    | Not valid after:  2034-02-20T10:12:24+00:00
    | MD5:   9144 ca3b 557e 09cc aba0 8387 2732 2375
    |_SHA-1: a6b2 95c0 b72a 7201 578c 32de 662a e6fe b082 48ca
    |_ssl-date: 2014-03-21T13:30:09+00:00; -4h59m12s from local time.
    445/tcp  open          netbios-ssn
    631/tcp  open          http         HP Photosmart 7520 series printer http config (Serial TH3AS711XZ05YZ)
    | http-methods: GET POST PUT DELETE
    | Potentially risky methods: PUT DELETE
    |_See http://nmap.org/nsedoc/scripts/http-methods.html
    6839/tcp open          tcpwrapped
    7435/tcp open          tcpwrapped
    8080/tcp open          http         HP Photosmart 7520 series printer http config (Serial TH3AS711XZ05YZ)
    |_http-favicon: Unknown favicon MD5: 76C6E492CB8CC73A2A50D62176F205C9
    | http-methods: GET POST PUT DELETE
    | Potentially risky methods: PUT DELETE
    |_See http://nmap.org/nsedoc/scripts/http-methods.html
    |_http-title: Site doesn't have a title (text/html).
    9100/tcp open          jetdirect?
    9220/tcp open          hp-gsg       HP Generic Scan Gateway 1.0
    137/udp  open          netbios-ns   Samba nmbd (workgroup: HPPS7525)
    138/udp  open|filtered netbios-dgm
    161/udp  open          snmp         SNMPv1 server (public)
    | snmp-hh3c-logins:
    |_  baseoid: 1.3.6.1.4.1.25506.2.12.1.1.1
    | snmp-interfaces:
    |   Wifi0
    |     IP address: 192.168.1.211  Netmask: 255.255.255.0
    |     MAC address: a0:d3:c1:bd:c8:32 (Unknown)
    |     Type: ethernetCsmacd  Speed: 10 Mbps
    |     Status: up
    |_    Traffic stats: 6.16 Mb sent, 3.43 Mb received
    | snmp-netstat:
    |   TCP  0.0.0.0:7435         0.0.0.0:0
    |   TCP  192.168.1.211:56076  15.201.145.52:5222
    |   UDP  0.0.0.0:3702         *:*
    |   UDP  127.0.0.1:666        *:*
    |_  UDP  192.168.223.1:67     *:*
    | snmp-sysdescr: HP ETHERNET MULTI-ENVIRONMENT
    |_  System uptime: 0 days, 3:34:23.28 (1286328 timeticks)
    | snmp-win32-shares:
    |_  baseoid: 1.3.6.1.4.1.77.1.2.27
    1022/udp open|filtered exp2
    1023/udp open|filtered unknown
    3702/udp open|filtered ws-discovery
    5355/udp open|filtered llmnr
    MAC Address: A03:C1:BD:C8:32 (Unknown)
    Device type: general purpose
    Running: Wind River VxWorks
    OS CPE: cpe:/o:windriver:vxworks
    OS details: VxWorks
    Uptime guess: 0.150 days (since Fri Mar 21 09:55:04 2014)
    Network Distance: 1 hop
    TCP Sequence Prediction: Difficulty=255 (Good luck!)
    IP ID Sequence Generation: Busy server or unknown class
    Service Info: Hosts: HPA0D3C1BDC832, HPPS7525; Device: printer; CPE: cpe:/h:hphotosmart_7520
    Host script results:
    | nbstat:
    |   NetBIOS name: HPA0D3C1BDC832, NetBIOS user: <unknown>, NetBIOS MAC: <unknown>
    |   Names
    |     HPA0D3C1BDC832<00>   Flags: <unique><active><permanent>
    |     MSHOME<00>           Flags: <group><active><permanent>
    |     HPA0D3C1BDC832<20>   Flags: <unique><active><permanent>
    |     HPPS7525<00>         Flags: <unique><active><permanent>
    |_    HPPS7525<20>         Flags: <unique><active><permanent>
    | smb-security-mode:
    |   Account that was used for smb scripts: guest
    |   User-level authentication
    |   SMB Security: Challenge/response passwords supported
    |_  Message signing disabled (dangerous, but default)
    TRACEROUTE
    HOP RTT      ADDRESS
    1   23.26 ms 192.168.1.211
    NSE: Script Post-scanning.
    Read data files from: F:\Progs\Nmap
    OS and Service detection performed. Please report any incorrect results at http://nmap.org/submit/ .
    Nmap done: 1 IP address (1 host up) scanned in 180.90 seconds
               Raw packets sent: 2030 (74.829KB) | Rcvd: 2921 (149.377KB)
    +++++++++++++++++++++++++++++++++++++++++++++++++++++===
    Full TCP port scan without UDP scanning of all ports, showing up as open... * designates open and active.
    192.168.223.1Discovered open port 25/tcp on
    *192.168.223.1Discovered open port 80/tcp on
    *192.168.223.1Discovered open port 110/tcp on
    *192.168.223.1Discovered open port 119/tcp on
    *192.168.223.1Discovered open port 139/tcp on
    192.168.223.1Discovered open port 143/tcp on
    *192.168.223.1Discovered open port 443/tcp on
    *192.168.223.1Discovered open port 445/tcp on
    192.168.223.1Discovered open port 465/tcp on
    192.168.223.1Discovered open port 563/tcp on
    192.168.223.1Discovered open port 587/tcp on
    *192.168.223.1Discovered open port 631/tcp on
    192.168.223.1Discovered open port 993/tcp on
    192.168.223.1Discovered open port 995/tcp on
    *192.168.223.1Discovered open port 7435/tcp on
    *192.168.223.1Discovered open port 6839/tcp on
    *192.168.223.1Discovered open port 8080/tcp on
    192.168.223.1Discovered open port 8089/tcp on
    *192.168.223.1Discovered open port 9100/tcp on
    *192.168.223.1Discovered open port 9220/tcp on

  • XI- Xi Scenario XI Adapter (Port Issue)

    Hi all
              we are implementating <b>File - XIA--|Internet|--
    XIB -File</b>.
    At XIA i am using XI Adapter(receiver)
                      Message protocal HTTPS
    At  XIB I am using XI Adapter(sender)
                     Messaage protocal HTTP
    Now the issue is
                     XIA is using HTTPS protocal , that means it will post data
    to port 443 ( HTTPS Port)
                     But at XIB message protocal is HTTP.
    <b>So which port at XIB we need to open  HTTP port or HTTPS port</b>
    Note: Both XI are at different landscape.
    receiver : XIA  communication channel to post data to XIB.
    sender :  XIB  communication channel to receive data from XIA
      <i>we had gone  through these blogs before posting this query..</i>
    Re: XI -> XI scenario
    Re: XI to XI connectivity
    connection XI to XI
    Re: XI to XI connectivity
    /people/abhy.thomas/blog/2007/01/18/xi-content-certification-in-a-b2b-scenario--case-study
    /people/alwin.vandeput2/blog/2006/06/07/d-xie-soap-part-4-xi-software-component-architecture-for-point-to-point-scenarios
    /people/yomeshp.sharma/blog/2006/06/01/integrating-jdedwards-system-with-xi-using-iway-adapter-part--i
    /people/yomeshp.sharma/blog/2006/06/01/integrating-jdedwards-system-with-xi-using-iway-adapter-part--ii
    Regards,
    Ashutosh

    hi,
    have a look at this guide:
    How To Configure Message Level Security in SAP XI 3.0
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/b2e7020d-0d01-0010-269c-a98d3fb5d16c
    is shows how to connect two XIs (one is "small XI" PCK)
    Regards,
    michal
    <a href="/people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions"><b>XI / PI FAQ - Frequently Asked Questions</b></a>

  • Client proxy consuming web service provider using logical port issue

    Hi All,
    I have a proxy client having a logical port (configured using  NWDS)  to consume a web service in the provider system.
    In the logical port, I have given target address, and logical port name. While moving this client proxy NWDI dev track to Q and prod,
    how do I change this target address to point to Q and prod respectively. In other words, even though I am using Visual admin to configure the destination url for the logical port, to point to Q and prod, its still referring to the dev environment provider service after moving the proxy client to Q and prod. What is the suggested approach to take care of this issue
    Thx
    mike

    Hi Michael,
    I can only help from that point of view that I believe this question belongs to the forum
    Service-Oriented Architecture (SOA) and SAP
    Please try to raise this question there.
    Thanks and Regards,
    Ervin

Maybe you are looking for

  • How do I put pdfs from a cd on to my iPad?

    I studying for an exam that requires me to read through approximatelly 18000 pages of information.  I have a set of books on a cd rom in pdf format.  How do I transfer the files of the cd rom to my ipad from my mac, if its even possible?  Its a 1st g

  • In Adobe Acrobat XI Pro Version 11.0.0 - Flatten file so it is not editable even by Acrobat

    In Adobe Acrobat XI Pro Version 11.0.0 I use the Flatten option under Preflight but when I go back into the document using Acrobat and use Edit Text & Images, I am able to edit and delete items in the document. I also tried Flatten Preview -> Apply b

  • Updating a DB table with only non-empty values of a work area

    Hi everybody, Is that possible in ABAP to update a table in the database with a work area, but only with non-empty values of this work area? Example: data: ls_custom type ZCUSTOMERS_0. ls_custom-CUSTOMER = '20'. ls_custom-LASTNAME = 'MyName'. ls_cust

  • Battery drain with 10.8.3 and SSD

    has anyone noticed a battery drainage over 10.8.2 and 10.8.3, i got my macbook with 10.8.2 about a week ago and i took the stock HDD out and put in a 256gb ssd and reinstalled Mtn lion via a stock 10.8 DVD and then updated to 10.8.3 but my battery ju

  • Oracle Server Access through DSL Router

    Hi All, I have Oracle 9i server on Windows 2000 and working fine in Local Area Network. I have broadband connection with one static IP. Internet ISP has given a router. From outside office I can connect to Oracle through the static IP. I just have to